        :root {
            --core-teal: #00AF9A;
            --dark-teal: #008f7e;
            --light-bg: #f0f9f8;
            --white: #ffffff;
            --text-dark: #2d3436;
            --text-muted: #636e72;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Utility Classes --- */
        .text-teal { color: var(--core-teal); }
        .w-100 { width: 100%; }

        /* --- Buttons --- */
        .btn-primary {
            background: var(--core-teal);
            color: var(--white);
            padding: 16px 36px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover { 
            background: var(--dark-teal); 
            transform: translateY(-2px); 
            box-shadow: 0 10px 20px rgba(0, 175, 154, 0.2);
        }

        .btn-primary.outline {
            background: transparent;
            border: 2px solid var(--core-teal);
            color: var(--core-teal);
        }

        .btn-primary.outline:hover {
            background: var(--core-teal);
            color: var(--white);
        }

        .btn-outline {
            margin-left: 20px;
            color: var(--core-teal);
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn-outline:hover {
            color: var(--dark-teal);
        }

        /* --- Navbar --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10%;
            background: transparent; /* Initially transparent */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
        }

        /* Active class added via JS when scrolling down */
        .navbar.scrolled {
            background: var(--white);
            padding: 15px 10%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--core-teal);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li { margin-left: 30px; }
        .nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: 0.3s; }
        .nav-links a:hover { color: var(--core-teal); }

        .btn-nav {
            background: var(--core-teal);
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 8px;
        }

        .btn-nav:hover {
            background: var(--dark-teal);
        }

        .menu-icon {
            display: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* --- Hero Slider --- */
        .hero {
            position: relative;
            min-height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .slider-container {
            position: relative;
            height: 100vh;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 80px 10% 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* Hero Split Layout */
        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            transform: translateY(20px);
            transition: transform 0.8s ease;
        }

        .slide.active .hero-content {
            transform: translateY(0);
        }

        .hero-image-box {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: scale(0.95);
            transition: transform 0.8s ease;
        }

        .slide.active .hero-image-box {
            transform: scale(1);
        }

        .hero-image-box img {
            max-width: 100%;
            max-height: 460px;
            object-fit: contain;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
            transition: transform 0.5s ease;
        }

        .hero-image-box img:hover {
            transform: translateY(-8px);
        }

        .badge {
            background: #e0f2f1;
            color: var(--core-teal);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .hero h1 { 
            font-size: 3.8rem; 
            line-height: 1.1; 
            margin: 20px 0; 
            color: var(--text-dark);
            text-shadow: 0 2px 10px rgba(255,255,255,0.8);
        }

        .hero p { 
            max-width: 500px; 
            font-size: 1.1rem; 
            color: #4a5568; 
            margin-bottom: 35px; 
            font-weight: 500;
        }

        /* --- Slider Controls --- */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            background: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            cursor: pointer;
            border-radius: 50%;
            color: var(--core-teal);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: 0.3s;
        }

        .prev:hover, .next:hover { background: var(--core-teal); color: var(--white); }
        .prev { left: 30px; }
        .next { right: 30px; }

        .dot-container {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(0, 175, 154, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--core-teal);
            width: 28px;
            border-radius: 10px;
        }

        /* --- Features Section --- */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            padding: 0 10%;
            transform: translateY(-50px);
            position: relative;
            z-index: 150;
        }

        .feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 58%); /* Base shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for smooth shadow */
}

/* Hover shadow effect for regular feature cards */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Lifted shadow effect */
}

/* Active card styling with a teal glow shadow */
.active-card { 
    background: var(--core-teal); 
    color: var(--white); 
    box-shadow: 0 15px 35px rgba(0, 175, 154, 0.35); /* Colored shadow matching teal theme */
}

/* Active card hover shadow */
.active-card:hover {
    box-shadow: 0 22px 45px rgba(0, 175, 154, 0.5); /* Stronger glow on hover */
}

.icon-box { font-size: 2.2rem; color: var(--core-teal); margin-bottom: 20px; }
.active-card .icon-box, .active-card h3, .active-card p { color: var(--white); }

        /* --- Why Choose Us Section --- */
        .why-choose-us {
            padding: 100px 10%;
            background: var(--white);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-wrapper { flex: 1; }
        .about-image {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            display: block;
        }

        .about-text-content { flex: 1; }

        .description {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .benefit-item h5 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .benefit-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* --- Product Section --- */
        .product-section { padding: 100px 10% 80px; text-align: center; }
        .section-title { font-size: 2.5rem; margin-bottom: 50px; }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .item {
            background: var(--white);
            padding: 30px;
            border-radius: 24px;
            transition: 0.4s;
            border: 2px solid transparent;
        }

        .item:hover { 
            border: 2px solid var(--core-teal); 
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 175, 154, 0.1);
        }
.img-box {
    position: relative;
    height: 250px; /* Fixed container height */
    background: #f8f9fa;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 20px; /* Internal safety margin */
    box-sizing: border-box; /* Forces padding to sit inside the 250px height */
}

/* Foreground bottle PNG */
.img-box img {
    position: relative;
    max-height: 100%; /* Restricts height to container's available inner space */
    max-width: 100%;  /* Restricts width to container's available inner space */
    width: auto;
    height: auto;     /* Ensures aspect ratio is maintained */
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}
/* Big size quantity text in the background */
.img-box .qty-bg {
    position: absolute;
    font-size: 2.6rem;
    font-weight: 900;
    color: rgba(0, 175, 154, 0.12); /* Subtle teal background color */
    z-index: 1;
    user-select: none;
    letter-spacing: -1px;
}
/* Hover lift effect */
.item:hover .img-box img {
    transform: translateY(-4px); /* Use transform only without scale so it doesn't push bounds */
}


        /* --- Wholesale Section --- */
        .wholesale-section {
            padding: 100px 10%;
            background-color: var(--core-teal);
            text-align: center;
        }

        .wholesale-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .wstitle {
            text-align: center;
            color: var(--white);
            font-size: 2.5rem; 
            margin-bottom: 50px;
        }

        .plans-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 50px;
        }

        .plan-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            flex: 1;
            max-width: 450px;
            transition: 0.3s;
            position: relative;
        }

        .plan-card.featured {
            border: 3px solid var(--core-teal);
            transform: scale(1.08);
            z-index: 2;
            box-shadow: 0 20px 40px rgba(0, 175, 154, 0.15);
        }

        .popular-tag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--core-teal);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .plan-card .price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 20px 0 5px;
        }

        .featured .price { color: var(--core-teal); }

        .unit-info {
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 30px;
        }

        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .plan-features li {
            margin-bottom: 12px;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .plan-features i {
            color: var(--core-teal);
            margin-right: 10px;
        }

        /* --- Contact Section --- */
        .contact-section {
            padding: 100px 10%;
            background-color: var(--light-bg);
        }

        .contact-container {
            display: flex;
            max-width: 1100px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .contact-info {
            flex: 0 0 40%;
            background: var(--dark-teal);
            color: var(--white);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .info-details p {
            margin-bottom: 20px;
            line-height: 1.6;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .info-details i {
            margin-top: 5px;
            color: rgba(255,255,255,0.7);
        }

        .opacity-75 { 
            opacity: 0.75; 
            font-size: 0.95rem; 
            margin-top: 30px;
        }

        .contact-form-wrapper {
            flex: 1;
            padding: 60px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e1e8e8;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            background-color: #fcfdfe;
            transition: 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--core-teal);
            background-color: var(--white);
            box-shadow: 0 0 0 4px rgba(0, 175, 154, 0.1);
        }

        /* --- Footer --- */
        footer {
            padding: 50px;
            text-align: center;
            background: var(--text-dark);
            color: var(--white);
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* --- Responsive Media Queries --- */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .about-text-content .section-title {
                text-align: center !important;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .contact-container {
                flex-direction: column;
            }

            .contact-info, .contact-form-wrapper {
                padding: 40px;
            }
        }

        @media (max-width: 850px) {
            .plans-grid {
                flex-direction: column;
                gap: 50px;
            }
            
            .plan-card.featured {
                transform: scale(1);
                order: -1;
            }
        }

                /* Mobile specific layout */
        @media (max-width: 768px) {
            .menu-icon { display: block; }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 30px;
                box-shadow: 0 15px 30px rgba(0,0,0,0.1);
                z-index: 1000;
            }
        
            .nav-links.active { display: flex; }
            .nav-links li { margin: 15px 0 0 0; width: 100%; text-align: center; }
        
            .hero { text-align: center; }
            
            /* FIX: Keep absolute positioning on mobile so slides overlap in the same spot */
            .slider-container { 
                height: 100vh; 
                min-height: 650px; /* Ensures enough space for text + image on small screens */
            }
        
            .slide { 
                position: absolute; 
                top: 0;
                left: 0;
                padding: 100px 5% 40px; 
                height: 100%; 
                width: 100%;
            }
            
            .hero-wrapper {
                flex-direction: column;
                text-align: center;
                justify-content: center;
                gap: 20px;
                height: 100%;
            }
        
            .hero-content {
                max-width: 100%;
            }
        
            .hero h1 { font-size: 2.2rem; }
            .hero p { margin: 0 auto 20px; font-size: 0.95rem; }
        
            .hero-btns { 
                display: flex; 
                flex-direction: column; 
                gap: 12px; 
                align-items: center; 
            }
            .btn-outline { margin-left: 0; }
        
            .hero-image-box img {
                max-height: 200px;
            }
        
            .features { transform: translateY(0); margin-top: 30px; padding: 0 5%; }
            .prev, .next { display: none; }
        }

        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
            }
        }
    