/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    --primary: #0B0646;       /* Dark Herbal Green */
    --primary-light: #2c6941;
    --secondary: #2E8B57;     /* Leaf Green */
    --secondary-dark: #236b43;
    --accent: #DAA520;        /* Natural Gold */
    --accent-hover: #b8860b;
    --bg-light: #FFFFF0;      /* Cream / Ivory */
    --bg-white: #FFFFFF;
    --text-dark: #3E2723;     /* Earth Brown */
    --text-muted: #795548;
    --text-light: #F5F5DC;    /* Soft Beige */
    
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-hindi: 'Tiro Devanagari Hindi', serif;

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 30px rgba(26, 71, 42, 0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto; /* Normal Cursor */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   UTILITY CLASSES & TYPOGRAPHY
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark-green { background-color: var(--primary); }
.text-light { color: var(--text-light); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.d-block { display: block; }
.relative { position: relative; }
.z-10 { z-index: 10; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bg-dark-green h2, .bg-dark-green h3, .bg-dark-green h4, .bg-dark-green p {
    color: #fff;
}

.font-hindi {
    font-family: var(--font-hindi);
}

.section-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary { background-color: var(--primary); color: #fff; }
.btn-primary:hover {
    background-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-outline-light { background-color: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background-color: #fff; color: var(--primary); }

.btn-accent { background-color: var(--accent); color: #fff; }
.btn-accent:hover { background-color: var(--accent-hover); }
.btn-full { width: 100%; display: block; }

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-out;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(40px); }
.reveal-right { transform: translateX(-40px); }
.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.float { animation: floating 3s ease-in-out infinite; }
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.glow { animation: glowing 2s infinite alternate; }
@keyframes glowing {
    0% { box-shadow: 0 0 5px rgba(218, 165, 32, 0.2); }
    100% { box-shadow: 0 0 20px rgba(218, 165, 32, 0.8); }
}

.pulse-arrow { animation: pulseArrow 1.5s infinite; }
@keyframes pulseArrow {
    0% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.5; }
}

/* ==========================================================================
   SCROLL EFFECTS
   ========================================================================== */
.scroll-progress-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: transparent;
    z-index: 10000;
}
.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    width: 0%;
}

.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: scale(0) rotate(180deg);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0);
}
.back-to-top:hover {
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(46,139,87,0.6);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--bg-light);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-content { text-align: center; }
.preloader-icon {
    font-size: 50px;
    color: var(--secondary);
    animation: leafRotate 2s linear infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(46,139,87,0.5);
}
@keyframes leafRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.preloader-title {
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.preloader-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.preloader-progress {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}
.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.1s linear;
}

/* ==========================================================================
   HEADER & NAVIGATION (UPDATED TO DEEP GREEN)
   ========================================================================== */
.top-bar {
    background-color: #12331d; /* Slightly darker than primary for contrast */
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: #fff; margin-right: 20px; }
.top-bar a:hover { color: var(--accent); }
.top-bar i { margin-right: 5px; }
.top-bar-right a { margin-right: 0; margin-left: 15px; }
.top-bar-right a:hover { transform: scale(1.2); display: inline-block; }

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--primary); /* Deep Green Background */
    color: #fff; /* White Text */
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 5px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo and Text Side by Side */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}
.brand-logo { 
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    margin: 0;
    font-size: 22px;
    color: #fff; /* White title */
    letter-spacing: 1px;
}
.brand-tagline {
    font-size: 12px;
    color: #dcedc8; /* Light green tagline */
    font-family: var(--font-hindi);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-list {
    display: flex;
    gap: 25px;
}
.nav-link {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    color: #fff; /* White text */
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--accent); }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    width: 25px; height: 3px;
    background: #fff; /* White hamburger */
    transition: var(--transition);
}

/* ==========================================================================
   HERO SLIDER (BRIGHTER IMAGES)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 130px);
    min-height: 500px;
    overflow: hidden;
    background: var(--primary);
}
.slider-container { width: 100%; height: 100%; position: relative; }
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Brighter overlay - just dark enough to make text legible */
.slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}
.dark-overlay { background: rgba(0,0,0,0.4); }

.slide-content {
    color: #fff;
    max-width: 800px;
    padding: 0 40px;
}
.align-left { margin-right: auto; }
.align-right { margin-left: auto; text-align: right; }
.slide-heading {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); /* Strong shadow for readability on bright images */
}
.brand-highlight { color: var(--accent); }
.slide-subheading {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}
.slide-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}
.align-right .slide-text { margin-left: auto; }
.slide-buttons { display: flex; gap: 15px; }
.align-right .slide-buttons { justify-content: flex-end; }

/* Transitions */
.slide.active[data-transition="ken-burns"] .slide-bg { animation: kenBurns 10s linear forwards; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.slide.active[data-transition="ken-burns"] .slide-content { animation: fadeInUp 1s ease 0.5s both; }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.slide.active[data-transition="slide-left"] .slide-bg { animation: bgSlideLeft 1.2s ease-out forwards; }
@keyframes bgSlideLeft { 0% { transform: translateX(50px); opacity: 0.8; } 100% { transform: translateX(0); opacity: 1; } }
.slide.active[data-transition="slide-left"] .slide-content { animation: textSlideLeft 1s ease 0.5s both; }
@keyframes textSlideLeft { 0% { opacity: 0; transform: translateX(50px); } 100% { opacity: 1; transform: translateX(0); } }

.slide.active[data-transition="parallax"] .parallax-bg { background-attachment: fixed; animation: fadeIn 1.5s ease both; }
.slide.active[data-transition="scale-blur"] .slide-bg { animation: scaleBlur 1.5s ease forwards; }
@keyframes scaleBlur { 0% { transform: scale(1.5); filter: blur(10px); } 100% { transform: scale(1); filter: blur(0); } }
.slide.active[data-transition="fade-sweep"] .slide-content { animation: fadeSweep 1.5s ease forwards; }
@keyframes fadeSweep { 0% { opacity: 0; clip-path: inset(0 100% 0 0); } 100% { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes fadeIn { 0%{opacity:0} 100%{opacity:1} }

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 100%; display: flex; justify-content: space-between;
    padding: 0 20px; z-index: 20; pointer-events: none;
}
.slider-arrow {
    pointer-events: auto;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5); color: #fff;
    font-size: 20px; cursor: pointer; transition: var(--transition);
}
.slider-arrow:hover {
    background: var(--primary); transform: scale(1.1); box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.slider-dots {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 10px; z-index: 20;
}
.dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition);
}
.dot.active { width: 30px; border-radius: 10px; background: var(--accent); }

.slider-counter {
    position: absolute; bottom: 30px; right: 30px;
    color: #fff; font-family: var(--font-serif); font-size: 1.2rem;
    z-index: 20; background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 20px;
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
    position: fixed; bottom: 90px; right: 30px;
    width: 60px; height: 60px; background-color: #25D366; color: #fff;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 35px; z-index: 99; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulseWhatsapp 2s infinite;
}
@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-tooltip {
    position: absolute; right: 70px;
    background: #fff; color: #333; padding: 5px 10px; border-radius: 5px;

    font-size: 12px; font-weight: 500; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-soft);
}
.floating-whatsapp:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* ==========================================================================
   WELCOME SECTION (FANCY CSS EFFECTS FOR ABOUT US IMAGES)
   ========================================================================== */
.welcome-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.welcome-section { position: relative; }
.leaf-decoration {
    position: absolute; width: 150px; height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232E8B57" opacity="0.1"><path d="M17.5 2c-3.1 0-6.2 1.6-8.5 4.3C6 4.6 3 5.4 1.2 7.7c-2 2.6-1.5 6.6 1.4 8.7 1.8 1.4 4.3 1.5 6.4.5 2.1 2 5.1 3.2 8.4 3.2 4.1 0 5.4-2.8 5.6-3.8.3-1.6-.2-3.3-1.4-4.5 1.5-2.2 1.5-5.5-.3-7.5-1.1-1.3-2.6-2.3-3.8-2.3zm-1 2c.8 0 2 .7 2.7 1.6 1.2 1.3 1.2 3.6.1 5.3l-.4.6.7.3c.9.4 1.3 1.5 1 2.5-.1.5-.7 1.9-3.7 1.9-2.7 0-5.2-.9-7-2.6l-.6-.6-.7.4c-1.6.9-3.3.7-4.5-.2-2.1-1.6-2.2-4.4-.8-6.3 1.3-1.7 3.5-2.2 5.3-1.1l.6.4.5-.6c2-2.3 4.5-3.6 6.8-3.6z"/></svg>');
    background-repeat: no-repeat; z-index: -1;
}
.leaf-top-right { top: 50px; right: -50px; transform: rotate(45deg); }
.leaf-mid-left { top: 30%; left: -50px; transform: rotate(-45deg); }

/* Updated Image Styles */
.fancy-image-wrapper { 
    position: relative; 
    border-radius: 20px;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.about-img {
    width: 100%; height: 500px; object-fit: cover; border-radius: 15px;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(30%) contrast(1.1);
}
.fancy-image-wrapper:hover .about-img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.0);
}
.image-accent-border {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 3px dashed var(--secondary);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.5s ease;
}
.fancy-image-wrapper:hover .image-accent-border {
    top: 15px; left: 15px;
    border-color: var(--accent);
    transform: rotate(2deg);
}

.experience-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    background: var(--accent);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 130px; height: 130px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 10px 20px rgba(218,165,32,0.3);
    border: 5px solid #fff;
    z-index: 2;
}
.exp-number { font-size: 26px; font-weight: 700; line-height: 1; }
.exp-text { font-size: 13px; line-height: 1.2; margin-top: 5px; }

.lead-text {
    font-size: 1.1rem; color: var(--secondary);
    font-weight: 500; margin-bottom: 20px;
}
.welcome-list { margin-top: 20px; }
.welcome-list li {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 500;
}
.welcome-list i { color: var(--secondary); font-size: 1.2rem; }

/* ==========================================================================
   ABOUT BRAND
   ========================================================================== */
.divider-leaf {
    font-size: 24px; color: var(--secondary); margin: 20px 0;
    position: relative; display: inline-block;
}
.divider-leaf::before, .divider-leaf::after {
    content: ''; position: absolute; top: 50%; width: 100px; height: 1px;
    background: var(--secondary); opacity: 0.3;
}
.divider-leaf::before { right: 100%; margin-right: 15px; }
.divider-leaf::after { left: 100%; margin-left: 15px; }

/* ==========================================================================
   WHY CHOOSE US (CARDS)
   ========================================================================== */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.feature-card {
    background: #fff; padding: 40px 30px; border-radius: 15px;
    text-align: center; box-shadow: var(--shadow-soft);
    border-bottom: 4px solid transparent; transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent 80%, rgba(46,139,87,0.1) 100%); z-index: 0;
}
.feature-card:hover {
    transform: translateY(-10px); border-bottom-color: var(--secondary); box-shadow: var(--shadow-hover);
}
.card-icon-wrapper {
    width: 70px; height: 70px; background: var(--bg-light); color: var(--primary);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; margin: 0 auto 20px; transition: var(--transition);
    position: relative; z-index: 1;
}
.feature-card:hover .card-icon-wrapper {
    background: var(--primary); color: #fff; transform: rotateY(180deg);
}
.feature-title { position: relative; z-index: 1; }
.feature-desc { position: relative; z-index: 1; color: var(--text-muted); font-size: 0.95rem; }

/* ==========================================================================
   PRODUCT SECTION
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition); }
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.product-img-box { position: relative; overflow: hidden; }
.product-img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.1); }
.product-category {
    position: absolute; top: 15px; right: 15px; background: var(--primary); color: #fff;
    font-size: 12px; padding: 5px 15px; border-radius: 20px; font-weight: 500;
}
.product-info { padding: 25px; text-align: center; }
.product-name { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }
.product-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; }
.product-ingredients {
    background: var(--bg-light); padding: 10px; border-radius: 8px; font-size: 0.85rem;
    color: var(--primary); border: 1px dashed var(--secondary);
}

/* ==========================================================================
   BEFORE / AFTER COMPARISON
   ========================================================================== */
.comparison-container { max-width: 800px; margin: 0 auto; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); }
.comparison-slider { position: relative; width: 100%; height: 400px; }
.comp-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.comp-before-wrapper { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.comp-before { width: 800px; max-width: none; }
.comp-range { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 10; }
.comp-handle { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: #fff; pointer-events: none; z-index: 5; }
.comp-handle::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.comp-handle i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--primary); z-index: 6; }
.comp-label {
    position: absolute; bottom: 20px; background: rgba(0,0,0,0.6); color: #fff;
    padding: 5px 15px; border-radius: 20px; font-size: 12px; pointer-events: none; z-index: 5;
}
.label-before { left: 20px; } .label-after { right: 20px; }

/* ==========================================================================
   INGREDIENTS SECTION
   ========================================================================== */
.ingredients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.ingredient-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 25px; border-radius: 15px; text-align: center; transition: var(--transition);
}
.ingredient-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.ing-img-placeholder {
    width: 60px; height: 60px; margin: 0 auto 15px; background: var(--accent); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 24px; color: #fff;
}
.ing-title { margin-bottom: 5px; }
.ing-sub { display: block; font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.ing-desc { font-size: 0.9rem; color: #d0d0d0; }

/* ==========================================================================
   TIMELINE (APPROACH)
   ========================================================================== */
.timeline-container { display: flex; justify-content: space-between; position: relative; padding: 20px 0; }
.timeline-line { position: absolute; top: 40px; left: 5%; width: 90%; height: 2px; background: rgba(46,139,87,0.3); z-index: 1; }
.timeline-step { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 15px; }
.step-number {
    width: 60px; height: 60px; margin: 0 auto 20px; background: var(--bg-white);
    border: 2px solid var(--secondary); border-radius: 50%; display: flex;
    justify-content: center; align-items: center; font-size: 1.2rem; font-weight: 700;
    color: var(--primary); position: relative;
}
.step-number::after {
    content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 1px solid var(--secondary); animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(1.5); opacity: 0; } }
.step-desc { font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================================================
   PROCESS FLOW
   ========================================================================== */
.process-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 15px; }
.process-item { text-align: center; width: 120px; }
.p-icon {
    width: 70px; height: 70px; background: #fff; border-radius: 50%; display: flex;
    justify-content: center; align-items: center; margin: 0 auto 10px; font-size: 24px;
    color: var(--secondary); box-shadow: var(--shadow-soft); transition: transform 0.3s;
}
.process-item:hover .p-icon { transform: scale(1.1); background: var(--primary); color: #fff; }
.process-item p { font-size: 0.85rem; font-weight: 600; }
.process-connector { color: var(--accent); font-size: 20px; margin-bottom: 25px; }

/* ==========================================================================
   OUR WORK
   ========================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.work-card { position: relative; border-radius: 15px; overflow: hidden; height: 250px; }
.work-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26,71,42,0.85); color: #fff; display: flex; flex-direction: column;
    justify-content: center; align-items: center; opacity: 0; transition: var(--transition);
}
.work-card:hover .work-img { transform: scale(1.1); }
.work-card:hover .work-overlay { opacity: 1; }
.work-arrow { margin-top: 15px; font-size: 24px; color: var(--accent); transform: translateX(-20px); transition: var(--transition); }
.work-card:hover .work-arrow { transform: translateX(0); }

/* ==========================================================================
   SERVICES (WELLNESS SUPPORT)
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-box {
    background: #fff; padding: 30px; border-radius: 15px; box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--secondary); transition: var(--transition);
}
.service-box:hover { transform: translateX(10px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 35px; color: var(--accent); margin-bottom: 15px; }
.service-box p { font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-icon { font-size: 40px; color: var(--accent); margin-bottom: 15px; }
.stat-number { font-size: 3rem; font-weight: 700; font-family: var(--font-serif); }
.stat-text { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filters { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.filter-btn {
    background: none; border: 1px solid var(--secondary); padding: 8px 20px;
    border-radius: 20px; color: var(--text-dark); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--secondary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 15px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(3n) { grid-row: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); display: flex; justify-content: center;
    align-items: center; color: #fff; font-size: 30px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-img { transform: scale(1.1); filter: blur(2px); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 999999; display: flex;
    justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90%; max-height: 90%; border: 4px solid #fff; border-radius: 5px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2);
    color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%;
    font-size: 20px; cursor: pointer; transition: var(--transition);
}
.lightbox-nav:hover { background: var(--primary); }
.lb-prev { left: 30px; } .lb-next { right: 30px; }

/* ==========================================================================
   CLIENT REVIEWS
   ========================================================================== */
.reviews-slider-container { overflow: hidden; padding: 20px 0; }
.reviews-track { display: flex; gap: 30px; animation: scrollReviews 30s linear infinite; width: max-content; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 3 - 90px)); } }
.review-card {
    width: 350px; background: #fff; padding: 30px; border-radius: 15px;
    box-shadow: var(--shadow-soft); border-top: 4px solid var(--primary);
}
.stars { color: var(--accent); margin-bottom: 15px; }
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; }
.reviewer-info { display: flex; align-items: center; gap: 15px; }
.avatar {
    width: 50px; height: 50px; background: var(--secondary); color: #fff;
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: bold;
}
.reviewer-info h5 { margin: 0; font-size: 1rem; font-family: var(--font-sans); }
.reviewer-info span { font-size: 0.8rem; color: #999; }

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-flex { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item i { font-size: 50px; color: var(--secondary); margin-bottom: 15px; display: block; }
.trust-item span { font-weight: 600; font-size: 1.1rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 15px; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-btn {
    width: 100%; text-align: left; padding: 20px; background: none; border: none; font-size: 1.1rem;
    font-weight: 600; color: var(--primary); cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; transition: var(--transition);
}
.faq-btn:hover { background: rgba(46,139,87,0.05); }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.faq-item.active .faq-content { padding-bottom: 20px; }

/* ==========================================================================
   CALL TO ACTION
   ========================================================================== */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; color: #fff; }
.cta-gradient-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); z-index: 1;
}
.cta-heading { font-size: 3rem; color: #fff; margin-bottom: 10px; }
.cta-subheading { color: var(--accent); margin-bottom: 20px; font-family: var(--font-sans); }
.cta-text { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { background: #fff; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-soft); }
.input-group { position: relative; margin-bottom: 25px; }
.form-input {
    width: 100%; padding: 12px 0; border: none; border-bottom: 2px solid #ddd;
    background: transparent; font-size: 1rem; font-family: var(--font-sans); transition: var(--transition);
}
.form-input:focus { outline: none; border-bottom-color: var(--primary); }
.floating-label { position: absolute; top: 12px; left: 0; color: #999; pointer-events: none; transition: 0.3s ease all; }
.form-input:focus ~ .floating-label, .form-input:not(:placeholder-shown) ~ .floating-label { top: -15px; font-size: 12px; color: var(--primary); font-weight: 500; }
.form-textarea { resize: none; }
.form-message { margin-top: 15px; padding: 10px; border-radius: 5px; display: none; text-align: center; }
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; }

.map-container { height: 300px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); background: #e0e0e0; }
.contact-info-boxes { display: flex; flex-direction: column; gap: 15px; }
.info-box { display: flex; align-items: center; gap: 20px; background: var(--bg-light); padding: 20px; border-radius: 10px; }
.info-box i { font-size: 24px; color: var(--primary); }
.info-box h5 { margin: 0 0 5px 0; font-family: var(--font-sans); }

/* ==========================================================================
   VISIT COUNTER
   ========================================================================== */
.visit-counter-display {
    font-family: 'Courier New', Courier, monospace; font-size: 2.5rem; font-weight: bold;
    letter-spacing: 5px; background: #333; color: #0f0; display: inline-block;
    padding: 10px 20px; border-radius: 5px; box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--text-dark); color: #fff; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { color: var(--accent); font-size: 1.8rem; margin-bottom: 15px; }
.footer-desc { color: #ccc; font-size: 0.9rem; margin-bottom: 20px; }
.newsletter-ui { display: flex; }
.newsletter-input { padding: 10px 15px; border: none; border-radius: 20px 0 0 20px; outline: none; width: 100%; }
.newsletter-btn { background: var(--primary); color: #fff; border: none; padding: 10px 20px; border-radius: 0 20px 20px 0; cursor: pointer; transition: var(--transition); }
.newsletter-btn:hover { background: var(--secondary); }

.footer-heading { font-family: var(--font-sans); font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content:''; position:absolute; left:0; bottom:0; width:30px; height:2px; background:var(--accent); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }

.footer-contact-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #ccc; }
.footer-contact-list i { color: var(--accent); }

.footer-socials a {
    display: inline-flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; background: rgba(255,255,255,0.1); border-radius: 50%;
    margin-right: 10px; transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-bottom { background: #2a1a17; padding: 20px 0; font-size: 0.9rem; color: #aaa; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom-links a:hover { color: #fff; }
.sep { margin: 0 10px; }
.design-credit { color: var(--secondary); font-style: italic; }
.health-disclaimer { font-size: 0.8rem; opacity: 0.6; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
    .welcome-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .slide-heading { font-size: 2.5rem; }
    .slide-subheading { font-size: 1.5rem; }
    .experience-badge { bottom: 10px; right: 10px; } /* Adjust badge for mobile */
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-list {
        position: fixed; top: 80px; left: -100%;
        width: 100%; height: calc(100vh - 80px);
        background: var(--primary); /* Deep Green for Mobile Menu */
        flex-direction: column; align-items: center; justify-content: center;
        transition: 0.4s ease;
    }
    .nav-list.active { left: 0; }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .timeline-container { flex-direction: column; }
    .timeline-line { top: 0; left: 30px; width: 2px; height: 100%; }
    .timeline-step { display: flex; text-align: left; margin-bottom: 30px; align-items: flex-start; gap: 20px; }
    .step-number { margin: 0; flex-shrink: 0; }
    
    .process-flow { flex-direction: column; }
    .process-connector { transform: rotate(90deg); margin: 15px 0; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .cta-buttons, .slide-buttons { flex-direction: column; }
    .slide-heading { font-size: 2rem; }
}