/* HOME PAGE STYLE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
}

   :root {
            /* Your Brand Colors */
            --primary-blue: #4285F4;
            --primary-green: #28A745;
            --neutral-gray: #8B8B8B;
            --dark-gray: #2C2C2C;
            --light-gray: #F8F9FA;
            --white: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
            --another-blue: #4484f4;
            --background: #fcfcfc;

                        /* Additional shades for better design */
            --blue-hover: #3367D6;
            --green-accent: #20C997;
            --section-padding: clamp(2rem, 5vw, 4rem);

        }

        html {
    overflow-x: hidden;
}

body {
   
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

 body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

.main-content,
.hero-section {
    overflow-x: hidden;
    max-width: 100%;
}

.logo-text {
     font-family: 'Rutan DemiBold', sans-serif;
     font-size: 22px;
     font-weight: bold;
     text-align: left;
     line-height: 1.1;
     }  

     .hero-section {
  position: relative;
 min-height: auto;
  padding: 60px 20px; /* Top 40px, no bottom padding */
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  color: black;
  margin-bottom: 0; /* Ensure no bottom margin */

 margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Frosted Glass Navbar */
.navbar {
 position: fixed;
 top: 20px;
 left: 20px;
 right: 20px;
 z-index: 900;
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 1rem 2rem;
 background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
 backdrop-filter: blur(10px); /* frosted glass effect */
 -webkit-backdrop-filter: blur(10px); /* Safari support */
 border-radius: 16px;
 color: white;
 transition: all 0.3s ease;
 transform: translateY(0);
}

   
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.navbar.hidden {
    transform: translateY(-120%);
    opacity: 0;
}

/* Logo section - matches ui-relative ui-w-24 ui-z-200 */
.logo-section {
    position: relative;
    width: 96px; /* ui-w-24 = 6rem = 96px */
    z-index: 200;
}

.logo-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.logo-section li {
    list-style: none;
    height: 100%;
}

/* Logo link - matches ui-py-3 ui-block ui-w-16 lg:ui-w-20 */
.logo-link {
    padding: 12px 0; /* ui-py-3 = 0.75rem = 12px */
    display: block;
    width: 64px; /* ui-w-16 = 4rem = 64px */
    color: white;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .logo-link {
        width: 80px; /* lg:ui-w-20 = 5rem = 80px */
    }
}

.logo-svg {
    width: 100%;
    height: auto;
    fill: currentColor;
}

/* Center navigation section - matches ui-flex-1 ui-flex ui-items-center ui-justify-end ui-mx-2 ui-transition lg:ui-gap-12 sm:ui-mx-4 lg:ui-justify-center */
.nav-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 8px; /* ui-mx-2 = 0.5rem = 8px */
    transition: all 0.15s ease-in-out;
    gap: 2rem;
}

@media (min-width: 640px) {
    .nav-center {
        margin: 0 16px; /* sm:ui-mx-4 = 1rem = 16px */
    }
}

@media (min-width: 1024px) {
    .nav-center {
        gap: 48px; /* lg:ui-gap-12 = 3rem = 48px */
        justify-content: center; /* lg:ui-justify-center */
    }
}

/* Navigation links - matches ui-hidden lg:ui-flex lg:ui-gap-12 */
.nav-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 48px; /* lg:ui-gap-12 = 3rem = 48px */
    }
}

.nav-links li {
    list-style: none;
    height: 100%;
}

/* Navigation link styling - matches ui-py-3 ui-text-stroke-color-transparent ui-text-stroke-width-0.5 ui-transition-all hover:ui-text-stroke-color-current */
.nav-links a {
    padding: 12px 0; /* ui-py-3 = 0.75rem = 12px */
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.15s ease-in-out;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: transparent;
}

.nav-links a:hover {
    -webkit-text-stroke-color: currentColor;
}

.nav-links a.font-bold {
    font-weight: 700;
    cursor: default;
}

/* Shop button - matches ui-rounded-full ui-text-center ui-inline-block ui-transition ui-bg-blue-100 ui-text-sandstone-200 hover:ui-bg-blue-200 ui-py-2 ui-px-4 lg:ui-py-3 lg:ui-px-6 */
.shop-btn-container {
    text-decoration: none;
    border-radius: 9999px; /* ui-rounded-full */
    text-align: center;
    display: inline-block;
    transition: all 0.15s ease-in-out;
    background-color: #3b82f6; /* ui-bg-blue-100 equivalent */
    color: #F5F5DC; /* ui-text-sandstone-200 equivalent */
    padding: 8px 16px; /* ui-py-2 ui-px-4 = 0.5rem 1rem = 8px 16px */
}

@media (min-width: 1024px) {
    .shop-btn-container {
        padding: 12px 24px; /* lg:ui-py-3 lg:ui-px-6 = 0.75rem 1.5rem = 12px 24px */
    }
}

.shop-btn-container:hover {
    background-color: #357ABD; /* hover:ui-bg-blue-200 equivalent */
}

.shop-btn-inner {
    align-items: center;
    display: inline-flex;
    gap: 8px; /* ui-gap-2 = 0.5rem = 8px */
    align-content: center;
    justify-content: center;
}

   .shop-btn-containe {
            background: var(--primary-blue);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #3367D6;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
        }

 /* Menu section */
        .menu-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-text {
            font-size: 0.875rem;
            letter-spacing: normal;
            text-align: right;
            color: white;
            font-family: sans-serif;
            line-height: normal;
            font-weight: 700;
            display: none;
        }

        /* Hamburger button */
        .hamburger-btn {
            background: transparent;
            position: relative;
            color: white;
            height: 40px;
            width: 40px;
            border-radius: 9999px;
            border-style: solid;
            border-width: 1px;
            border-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            outline: none;
        }

        .hamburger-btn:hover {
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Hamburger lines */
        .hamburger-lines {
            display: block;
            height: 16px;
            width: 16px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .hamburger-lines::before,
        .hamburger-lines::after,
        .hamburger-lines {
            background: currentColor;
            height: 2px;
            width: 16px;
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .hamburger-lines::before,
        .hamburger-lines::after {
            content: '';
            position: absolute;
            left: 0;
        }

        .hamburger-lines::before {
            top: -5px;
        }

        .hamburger-lines::after {
            bottom: -5px;
        }

        .hamburger-lines {
            background: currentColor;
            height: 2px;
        }

        /* Hamburger animation when active */
        .hamburger-btn.active .hamburger-lines {
            background: transparent;
        }

        .hamburger-btn.active .hamburger-lines::before {
            top: 0;
            transform: rotate(45deg);
        }

        .hamburger-btn.active .hamburger-lines::after {
            bottom: 0;
            transform: rotate(-45deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1100;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100% !important;
            max-width: 100%;
            height: 100vh;
            background: white;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
            visibility: hidden;
        }

        .mobile-menu.active {
            transform: translateX(0);
            visibility: visible;
        }

        /* Menu Header */
        .menu-header {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .menu-logo {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-logo-shape {
            width: 18px;
            height: 28px;
            background: white;
            border-radius: 0 14px 14px 0;
        }

        .close-btn {
            background: transparent;
            border: none;
            font-size: 28px;
            color: #333;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            color: #667eea;
        }

        /* Menu Navigation */
        .menu-nav {
            padding: 40px 24px;
            flex: 1;
        }

        .menu-nav ul {
            list-style: none;
        }

        .menu-nav li {
            margin-bottom: 8px;
        }

        .menu-nav a {
             display: block;
            padding: 16px 20px;
            color: #333;
            text-decoration: none;
            font-size: 20px !important;
            font-weight: 520 !important;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f5f5f5;
            position: relative;
            text-align: center;
        }

        .menu-nav a:hover {
            color: #667eea;
            padding-left: 8px;
        }

        /* Active/Current page link style */
        .menu-nav a.font-bold {
            font-weight: 700 !important;
            color: #4285F4;
        }

        /* Menu Footer */
        .menu-footer {
            padding: 24px;
            border-top: 1px solid #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
        }


        .social-link {
            color: #353434 !important;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
            align-items: center;
        }

        .social-link:hover {
            color: #667eea;
        }


/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hide menu on desktop */
        @media (min-width: 1025px) {
            .mobile-menu,
            .mobile-menu-overlay,
            .hamburger-btn {
                display: none !important;
            }

            .menu-text {
                display: block;
            }
        }

         /* Tablet adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hamburger-btn {
                height: 48px;
                width: 48px;
            }
        }
     
/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem 1rem; /* ADJUSTED */
        min-height: 70px; /* ADJUSTED */
    }
    
    .nav-center {
        gap: 1rem;
    }

    .mobile-menu {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.75rem; /* ADJUSTED */
        min-height: 60px; /* ADJUSTED */
    }
    
    .logo-link {
        width: 50px;
    }
    
    .shop-btn-container {
        padding: 8px 14px; /* ADJUSTED */
        font-size: 14px;
    }
    
    .hamburger-btn {
                height: 36px;
                width: 36px;
            }

            .mobile-menu {
                width: 240px;
            }
}

@media screen and (max-width: 390px) {
    .navbar {
        top: 8px;
        left: 8px;
        right: 8px;
    }
}

@media screen and (max-width: 360px) {
    .logo-link {
        width: 45px;
    }
    
    .shop-btn-container {
        padding: 6px 12px; /* ADJUSTED */
        font-size: 13px;
    }
    
    .hamburger-btn {
                height: 32px;
                width: 32px;
            }

            .mobile-menu {
                width: 220px;
            }
}

@media screen and (max-width: 320px) {
    .navbar {
        padding: 0.5rem;
        min-height: 50px; /* ADJUSTED */
    }
    
    .logo-link {
        width: 40px;
    }
    
    .shop-btn-container {
        padding: 5px 10px; /* ADJUSTED */
        font-size: 12px;
    }
    
   .menu-section {
                gap: 8px;
            }

            .mobile-menu {
                width: 200px;
            }
}

/*HERO SECTION / Main Content */

      
          .hero-content {
            max-width: 500px;
        }
  .hero-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .hero-title .highlight {
            color: var(--primary-blue);
            font-style: italic;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }


        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-logo {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

       

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .trust-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.75rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .trust-indicators {
                justify-content: center;
            }

            .brand-logo {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
        }

  /* Main Content */
  .hero-content {
    flex: 1;
    display: flex;
    align-items: center;
  
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    margin-top: -80px !important;
    padding: 80px 60px;
    justify-content: center;
   
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin-top: -30px;
}


.text-content {
    max-width: 600px;
 
}

.section-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.main-heading {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}


.image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
     margin-bottom: 0; 
      max-height: none;
  overflow: hidden;
  border-color: none;
  right: -80px !important;
}

.hero-image {
    top : -0px;
   width: none;
    height: auto;
    max-height: none; /* ✅ Try 400–600px based on what looks best */
    object-fit: contain; /* or "contain" if you want full visibility */
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Decorative Elements */
.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(12, 98, 228, 0.1);
    border-radius: 100%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    width: 60px;
    height: 60px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
/* Mobile-specific fixes */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        padding-top: 140px;
        min-height: calc(100vh - 140px);
    }
    
    /* Change to normal flex direction and reorder items */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        display: flex;
        flex-direction: column; /* Normal column direction */
    }
    
    /* Make logo appear first */
    .image-content {
        order: -1; /* This forces the logo to appear first, at the top */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        right: 0 !important; /* Reset right position */
    }
    
    /* Make text content appear second */
    .text-content {
        order: 1; /* This makes text content appear after the logo */
        text-align: center;
        margin-top: -40px; /* Move text content up */
    }
    
    /* Reduce logo size on mobile */
    .hero-image {
      top: 80px;
        
        object-fit: contain;
          width: 100%;
    height: auto;
    max-height: 500px;
    }
    
    .section-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Stack buttons vertically and center them */
    .action-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-third {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        padding-top: 130px;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start; /* Changed from center to flex-start to align left */
    align-items: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    margin-top: 1rem; /* Moves buttons one space lower */
}

.btn-primary, .btn-secondary, .btn-third {
    padding: 1rem 2rem;
    border-radius: 9999px; /* ui-rounded-full */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    padding: 8px 16px;
}

.btn-primary {
      background: var(--primary-blue);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
}


.btn-third {
    background: white;
    color: black;
    border-color: rgba(255, 255, 255, 0.6);
    
}

.btn-primary:hover {
     background: #3367D6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-secondary {
     background: transparent;
            color: var(--primary-green);
            padding: 1rem 2rem;
            border: 2px solid var(--primary-green);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;

}

.btn-secondary:hover {
  background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}



/*THE CONTENT UNDER IMAGES*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--sandstone-50);
    color: var(--sandstone-900);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #666;
    border-radius: 30px;
    overflow: hidden;
    position: relative;

}

.content {
    z-index: 2;
    position: relative;
    color: white;
    text-align: center;
  }

  
.stair-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
  }
  
  .band {
    flex: 1;
    height: 20px;
    background: #FAF8F6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
  }
  
  /* Staggered delay */
  .band-1 { transition-delay: 0.1s; }
  .band-2 { transition-delay: 0.2s; }
  .band-3 { transition-delay: 0.3s; }
  .band-4 { transition-delay: 0.4s; }
  .band-5 { transition-delay: 0.5s; }
  
  .band.visible {
    transform: scaleX(1);
  }


.hero-text {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.hero-text em {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
}

.hero-text sup {
    position: relative;
    top: -1rem;
    left: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.content-left {
    order: 1;
}

.content-right {
    order: 2;
    padding-top: 1.5rem;
}

.main-heading {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: black;
    margin-bottom: 1rem;
}

.main-heading em {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    display: block;
    text-align: right;
    margin-top: 0.5rem;
}

.description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--sandstone-500);
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 3rem 2rem;
    }

    .hero-text {
        font-size: 3.75rem;
    }

    .hero-text sup {
        top: -2rem;
        left: 0.5rem;
    }

    .main-heading {
        font-size: 3rem;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .content-right {
        padding-top: 0;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 4rem 2rem;
    }

    .hero-section {
        margin-bottom: 6rem;
        padding: 3rem 0;
    }

    .hero-text {
        font-size: 5rem;
    }

    .hero-text sup {
        top: -2.5rem;
    }

    .main-heading {
        font-size: 4.25rem;
        letter-spacing: -0.05em;
    }

    .content-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
    .content-grid {
        grid-template-columns: 3fr 2fr;
    }
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.main-heading:hover em {
    transform: translateX(-10px);
    transition: transform 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .main-heading em {
        transition: none;
    }
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid var(--sandstone-400);
    outline-offset: 2px;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.3s;
}
.delay-2 {
    transition-delay: 0.6s;
}

.reveal-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #AEE4F9;
    overflow: hidden;
  }
  
  .reveal-text {
    font-size: 3rem;
    background: linear-gradient(120deg, #0071CE, #5CBF7A);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(50px);
  }

  .scroll-section {
    padding: 100vh 20px 50vh;
    background: #fff;
    font-family: sans-serif;
  }
  
  .animated-text {
    font-size: 1.5rem;
    line-height: 2;
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
  }
  
  .word {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    margin-right: 0.3em;
  }
  
  .word.visible {
    opacity: 1;
    transform: translateY(0);
  }

/*FOOTER*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital@0;1&display=swap');
        
.font-sans { font-family: 'Inter', sans-serif; }
.font-serif { font-family: 'Playfair Display', serif; }

.text-sandstone-200 { color: white !important; }
.bg-blue-100 { background-color: rgb(48, 48, 48) !important; }
.text-heading-lg { font-size: 2.5rem; line-height: 1.1; }

.button-white-text {
    color: white !important;
}

 .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .social-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
        }
        .email-input {
            flex: 1;
            padding: 10px 14px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
            max-width: 280px;
        }
        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .email-input:focus {
            border-color: rgba(59, 130, 246, 0.5);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .submit-btn {
            padding: 10px 14px;
            background-color: rgba(59, 130, 246, 0.8);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 44px;
        }
        .submit-btn:hover {
            background-color: rgba(59, 130, 246, 1);
            transform: translateX(2px);
        }
        .footer-link {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
        }
        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }
        .hero-content-2 {
            position: absolute;
            top: 0;
            left: 0;
            padding: 24px;
            z-index: 2;
        }
       
        .text-heading-lg {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        .text-sandstone-200 {
            color: white;
        }
        @media (max-width: 768px) {
            .text-heading-lg {
                font-size: 2rem;
            }
        }

 @media (max-width: 768px) {
            .hero-content {
                padding: 1.5rem;
            }
        }

        

.success-message {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgb(34, 197, 94);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}
/* Add this to make your footer wider */
.footer-container {
    max-width: 1400px !important; /* Makes it wider than typical 1200px */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/*PRE-FOOTER*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pre-footer {
    background: linear-gradient(135deg, #288b36 0%, #288b36 100%);
    border-radius: 20px;
    position: relative;
    padding: 4rem 3rem;
    padding-top: 5rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.ui-marquee {
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.marquee-text {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-text:nth-child(2) {
    animation-delay: -6.67s;
}

.marquee-text:nth-child(3) {
    animation-delay: -13.33s;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.decorative-dots {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 20px;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.dot:first-child {
    left: 60px;
}

.dot:last-child {
    right: 60px;
}

.main-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: #333;
    line-height: 1.1;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ui-cta {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.ui-cta:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ui-cta:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1023px) {
    .pre-footer {
        padding: 3rem 2.5rem;
        margin: 1.5rem auto;
        width: 95%;
        min-height: 450px;
    }

    .main-text {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .dot:first-child {
        left: 40px;
    }

    .dot:last-child {
        right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .pre-footer {
        padding: 2.5rem 2rem;
        margin: 1rem auto;
        width: 95%;
        min-height: 400px;
        border-radius: 15px;
    }

    .main-text {
        font-size: clamp(2rem, 12vw, 4rem);
    }

    .ui-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot:first-child {
        left: 30px;
    }

    .dot:last-child {
        right: 30px;
    }

    .decorative-dots {
        top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .pre-footer {
        padding: 2rem 1.5rem;
        margin: 0.5rem auto;
        width: 98%;
        min-height: 350px;
        border-radius: 12px;
    }

    .main-text {
        font-size: clamp(1.8rem, 15vw, 3rem);
        margin-top: 1.5rem;
    }

    .ui-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot:first-child {
        left: 20px;
    }

    .dot:last-child {
        right: 20px;
    }

    .decorative-dots {
        top: 25px;
    }
}

/* Additional subtle animations */
.dot {
    animation: float 6s ease-in-out infinite;
}

.dot:last-child {
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
/* Additional decorative elements */
.pre-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/*PICTURES SECTION*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



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

.bars-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    height: 600px;
    align-items: flex-end; /* Anchor bars to bottom */
    justify-content: center;
}

.frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.frame:hover img {
    transform: scale(1.02);
}

/* Large bar - top (full width) */
.frame-1 {
    width: 20%;
    height: 100%;
    flex: 0 0 45%;
}

/* Medium bar - middle (about 70% width, right aligned) */
.frame-2 {
    width: 70%;
    height: 80%;
    flex: 0 0 30%;
    align-self: flex-end;
    margin-right: 0;
}

/* Small bar - bottom (about 50% width, right aligned) */
.frame-3 {
    width: 50%;
    height: 40%;
    flex: 0 0 25%;
    align-self: flex-end;
    margin-right: 0;
}

/* Placeholder styling */
.placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21,15 16,10 5,21"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.placeholder-text {
    margin-top: 50px;
    padding: 20px;
    line-height: 1.4;
}

.frame-1 .placeholder-text {
    font-size: 18px;
}

.frame-2 .placeholder-text {
    font-size: 16px;
}

.frame-3 .placeholder-text {
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
   .showcase-container {
        margin-top: -40px;
        padding-top: 20px;
    }

    .bars-container {
        height: auto;
        gap: 15px;
    }

    .frame-1 {
        width: 30% !important;
        height: 350px !important;
        flex: 0 0 30% !important;
    }

    .frame-2 {
        width: 30% !important;
        height: 270px !important;
        flex: 0 0 30% !important;
    }

    .frame-3 {
        width: 30%;
        height: 200px !important;
        flex: 0 0 30% !important;
    }
}

@media (max-width: 480px) {
   .frame-1 {
        width: 50% !important;
        height: 350px !important;
        flex: 0 0 25% !important;
    }

    .frame-2 {
        width: 30% !important;
        height: 270px !important;
        flex: 0 0 25% !important;
    }

    .frame-3 {
        width: 60%;
        height: 200px !important;
        flex: 0 0 25% !important;
    }

    .placeholder-text {
        font-size: 12px;
        padding: 10px;
    }

    .frame-1 .placeholder-text {
        font-size: 14px;
    }
}

/* Loading animation */
.frame.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Additional styling for better visual hierarchy */
.frame-1 {
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
}

.frame-2 {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.frame-3 {
    background: linear-gradient(135deg, #f2f2f2 0%, #e5e5e5 100%);
}

.design-section {
    max-width: 1200px;
    width: 100%;
    padding: 40px 40px 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
     margin-top: 0;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: black;
    letter-spacing: -0.02em;
}

.headline .emphasis {
    font-style: italic;
    font-weight: 300;
    color: #666;
}

.right-content {
    
     font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
}

.right-content p {
    margin-bottom: 1.5em;
}

.right-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .design-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }

    .headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .right-content {
        font-size: 1rem;
        text-align: left;
    }
}

/* Subtle animations */
.design-section {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*SERVICES SECTION*/
   /* Services Section - Completely redesigned */
   
.services-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 600;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-category {
    /* REMOVED: background: var(--white); - This was overriding the image backgrounds */
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    width: 500px !important;
    display: flex;
    flex-direction: column;
}

/* Service background images */
.service-category:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('/images/residential-cleaning.jpg') center/cover;
}

.service-category:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('/images/commercial-cleaning.jpg') center/cover;
}

.service-category:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('/images/eco-cleaning.jpg') center/cover;
}

.service-category:nth-child(4) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('/images/specialized-cleaning.jpg') center/cover;
}
        .service-category:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .service-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            padding: 30px 20px;
            color: var(--white);
            transition: all 0.5s ease;
        }

        .service-icon {
            display: none;
        }

        .service-category h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .service-brief {
            font-size: 1rem;
            opacity: 0.95;
            line-height: 1.5;
            color: var(--white);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Detailed content - hidden by default */
        .service-details {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
            padding: 30px 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }

        .service-category:hover .service-details {
            opacity: 1;
            transform: translateY(0);
        }

        .service-category:hover .service-content {
            opacity: 0;
            transform: translateY(-20px);
        }

        .service-details h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: inherit;
        }

        .service-details p {
            font-size: 1rem;
            margin-bottom: 20px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .service-list {
            list-style: none;
            padding: 0;
        }

        .service-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.8);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .service-cta-btn {
            background: rgba(255, 255, 255, 0.2);
            color: inherit;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            margin-top: 15px;
        }

        .service-cta-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        .services-cta h3 {
            font-size: 1.8rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .services-cta p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .secondary-button {
            display: inline-block;
            background:  var(--primary-blue);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
        }

        .secondary-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-category {
                min-height: 350px;
                padding: 25px 15px;
            }
            
            .service-details {
                padding: 25px 15px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .service-category {
                min-height: 320px;
            }
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-section {
    background-color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.services-content {
    font-family: 'Neue Haas Grotesk Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.services-text {
    padding-right: 40px;
}

.services-title {
    font-weight: 300;
    line-height: 1.1;
    color: black;
    margin-bottom: 40px;
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.services-title em {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.services-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    background-color: #288b36;
    color: white; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
      padding: 1rem 2rem;
    border-radius: 9999px; /* ui-rounded-full */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    padding: 8px 16px;
}

.cta-button:hover {
    background-color: #288b3571;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-arrow {
    color: #288b36;
    font-size: 1.2rem;
    margin-right: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(5px);
}

.service-name {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Large Desktop */
@media (max-width: 1400px) {
    .services-container {
        max-width: 1000px;
    }
    
    .service-category {
        width: 450px !important;
        min-height: 450px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        justify-items: center;
    }
    
    .service-category {
        width: 100% !important;
        max-width: 450px;
        min-height: 400px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 30px;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .service-category {
        min-height: 380px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-container {
        padding: 0 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-category {
        width: 100% !important;
        max-width: none;
        min-height: 350px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-details {
        padding: 25px 20px;
    }
    
    .service-category h3 {
        font-size: 1.6rem;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .services-header p {
        font-size: 1rem;
    }
    
    .services-cta h3 {
        font-size: 1.6rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-header h2 {
        font-size: 1.7rem;
    }
    
    .service-category {
        min-height: 320px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-details {
        padding: 20px 15px;
    }
    
    .service-category h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .service-brief {
        font-size: 0.95rem;
    }
    
    .service-details h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-details p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .service-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .secondary-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .services-section {
        padding: 35px 0;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-category {
        min-height: 280px;
        border-radius: 15px;
    }
    
    .service-content {
        padding: 18px 15px;
    }
    
    .service-details {
        padding: 18px 15px;
    }
    
    .services-header h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .services-header p {
        font-size: 0.95rem;
    }
    
    .service-category h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .service-brief {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .service-details h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-details p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .service-list li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 20px;
    }
    
    .service-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .services-cta {
        margin-top: 40px;
    }
    
    .services-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .services-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .secondary-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .services-section {
        padding: 30px 0;
    }
    
    .services-container {
        padding: 0 12px;
    }
    
    .service-category {
        min-height: 260px;
        border-radius: 12px;
    }
    
    .service-content {
        padding: 15px 12px;
    }
    
    .service-details {
        padding: 15px 12px;
    }
    
    .services-header h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .services-header p {
        font-size: 0.9rem;
    }
    
    .service-category h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .service-brief {
        font-size: 0.85rem;
    }
    
    .service-details h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-details p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .service-list li {
        font-size: 0.8rem;
        margin-bottom: 5px;
        padding-left: 18px;
    }
    
    .services-cta h3 {
        font-size: 1.2rem;
    }
    
    .services-cta p {
        font-size: 0.9rem;
    }
    
    .secondary-button {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .services-section {
        padding: 25px 0;
    }
    
    .services-container {
        padding: 0 10px;
    }
    
    .service-category {
        min-height: 240px;
    }
    
    .service-content {
        padding: 12px 10px;
    }
    
    .service-details {
        padding: 12px 10px;
    }
    
    .services-header h2 {
        font-size: 1.2rem;
    }
    
    .services-header p {
        font-size: 0.85rem;
    }
    
    .service-category h3 {
        font-size: 1.1rem;
    }
    
    .service-brief {
        font-size: 0.8rem;
    }
    
    .service-details h4 {
        font-size: 1rem;
    }
    
    .service-details p {
        font-size: 0.8rem;
    }
    
    .service-list li {
        font-size: 0.75rem;
        padding-left: 15px;
    }
    
    .services-cta h3 {
        font-size: 1.1rem;
    }
    
    .services-cta p {
        font-size: 0.85rem;
    }
    
    .secondary-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}
/* Animation for loading */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*STATS CONTENT*/

 /* Stats Section - Now integrated into hero */
        .stats-section {
            background: var(--white);
            padding: 60px 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 3;
            margin-top: -30px;
        }

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

        .stats-intro {
            text-align: center;
            margin-bottom: 50px;
            
        }

        .stats-intro h2 {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .stats-intro p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: var(--light-gray);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
            line-height: 1.4;
        }




 /* Hero Statistics Section */
        .hero-stats {
       
             background: white;
             padding: 40px 0;
            margin-top: auto;
            width: 100%;
  flex-shrink: 0; /* Prevents it from shrinking */
  

        }

        .stats-container {
               max-width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            align-items: start;
        }

        .stat-string{
         font-size: 4.5rem;
            font-weight: 300;
            color: white;
            margin-bottom: 20px;
            font-family: 'Georgia', serif;
            line-height: 1;
            letter-spacing: -2px;   
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
            padding: 30px 20px;
            border-radius: 15px;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
        }

        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        

        .stat-number {
            font-size: 4.5rem;
            font-weight: 300;
            color: white;
            margin-bottom: 20px;
            font-family: 'Georgia', serif;
            line-height: 1;
            letter-spacing: -2px;
        }

        .stat-title {
            font-size: 1.1rem;
            color: rgb(224, 222, 222);
            font-weight: 400;
            line-height: 1.4;
            max-width: 250px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* Separator lines between stats */
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 80px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
        }

        .stat-item {
            position: relative;
        }

        /* Counter animation */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .counting {
            animation: countUp 0.6s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .stats-container {
                gap: 40px;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .hero-stats {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: 1fr;
                gap: 50px;
                max-width: 400px;
            }
            
            .stat-item::after {
                display: none;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .hero-stats {
                padding: 50px 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                padding: 40px 20px;
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stat-title {
                font-size: 1rem;
            }
        }

        /* Hide separators on mobile grid layout */
        @media (max-width: 900px) {
            .stat-item::after {
                display: none;
            }
        }


        /*IMAGES SERVICES*/
         /* Product Slider Styles */
        .product-slider-container {
           flex: 0.8;
           max-width: 500px;
           position: relative;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
         border-radius: 15px; /* Reduced from 20px */
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            background: white;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            background: white;
            padding: 0;
            position: relative;
        }

        .slide-image-container {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .slide-image:hover {
            transform: scale(1.05);
        }

        .slide-content {
            padding: 30px;
            background: white;
        }

        .product-title {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 20px;
            color: #2c3e50;
            letter-spacing: -0.5px;
        }

        .collection-info {
            margin-bottom: 20px;
        }

        .collection-name {
            font-size: 0.9rem;
            color: #288b36;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .product-details {
            margin-bottom: 25px;
        }

        .detail-item {
            font-size: 0.95rem;
            margin-bottom: 8px;
            color: #555;
            position: relative;
            padding-left: 15px;
        }

        .detail-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            background: #288b36;
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .product-cta {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(231, 76, 60, 0.4);
        }

        .product-cta::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .product-cta:hover::after {
            transform: translateX(3px);
        }

        /* Navigation Controls */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #2c3e50;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .nav-button:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 15px;
        }

        .nav-button.next {
            right: 15px;
        }

        /* Pagination Dots */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: #288b36;
            transition: width 0.6s ease;
        }

        /* Auto-play indicator */
        .autoplay-indicator {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 5;
        }

        .autoplay-dot {
            width: 6px;
            height: 6px;
            background: black;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }
        .delay-3 { transition-delay: 0.6s; }

       

/* Responsive Design */

/* Mobile First - Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .services-section {
        padding: 40px 0;
    }
    
    .container-services {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .services-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-text {
        text-align: center;
        padding: 0 10px;
    }
    
    .services-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .services-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 0.95rem;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    /* Carousel adjustments for mobile */
    .product-slider-container {
        width: 100%;
        margin: 0;
    }
    
    .carousel-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .carousel-container {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }
    
    .slide {
        min-width: 100%;
        flex: 0 0 100%;
        position: relative;
        height: 250px;
    }
    
    .slide-image-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 30px 20px 20px;
        color: white;
    }
    
    .product-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
        color: white;
    }
    
    /* Navigation buttons for mobile */
    .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .nav-button:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }
    
    .nav-button.prev {
        left: 10px;
    }
    
    .nav-button.next {
        right: 10px;
    }
    
    /* Progress bar for mobile */
    .progress-bar {
        position: absolute;
        bottom: 60px;
        left: 20px;
        right: 20px;
        height: 3px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        overflow: hidden;
    }
    
    .progress-bar::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background: white;
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    
    /* Pagination dots for mobile */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        background: #007bff;
        transform: scale(1.2);
    }
}

/* Small tablets (577px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .services-section {
        padding: 50px 0;
    }
    
    .container-services {
        padding: 0 20px;
    }
    
    .services-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-text {
        text-align: center;
    }
    
    .services-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .services-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .slide {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.3rem;
        color: white;
    }
}

/* Medium tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }
    
    .container-services {
        padding: 0 30px;
    }
    
    .services-content {
        gap: 40px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-description {
        font-size: 1.05rem;
    }
    
    .slide {
        height: 320px;
    }
}

/* Large tablets (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container-services {
        padding: 0 40px;
    }
    
    .slide {
        height: 350px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-button {
        opacity: 0.8;
    }
    
    .nav-button:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .cta-button:active {
        transform: scale(0.98);
    }
    
    .pagination-dot:active {
        transform: scale(1.3);
    }
}

/* Landscape phone orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .services-section {
        padding: 30px 0;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .slide {
        height: 200px;
    }
    
    .slide-content {
        padding: 20px 15px 15px;
    }
    
    .product-title {
        font-size: 1rem;
        color: white;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 767px) {
    .nav-button:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
    
    .cta-button:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
    
    .pagination-dot:focus {
        outline: 2px solid #007bff;
        outline-offset: 2px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

      /* Testimonials Section */
        .testimonials {
            padding: 80px 20px;
            background: var(--white);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-wrapper {
            position: relative;
            margin-bottom: 50px;
        }

        .testimonials-grid {
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-green) var(--light-gray);

               display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 0;
        }

        /* Mobile responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 5px 0;
    }
}


        .testimonials-grid::-webkit-scrollbar {
            height: 8px;
        }

        .testimonials-grid::-webkit-scrollbar-track {
            background: var(--light-gray);
            border-radius: 4px;
        }

        .testimonials-grid::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        .testimonials-grid::-webkit-scrollbar-thumb:hover {
            background: var(--primary-blue);
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 0;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            min-width: 100px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 0;
            background: var(--primary-green);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .testimonial-card:hover::after {
            width: 120px;
            height: 80px;
            clip-path: polygon(100% 100%, 100% 0%, 0% 100%);
        }

        .testimonial-card:hover {
            transform: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stars {
            color: var(--another-blue) !important;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-dark);
            margin: 20px 0;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .read-more-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: transparent;
            border: none;
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            transition: color 0.3s ease;
        }

       

        .read-more-btn::after {
            content: ' →';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .read-more-btn::after {
            transform: translateX(3px);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--text-dark);
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

       .service-badge {
    background: var(--primary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

         @media (max-width: 768px) {
            .testimonials-grid {
                gap: 20px;
            }
            
            .testimonial-card {
                min-width: 300px;
            }
            
        }

        /* Mobile text adjustments */
@media (max-width: 480px) {
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-meta {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-right: 12px;
    }
}

.testimonial-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}


/*BECOME A MEMBER*/
 .pro-section {
            background: var(--another-blue);
            padding: var(--section-padding) 0;
            position: relative;
            overflow: hidden;
        }

       

        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            min-height: 500px;
        }

        .text-content {
            padding-right: 2rem;
        }

        .main-heading2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .description2 {
            font-size: 1.125rem;
            color: var(--white);
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 500px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--blue-hover));
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
            border: 2px solid white;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
            background: linear-gradient(135deg, var(--blue-hover), var(--primary-blue));
        }

        .image-section {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            height: auto;
            max-width: 600px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            object-fit: cover;
        }

        .hero-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .pro-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .text-content {
                padding-right: 0;
                order: 2;
            }

            .image-section {
                order: 1;
            }

            .hero-image {
                max-width: 100%;
                border-radius: 15px;
            }

            .container {
                padding: 0 1rem;
            }
        }


         @media (max-width: 768px) {
            .pro-section {
                 padding: 3rem 0;
                 min-height: 90vh !important;
               }

            .text-content-pro {
                padding-right: 0;
                order: 2;
                 margin-top: 5rem !important;
            } 

            .hero-image-pro {
                max-width: 100%;
                border-radius: 15px;
            }

         }

          @media (max-width: 480px) {
              .pro-section {
              min-height: 90vh !important;
       
            }

             .text-content-pro {
                 margin-top: 5rem !important;
            }

             .hero-image-pro {
                border-radius: 12px;
            }
          }



        @media (max-width: 480px) {
            .main-heading {
                font-size: 1.8rem;
            }

            .description {
                font-size: 1rem;
            }

            .hero-image {
                border-radius: 12px;
            }
        }

        /* Animation for loading */
        .hero-image {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /*PRE FOOTER*/
        .cta-section {
            background: #cccccc;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 15px !important;
        }

        /* Decorative dots */
        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            top: 60px;
        }

        .cta-section::before {
            left: 60px;
        }

        .cta-section::after {
            right: 60px;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 6rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 60px;
            letter-spacing: -0.02em;
        }

        .cta-button2 {
            display: inline-block;
            background-color: white;
            color: var(--dark-gray);
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            background-color: var(--light-gray);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Tablet Styles */
        @media (max-width: 768px) {
            .cta-section {
                padding: 80px 20px;
                min-height: 400px;
            }

            .cta-section::before,
            .cta-section::after {
                top: 40px;
                width: 10px;
                height: 10px;
            }

            .cta-section::before {
                left: 40px;
            }

            .cta-section::after {
                right: 40px;
            }

            .cta-title {
                font-size: 4.5rem;
                margin-bottom: 50px;
            }

            .cta-button {
                padding: 14px 28px;
                font-size: 1rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 480px) {
            .cta-section {
                padding: 60px 15px;
                min-height: 350px;
            }

            .cta-section::before,
            .cta-section::after {
                top: 30px;
                width: 8px;
                height: 8px;
            }

            .cta-section::before {
                left: 30px;
            }

            .cta-section::after {
                right: 30px;
            }

            .cta-title {
                font-size: 3.2rem;
                margin-bottom: 40px;
                line-height: 1.2;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Extra small mobile */
        @media (max-width: 360px) {
            .cta-title {
                font-size: 2.2rem;
            }
        }


/*LOADING ANIMATION*/

* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Arial', sans-serif;
      overflow: hidden;
      background: #f0f8ff;
    }

    body.loading {
  overflow: hidden; /* disable scroll during loading */
}

body.loaded {
  overflow: auto; /* allow scrolling after loading */
}

    .loading-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 9999;
      background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 1.5s ease-in-out;
    }
    .loading-container.fade-out { opacity: 0; pointer-events: none; }

    /* Modified Water wave animation with smooth curves */
    .water-wave {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 150%;
      background: #4484f4;
      transform: translateY(-100%);
      animation: dropDown 2s ease-out forwards;
      overflow: visible;
    }
    .water-wave::before {
      content: '';
      position: absolute;
      bottom: -62px;
      left: 0;
      width: 200%;
      height: 62px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 62'%3E%3Cpath d='M0 0 H800 V32 Q650 72 500 32 T200 32 Q50 72 0 32 Z' fill='%2380dfff'/%3E%3C/svg%3E") repeat-x;
      animation: wave 4s linear infinite; 
      opacity: 1;
    }
    .water-wave::after {
      content: '';
      position: absolute;
      bottom: -54px;
      left: 0;
      width: 200%;
      height: 62px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 62'%3E%3Cpath d='M0 0 H800 V32 Q650 72 500 32 T200 32 Q50 72 0 32 Z' fill='%234484f4'/%3E%3C/svg%3E") repeat-x;
      animation: wave 4s linear infinite reverse; 
      opacity: 0.8;
    }

    /* Ripples */
    .ripple-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
    .ripple {
      position: absolute;
      border: 3px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      animation: rippleEffect 1s ease-out infinite;
    }
    .ripple:nth-child(1){ left:20%;top:15%;animation-delay:0s;}
    .ripple:nth-child(2){ left:60%;top:25%;animation-delay:0.5s;}
    .ripple:nth-child(3){ left:80%;top:40%;animation-delay:1s;}
    .ripple:nth-child(4){ left:30%;top:55%;animation-delay:1.5s;}
    .ripple:nth-child(5){ left:70%;top:70%;animation-delay:1s;}
    .ripple:nth-child(6){ left:45%;top:85%;animation-delay:2.5s;}

    /* White overlay */
    .white-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: white; opacity: 0;
      animation: fadeInWhite 1s ease-in-out 1.5s forwards;
    }

    /* Logo */
    .logo-container {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      opacity: 0; animation: showLogo 1s ease-out 2.5s forwards;
      display: flex; align-items: center; gap: 10px;
    }
    .logo { width: 120px; height: 120px; animation: logoSlideLeft 1s ease-out 3s forwards; }
    .company-name {
      font-size: 2.5rem; font-weight: bold; color: #2E86AB; opacity: 0;
      transform: translateX(-30px); animation: slideInName 1s ease-out 3.5s forwards;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    /* Animations */
    @keyframes dropDown { 0%{transform:translateY(-100%);}100%{transform:translateY(0);} }
    @keyframes wave { 0%{transform:translateX(0);}100%{transform:translateX(-50%);} }
    @keyframes rippleEffect { 0%{width:0;height:0;opacity:1;}50%{width:100px;height:100px;opacity:0.7;}100%{width:200px;height:200px;opacity:0;} }
    @keyframes fadeInWhite { 0%{opacity:0;}100%{opacity:0.95;} }
    @keyframes showLogo {0%{opacity:0;transform:translate(-50%,-50%) scale(0.5);}100%{opacity:1;transform:translate(-50%,-50%) scale(1);} }
    @keyframes logoSlideLeft {0%{transform:translateX(0);}100%{transform:translateX(-60px);} }
    @keyframes slideInName {0%{opacity:0;transform:translateX(-30px);}100%{opacity:1;transform:translateX(0);} }

    /* Main content */
    .main-content { position: relative; background: white; 
      transform: translateY(20px); animation: showContent 1s ease-out 3s forwards;}
    @keyframes showContent {0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);} }

    /* Replay button */
    .replay-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #2E86AB;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 4px 12px rgba(46, 134, 171, 0.3);
      transition: all 0.3s ease;
      z-index: 10000;
    }
    .replay-btn:hover {
      background: #4A90A4;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(46, 134, 171, 0.4);
    }

    .logo {
  width: 340px;   /* increase this to make it bigger */
  height: auto;   /* keeps proportions */
  display: block;
  margin: 0 auto; /* centers if needed */
}

   

 /* Mobile Responsive Add-on - Add this to your existing CSS */
/* Large tablets and small desktops (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .logo-container {
    gap: none;
  }
  
  .logo {
    width: 280px;
  }
  
  .company-name {
    font-size: 2rem;
  }
}

/* Tablets (481px - 768px) */
@media screen and (max-width: 768px) {
  .logo-container {
    gap: 6px;
    margin-right: -135px;
  }
  
  .logo {
    width: 220px;
    margin-right: -60px;
  }
  
  .company-name {
    font-size: 1.7rem !important;
    white-space: nowrap;
  }
}

/* Large phones (376px - 480px) */
@media screen and (max-width: 480px) {
  .logo-container {
    gap: 5px;
    padding: 0 15px;
    margin-right: -135px;
  }
  
  .logo {
    width: 180px;
  }
  
  .company-name {
    font-size: 1.4rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}

/* Small phones (320px - 375px) */
@media screen and (max-width: 375px) {
  .logo-container {
    gap: 4px;
    padding: 0 10px;
    margin-right: -135px;
  }
  
  .logo {
    width: 150px;
  }
  
  .company-name {
    font-size: 1.2rem;
    line-height: 1.3;
    white-space: nowrap;
  }
}

/* Very small phones (up to 320px) */
@media screen and (max-width: 320px) {
  .logo-container {
    gap: 3px;
    padding: 0 8px;
    margin-right: -135px;
  }
  
  .logo {
    width: 120px;
  }
  
  .company-name {
    font-size: 1rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    white-space: nowrap;
  }
}