/* Cairo Variable Font */
:root{
    --main-color: #C80F2E;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/Cairo-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900; /* Adjust the range according to the variable font weights */
    font-style: normal;
}

/* Cairo Static Fonts */
@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('..s/font/static/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../font/static/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    direction: rtl;
}

/* Navbar styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    direction: ltr;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-size: 24px;
    color: #F0C38E;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.logo:hover {
    color: #F1AA9B;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
}

.nav-links a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--main-color);
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown .dropdown-toggle {
    display: block;
    padding: 5px 0;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.nav-links .dropdown-menu li {
    list-style: none;
}

.nav-links .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--main-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-links .dropdown-menu li a:hover {
    background-color: var(--main-color);
    color: #312C51;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated indicator */
.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::before,
.nav-links a:focus::before {
    transform: scaleX(1);
    transform-origin: left;
}

.content h2{
    color: var(--main-color) !important;
}

/* Search bar styles */
.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #48426D;
    border-radius: 50px;
    overflow: hidden;
    transition: width 0.3s ease;
}

/* Call button styles */
.call-button {
    background-color: var(--main-color);
    color: #f5f5f5;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.call-button:hover {
    background-color: #F0C38E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    width: 25px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-menu div {
    background-color: #F1AA9B;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger-menu.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active div:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links,
    .search-bar,
    .call-button {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active a {
        font-size: 18px;
    }
}
/* Positioning and styling the dropdown icon */
.dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 8px;
    font-size: 14px;
    color: #F1AA9B;
    transition: transform 0.3s ease;
}

/* Rotate icon when dropdown is active */
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../صور/_597f9b18-3608-4c08-8718-3f2df33c685a.jpeg'); /* Replace with your image */
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    transform: scale(1);
    transition: transform 20s ease-out; /* Slow zoom effect */
}
.hero-section:hover .hero-image {
    transform: scale(1.1); /* Subtle zoom on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* Gradient overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.content h1, .content h2, .content p, .content .cta-button {
    margin: 0 0 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Soft text shadow */
    margin-bottom: 20px;
}

.content h2 {
    font-size: 2rem;
    font-weight: normal;
    color: #F1AA9B;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Soft text shadow */
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Soft text shadow */
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #F0C38E;
    color: #312C51;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(240, 195, 142, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #F1AA9B;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(240, 195, 142, 0.6); /* Glow effect */

}

/* Scroll animation */
.hero-section.in-view .content h1, 
.hero-section.in-view .content h2, 
.hero-section.in-view .content p, 
.hero-section.in-view .content .cta-button {
    opacity: 1;
    transform: translateY(0);
}
/* General styling for the service highlights section */
.service-highlights {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    background-color: #f9f9f9; /* Light background for contrast */
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    animation: gradientShift 20s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-box {
    flex: 1 1 calc(50% - 40px);
    max-width: 360px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F0C38E, #F1AA9B);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.service-box:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-box:hover .service-icon {
    transform: rotate(15deg);
}

.service-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #C80F2E;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .service-box {
        flex: 1 1 calc(100% - 40px);
    }
}

  .text-content *{
    text-align: right;
  }

  
  .product-maintenance {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust based on your design */
    overflow: hidden;
  }

  .background-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../صور/_7bdb8843-d5a9-4103-ab92-b4a50e8256c5.jpeg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
  }
  
  .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    color: white;
    opacity: 0.8; /* Initial opacity for always-visible effect */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .details h2 {
    margin: 0;
    font-size: 24px; /* Adjust as needed */
    text-align: center;
  }
  
  .cta-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #d495ac;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #d495ac;
  }
  
  .product-maintenance:hover .background-image {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }
  
  .product-maintenance:hover .details {
    opacity: 1;
    z-index: 10;
    transform: translateY(0); /* Ensure details slide into view smoothly */
  }
  
  .product-maintenance .background-image:hover .details {
    transform: translateY(-10px); /* Smooth slide-up effect on hover */
  }

  .talk-product-maintenance {
    position: relative;
    padding: 80px 20px;
    background-color: #f5f5f5; /* Neutral background for a clean look */
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.6), rgba(255, 255, 255, 0.3));
    filter: blur(8px);
    animation: backgroundShift 20s ease infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.content-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text-content {
    flex: 1 1 50%;
    max-width: 600px;
    text-align: left;
}

.text-content h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.text-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #C80F2E;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

.cta-button.secondary {
    background-color: #f1aa9b;
}

.cta-button.secondary:hover {
    background-color: #e89789;
}

.image-content {
    flex: 1 1 50%;
    max-width: 600px;
    text-align: center;
}

.maintenance-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content:hover .maintenance-image {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content, .image-content {
        max-width: 100%;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
}
.customer-services {
    position: relative;
    padding: 100px 20px;
    background-color: #e0f7fa; /* Light cyan background for a fresh look */
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Unique shape with polygon */
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    animation: backgroundShift 25s ease infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.content-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.text-content:hover {
    transform: translateY(-10px);
}

/* General styles for text elements */
.section-title {
    font-size: 2.5rem;
    color: #C80F2E;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #C80F2E;
    line-height: 1.6;
}

.cta-container {
    margin-top: 20px;
}

/* General styles for buttons */
.cta-button, .cta-button.secondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
}

.cta-button {
    background-color: #C80F2E;
}

.cta-button.secondary {
    background-color: #C80F2E;
}

.cta-button:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

.cta-button.secondary:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

/* General styles for images */
.customer-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .image-content {
        max-width: 100%;
    }
}
.product-maintenance-section {
    position: relative;
    padding: 100px 20px;
    background-color: #fafafa; /* Light gray background for a clean look */
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Unique polygonal shape */
}

.background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    animation: backgroundShift 30s linear infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.product-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-text-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.product-text-content:hover {
    transform: translateY(-10px);
}

.product-title {
    font-size: 2.8rem;
    color: #C80F2E;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.product-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background-color: #C80F2E;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.product-title:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.product-description {
    font-size: 1.2rem;
    color: #C80F2E;
    line-height: 1.6;
}

.maintenance-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.detail-item {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    font-size: 2rem;
    color: #C80F2E;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 1.5rem;
    color: #C80F2E;
    margin-bottom: 10px;
}

.detail-description {
    font-size: 1rem;
    color: #C80F2E;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-button-primary, .cta-button-secondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
}

.cta-button-primary {
    background-color: #C80F2E;
}

.cta-button-secondary {
    background-color: #C80F2E;
}

.cta-button-primary:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

.cta-button-secondary:hover {
    background-color: #d495ac;
    transform: scale(1.05);
}

.product-image-wrapper {
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .product-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .product-text-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .product-image-wrapper {
        max-width: 100%;
    }

    .detail-item {
        flex: 1 1 100%;
    }
}
.dynamic-accordion-section {
    display: flex;
    align-items: flex-start;
    padding: 60px 20px;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.dynamic-content-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.dynamic-image-container {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.dynamic-accordion-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.dynamic-accordion-wrapper {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
}

.dynamic-accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.dynamic-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dynamic-accordion-title {
    font-size: 1.4rem;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.dynamic-accordion-toggle {
    font-size: 1.8rem;
    color: #C80F2E;
    transition: transform 0.3s ease;
}

.dynamic-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    background-color: #fff;
}

.dynamic-accordion-body p {
    margin: 0;
    padding: 20px 0;
    color: #555;
}

/* Active states */
.dynamic-accordion-item.open .dynamic-accordion-body {
    max-height: 400px; /* Adjust based on content height */
    padding: 20px;
}

.dynamic-accordion-item.open .dynamic-accordion-toggle {
    transform: rotate(45deg);
}

.dynamic-accordion-header:hover {
    background-color: #e0f2f1;
    transform: translateY(-3px);
}

.dynamic-accordion-title:hover {
    color: #C80F2E;
}

/* Responsive design */
@media (max-width: 768px) {
    .dynamic-accordion-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dynamic-image-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .dynamic-accordion-wrapper {
        max-width: 100%;
        padding-left: 0;
    }

    .dynamic-accordion-item {
        margin-bottom: 15px;
    }
}
.contact-us-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    gap: 20px;
}

.contact-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #C80F2E;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.contact-image {
    flex: 1;
    max-width: 50%;
}

.company-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-numbers {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.contact-number {
    background-color: #C80F2E;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-number a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.contact-location {
    margin-top: 20px;
}

.contact-location h3 {
    font-size: 1.5rem;
    color: #C80F2E;
    margin-bottom: 10px;
}

.contact-location p {
    font-size: 1rem;
    color: #555;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-map {
        max-width: 100%;
        margin-bottom: 20px;
        height: 300px;
    }

    .contact-info {
        max-width: 100%;
        padding-left: 0;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    footer{
        display: none;
    }
}
.footer {
    background-color: #C80F2E;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 96%;
    margin: auto;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-link:hover {
    text-decoration: underline;
    color: #80cbc4;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer-content {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }
    
}
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* General button styling */
.sticky-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #009688; /* Default color */
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.sticky-button img {
    width: 24px;
    height: 24px;
}

/* Call button specific styling */
.call-button {
    background-color: var(--main-color); /* Green color for call */
}

/* WhatsApp button specific styling */
.whatsapp-button {
    background-color: #25d366; /* WhatsApp green */
}

/* Hover effects */
.sticky-button:hover {
    opacity: 0.8;
}

/* Responsive design for the buttons */
@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-button {
        width: 60px;
        height: 60px;
    }

    .sticky-button img {
        width: 28px;
        height: 28px;
    }
}
.image-wh{
    width: 200px;
    height: 80px;
}
.detail-item{
    z-index: 20;
}
.w-100{
    width:100% ;
}
ul{
    background-color: rgb(249, 249, 249);
    border-radius: 6px;
}
li{
    border-color: #C80F2E;
    border-style: solid;
    border-width: 0.1px;
    border-radius: 6px;
    line-height: 30px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.flx{
    display: flex;
}
.last{
    width: 75% !important;
    padding: 0px 20px;

}
@media (max-width: 768px) {
    .last {
        flex: 1 1 100%; /* Make each item take full width on small screens */
    }
}
.image-wh {
    width: 120px;
    height: 40px;
    transition: transform .3s ease-in-out !important;
}

.image-wh:hover {
    transform: scale(1.1);
}
span{
    color: #C80F2E;
}
.sticky-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* General Styles */
.sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px 0; /* Space between buttons */
}

.sticky-button .button-icon {
    width: 30px; /* Size of the icon */
    height: 30px; /* Size of the icon */
}

/* Call Button */
.call-button {
    background-color: var(--main-color); /* Set your color here */
}

.call-button:hover {
    background-color: #F0C38E; /* Hover color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25D366; /* WhatsApp color */
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Hover color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Responsive Design */
.span{
    background-color: var(--main-color);
}
.logo {
    text-decoration: none;
    display: inline-block;
    font-family: 'Arial', sans-serif; /* Choose a professional font-family */
    color: #F0C38E; /* Main color */
    transition: color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.logo-text {
    display: block;
    font-size: 24px; /* Main text size */
    font-weight: 700;
    margin-bottom: 0px; /* Space between main text and subtext */
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo-subtext {
    display: block;
    font-size: 18px; /* Subtext size */
    font-weight: 400;
    color: #D3B48F; /* Slightly different color for contrast */
}

/* Hover Effects */
.logo:hover .logo-text {
    color: #F1AA9B; /* Hover color for main text */
    transform: scale(1.05); /* Slight zoom effect */
}

.logo:hover .logo-subtext {
    color: #C79D8C; /* Hover color for subtext */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px; /* Adjust size for smaller screens */
    }

    .logo-subtext {
        font-size: 16px; /* Adjust size for smaller screens */
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide the navigation links on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 10px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
        padding-right: 5%;
    }

    .hero-section{
        height: 75vh;
    }
}
@media (min-width: 770px){
    .navbar{
        direction: rtl;
    }
}
