/* Container */
.maintenance-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0a2d4d;
}

/* Section description */
.section-desc {
  font-size: 1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

/* Cards container */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual card */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 35px 25px;
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icon */
.maintenance-section .icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 20px;
}

/* Card heading */
.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.card h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #dc3545;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Card text */
.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }
}

.maintenance-overview {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.maintenance-overview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.image-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.image-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.text-column {
  flex: 1 1 50%;
  min-width: 300px;
}

.text-column h2 {
  font-size: 2rem;
  color: #0a2d4d;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-column h3 {
  font-size: 1.25rem;
  color: #0a2d4d;
  margin-bottom: 15px;
}

.text-column ul.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.text-column ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

.text-column ul.checklist li::before {
  content: '✔';
  color: #28a745; /* Green check */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: #dc3545;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #b71c2b;
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }
  .image-column, .text-column {
    flex: 1 1 100%;
  }
}
.our-brands {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.our-brands h2 {
  font-size: 2rem;
  color: #0a2d4d;
  margin-bottom: 15px;
}

.our-brands p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Carousel */
.brands-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: scrollBrands 20s linear infinite;
}

.brand-item {
  flex: 0 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-height: 100%;
  object-fit: contain;
}

/* Carousel animation */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track {
    gap: 20px;
  }
  .brand-item {
    height: 80px;
  }
}
.power-solutions {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.power-solutions .container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.text-column {
  flex: 1 1 50%;
  min-width: 300px;
}

.text-column h2 {
  font-size: 2rem;
  color: #0a2d4d;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-column h3 {
  font-size: 1.2rem;
  color: #0a2d4d;
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-column ul.checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.text-column ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.text-column ul.checklist li::before {
  content: '✔';
  color: #28a745; /* Green check */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

.image-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.image-column img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column-reverse;
  }
  .image-column, .text-column {
    flex: 1 1 100%;
  }
  .text-column h2 {
    text-align: center;
  }
}
.odoo-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.odoo-hero {
  padding: 60px 0;
  background-color: #85bad8;
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.odoo-col {
  flex: 1 1 45%;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0d1b2a;
}
.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.odoo-features {
  padding: 50px 0;
  background-color: #f4f7fb;
}
.odoo-features h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d1b2a;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.feature-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-item h3 {
  color: #ff6b6b;
  margin-bottom: 10px;
}
.feature-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.odoo-stats {
  padding: 50px 0;
  text-align: center;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.stat h3 {
  font-size: 2.4rem;
  color: #ff6b6b;
  margin-bottom: 5px;
}
.stat p {
  color: #333;
  font-size: 1rem;
}

.odoo-modules-overview {
  padding: 60px 0;
  text-align: center;
}
.odoo-modules-overview h2 {
  margin-bottom: 30px;
  color: #0d1b2a;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.module-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.module-card h3 {
  margin-bottom: 15px;
  color: #0d1b2a;
}
.module-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-tawatur {
  padding: 60px 0;
  background-color: #f4f7fb;
}
.why-tawatur h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d1b2a;
}
.partners-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.feature-card h3 {
  margin-bottom: 10px;
  color: #0d1b2a;
}
.feature-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-row {
    flex-direction: column;
  }
  .odoo-col {
    flex: 1 1 100%;
  }
  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }
}

 /* 1. CSS Variables */
    :root {
        --primary-color: #007BFF; /* Tawatur/Tech Blue */
        --secondary-color: #343A40; /* Dark text/accents */
        --light-bg: #F8F9FA; /* Light background for sections */
        --text-color: #333;
        --card-bg: #fff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --border-radius: 8px;
    }

    /* 2. Layout and Containers */
    .noria-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    /* 3. Typography within Sections */
    .noria-hero h1, .noria-features h2, .noria-modules-overview h2, .why-tawatur h2,
    .noria-hero h3, .noria-features h3, .noria-modules-overview h3, .why-tawatur h3 {
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .noria-hero h1 {
        color: var(--secondary-color);
        font-size: 2.5rem;
    }

    h2 {
        text-align: center;
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 40px;
        border-bottom: 3px solid #000;
        padding-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text p {
        margin-bottom: 15px;
        font-size: 1.1rem;
        color: var(--text-color);
    }

    /* 4. Hero Section */
    .noria-hero {
        background-color: var(--light-bg);
        padding: 60px 0;
        border-bottom: 5px solid var(--primary-color);
    }

    .hero-row {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .noria-col {
        flex: 1;
    }

    .hero-image {
        /* Placeholder styling for image space */
        min-height: 400px;
        /* background-color: var(--secondary-color); */
        border-radius: var(--border-radius);
        overflow: hidden;
        position: relative;
        /* box-shadow: var(--shadow); */
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* opacity: 0.3; Dim image for placeholder effect */
    }

    .hero-image::before {
        /* content: 'ERP Dashboard Image Placeholder'; */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
        z-index: 2;
    }

    /* 5. Features Section (Flex Layout) */
    .noria-features {
        padding: 60px 0;
    }

    .feature-list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .feature-item {
        background-color: var(--card-bg);
        padding: 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        flex: 1 1 200px; /* Base width for items */
        text-align: center;
        transition: transform 0.3s;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .feature-item h3 {
        color: var(--primary-color);
        font-size: 1.25rem;
        margin-top: 15px;
    }
    .feature-item img{
        max-height: 220px;
    }

    /* Icon Placeholder for Features (Circle) */
    /* .feature-item h3::before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
        background-color: var(--primary-color);
        border-radius: 50%;
        opacity: 0.7;
    } */

    /* 6. Modules Section (Grid Layout) */
    .noria-modules-overview {
        background-color: var(--light-bg);
        padding: 60px 0;
    }

    .modules-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .module-card {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: var(--border-radius);
        border-left: 5px solid var(--primary-color);
        box-shadow: var(--shadow);
        transition: background-color 0.3s;
    }

    .module-card:hover {
        background-color: #e6f2ff; /* Light blue hover */
    }

    .module-card h3 {
        color: var(--secondary-color);
        font-size: 1.15rem;
        display: flex;
        align-items: center;
    }

    /* Icon Placeholder for Modules (Square) */
   /* .module-card h3::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        background-color: var(--primary-color);
        border-radius: 4px;
    }*/

    .module-card p {
        font-size: 0.95rem;
        color: #666;
    }

    /* 7. Partner Section */
    .why-tawatur {
        padding: 60px 0;
        text-align: center;
    }

    .why-tawatur p {
        max-width: 800px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
        color: var(--secondary-color);
    }

    .partners-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .feature-card {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: var(--border-radius);
        flex: 1 1 250px;
        max-width: 300px;
        box-shadow: var(--shadow);
        border-top: 5px solid var(--secondary-color);
    }

    .feature-card h3 {
        color: var(--secondary-color);
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    /* Icon Placeholder for Partner Features (Circle) */
    .feature-card h3::before {
        content: '';
        display: block;
        width: 30px;
        height: 30px;
        margin: 0 auto 10px;
        background-color: var(--primary-color);
        border-radius: 50%;
    }


    /* 8. Responsiveness */
    @media (max-width: 992px) {
        .hero-row {
            flex-direction: column;
        }

        .hero-image {
            min-height: 250px;
        }

        .noria-hero h1 {
            font-size: 2rem;
        }

        .feature-item {
            flex: 1 1 45%;
        }
    }

    @media (max-width: 600px) {
        .feature-item, .feature-card {
            flex: 1 1 100%;
        }

        .noria-container {
            padding: 20px 0;
        }
    }
 /* ZKBIOTIME SECTION CSS (UPDATED)  */
    /* 1. CSS Variables (Inherited from previous styles, but redefined for clarity) */
    :root {
        --primary-color: #007BFF; /* Primary Tawatur Blue */
        --secondary-color: #343A40; /* Dark text/accents */
        --zk-color: #00A65A; /* ZKTeco Green */
        --light-bg: #F8F9FA;
        --card-bg: #fff;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --border-radius: 8px;
        --carousel-speed: 25s; /* Speed of the logo loop */
    }

    /* 2. Layout and Containers */
    .zkbiotime-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .zkbiotime-section {
        padding: 60px 0;
    }

    .zkbiotime-section h2 {
        color: var(--zk-color);
        border-bottom: 3px solid var(--light-bg);
    }

    /* 3. Hero/Overview Row */
    .zk-hero-row {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
        padding: 30px;
        background-color: var(--card-bg);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }

    .zk-col {
        flex: 1;
    }

    .zk-hero-text h3 {
        color: var(--secondary-color);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* .zk-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    } */
    .zk-hero-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        /* --- FIX APPLIED HERE --- */
        color: var(--text-color, #333);
        /* Fallback color added in case var(--text-color) isn't defined */
    }

    .zk-image-placeholder {
        /* Image placeholder styling */
        min-height: 280px;
        /* background-color: var(--zk-color); */
        border-radius: var(--border-radius);
        position: relative;
        overflow: hidden;
        /* box-shadow: var(--shadow); */
        /* border: 4px solid var(--zk-color); */
    }

    .zk-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* opacity: 0.7; */
    }

    .zk-image-placeholder::before {
        /* content: 'ZKBioTime Software Interface'; */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
        z-index: 2;
    }

    /* 4. Features Grid */
    .zk-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding-top: 20px;
    }

    .zk-feature-card {
        background-color: var(--light-bg);
        padding: 25px;
        border-radius: var(--border-radius);
        border-top: 4px solid var(--zk-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }

    .zk-feature-card:hover {
        transform: translateY(-3px);
    }

    .zk-feature-card h4 {
        color: var(--zk-color);
        font-size: 1.15rem;
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .zk-feature-card p {
        font-size: 0.95rem;
        color: var(--text-color);
    }

    /* Icon Placeholder for ZK Features (Square) */
    .zk-feature-card h4::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        background-color: var(--zk-color);
        border-radius: 4px;
    }

    /* 5. Clients Carousel Styling */
    .clients-carousel {
        padding: 40px 0;
        background-color: var(--light-bg);
        overflow: hidden; /* Hide the duplicated logos outside the view */
        white-space: nowrap; /* Prevent items from wrapping */
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        margin-top: 40px;
    }

    .carousel-track {
        display: flex;
        width: 200%; /* Double the width to hold the duplicates */
        animation: scroll var(--carousel-speed) linear infinite;
    }

    .carousel-logo {
        flex: 0 0 auto; /* Prevent stretching/shrinking */
        width: 20%; /* 5 logos fit in the original 100% width */
        max-width: 240px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.6;
        transition: opacity 0.3s;
    }

    .carousel-logo:hover {
        opacity: 1;
    }

    .carousel-logo img {
        width: 100%;
        max-height: 80px; /* Standardize logo height */
        filter: grayscale(100%);
        transition: filter 0.3s;
    }

    .carousel-logo:hover img {
        filter: grayscale(0%);
    }

    /* Keyframes for the continuous scrolling effect */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); } /* Scrolls one full set of logos */
    }

    /* 6. Responsiveness */
    @media (max-width: 992px) {
        .zk-hero-row {
            flex-direction: column-reverse;
        }

        .zk-image-placeholder {
            min-height: 250px;
        }

        .carousel-logo {
            width: 33.33%; /* Show 3 logos at a time on smaller screens */
        }
    }

    @media (max-width: 600px) {
        .zk-features-grid {
            grid-template-columns: 1fr;
        }

        .carousel-logo {
            width: 50%; /* Show 2 logos at a time on very small screens */
            padding: 0 10px;
        }
    }

    /* SAP SECTION CSS */

    /* SAP Specific Variables (Building on previous styles) */
    :root {
        --sap-color: #0080FF; /* SAP Blue */
        --light-bg: #F8F9FA;
        --card-bg: #fff;
        --secondary-color: #343A40;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --border-radius: 8px;
        --text-color: #333;
    }

    /* SAP Section Layout */
    .sap-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .sap-section {
        padding: 30px 0;
        background-color: #c1d1f3; /* White background for contrast */
    }

    .sap-section h2 {
        color: var(--sap-color);
        border-bottom: 3px solid var(--light-bg);
    }

    .sap-hero-row {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .sap-col {
        flex: 1;
    }

    .sap-hero-text h3 {
        color: var(--secondary-color);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .sap-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--text-color, #333);
    }

    /* SAP Overview Cards */
    .sap-solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .sap-card {
        background-color: var(--light-bg);
        padding: 30px;
        border-radius: var(--border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-top: 5px solid var(--sap-color);
        transition: transform 0.3s;
    }

    .sap-card p{
        color: #000
    }

    .sap-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .sap-card h4 {
        color: var(--sap-color);
        font-size: 1.3rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Icon Placeholder for SAP Cards (Diamond shape placeholder) */
    .sap-card h4::before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 25px;
        background-color: var(--sap-color);
        transform: rotate(45deg); /* Diamond */
        margin-right: 5px;
    }

    /* Image Placeholder for Hero */
    .sap-image-placeholder {
        min-height: 350px;
        /* background-color: var(--sap-color); */
        border-radius: var(--border-radius);
        position: relative;
        overflow: hidden;
        /* box-shadow: var(--shadow); */
        /* border: 4px solid var(--sap-color); */
    }

    .sap-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
          border-radius: var(--border-radius);
        /* opacity: 0.7; */
    }

    .sap-image-placeholder::before {
        /* content: 'SAP Business One / S/4HANA Interface'; */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
        z-index: 2;
    }

    /* Responsiveness */
    @media (max-width: 992px) {
        .sap-hero-row {
            flex-direction: column;
        }
    }


    /* ZATCA Specific Variables (Building on previous styles) */
    :root {
        --zatca-color: #F7941E; /* Orange/Gold color for ZATCA */
        --light-bg: #F8F9FA;
        --card-bg: #fff;
        --secondary-color: #343A40;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --border-radius: 8px;
        --text-color: #333;
    }

    /* ZATCA Section Layout */
    .zatca-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .zatca-section {
        padding: 60px 0;
        background-color: var(--light-bg); /* Light background */
    }

    .zatca-section h2 {
        color: var(--zatca-color);
        border-bottom: 3px solid var(--card-bg);
    }

    .zatca-content-row {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 40px;
    }

    .zatca-col {
        flex: 1;
    }

    .zatca-text h3 {
        color: var(--secondary-color);
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .zatca-text p {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--text-color, #333);
    }

    .compliance-points {
        list-style: none;
        padding-left: 0;
    }

    .compliance-points li {
        font-size: 1rem;
        margin-bottom: 10px;
        padding-left: 30px;
        position: relative;
        color: var(--text-color);
    }

    /* Icon Placeholder for List Items (Checkmark) */
    .compliance-points li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--zatca-color);
        font-weight: bold;
    }

    /* Image Placeholder/Diagram for Hero */
    .zatca-image-placeholder {
        min-height: 350px;
        background-color: var(--zatca-color);
        border-radius: var(--border-radius);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .zatca-image-placeholder::before {
        /* content: 'ZATCA E-Invoicing Diagram/Process'; */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
        z-index: 2;
    }

    .zatca-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius);
    }

    /* ERP Integration Logos & Client Logos (Reused styles) */
    .integration-logos, .client-logos {
        text-align: center;
        margin-top: 40px;
    }

    .integration-logos h3, .client-logos h3 {
        color: var(--secondary-color);
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .logo-row {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .logo-item {
        width: 150px;
        height: 80px;
        background-color: var(--card-bg);
        border: 1px solid #ddd;
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .logo-item:hover {
        opacity: 1;
    }

    .logo-item::before {
        content: attr(data-logo); /* Display text for placeholder */
        font-size: 0.9rem;
        font-weight: bold;
        color: var(--secondary-color);
    }
    .logo-item-client{
       height: 90px;
       width: 130px;
       display: flex;
       justify-content: center;
    }
    .logo-item-client img{
        max-width: 130px;
    }

    /* Responsiveness */
    @media (max-width: 992px) {
        .zatca-content-row {
            flex-direction: column;
        }
    }

/* Contact Section */
    :root{
      --bg:#f8fafb;
      --card:#ffffff;
      --muted:#6b7280;
      --accent:#0ea5a4;
      --accent-600:#08978f;
      --error:#dc2626;
      --radius:12px;
      --shadow: 0 6px 18px rgba(23,23,23,0.06);
      --max-width:1100px;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }

    .contact-section{
      background: linear-gradient(180deg, var(--bg), #ffffff 60%);
      padding:48px 20px;
      display:flex;
      justify-content:center;
    }

    .contact-inner{
      width:100%;
      max-width:var(--max-width);
    }

    .contact-intro{
      text-align:center;
      margin-bottom:28px;
    }
    .contact-intro h2{font-size:1.9rem;margin:0 0 8px}
    .contact-intro p{color:var(--muted);margin:0;line-height:1.6}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:24px;
      align-items:start;
    }

    /* Responsive: stack on small screens */
    @media (max-width:880px){
      .contact-grid{grid-template-columns:1fr;}
    }

    .contact-form{
      background:var(--card);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .form-row{display:flex;flex-direction:column;gap:6px}
    .form-row label{font-size:0.95rem;color:var(--muted)}
    .form-row input,
    .form-row textarea{
      font:inherit;
      padding:10px 12px;
      border-radius:8px;
      border:1px solid #e6e9ee;
      outline:none;
      transition:box-shadow .15s, border-color .15s;
    }
    .form-row input:focus,.form-row textarea:focus{
      box-shadow:0 6px 18px rgba(14,165,164,0.08);
      border-color:var(--accent-600);
    }

    .form-actions{display:flex;justify-content:flex-end}
    .form-actions button{
      background:#0066c2;
      color:white;
      border:none;
      padding:10px 16px;
      border-radius:10px;
      cursor:pointer;
      font-weight:600;
      box-shadow:0 8px 20px rgba(14,165,164,0.12);
    }
    .form-actions button:hover{background:var(--accent-600)}

    .field-error{color:var(--error);font-size:0.875rem;margin-top:6px;display:block}
    .form-success{color:var(--accent-600);margin-top:8px}

    .contact-details{
      background:linear-gradient(180deg,#ffffff, #fbfdff);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:var(--shadow);
      border:1px solid #edf2f7;
    }

    .contact-details h3{margin:0 0 12px}
    .detail-item{display:flex;gap:12px;padding:10px 0;border-bottom:1px dashed #eff3f6}
    .detail-item:last-of-type{border-bottom:0}
    .detail-icon{
      width:44px;height:44px;border-radius:10px;flex:0 0 44px;
      display:flex;align-items:center;justify-content:center;position:relative
    }

    /* Simple CSS icons (no images) */
    .detail-icon.phone::before{content:'';width:14px;height:14px;border-radius:3px;border:2px solid #0066c2;display:block;transform:rotate(-25deg)}
    .detail-icon.email::before{content:'';width:20px;height:12px;border:2px solid #0066c2;display:block;clip-path:polygon(0 0,100% 0,100% 100%,0 100%);position:relative}
    .detail-icon.location::before{content:'';width:12px;height:12px;border-radius:50% 50% 50% 50%/60% 60% 40% 40%;border:2px solid #0066c2;display:block}

    .detail-body strong{display:block}
    .detail-body p{margin:4px 0 0;color:var(--muted);font-size:0.95rem;line-height:1.4}

    .hours{margin-top:12px;padding-top:12px;border-top:1px dashed #eef3f6}
    .hours h4{margin:0 0 6px}

    /* small niceties */
    .contact-form input[required],.contact-form textarea[required]{box-shadow:none}



