:root {
       --primary-black: #000000;
       --light-grey: #f8f9fa;
       --dark-grey: #e9ecef;
       --hover-black: #000;
       --accent-color: #00b3c7;
   }

   * {
         font-family: Constantia, "Times New Roman", Georgia, serif;
       font-size: 15px;
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       overflow-x: hidden;
       line-height: 1.5;
   }

   /* Header Sticky Styles */
   .header-left,
   .header-right {
       transition: all 0.3s ease;
   }

   .sticky-header {
       position: fixed !important;
       top: 0;
       width: 50%;
       height: 60px !important;
       background-color: var(--primary-black) !important;
       z-index: 1000;
       animation: slideDown 0.3s ease;
   }

   .sticky-header .navbar-brand {
       color: white !important;
   }

   .sticky-header .nav-link {
       color: white !important;
   }

   .sticky-header .nav-link:hover {
       color: var(--accent-color) !important;
   }

   .sticky-social {
       position: fixed !important;
       top: 0;
       right: 0;
       width: 50%;
       height: 60px !important;
       background-color: var(--primary-black) !important;
       z-index: 1000;
       animation: slideDown 0.3s ease;
   }

   .sticky-social .social-links a {
       background-color: white !important;
       color: var(--primary-black) !important;
       border-radius: 50%;
       padding: 6px;
       transition: all 0.3s ease;
   }

   .sticky-social .social-links a:hover {
       background-color: var(--accent-color) !important;
       color: white !important;
   }

   .sticky-social .contact-btn {
       white-space: nowrap;
       padding: 6px 15px !important;
   }

   @keyframes slideDown {
       from {
           transform: translateY(-100%);
       }

       to {
           transform: translateY(0);
       }
   }

   /* Main Container for 50/50 Split */
   .split-container {
       display: flex;
       min-height: 100vh;
       position: relative;
   }

   /* Left Side - Light Grey Background */
   .left-side {
       flex: 0 0 50%;
       background-color: var(--light-grey);
       display: flex;
       flex-direction: column;
       position: relative;
       z-index: 1;
   }

   /* Right Side - Carousel */
   .right-side {
       flex: 0 0 50%;
       position: relative;
   }

   /* Header Sections */
   .header-left,
   .header-right {
       position: absolute;
       top: 0;
       height: 70px;
       display: flex;
       align-items: center;
       padding: 0 40px;
       z-index: 10;
   }

   .header-left {
       left: 0;
       right: 50%;
       justify-content: flex-start;
       background-color: var(--light-grey);
   }

   .header-right {
       left: 50%;
       right: 0;
       justify-content: flex-end;
       background-color: transparent;
   }

   .navbar-brand {
       font-weight: 700;
       font-size: 1.4rem;
       color: var(--primary-black);
       margin-right: 40px;
   }

   .navbar-brand span {
       color: var(--accent-color);
   }

   .nav-link {
       font-weight: 500;
       color: var(--primary-black);
       margin: 0 8px;
       transition: color 0.3s;
       font-size: 15px;
   }

   .nav-link:hover {
       color: var(--accent-color) !important;
   }

   /* Social Links Styles */
   .social-links a {
       color: white;
       font-size: 1rem;
       margin-left: 12px;
       transition: all 0.3s;
       background-color: #000;
       padding: 6px;
       border-radius: 50%;
       width: 36px;
       height: 36px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       text-decoration: none;
   }

   .social-links a:hover {
       background-color: var(--accent-color);
       color: white;
       transform: scale(1.1);
   }

   /* Contact Button - Fixed for all screens */
   .contact-btn {
       background-color: var(--primary-black);
       color: white;
       padding: 6px 18px;
       font-weight: 600;
       text-decoration: none;
       transition: all 0.3s;
       border: 2px solid var(--primary-black);
       font-size: 14px;
       margin-left: 20px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       white-space: nowrap;
   }

   .contact-btn:hover {
       background-color: #00b3c7;
       color: var(--primary-black);
   }

   /* Hero Content on Left Side */
   .hero-content {
       flex: 1;
       display: flex;
       flex-direction: column;
       justify-content: center;
       padding: 40px;
       padding-top: 100px;
       max-width: 600px;
       margin: 0 auto;
   }

   .hero-content h1 {
       font-weight: 700;
       font-size: 1.9rem;
       line-height: 1.4;
       margin-bottom: 1.2rem;
       color: var(--primary-black);
   }

   .hero-content p {
       font-size: 1rem;
       color: #555;
       margin-bottom: 1.5rem;
       max-width: 90%;
   }

   .highlight-text {
       color: var(--accent-color);
       font-weight: 900;
       font-size: 2.1rem;
   }

   .outline-black-btn {
       background-color: transparent;
       color: var(--primary-black);
       border: 2px solid var(--primary-black);
       font-weight: 600;
       padding: 8px 22px;
       transition: all 0.3s;
       text-decoration: none;
       display: inline-block;
       font-size: 14px;
   }

   .outline-black-btn:hover {
       background-color: var(--hover-black);
       color: white;
       border-color: var(--hover-black);
   }

   .btn-dark {
       background-color: var(--primary-black);
       color: white;
       border: 2px solid var(--primary-black);
       font-weight: 600;
       padding: 8px 22px;
       transition: all 0.3s;
       text-decoration: none;
       display: inline-block;
       font-size: 14px;
       border-radius: 0%;
   }

   /* Carousel Styles */
   .carousel-container {
       height: 100%;
       overflow: hidden;
   }

   .carousel-item {
       height: 100%;
   }

   .carousel-item img {
       object-fit: cover;
       height: 100%;
       width: 100%;
   }

   /* Mobile Styles */
   .mobile-hero-container {
       display: none;
   }

   .mobile-header {
       display: none;
   }

   /* ============ MOBILE BREAKPOINT ============ */
   @media (max-width: 991.98px) {

       /* Hide desktop split layout */
       .split-container {
           display: none;
       }

       /* Show mobile layout */
       .mobile-hero-container {
           display: block;
           position: relative;
           height: 80vh;
           min-height: 600px;
       }

       /* ============ FIX 1: MOBILE HEADER WITH NORMAL NAVBAR ============ */
       .mobile-header {
           display: block;
           position: fixed;
           top: 0;
           left: 0;
           right: 0;
           z-index: 1030;
           background-color: transparent;
           padding: 0px 9px;
           transition: all 0.3s ease;
       }

       .mobile-header.sticky {
           background-color: var(--primary-black) !important;
           box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       }

       /* Logo styling */
       .mobile-header .navbar-brand img {
           height: 55px;
           width: auto;
           transition: all 0.3s ease;
       }


       /* ============ FIX 2: TOGGLE BUTTON - ALWAYS WHITE ============ */
       .mobile-header .navbar-toggler {
           border: 2px solid white !important;
           padding: 5px 10px;
           border-radius: 4px;
           width: 44px;
           height: 44px;
           display: flex;
           align-items: center;
           justify-content: center;
           background: transparent;
       }

       /* White border always - no matter if sticky or not */
       .mobile-header .navbar-toggler {
           border-color: white !important;
       }

       .mobile-header .navbar-toggler:focus {
           box-shadow: none;
           outline: none;
       }

       /* White icon always */
       .mobile-header .navbar-toggler-icon {
           background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
           width: 24px;
           height: 24px;
       }

       /* X icon when expanded */
       .mobile-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
           background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 4 L26 26 M4 26 L26 4'/%3e%3c/svg%3e") !important;
       }


       .mobile-header .navbar-collapse {
           position: absolute !important;
           top: 100%;
           left: 0;
           right: 0;
           background-color: var(--primary-black) !important;
           padding: 20px;
           border-radius: 0 0 8px 8px;
           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
           max-height: calc(100vh - 80px);
           overflow-y: auto;
       }

       /* Navigation Links */
       .mobile-header .navbar-nav {
           flex-direction: column;
           text-align: center;
       }

       .mobile-header .nav-item {
           margin: 8px 0;
       }

       .mobile-header .nav-link {
           color: white !important;
           font-size: 1.1rem;
           padding: 12px 20px;
           border-radius: 5px;
           transition: all 0.3s ease;
       }

       .mobile-header .nav-link:hover,
       .mobile-header .nav-link.active {
           color: white !important;
           background-color: var(--accent-color);
       }

       /* Social Links */
       .mobile-header .social-links {
           display: flex;
           justify-content: center;
           gap: 15px;
           margin: 20px 0;
           flex-wrap: wrap;
       }

       .mobile-header .social-links a {
           background-color: white !important;
           color: var(--primary-black) !important;
           width: 45px;
           height: 45px;
           margin: 0;
       }

       .mobile-header .social-links a:hover {
           background-color: var(--accent-color) !important;
           color: white !important;
       }

       /* Contact Button */
       .mobile-header .contact-btn {
           background-color: white !important;
           color: var(--primary-black) !important;
           padding: 12px 25px;
           border: 2px solid white;
           border-radius: 5px;
           margin: 10px auto;
           display: block;
           width: fit-content;
           text-align: center;
       }

       .mobile-header .contact-btn:hover {
           background-color: var(--accent-color) !important;
           color: white !important;
           border-color: var(--accent-color);
       }

 .mobile-carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        height: 100%;
    }

    .mobile-carousel-container .carousel-item {
        height: 100%;
    }

    .mobile-carousel-container .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .mobile-carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 2;
    }

    /* Hero content positioned above carousel */
    .mobile-hero-content {
        position: relative;
        z-index: 3;
        /* padding: 20px; */
        color: white;
        text-align: center;
        /* padding-top: 100px; */
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-hero-content h1 {
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }

    .mobile-hero-content p {
        font-size: 1rem;
        color: #f0f0f0;
        margin-bottom: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.5;
    }

    .mobile-hero-content .highlight-text {
        color: var(--accent-color);
        font-weight: 900;
        font-size: 2rem;
    }

    .mobile-hero-content .outline-black-btn {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        padding: 10px 25px;
        font-size: 1rem;
    }

    .mobile-hero-content .outline-black-btn:hover {
        background-color: white;
        color: var(--primary-black);
    }

    .mobile-hero-content .btn-dark {
        background-color: var(--primary-black);
        color: white;
        border: 2px solid var(--primary-black);
        padding: 10px 25px;
        font-size: 1rem;
    }

    .mobile-hero-content .btn-dark:hover {
        background-color: white;
        color: var(--primary-black);
        border-color: white;
    }

    .mobile-hero-content .d-flex {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }



       /* Hide desktop header on mobile */
       .header-left,
       .header-right {
           display: none !important;
       }
   }

   /* Tablet adjustments */
   @media (min-width: 768px) and (max-width: 991.98px) {
       .mobile-header .navbar-brand img {
           height: 70px;
       }

       .mobile-hero-content h1 {
           font-size: 2.2rem;
       }

       .mobile-hero-content p {
           font-size: 1.1rem;
       }
   }

   /* Mobile adjustments */
   @media (max-width: 767.98px) {
       .mobile-hero-content h1 {
           font-size: 1.6rem;
       }

       .mobile-hero-content p {
           font-size: 0.95rem;
       }

       .mobile-hero-content .d-flex {
           flex-direction: column;
           align-items: center;
       }

       .mobile-hero-content .outline-black-btn,
       .mobile-hero-content .btn-dark {
           width: 200px;
           text-align: center;
       }
   }

   /* Extra small devices */
   @media (max-width: 575.98px) {
       .mobile-hero-content h1 {
           font-size: 1.4rem;
       }

       .mobile-hero-content .highlight-text {
           font-size: 2rem;
       }

       .mobile-hero-content p {
           font-size: 0.9rem;
       }
   }

   /* Performance optimizations */
   /* .carousel-item img {
        loading: lazy;
    }

    .mobile-carousel-container .carousel-item img {
        loading: lazy;
    } */

   /* Why Choose Us Section - FIXED TEXT COLOR */
.why-choose-section {
    padding: 40px 0;
    position: relative;
    margin-top: -1px;
    padding: 2rem 0;
  background-color: white !important;
    color: var(--primary-black) !important;
}

.why-choose-section * {
    color: var(--primary-black) !important;
}

.why-choose-section .rowd {
    border: #00b3c7 2px solid;
    padding: 20px;
    background-color: white;
}

/* Merge hero section with next section */
.left-side::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, var(--light-grey) 0%, white 100%);
    z-index: 2;
}

.section-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-black) !important;
    text-align: center;
text-decoration: underline 4px var(--hover-black);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    color: var(--primary-black) !important;
    padding: 12px 0;
    font-size: 15px;
    position: relative;
    padding-left: 35px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.stat-box {
    border: 2px solid var(--primary-black);
    padding: 25px 18px;
    text-align: center;
    /*transition: all 0.3s;*/
    transform: translateY(30px);
    background-color: #dcf3fa;
    color: var(--primary-black) !important;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
}

.stat-box:hover {
    background-color: var(--primary-black);
    color: white !important;
    transform: translateY(-5px);
}

.stat-box:hover .stat-number,
.stat-box:hover .stat-label {
    color: white !important;
}

/* contact-section */
.contact-info {
    background-color: #dcf3fa;
    padding: 20px;
    border-radius: 8px;
    justify-content: center;
    text-align: center;
    color: var(--primary-black);
}

.btn.clamp {
    transition: color 0.3s ease;
}

.btn.btn-sm.clamp {
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    margin-right: 15px;
}

.btn.clamp {
    background-color: #000;
    color: white;
    border: 1px solid #000;
}

.btn.clamp:hover {
    background-color: rgb(240, 238, 238);
    color: black;
    border-color: black;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
    .stat-number {
        font-size: 1.7rem;
    }

    .stats-grid {
        margin-top: 30px;
    }

    .benefits-list li {
        font-size: 14px;
        padding-left: 30px;
    }
}

@media (max-width: 575.98px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    .outline-black-btn {
        padding: 6px 18px;
        font-size: 13px;
    }

    .phone-number {
        font-size: 1.1rem;
    }

  
}

@media (max-width: 400px) {
    .benefits-list li {
        font-size: 13px;
    }
    
}

.cleanpro-services-wrapper {
    padding: 4rem 0;
    background: #fff;

}

.cleanpro-services-header {
    margin-bottom: 3rem;
}

.cleanpro-services-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    text-decoration: underline 4px #000;
}

.cleanpro-services-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.cleanpro-services-wrapper .row {
    display: flex;
    flex-wrap: wrap;
}

.cleanpro-services-wrapper .col-md-6,
.cleanpro-services-wrapper .col-lg-4 {
    display: flex;          
}

.cleanpro-service-card {
    position: relative;
    width: 100%;
    height: 250px;               
    background: #000;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cleanpro-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}


.cleanpro-service-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.cleanpro-service-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.35)
    );
}


.cleanpro-service-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 80px;
}


.cleanpro-service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cleanpro-service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 4;   /* content discipline */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.cleanpro-service-button-group {
    margin-top: auto;      
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cleanpro-service-cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 0;
}

.cleanpro-service-cta:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cleanpro-service-btn-quote {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    background: #fff;
    color: #222;
    border: 0;
    text-decoration: none;
    border-radius: 0;
}

.cleanpro-service-btn-quote:hover {
    background: rgba(100, 201, 223, 0.85);
    color: #000;
}

@media (max-width: 768px) {
    .cleanpro-services-main-title {
        font-size: 2rem;
    }

    .cleanpro-service-content {
        padding: 1.5rem;
    }

    .cleanpro-service-description {
        -webkit-line-clamp: 3;
    }
}

/* Add to the bottom of your CSS file */
.split-container, .mobile-hero-container {
    overflow: hidden !important;
    position: relative;
    z-index: 100;
}

.health-testimonial-section {
    position: relative;
    z-index: 1;
    margin-top: -1px; /* Remove any gap */
    background: linear-gradient(180deg, #e6fbff 0%, #ffffff 100%);
    border-top: 1px solid transparent; /* Prevents background bleeding */
}

/* Headings */
.health-title {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.health-subtitle {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Scroll Wrapper */
.health-scroll-wrapper {
    overflow: hidden;
    margin-top: 2rem;
}

.health-scroll-track {
    display: flex;
    align-items: flex-end;
    /* or center */
    gap: 1.25rem;
    animation: scrollLoop 45s linear infinite;
    width: max-content;
    margin-bottom: 2rem;
    /* space from bottom */
}


.health-scroll-track:hover {
    animation-play-state: paused;
}

/* Testimonial Card */
.health-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(14, 165, 167, 0.12);
    padding: 1.5rem;
    flex: 0 0 85%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.health-card:hover {
    transform: translateY(-5px);
}

/* Avatar + Doctor Meta */
.avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
}

.health-card h3 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.health-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    justify-content: center;
}

.doctor-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.review-meta strong {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.review-meta small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Infinite Scroll Animation */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Fade edges */
.health-testimonial-section::before,
.health-testimonial-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.health-testimonial-section::before {
    left: 0;
    background: linear-gradient(to right, #e6fffa, transparent);
}

.health-testimonial-section::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* Responsive Scaling */
@media (min-width: 576px) {
    .health-card {
        flex: 0 0 70%;
    }
}

@media (min-width: 768px) {
    .health-card {
        flex: 0 0 45%;
    }
}

@media (min-width: 992px) {
    .health-card {
        flex: 0 0 30%;
    }
}

@media (min-width: 1200px) {
    .health-card {
        flex: 0 0 25%;
    }
}

    .cleanprofaq-container {
            padding: 20px 20px;
            min-height: 80vh;
            /* background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* FAQ Grid Layout */
        .cleanprofaq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (min-width: 992px) {
            .cleanprofaq-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }
        
        /* FAQ Column */
        .cleanprofaq-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* FAQ Item */
        .cleanprofaq-item {
            /* background-color: rgba(255, 255, 255, 0.9); */
            /* border-radius: 12px; */
            overflow: hidden;
            /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
            transition: all 0.3s ease;
            /* 
            backdrop-filter: blur(10px); */
            border: 1px solid rgba(33, 37, 41, 0.1);
                color: #000;
     background-color: #bdcfd369;
    backdrop-filter: blur(10px);
    /* box-shadow: 0 5px 20px #cadbdf; */
        }
        
        .cleanprofaq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: rgba(0, 179, 199, 0.3);
        }
        
        .cleanprofaq-question {
            width: 100%;
            padding: 15px;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--primary-black, #212529);
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cleanprofaq-question:hover {
            color: var(--hover-black, #000);
        }
        
        .cleanprofaq-question.active {
            color: var(--hover-black, #000);
            background-color: rgba(248, 249, 250, 0.7);
        }
        
        .cleanprofaq-icon {
            font-size: 1.4rem;
            color: white;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex-shrink: 0;
            margin-left: 15px;
            font-weight: 300;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent-color, #00b3c7);
            border-radius: 50%;
            box-shadow: 0 3px 8px rgba(0, 179, 199, 0.3);
        }
        
        .cleanprofaq-question.active .cleanprofaq-icon {
            transform: rotate(45deg);
            background-color: var(--primary-black, #212529);
        }
        
        .cleanprofaq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0;
        }
        
        .cleanprofaq-answer.open {
            max-height: 800px;
        }
        
        .cleanprofaq-content {
            padding: 0 25px 25px;
            font-size: 1.05rem;
            color: var(--primary-black, #212529);
            line-height: 1.7;
        }
        
        /* Badge */
        .cleanprofaq-badge {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            background: var(--accent-color, #00b3c7);
            padding: 4px 12px;
            border-radius: 20px;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        /* Highlight */
        .cleanprofaq-highlight {
            color: var(--accent-color, #00b3c7);
            font-weight: 600;
        }
        
        /* Header */
        .cleanprofaq-header {
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cleanprofaq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-black, #212529);
            margin-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px 40px;
            border-radius: 12px;
            display: inline-block;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* .cleanprofaq-subtitle {
            font-size: 1.2rem;
            color: var(--primary-black, #212529);
            font-weight: 400;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 15px 15px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
         */
         .cleanprofaq-subtitle{
                font-size: 1.5rem;
   
    font-weight: 400;
   
    padding: 15px 15px;
    border-radius: 12px;
     color: #000;
     background-color: #bdcfd369;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px #cadbdf;
         }
        /* Responsive */
        @media (max-width: 768px) {
            .cleanprofaq-container {
                padding: 40px 15px;
            }
            
            .cleanprofaq-title {
                font-size: 2rem;
                padding: 15px 30px;
            }
            
            .cleanprofaq-question {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .cleanprofaq-icon {
                font-size: 1.2rem;
                width: 28px;
                height: 28px;
            }
            
            .cleanprofaq-content {
                padding: 0 20px 20px;
                font-size: 1rem;
            }
            
            .cleanprofaq-subtitle {
                font-size: 1.1rem;
                padding: 12px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .cleanprofaq-title {
                font-size: 1.8rem;
            }
            
            .cleanprofaq-question {
                padding: 18px;
                font-size: 1rem;
            }
        }
        
        /* Animation */
        @keyframes cleanprofaq-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .cleanprofaq-item {
            animation: cleanprofaq-fadeIn 0.5s ease forwards;
        }

        

.minimal-gallery {
    padding: 4rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.gallery-grid-minimal {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr; /* Mobile default */
}


@media (min-width: 768px) {
    .gallery-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid-minimal {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item-minimal {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3; 
}


.gallery-item-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


.gallery-item-minimal:hover img {
    transform: scale(1.08);
}

   