        /* Splash Screen Styles */
        #splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }
        
        .splash-logo {
            width: 150px;
            height: 150px;
            margin-bottom: 30px;
            border-radius: 50%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .splash-logo img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .splash-title {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 36px;
            color: white;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .splash-subtitle {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            text-align: center;
            margin-bottom: 40px;
            max-width: 80%;
        }
        
        .splash-loading {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .splash-quote {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            text-align: center;
            margin-top: 30px;
            max-width: 80%;
            font-style: italic;
        }
        
        /* Hide splash screen when faded out */
        #splash-screen.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        
        
        
        

        
        
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2e7d32;
            --primary-light: #4caf50;
            --primary-dark: #1b5e20;
            --secondary: #ff9800;
            --text: #333;
            --text-light: #666;
            --background: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --menu-bg: rgba(255, 255, 255, 0.95);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

        .hindi-text {
            font-family: 'Hind Siliguri', sans-serif;
        }

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

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
            font-weight: 700;
        }

        p {
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background-color: var(--secondary);
        }

        .btn-secondary:hover {
            background-color: #e68900;
        }

        .btn-small {
            padding: 8px 16px;
            font-size: 14px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        /* New Header Styles */
        header {
            background-color: var(--menu-bg);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-container {
            position: relative;
            width: 70px;
            height: 70px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .tree-logo {
            position: relative;
            width: 45px;
            height: 45px;
        }

        .tree-trunk {
            position: absolute;
            bottom: 5px;
            left: 20px;
            width: 5px;
            height: 18px;
            background-color: #8B4513;
            border-radius: 2px;
        }

        .tree-crown {
            position: absolute;
            top: 5px;
            left: 12px;
            width: 22px;
            height: 22px;
            background-color: #4CAF50;
            border-radius: 50% 50% 40% 40%;
            box-shadow: 
                10px 0 0 #388E3C,
                -10px 0 0 #388E3C,
                5px -5px 0 #2E7D32,
                -5px -5px 0 #2E7D32;
        }

        .tree-leaf {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: #81C784;
            border-radius: 50% 0 50% 50%;
            transform: rotate(45deg);
        }

        .leaf-1 { top: 8px; left: 16px; }
        .leaf-2 { top: 12px; left: 22px; }
        .leaf-3 { top: 8px; left: 28px; }
        .leaf-4 { top: 15px; left: 16px; }
        .leaf-5 { top: 15px; left: 28px; }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main-text {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.1;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            letter-spacing: 0.5px;
        }

        .logo-tagline {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 12px;
            color: var(--text-light);
            letter-spacing: 1px;
            margin-top: 2px;
        }

        /* New Navigation Styles */
        nav {
            position: relative;
        }

        nav ul {
            display: flex;
            list-style: none;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50px;
            padding: 5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        nav ul li {
            margin: 0 5px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-family: 'Hind Siliguri', sans-serif;
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        nav ul li a i {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        nav ul li:hover > a i {
            transform: rotate(180deg);
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        nav ul li a.active {
            background-color: white;
            color: var(--primary);
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        nav ul li a.active::after {
            display: none;
        }

        /* Fixed Dropdown Menu Styles for PC */
        nav ul li .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 10px 0;
            margin-top: 10px;
        }

        nav ul li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        nav ul li .dropdown::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }

        nav ul li .dropdown a {
            color: var(--text);
            padding: 12px 20px;
            border-radius: 0;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }

        nav ul li .dropdown a:hover {
            background-color: #f9f9f9;
            color: var(--primary);
            transform: none;
            padding-left: 25px;
        }

        nav ul li .dropdown a:last-child {
            border-bottom: none;
        }

        /* Mobile Menu Button - Hidden in PC Mode */
        .mobile-menu-btn {
            display: none;
        }

        /* Audio Control Styles */
        .audio-control {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .audio-control:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }

        .audio-control i {
            font-size: 20px;
        }

        .audio-control.muted {
            background-color: var(--text-light);
        }

        .audio-control.muted:hover {
            background-color: var(--text);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542736667-069246bdbc6d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
        }

        .hero h1 {
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
            font-family: 'Hind Siliguri', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        /* I Love Ayurved Section */
        .love-ayurved {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .love-ayurved::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1542736667-069246bdbc6d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .love-ayurved .container {
            position: relative;
            z-index: 1;
        }

        .love-ayurved-title {
            color: white;
            font-size: 60px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .love-heart {
            font-size: 60px;
            color: #ff6b6b;
            animation: heartbeat 1.5s ease-in-out infinite both;
        }

        @keyframes heartbeat {
            from {
                transform: scale(1);
                transform-origin: center center;
                animation-timing-function: ease-out;
            }
            10% {
                transform: scale(0.91);
                animation-timing-function: ease-in;
            }
            17% {
                transform: scale(0.98);
                animation-timing-function: ease-out;
            }
            33% {
                transform: scale(0.87);
                animation-timing-function: ease-in;
            }
            45% {
                transform: scale(1);
                animation-timing-function: ease-out;
            }
        }

        .love-message {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            font-family: 'Hind Siliguri', sans-serif;
        }

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

        .love-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .love-feature:hover {
            transform: translateY(-10px);
        }

        .love-feature i {
            font-size: 40px;
            color: #ffd54f;
            margin-bottom: 20px;
        }

        .love-feature h3 {
            color: white;
            margin-bottom: 15px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .love-feature p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
        }

        /* Gallery Section */
        .gallery-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

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

        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .gallery-filter {
            padding: 10px 20px;
            background-color: white;
            border: 2px solid var(--primary-light);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .gallery-filter:hover, .gallery-filter.active {
            background-color: var(--primary);
            color: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            height: 250px;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

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

        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .gallery-description {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox-close:hover {
            color: var(--secondary);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255,255,255,0.2);
            color: white;
            border: none;
            font-size: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .lightbox-nav:hover {
            background-color: rgba(255,255,255,0.3);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 20px;
        }

        .service-content h3 {
            margin-bottom: 10px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            margin-bottom: 20px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        /* Classes Section */
        .classes-container {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .classes-container h2 {
            margin-bottom: 30px;
            font-family: 'Hind Siliguri', sans-serif;
        }

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

        .feature {
            padding: 20px;
        }

        .feature i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* Ayurvedic Medicine Section */
        .medicine-section {
            background-color: #f5f9f5;
        }

        .medicine-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .category-btn {
            padding: 10px 20px;
            background-color: white;
            border: 2px solid var(--primary-light);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .category-btn:hover, .category-btn.active {
            background-color: var(--primary);
            color: white;
        }

        .medicine-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .medicine-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }

        .medicine-card:hover {
            transform: translateY(-5px);
        }

        .medicine-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            background-color: #f0f0f0;
        }

        .medicine-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .medicine-content h3 {
            margin-bottom: 10px;
            font-family: 'Hind Siliguri', sans-serif;
            color: var(--primary-dark);
        }

        .medicine-description {
            margin-bottom: 15px;
            flex-grow: 1;
            font-size: 14px;
            color: var(--text-light);
        }

        .medicine-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .medicine-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .medicine-rating {
            color: #ffc107;
        }

        /* Appointment Section */
        .appointment-container {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
        }

        .appointment-container h2 {
            text-align: center;
            margin-bottom: 30px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            font-size: 20px;
            color: var(--primary);
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .social-links a.facebook {
            background-color: #3b5998;
            color: white;
        }

        .social-links a.telegram {
            background-color: #0088cc;
            color: white;
        }

        .social-links a.twitter {
            background-color: #1da1f2;
            color: white;
        }

        .social-links a.instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }

        .social-links a.youtube {
            background-color: #ff0000;
            color: white;
        }

        .social-links a.whatsapp {
            background-color: #25d366;
            color: white;
        }

        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                width: 300px;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border-radius: 10px;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 5px 0;
            }
            
            nav ul li a {
                color: var(--text);
                border-radius: 5px;
                justify-content: space-between;
            }
            
            nav ul li a.active {
                background-color: var(--primary);
                color: white;
            }
            
            /* Show mobile menu button only on mobile */
            .mobile-menu-btn {
                display: flex;
                background: none;
                border: none;
                font-size: 24px;
                cursor: pointer;
                color: var(--primary);
                background: white;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            
            /* Mobile Dropdown */
            nav ul li .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding: 0;
                margin-top: 0;
                display: none;
            }
            
            nav ul li .dropdown.show {
                display: block;
            }
            
            nav ul li .dropdown::before {
                display: none;
            }
            
            nav ul li .dropdown a {
                padding-left: 30px;
                border-bottom: 1px solid #eee;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }
            
            .logo-main-text {
                font-size: 22px;
            }
            
            .audio-control {
                bottom: 15px;
                left: 15px;
                width: 45px;
                height: 45px;
            }
            
            .medicine-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .love-ayurved-title {
                font-size: 40px;
            }
            
            .love-heart {
                font-size: 40px;
            }
            
            .love-message {
                font-size: 20px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .appointment-container,
            .classes-container {
                padding: 30px 20px;
            }
            
            .logo-main-text {
                font-size: 18px;
            }
            
            .logo-container {
                width: 50px;
                height: 50px;
            }
            
            .logo-circle {
                width: 45px;
                height: 45px;
            }
            
            .audio-control {
                bottom: 10px;
                left: 10px;
                width: 40px;
                height: 40px;
            }
            
            .audio-control i {
                font-size: 16px;
            }
            
            .medicine-grid {
                grid-template-columns: 1fr;
            }
            
            .medicine-actions {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .medicine-actions .btn {
                width: 100%;
            }
            
            .love-ayurved {
                padding: 70px 0;
            }
            
            .love-ayurved-title {
                font-size: 32px;
                flex-direction: column;
                gap: 5px;
            }
            
            .love-heart {
                font-size: 32px;
            }
            
            .love-message {
                font-size: 18px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-filters {
                flex-direction: column;
                align-items: center;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                right: 15px;
                font-size: 30px;
            }
        }
        

/* Medicine Card Styles without images */
.medicine-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.medicine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.medicine-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.medicine-content h3 {
    margin-bottom: 15px;
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--primary-dark);
    font-size: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.medicine-description {
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.medicine-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.medicine-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.medicine-rating {
    color: #ffc107;
    font-size: 14px;
}

/* Responsive adjustments for medicine cards without images */
@media (max-width: 768px) {
    .medicine-card {
        padding: 20px;
    }
    
    .medicine-content h3 {
        font-size: 18px;
    }
    
    .medicine-description {
        font-size: 14px;
    }
    
    .medicine-price {
        font-size: 20px;
    }
    
    .medicine-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .medicine-actions .btn {
        width: 100%;
    }
}        
        
/* Additional styles for the download section */
    .download-category-btn {
        padding: 10px 20px;
        background-color: white;
        border: 2px solid #4caf50;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        font-family: 'Hind Siliguri', sans-serif;
    }
    
    .download-category-btn:hover, .download-category-btn.active {
        background-color: #2e7d32;
        color: white;
    }
    
    .download-card:hover {
        transform: translateY(-5px);
    }
    
    .download-btn:hover {
        background-color: #1b5e20 !important;
    }
    
    .btn-secondary:hover {
        background-color: #e68900 !important;
    }
        
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 60%;
    object-fit: cover;
}        
        
/* Previous CSS code remains the same, only updating the hero section */
        /* Hero Section with Ayurvedic Logo Background */
        .hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://rajshree.ac.in/ayurvedic/wp-content/uploads/2024/09/bann1_1613789988-1-1024x410-1.jpg') center/cover,
        url('https://rajshree.ac.in/ayurvedic/wp-content/uploads/2024/09/bann1_1613789988-1-1024x410-1.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M100,20 A80,80 0 1,0 100,180 A80,80 0 1,0 100,20 Z" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/><path d="M100,40 A60,60 0 1,0 100,160 A60,60 0 1,0 100,40 Z" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/><path d="M70,70 L100,100 L130,70" stroke="rgba(255,255,255,0.15)" stroke-width="2" fill="none"/><circle cx="100" cy="120" r="10" fill="rgba(255,255,255,0.15)"/></svg>') center/contain no-repeat,
        radial-gradient(circle at center, rgba(46, 125, 50, 0.4) 0%, transparent 700%);
    opacity: 0.5;
    z-index: 0;
}

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
            font-family: 'Hind Siliguri', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
            font-family: 'Hind Siliguri', sans-serif;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Rest of the CSS remains the same */   
        
 /* Previous CSS remains the same */
        
        /* Additional Styles for Course Details Table */
        .course-table-container {
            overflow-x: auto;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
        }
        
        .course-table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            min-width: 600px; /* Ensure table doesn't get too small */
        }
        
        .course-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-family: 'Hind Siliguri', sans-serif;
            font-weight: 600;
        }
        
        .course-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        
        .course-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .course-table tr:hover {
            background-color: #f0f7f0;
        }
        
        .course-name {
            font-weight: 600;
            color: var(--primary-dark);
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        .course-duration, .course-qualification, .course-fees {
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        .course-fees {
            font-weight: 600;
            color: var(--primary);
        }
        
        .course-action {
            text-align: center;
        }
        
        /* Mobile Optimizations - Keep all columns visible */
        @media (max-width: 768px) {
            .course-table th, 
            .course-table td {
                padding: 12px 10px;
                font-size: 13px;
            }
            
            /* Keep all columns visible, just adjust sizing */
            .course-table {
                min-width: 650px; /* Ensure table width for horizontal scroll */
            }
            
            .course-name {
                min-width: 200px;
            }
            
            .course-duration, .course-qualification {
                min-width: 120px;
            }
            
            .course-fees {
                min-width: 100px;
            }
            
            .course-action {
                min-width: 110px;
            }
        }
        
        @media (max-width: 576px) {
            .course-table th, 
            .course-table td {
                padding: 10px 8px;
                font-size: 12px;
            }
            
            .course-table {
                min-width: 580px; /* Slightly smaller for very small screens */
            }
            
            .course-name {
                min-width: 180px;
            }
            
            .course-duration, .course-qualification {
                min-width: 100px;
            }
            
            .course-fees {
                min-width: 90px;
            }
            
            .course-action {
                min-width: 100px;
            }
            
            .btn-small {
                padding: 6px 12px;
                font-size: 11px;
            }
        }
        
        /* Alternative Mobile Layout - Stacked Cards for very small screens */
        .course-cards {
            display: none;
            flex-direction: column;
            gap: 15px;
        }
        
        .course-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .course-card-header {
            border-bottom: 2px solid var(--primary-light);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .course-card-title {
            font-family: 'Hind Siliguri', sans-serif;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        .course-card-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .course-card-detail {
            display: flex;
            flex-direction: column;
        }
        
        .course-card-label {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 3px;
        }
        
        .course-card-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .course-card-action {
            text-align: center;
            margin-top: 15px;
        }
        
        @media (max-width: 480px) {
            .course-table-container {
                display: none;
            }
            
            .course-cards {
                display: flex;
            }
        }

    /* Important: Add this CSS for audio control */
    .audio-control {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }
    
    .audio-control:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }
    
    .audio-control.muted {
        background: #666;
    }
    
    .audio-control.muted i {
        color: #ccc;
    }
    
    .audio-control i {
        font-size: 20px;
    }