  	 /* --- CSS VARIABLES & THEME --- */
        :root {
            --primary: #800000; /* Deep Emerald Green */
            --primary-light: #ff3366;
            --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(--accent);
            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%; }
        
        /* --- Dropdown Navigation Logic --- */
        
        /* Corrected Dropdown Logic */
        .has-dropdown { position: relative; }
        .dropdown {
            position: absolute;
            top: 100%; left: 0;
            background: #fff;
            min-width: 200px;
            opacity: 0; visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            border-top: 3px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .submenu {
            position: absolute;
            left: 100%; top: 0;
            background: #fff;
            min-width: 180px;
            opacity: 0; visibility: hidden;
            transform: translateX(10px);
            transition: var(--transition);
            border-left: 3px solid var(--accent);
        }
        
        .has-submenu:hover > .submenu { opacity: 1; visibility: visible; transform: translateX(0); }
        

/* Position the parent relative so the dropdown aligns to it */
.has-dropdown {
    position: relative;
}

/* Hide the dropdown by default */
.dropdown {
    position: absolute;
    top: 100%; /* Sits exactly below the parent link */
    left: 0;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    opacity: 40;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border-top: 3px solid var(--primary); /* Brand accent line */
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown link styling */
.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    transition: 0.3s;
}

/* Hover effect on dropdown links */
.dropdown li a:hover {
    background-color: #fff5f6; /* Very light tint of primary red */
    opacity: 60px;
    color: var(--primary);
    padding-left: 25px; /* Subtle slide effect */
}

/* Rotate the arrow icon on hover */
.has-dropdown:hover i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.has-dropdown i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: 0.3s;
}
        
		 /* --- NESTED SIDE-SLIDE MENU --- */

		/* Ensure the sub-parent is relative to position the slide-out menu */
		.dropdown li.has-submenu {
		    position: relative;
		}

		/* Base style for the nested submenu */
		.dropdown .submenu {
		    top: -3px;         /* Align with the top of the parent item */
		    left: 100%;       /* Push it to the right of the first dropdown */
		    margin-top: 0;
		    transform: translateX(15px); /* Start slightly offset for the slide effect */
		    border-top: none; 
		    border-left: 3px solid var(--primary); /* Maintain branding on the left edge */
		}

		/* Hover logic to trigger the right slide */
		.dropdown li.has-submenu:hover > .submenu {
		    opacity: 1;
		    visibility: visible;
		    transform: translateX(0); /* Slide into position */
		}

		/* Adjust icons for the nested menu */
		.dropdown li.has-submenu i {
		    float: right;
		    font-size: 0.6rem;
		    margin-top: 5px;
		}

		/* Small adjustments for mobile responsiveness */
		@media (max-width: 768px) {
		    .dropdown .submenu {
		        position: static; /* Stack vertically on mobile instead of sliding right */
		        transform: none;
		        box-shadow: none;
		        padding-left: 20px;
		        background: #fffafa;
		    }
		    
		    .dropdown li.has-submenu:hover > .submenu {
		        transform: none;
		    }
		}
		
	/* --- ACCESSIBILITY & FOCUS MANAGEMENT --- */
 
 /* Keep the primary dropdown open if any child has focus */
 .has-dropdown:focus-within .dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }
 
 /* Keep the secondary submenu open if any child has focus */
 .has-submenu:focus-within .submenu {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }
 
 /* Ensure the submenu stays hidden if focus is lost, even if parent li is focused */
 .dropdown .submenu {
     pointer-events: none; /* Prevent accidental triggers */
     transition: var(--transition);
 }
 
 .has-submenu:hover > .submenu,
 .has-submenu:focus-within > .submenu {
     pointer-events: auto;
 }	
		
		
		
		
        
        .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(0,102,51,0.65) 0%, rgba(0,102,51,0.6) 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: 2em;
            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; }
        
      cat {
      	padding: 0,0;
      	font-size: 1.5em;
      	color: var(--accent);
      }

             /* --- 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(255,51,102,0.9), rgba(255,51,102,0.9)), url('https://vediherbals.com/cdn/shop/articles/AyurvedaHistory.jpg?v=1739768432');
                    background-attachment: fixed;
                    background-size: cover;
                    background-position: center;
                    color: white;
                    text-align: center;
                    padding: 6rem 2rem;
                }
        
                .parallax-content h2 {
                    color: 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(102,0,51,0.8), rgba(102,0,153,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); }
        
        .definition-box {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid var(--accent);
            margin: 15px 0;
        }
                
        .policy-container {
            background: var(--bg-white);
            padding: 50px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-top: -60px;
            position: relative;
            z-index: 5;
            border-top: 5px solid var(--accent);
        }
        
        .policy-hero {
            background: linear-gradient(rgba(0,102,51,0.85), rgba(0,102,51,0.85)), url('https://wallpaperaccess.com/full/2996862.jpg');
            background-size: cover;
            background-position: center;
            padding: 140px 20px 100px;
            text-align: center;
            color: white;
        }

        .policy-hero h1 { color: white; font-size: 3rem; margin-bottom: 10px; }
        
        .policy-section { margin-bottom: 35px; }
        .policy-section h3 { 
            margin-bottom: 15px; 
            font-size: 1.4rem; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .policy-section h3 i { color: var(--accent); font-size: 1.1rem; }
        .policy-section p, .policy-section li { color: var(--text-gray); line-height: 1.8; }
        .policy-section ul { margin-left: 20px; list-style: disc; margin-top: 10px; }
        
        .update-tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            margin-bottom: 20px;
            display: block;
        }

        @media (max-width: 768px) {
            .policy-container { padding: 25px; margin-top: 0; }
            .policy-hero h1 { font-size: 2rem; }
        }
        

        .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 { color: white; 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; }
        }
        
        
        /* --- WhatsApp Floating Button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: right;
            gap: 10px;
            z-index: 1000;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            transform: scale(1.05);
            background-color: #128c7e;
            color: #fff;
        }
        
        .whatsapp-float i { font-size: 1.5rem; }
        
        /* --- Back to Top Button --- */
        #backToTop {
            display: none; /* Hidden by default */
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            border: none;
            outline: none;
            background-color: var(--primary); /* Deep Maroon */
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            border: 2px solid var(--accent); /* Gold border */
        }
        
        #backToTop:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Responsive adjustment */
        @media (max-width: 768px) {
            .whatsapp-float span { display: none; } /* Show icon only on mobile */
            .whatsapp-float { padding: 15px; border-radius: 50%; }
        }