  	 /* --- CSS VARIABLES & THEME --- */
        :root {
            --primary: #064e3b; /* Deep Emerald Green */
            --primary-light: #059669;
            --primary-dark: #066069;
            --accent: #d4af37; /* Metallic Gold */
            --bg-cream: #fdfbf7; /* Warm Off-White */
            --bg-white: #ffffff;
            --text-dark: #1f2937;
            --text-gray: #4b5563;
            --text-light: #9ca3af;
            --shadow: 0 10px 40px rgba(0,0,0,0.08);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* --- GLOBAL RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            line-height: 1.3;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        

        /* --- UTILITY: ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
         /*   transition: opacity 1s ease, transform 1s ease;  */
             transition: 1s cubic-bezier(0.5, 0, 0, 1);

        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(253, 251, 247, 0.75);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            padding: 15px 0;
            transition: 0.3s;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* IMPORTANT: Replace src with your actual logo file (e.g., "logo.png") */
        .logo-img {
            height: 55px;
            width: auto;
            object-fit: contain;
        }

        .company-name {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            line-height: 1.2;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: -4px; left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after { width: 100%; }

        .hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--primary); }

        /* --- HERO SLIDER --- */
        #hero {
            position: relative;
            height: 80vh;
            overflow: hidden;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        .slide.active { opacity: 60; }

        /* Dark Gradient Overlay for Text Readability */
        .slide::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(6,78,59,0.85) 0%, rgba(6,78,59,0.4) 100%);
        }

        .hero-content {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: white;
            max-width: 800px;
            width: 90%;
            text-align: left;
        }

        .hero-subtitle {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
            animation: fadeInDown 1s ease forwards;
        }

        .hero-title {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-desc {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 600px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .btn-hero {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--accent);
            color: white;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--accent);
            animation: fadeInUp 1s ease 0.9s forwards;
            opacity: 0;
            transition: 0.3s;
        }

        .btn-hero:hover {
            background-color: var(--primary-dark);
            color: white;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px; left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        .control-dot {
            width: 12px; height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: 0.3s;
        }
        .control-dot.active { background: var(--accent); transform: scale(1.2); }

        /* --- SECTION STYLING --- */
        .section {
            padding: 100px 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        .section-header span {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }
        .section-header h2 { font-size: 2.8rem; margin-bottom: 20px; }
        .divider {
            width: 60px; height: 3px;
            background: var(--primary);
            margin: 0 auto;
        }

        /* --- VISION, MISSION & VALUES --- */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .vm-card {
            background: var(--bg-white);
            padding: 50px 30px;
            text-align: center;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }
        .vm-card:hover {
            transform: translateY(-10px);
            border-bottom: 4px solid var(--accent);
        }
        .vm-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        /* --- OUR STANDARDS (NEW) --- */
        #standards {
            background-color: var(--primary);
            color: white;
            padding: 60px 20px;
        }
        #standards h2 { color: white; }
        #standards .divider { background: var(--accent); }
        
        .standards-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            margin-top: 50px;
        }
        .standard-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 200px;
        }
        .badge-circle {
            width: 100px; height: 100px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 2rem;
            color: var(--accent);
            background: rgba(255,255,255,0.05);
            transition: 0.3s;
        }
        .standard-item:hover .badge-circle {
            background: var(--accent);
            color: var(--primary);
        }
        .standard-item h4 { color: white; margin-bottom: 10px; }
        .standard-item p { font-size: 0.85rem; opacity: 0.8; }
        
      

             /* --- ABOUT / DOSHAS SECTION --- */
                .section-padding {
                    padding: 5rem 2rem;
                    max-width: 1200px;
                    margin: 0 auto;
                }
        
                .section-header {
                    text-align: center;
                    margin-bottom: 4rem;
                }
        
                .section-header h2 {
                    font-size: 2.5rem;
                    margin-bottom: 0.5rem;
                }
        
                .section-header .divider {
                    width: 60px;
                    height: 3px;
                 background-color: var(--yellow); */
                    margin: 0 auto;
                }
        
                .doshas-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
                }
        
                .dosha-card {
                    background: var(--primary-light);
                    padding: 2.5rem;
                    border-radius: 12px;
                    text-align: center;
                    box-shadow: var(--shadow);
                    transition: var(--transition);
                    border-top: 4px solid transparent;
                }
        
                .dosha-card:hover {
                    transform: translateY(-10px);
                    border-top: 4px solid var(--accent);
                }
        
                .dosha-icon {
                    font-size: 3rem;
                    color: var(--primary-dark);
                    margin-bottom: 1.5rem;
                }
        
                .dosha-card h3 {
                    margin-bottom: 1rem;
                    font-size: 1.5rem;
                }
        
        
         /* --- NATURAL INGREDIENTS PARALLAX --- */
                .parallax-section {
                    background: linear-gradient(rgba(74, 103, 65, 0.9), rgba(74, 103, 65, 0.9)), url('https://vediherbals.com/cdn/shop/articles/AyurvedaHistory.jpg?v=1739768432');
                    background-attachment: fixed;
                    background-size: cover;
                    background-position: center;
                    color: var(--green);
                    text-align: center;
                    padding: 6rem 2rem;
                }
        
                .parallax-content h2 {
                    color: var(--white);
                    font-size: 2.5rem;
                    margin-bottom: 1.5rem;
                }
        
        
        
        /* --- PRODUCTS CATEGORY --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .product-card:hover { transform: translateY(-5px); }
        .prod-img-box {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        .prod-img-box img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: 0.6s;
        }
        .product-card:hover .prod-img-box img { transform: scale(1.1); }
        .prod-info { padding: 25px; text-align: center; }
        .prod-info h3 { font-size: 1.3rem; margin-bottom: 10px; }
        .prod-link {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            border-bottom: 1px solid var(--accent);
        }

        /* --- SERVICES --- */
        #services { background-color: #ccffcc; }
        .service-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .service-col {
            flex: 1;
            min-width: 300px;
        }
        .service-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            background: var(--bg-white);
            padding: 25px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .service-item:hover { box-shadow: var(--shadow); }
        .s-icon {
            min-width: 60px; height: 60px;
            background: rgba(6,78,59,0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
        }

        /* --- INNOVATIONS (Parallax) --- */
        #innovations {
            background-image: linear-gradient(rgba(6,78,59,0.8), rgba(6,78,59,0.8)), url('https://wallpaperaccess.com/full/2996862.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        #innovations h2 { color: white; }
        #innovations .divider { background: var(--accent); }
        
        .innovation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        .inn-box h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.5rem; }

        /* --- CONTACT & FOOTER --- */
        .contact-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }
        .contact-info { flex: 1; min-width: 300px; }
        .contact-form { flex: 1.5; min-width: 300px; background: var(--primary); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); }
        
        .c-item {
            display: flex; align-items: flex-start; gap: 20px;
            margin-bottom: 30px;
        }
        .c-item i { font-size: 1.5rem; color: var(--accent); margin-top: 5px; }
        
        .input-group { margin-bottom: 20px; }
        .input-group input, .input-group textarea {
            width: 100%; padding: 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Lato', sans-serif;
            transition: 0.3s;
        }
        .input-group input:focus, .input-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        .btn-submit {
            background: var(--primary-light);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-submit:hover { background: var(--accent); }
        
        
        .footer {
                    background: var(--primary-dark); /* Even darker than primary */
                    color: #101214;
                    padding: 80px 20px 20px;
        }

        .footer-section {
            background: var(--primary-dark); /* Even darker than primary */
            color: #101214;
            padding: 80px 20px 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 60px;
        }
        .footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }
        .socials a {
            display: inline-flex;
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            align-items: center; justify-content: center;
            margin-right: 10px;
            transition: 0.3s;
        }
        .socials a:hover { background: var(--accent); color: white; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }

        /* --- KEYFRAMES --- */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .nav-menu {
                position: absolute;
                top: 100%; left: 0; width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.05);
                display: none;
                text-align: center;
            }
            .nav-menu.active { display: flex; }
            .hamburger { display: block; }
        }