
        :root {
            --primary: #1B4332;
            --primary-mid: #2D6A4F;
            --primary-light: #40916C;
            --accent: #D4A017;
            --accent-light: #F4C842;
            --cream: #FDF6E3;
            --cream-dark: #F2E8C9;
            --text-dark: #1A1A2E;
            --text-body: #3D4A3E;
            --text-muted: #7A8A7B;
            --white: #FFFFFF;
            --sidebar-bg: #0D2B1D;
            --font-display: 'Lato', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-elegant: 'Lato', sans-serif;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-soft: 0 8px 32px rgba(27,67,50,0.12);
            --shadow-card: 0 4px 20px rgba(27,67,50,0.10);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-body); background: var(--cream); color: var(--text-body); overflow-x: hidden; line-height: 1.7; }
        a { text-decoration: none; transition: var(--transition); }
        img { max-width: 100%; height: auto; }
        ul { list-style: none; }

        /* SIDEBAR */
        .sidebar-overlay { position: fixed; inset: 0; background: rgba(13,43,29,0.55); backdrop-filter: blur(4px); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
        .sidebar-overlay.active { opacity: 1; pointer-events: all; }
        .sidebar-panel { position: fixed; top: 0; right: -380px; width: 360px; height: 100vh; background: var(--sidebar-bg); z-index: 1200; transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; }
        .sidebar-panel.open { right: 0; }
        .sidebar-header { background: var(--primary); padding: 28px 32px 20px; border-bottom: 1px solid rgba(212,160,23,0.3); display: flex; align-items: center; justify-content: space-between; }
        .sidebar-header img { height: 42px; }
        .sidebar-close { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); }
        .sidebar-close:hover { background: var(--accent); }
        .sidebar-label { padding: 20px 32px 10px; font-family: var(--font-elegant); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
        .sidebar-nav-item { display: flex; align-items: center; gap: 16px; padding: 18px 32px; color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--transition); position: relative; overflow: hidden; }
        .sidebar-nav-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transition: transform 0.3s ease; }
        .sidebar-nav-item:hover { color: var(--accent-light); background: rgba(255,255,255,0.05); padding-left: 40px; }
        .sidebar-nav-item:hover::before { transform: scaleY(1); }
        .sidebar-nav-item .icon { width: 42px; height: 42px; background: rgba(212,160,23,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent); flex-shrink: 0; }
        .sidebar-desc { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }
        .sidebar-social { padding: 24px 32px; border-top: 1px solid rgba(255,255,255,0.08); }
        .sidebar-social p { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
        .sidebar-social-links { display: flex; gap: 10px; }
        .sidebar-social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; }
        .sidebar-social-links a:hover { background: var(--accent); color: var(--white); }

        /* HEADER */
        .header-top-bar { background: var(--primary); padding: 9px 0; font-size: 13px; }
        .header-top-bar .container { display: flex; align-items: center; justify-content: space-between; }
        .top-social a { color: rgba(255,255,255,0.75); margin-right: 12px; font-size: 13px; }
        .top-social a:hover { color: var(--accent-light); }
        .top-social span { color: rgba(255,255,255,0.5); font-size: 12px; margin-right: 8px; }
        .top-contact-links a { color: rgba(255,255,255,0.75); margin-left: 20px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }
        .top-contact-links a:hover { color: var(--accent-light); }
        .top-contact-links i { color: var(--accent); }
        .main-header { background: var(--white); box-shadow: 0 2px 20px rgba(27,67,50,0.08); position: sticky; top: 0; z-index: 999; }
        .main-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
        .nav-logo img { height: 52px; }
        .main-nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center; }
        .nav-link-item { display: inline-flex; align-items: center; color: var(--text-dark); font-size: 14.5px; font-weight: 500; padding: 8px 14px; border-radius: 8px; position: relative; transition: var(--transition); text-decoration: none; }
        .nav-link-item:hover, .nav-link-item.active { color: var(--primary); background: rgba(27,67,50,0.07); }
        .nav-link-item::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0); width: 20px; height: 2px; background: var(--accent); border-radius: 2px; transition: transform 0.3s ease; }
        .nav-link-item:hover::after { transform: translateX(-50%) scaleX(1); }
        .nav-dropdown { position: relative; }
        .nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 200px; background: var(--white); border-radius: 12px; box-shadow: 0 12px 40px rgba(27,67,50,0.15); border: 1px solid rgba(27,67,50,0.08); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.3s ease; z-index: 1000; }
        .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav-dropdown-menu a { display: block; padding: 10px 16px; color: var(--text-body); font-size: 14px; border-radius: 8px; transition: var(--transition); }
        .nav-dropdown-menu a:hover { background: rgba(27,67,50,0.07); color: var(--primary); padding-left: 22px; }
        .nav-dropdown-toggle.nav-link-item::after { content: '\f107' !important; font-family: 'Font Awesome 6 Pro' !important; font-weight: 900 !important; position: static !important; transform: none !important; width: auto !important; height: auto !important; background: none !important; border-radius: 0 !important; margin-left: 5px; font-size: 11px; bottom: auto !important; left: auto !important; transition: none !important; }
        .nav-dropdown-toggle.nav-link-item:hover::after { transform: none !important; }
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .btn-sidebar-toggle { display: flex; align-items: center; gap: 8px; background: var(--primary); color: var(--white); border: none; padding: 10px 18px; border-radius: 10px; font-size: 13.5px; font-weight: 500; font-family: var(--font-body); cursor: pointer; transition: var(--transition); }
        .btn-sidebar-toggle:hover { background: var(--primary-light); transform: translateY(-1px); }
        .btn-contact { display: flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); border: none; padding: 10px 20px; border-radius: 10px; font-size: 13.5px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: var(--transition); text-decoration: none; }
        .btn-contact:hover { background: #b8860b; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,0.35); }
        .mobile-toggle { display: none; background: none; border: 1.5px solid rgba(27,67,50,0.2); color: var(--primary); width: 40px; height: 40px; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; font-size: 18px; }

        /* HERO */
        .hero-section { position: relative; overflow: hidden; margin: 0; padding: 0; }
        .hero-slide { height: 100vh; min-height: 600px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
        .hero-content { position: relative; z-index: 2; max-width: 640px; }
        .hero-tag { display: inline-block; background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.5); color: var(--accent-light); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
        .hero-title { font-family: var(--font-display); font-size: clamp(38px, 5vw, 68px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
        .hero-title span { color: var(--accent-light); }
        .hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 36px; font-weight: 300; line-height: 1.8; }
        .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-primary-hero { background: var(--accent); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
        .btn-primary-hero:hover { background: var(--accent-light); color: var(--text-dark); transform: translateY(-3px); }
        .btn-outline-hero { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 500; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.5); display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); backdrop-filter: blur(8px); }
        .btn-outline-hero:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); color: var(--white); }
        .hero-section .owl-nav button { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(255,255,255,0.15) !important; border: 1.5px solid rgba(255,255,255,0.3) !important; border-radius: 50% !important; color: white !important; font-size: 22px !important; backdrop-filter: blur(8px); transition: var(--transition); }
        .hero-section .owl-prev { left: 30px; }
        .hero-section .owl-next { right: 30px; }
        .hero-section .owl-nav button:hover { background: var(--accent) !important; border-color: var(--accent) !important; }
        /* Dots INSIDE the image at bottom */
        .hero-section .owl-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
        .hero-section .owl-dot span { width: 10px; height: 10px; background: rgba(255,255,255,0.4) !important; border-radius: 50% !important; margin: 0 !important; transition: all 0.3s ease !important; border: none !important; display: block; }
        .hero-section .owl-dot.active span { background: var(--accent) !important; width: 28px; border-radius: 5px !important; }

        /* SECTIONS */
        section, .section { padding: 90px 0; }
        .section-sm { padding: 60px 0; }
        .section-tag { font-family: var(--font-elegant); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; font-weight: 600; }
        .section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); color: var(--text-dark); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
        .section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 540px; line-height: 1.8; }
        .section-divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 3px; margin: 14px 0 28px; }
        .section-divider.center { margin: 14px auto 28px; }
        .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: var(--white); padding: 13px 28px; border-radius: 50px; font-size: 14.5px; font-weight: 600; transition: var(--transition); margin-top: 10px; }
        .btn-primary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.25); }

        /* ABOUT - two-tone split layout */
        .about-section { background: var(--white); overflow: hidden; position: relative; padding: 0; }
        .about-left-panel { background: linear-gradient(150deg, #1B4332 0%, #2D6A4F 100%); padding: 80px 50px 80px 44px; display: flex; align-items: center; min-height: 580px; }
        .about-right-panel { background: var(--white); padding: 80px 44px 80px 56px; display: flex; align-items: center; min-height: 580px; }
        .about-video-wrap { position: relative; width: 100%; }
        .about-video-inner { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 28px 64px rgba(0,0,0,0.38); }
        .about-video-inner video { width: 100%; display: block; }
        .about-video-inner::after { content: ''; position: absolute; inset: 0; border: 2px solid rgba(212,160,23,0.5); border-radius: 18px; pointer-events: none; z-index: 2; }
        .about-year-badge { position: absolute; top: -22px; right: -22px; width: 92px; height: 92px; background: var(--accent); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; box-shadow: 0 10px 30px rgba(212,160,23,0.55); }
        .about-year-badge strong { font-family: var(--font-display); font-size: 22px; color: #fff; line-height: 1; }
        .about-year-badge span { font-size: 10px; color: rgba(255,255,255,0.9); letter-spacing: 1px; }
        .about-content { width: 100%; }
        .about-content .section-tag { color: var(--accent); }
        .about-content .section-title { color: var(--text-dark); }
        .about-content p { color: var(--text-body); font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
        .about-features { display: flow; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 28px; }
        .about-feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-body); padding-bottom: 15px; }
        .about-feature-item i { width: 34px; height: 34px; background: rgba(27,67,50,0.09); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; flex-shrink: 0; }
        @media (max-width: 991px) { .about-left-panel, .about-right-panel { padding: 50px 24px; min-height: auto; } .about-year-badge { right: 8px; top: -12px; width: 72px; height: 72px; } }

        /* M&V */
        .mv-section { background: var(--cream); position: relative; overflow: hidden; }
        /* Floating ayurvedic decorative elements */
        .mv-section::before { content: '🌿'; position: absolute; top: 40px; left: 5%; font-size: 80px; opacity: 0.18; animation: floatLeaf 6s ease-in-out infinite; pointer-events: none; }
        .mv-section::after { content: '🍃'; position: absolute; bottom: 50px; right: 6%; font-size: 70px; opacity: 0.15; animation: floatLeaf 8s ease-in-out infinite reverse; pointer-events: none; }
        @keyframes floatLeaf {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-18px) rotate(8deg); }
            66% { transform: translateY(-8px) rotate(-5deg); }
        }
        @keyframes floatLeaf2 {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            50% { transform: translateY(-22px) rotate(-10deg) scale(1.08); }
        }
        @keyframes drift {
            0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0.12; }
            50% { transform: translateX(12px) translateY(-16px) rotate(15deg); opacity: 0.22; }
        }
        .mv-deco { position: absolute; pointer-events: none; font-size: 60px; opacity: 0.18; }
        .mv-deco-1 { top: 20%; left: 12%; animation: floatLeaf2 7s ease-in-out infinite; }
        .mv-deco-2 { top: 60%; right: 10%; animation: floatLeaf 9s ease-in-out infinite 2s; font-size: 72px; }
        .mv-deco-3 { bottom: 15%; left: 20%; animation: drift 10s ease-in-out infinite 1s; font-size: 52px; }
        .mv-deco-4 { top: 30%; right: 18%; animation: drift 8s ease-in-out infinite 3s; font-size: 56px; }
        .mv-card { background: var(--white); border-radius: 20px; padding: 40px; height: 100%; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: var(--transition); position: relative; overflow: hidden; }
        .mv-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s ease; }
        /* Subtle leaf watermark inside each card */
        .mv-card::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 C20 5 5 30 5 50 C5 70 20 95 50 95 C80 95 95 70 95 50 C95 30 80 5 50 5Z' fill='%231B4332' opacity='0.04'/%3E%3Cpath d='M50 15 C15 20 8 50 20 75 C35 95 65 95 80 75 C92 50 85 20 50 15Z' fill='%231B4332' opacity='0.04'/%3E%3C/svg%3E") no-repeat center/contain; opacity: 1; pointer-events: none; }
        .mv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,67,50,0.14); }
        .mv-card:hover::before { transform: scaleX(1); }
        .mv-icon { width: 68px; height: 68px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 26px; margin-bottom: 24px; position: relative; z-index: 1; }
        .mv-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--text-dark); margin-bottom: 14px; position: relative; z-index: 1; }
        .mv-card p { color: var(--text-body); font-size: 15px; line-height: 1.8; position: relative; z-index: 1; }
        /* Ayurvedic herb strip below cards */
        .mv-herbs { display: flex; justify-content: center; align-items: flex-end; gap: 40px; margin-top: 52px; flex-wrap: wrap; padding: 24px 0 8px; border-top: 1px solid rgba(27,67,50,0.1); }
        .mv-herb-item { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.85; transition: var(--transition); }
        .mv-herb-item:hover { opacity: 1; transform: translateY(-6px); }
        .mv-herb-icon { font-size: 56px; animation: floatLeaf 5s ease-in-out infinite; line-height: 1; }
        .mv-herb-item:nth-child(2) .mv-herb-icon { font-size: 64px; animation-delay: 1s; }
        .mv-herb-item:nth-child(3) .mv-herb-icon { font-size: 52px; animation-delay: 2s; }
        .mv-herb-item:nth-child(4) .mv-herb-icon { font-size: 60px; animation-delay: 3s; }
        .mv-herb-item:nth-child(5) .mv-herb-icon { font-size: 54px; animation-delay: 0.5s; }
        .mv-herb-label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); font-weight: 700; font-family: var(--font-elegant); }

        /* PRACTICES */
        .practices-section { background: var(--primary); position: relative; overflow: hidden; }
        /* Real background image, NO green overlay - just a subtle dark vignette for text readability */
        .practices-section::before { content: ''; position: absolute; inset: 0; background-image: url('assets/img/bg/homepage.jpeg'); background-size: cover; background-position: center; opacity: 1; }
        .practices-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,30,20,0.55) 0%, rgba(10,30,20,0.35) 40%, rgba(10,30,20,0.55) 100%); pointer-events: none; }
        .practices-section .container { position: relative; z-index: 2; }
        /* Equal-height cards: every col is a flex container, card stretches full height */
        .practices-section .row { align-items: stretch; }
        .practices-section [class*="col-"] { display: flex; }
        .practice-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; width: 100%; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
        .practice-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.28); }
        .practice-img { height: 210px; overflow: hidden; flex-shrink: 0; }
        .practice-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .practice-card:hover .practice-img img { transform: scale(1.08); }
        .practice-body { padding: 24px; display: flex; flex-direction: column; flex: 1; background: var(--white); }
        .practice-body h4 { font-family: var(--font-display); font-size: 20px; color: var(--text-dark); margin-bottom: 10px; }
        .practice-body p { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; flex: 1; }
        .btn-practice { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 600; transition: var(--transition); margin-top: auto; border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; width: fit-content; }
        .btn-practice:hover { color: var(--accent); gap: 12px; }

        /* HARISH - standalone featured leader section */
        .harish-section { background: var(--cream); position: relative; overflow: hidden; padding: 0; }
        .harish-left-bg { position: absolute; top: 0; left: 0; width: 55%; height: 100%; background: var(--cream); z-index: 0; }
        .harish-right-bg { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: var(--cream); z-index: 0; }
        .harish-right-bg::before { display: none; }
        .harish-inner { position: relative; z-index: 2; display: flex; align-items: stretch; min-height: 680px; }
        .harish-content-col { width: 55%; padding: 80px 60px 80px 50px; display: flex; flex-direction: column; justify-content: center; }
        .harish-image-col { width: 45%; padding: 50px 40px 50px 20px; position: relative; display: flex; align-items: center; justify-content: center; }
        .harish-img-frame { position: relative; width: 100%; max-width: 360px; }
        .harish-img-frame::before { content: ''; position: absolute; top: 16px; right: -16px; bottom: -16px; left: 16px; border: 2px solid rgba(27,67,50,0.15); border-radius: 22px; z-index: 0; }
        .harish-img-frame img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 16px 48px rgba(27,67,50,0.18); object-fit: contain; object-position: bottom center; display: block; position: relative; z-index: 1; background: var(--cream-dark); }
        .harish-name-badge { position: absolute; bottom: -10px; left: -10px; z-index: 3; background: var(--primary); padding: 13px 18px; border-radius: 14px; box-shadow: 0 10px 32px rgba(27,67,50,0.3); text-align: center; }
        .harish-name-badge strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--accent-light); line-height: 1.2; }
        .harish-name-badge span { font-size: 11px; color: rgba(255,255,255,0.85); display: block; margin-top: 4px; line-height: 1.4; }
        /* Small view profile button */
        .harish-content-col .btn-primary { font-size: 12.5px; padding: 8px 18px; border-radius: 30px; gap: 7px; margin-top: 6px; }
        .harish-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.2); color: var(--primary); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; padding: 7px 16px; border-radius: 30px; margin-bottom: 18px; font-weight: 600; width: fit-content; }
        .harish-eyebrow i { font-size: 13px; }
        .harish-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); color: var(--text-dark); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
        .harish-subtitle-line { font-family: var(--font-elegant); font-size: 20px; color: var(--primary-light); font-style: normal; margin-bottom: 20px; }
        .harish-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; margin-bottom: 24px; }
        .harish-desc { color: var(--text-body); font-size: 15.5px; line-height: 1.88; margin-bottom: 14px; }
        .harish-roles { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 28px; }
        .harish-role-tag { background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.15); color: var(--primary); font-size: 12px; padding: 6px 14px; border-radius: 20px; font-weight: 500; }
        @media (max-width: 991px) {
            .harish-left-bg { width: 100%; }
            .harish-right-bg { width: 100%; }
            .harish-inner { flex-direction: column; min-height: auto; }
            .harish-content-col { width: 100%; padding: 50px 24px; background: var(--cream); }
            .harish-image-col { width: 100%; padding: 30px 24px 50px; }
            .harish-img-frame { max-width: 280px; margin: 0 auto; }
        }
        .harish-eyebrow i { font-size: 13px; }
        .harish-name { font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px); color: var(--text-dark); font-weight: 900; line-height: 1.05; margin-bottom: 8px; }
        .harish-name em { color: var(--primary); font-style: normal; }
        .harish-subtitle-line { font-family: var(--font-elegant); font-size: 20px; color: var(--accent); font-style: normal; margin-bottom: 24px; }
        .harish-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 3px; margin-bottom: 24px; }
        .harish-bio { font-size: 15.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 28px; }
        .harish-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
        .harish-role-tag { background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.15); color: var(--primary); font-size: 12px; padding: 6px 14px; border-radius: 20px; font-weight: 600; }
        .harish-img-card { position: relative; width: 100%; max-width: 380px; }
        .harish-img-card::before { content: ''; position: absolute; top: 20px; left: -20px; right: 20px; bottom: -20px; border: 2px solid rgba(212,160,23,0.4); border-radius: 24px; z-index: 0; }
        .harish-img-card img { width: 100%; border-radius: 20px; box-shadow: 0 28px 64px rgba(0,0,0,0.35); object-fit: cover; max-height: 500px; position: relative; z-index: 1; display: block; }
        .harish-name-plate { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 14px 28px; border-radius: 50px; box-shadow: 0 10px 32px rgba(212,160,23,0.5); z-index: 2; white-space: nowrap; text-align: center; }
        .harish-name-plate strong { display: block; font-family: var(--font-display); font-size: 18px; line-height: 1; }
        .harish-name-plate span { font-size: 11px; opacity: 0.88; letter-spacing: 0.5px; }

        /* COUNTER */
        .counter-section { position: relative; overflow: hidden; }
        .counter-section::before { content: ''; position: absolute; inset: 0; background-image: url('assets/img/bg/ayurvedha.jpg'); background-size: cover; background-position: center top; }
        .counter-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,43,29,0.88) 0%, rgba(27,67,50,0.78) 50%, rgba(13,43,29,0.88) 100%); }
        .counter-section .container { position: relative; z-index: 2; }
        .counter-section .row { border-top: 1px solid rgba(212,160,23,0.2); border-bottom: 1px solid rgba(212,160,23,0.2); padding: 12px 0; }
        .counter-box { text-align: center; padding: 36px 20px; position: relative; }
        .counter-box:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(212,160,23,0.2); }
        .counter-icon { width: 64px; height: 64px; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
        .counter-icon img { width: 34px; filter: brightness(0) invert(1); }
        .counter-number { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--accent-light); line-height: 1; display: block; margin-bottom: 8px; text-shadow: 0 4px 20px rgba(212,160,23,0.3); }
        .counter-label { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.4; letter-spacing: 0.3px; }

        /* LIVE TV */
        .livetv-section { background: var(--white); }
        .video-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); }
        .play-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,43,29,0.6), rgba(27,67,50,0.3)); display: flex; align-items: center; justify-content: center; }
        .play-btn-large { width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; cursor: pointer; transition: var(--transition); box-shadow: 0 8px 32px rgba(212,160,23,0.5); padding-left: 6px; }
        .play-btn-large:hover { transform: scale(1.1); }

        /* PROMOS */
        .promos-section { background: var(--cream); }
        .video-promo-box { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16/9; }
        .video-promo-box iframe { width: 100%; height: 100%; border: none; display: block; }

        /* QUOTE */
        .brand-quote-section { background: var(--primary); position: relative; overflow: hidden; }
        .brand-quote-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
        .brand-quote-content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; padding: 80px 24px; }
        .quote-icon { margin-bottom: 24px; opacity: 0.7; }
        .brand-quote-text { font-family: var(--font-elegant); font-size: clamp(20px, 2.5vw, 30px); color: rgba(255,255,255,0.92); line-height: 1.65; font-style: normal; font-weight: 300; }

        /* FAQ */
        .faq-section { background: var(--cream); position: relative; overflow: hidden; }
        .faq-img-col { position: relative; }
        .faq-img-main { width: 100%; height: 100%; min-height: 480px; object-fit: cover; border-radius: 24px; box-shadow: 0 24px 60px rgba(27,67,50,0.2); }
        .faq-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,67,50,0.15) 0%, rgba(13,43,29,0.5) 100%); border-radius: 24px; }
        .faq-img-caption { position: absolute; bottom: 28px; left: 28px; right: 28px; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
        .faq-caption-icon { width: 44px; height: 44px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
        .faq-caption-text strong { display: block; color: var(--white); font-size: 15px; font-family: var(--font-display); }
        .faq-caption-text span { color: rgba(255,255,255,0.75); font-size: 12px; }
        .accordion-custom .accordion-item { border: none; border-radius: 14px !important; margin-bottom: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(27,67,50,0.07); }
        .accordion-custom .accordion-button { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--text-dark); background: var(--white); padding: 20px 24px; box-shadow: none !important; gap: 0; }
        .accordion-custom .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(27,67,50,0.04); }
        .accordion-custom .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231B4332'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
        .accordion-custom .accordion-body { font-size: 14.5px; color: var(--text-body); line-height: 1.8; padding: 6px 24px 22px; background: var(--white); }
        /* FAQ logo icon in accordion buttons */
        .faq-logo-icon { width: 28px; height: 28px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; flex-shrink: 0; background: rgba(27,67,50,0.09); padding: 4px; vertical-align: middle; position: relative; top: -1px; }
        .faq-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
        .accordion-custom .accordion-button:not(.collapsed) .faq-logo-icon { background: rgba(27,67,50,0.16); }

        /* CHANNELS AUTO-SCROLL */
        .channels-section { background: var(--cream); }
        .channels-marquee-outer { overflow: hidden; position: relative; padding: 12px 0 20px; }
        .channels-marquee-outer::before, .channels-marquee-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
        .channels-marquee-outer::before { left: 0; background: linear-gradient(90deg, var(--cream) 0%, transparent 100%); }
        .channels-marquee-outer::after { right: 0; background: linear-gradient(270deg, var(--cream) 0%, transparent 100%); }
        .channels-marquee-track { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 22s linear infinite; }
        .channels-marquee-track:hover { animation-play-state: paused; }
        @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .channel-card { background: var(--white); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; border: 1px solid rgba(27,67,50,0.08); box-shadow: var(--shadow-card); transition: transform 0.3s ease, border-color 0.3s ease; text-align: center; width: 190px; flex-shrink: 0; cursor: default; }
        .channel-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 16px 40px rgba(27,67,50,0.12); }
        .channel-card img { max-height: 140px; max-width: 140px; object-fit: contain; }
        .channel-badge { background: var(--primary); color: var(--white); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }

        /* FOOTER HEADINGS with designed underline */
        .footer-heading { font-family: var(--font-display); font-size: 17px; color: var(--white); margin-bottom: 22px; padding-bottom: 14px; position: relative; }
        .footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; }
        .footer-heading::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.08); }

        /* FOOTER */
        .footer-main { background: var(--sidebar-bg); color: rgba(255,255,255,0.75); padding: 80px 0 40px; }
        .footer-logo img { height: 48px; margin-bottom: 20px; }
        .footer-about-text { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.6); }
        .footer-links { display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
        .footer-links a i { color: var(--accent); font-size: 10px; }
        .footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
        .footer-contact-icon { width: 38px; height: 38px; background: rgba(212,160,23,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
        .footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }
        .footer-contact-item a:hover { color: var(--accent-light); }
        .footer-bottom { background: rgb(13 43 29); padding: 20px 0; border-top: 5px solid rgba(255,255,255,0.06); }
        .footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .copyright-text { font-size: 13px; color: rgba(255,255,255,0.5); }
        .copyright-text a { color: var(--accent); }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
        .footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

        #scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--primary); color: var(--white); border-radius: 12px; display: none; align-items: center; justify-content: center; font-size: 16px; z-index: 999; box-shadow: 0 6px 20px rgba(27,67,50,0.3); transition: var(--transition); }
        #scroll-top:hover { background: var(--accent); color: var(--white); }
        #scroll-top.visible { display: flex; }

        /* LIVE TV FLOATING BUTTON */
        .live-tv-float { position: fixed; right: -86px; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; align-items: center; transition: right 0.45s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .live-tv-float:hover { right: 0; }
        /* Peek tab */
        .live-tv-tab { background: var(--primary); color: var(--accent-light); width: 28px; height: 72px; border-radius: 12px 0 0 12px; display: flex; align-items: center; justify-content: center; box-shadow: -4px 0 20px rgba(27,67,50,0.35); flex-shrink: 0; }
        .live-tv-tab i { font-size: 13px; }
        /* Main button panel */
        .live-tv-float-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--primary); color: var(--white); width: 86px; padding: 16px 10px; border-radius: 0; box-shadow: -6px 0 28px rgba(27,67,50,0.3); cursor: pointer; text-decoration: none; position: relative; overflow: hidden; border-left: 1px solid rgba(212,160,23,0.25); }
        /* Gold shimmer top bar */
        .live-tv-float-btn::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
        /* Subtle texture */
        .live-tv-float-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events: none; }
        /* Pulsing live dot */
        .live-tv-pulse { width: 9px; height: 9px; background: var(--accent-light); border-radius: 50%; position: relative; flex-shrink: 0; }
        .live-tv-pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(244,200,66,0.5); animation: livePulse 1.5s ease-out infinite; }
        @keyframes livePulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
        .live-tv-float-icon { font-size: 20px; color: var(--accent-light); line-height: 1; }
        .live-tv-float-label { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); line-height: 1; }
        .live-tv-float-sub { font-size: 9px; color: rgba(244,200,66,0.85); letter-spacing: 0.5px; font-family: var(--font-elegant); font-style: normal; }

        /* Mobile Nav */
        .mobile-nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 30px rgba(27,67,50,0.12); z-index: 998; padding: 16px 0; }
        .mobile-nav-menu.open { display: block; }
        .mobile-nav-menu a { display: block; padding: 12px 24px; color: var(--text-dark); font-size: 15px; border-bottom: 1px solid rgba(27,67,50,0.06); }
        .mobile-nav-menu a:hover { color: var(--primary); background: rgba(27,67,50,0.04); padding-left: 32px; }

        @media (max-width: 991px) { .main-nav { display: none; } .mobile-toggle { display: flex; } .about-content { padding-left: 0; margin-top: 30px; } .hero-slide { height: 70vh; } }
        @media (max-width: 767px) { section, .section { padding: 60px 0; } .hero-slide { height: 60vh; min-height: 400px; } .hero-title { font-size: 32px; } .sidebar-panel { width: 300px; } }
    /* Arrows-ah thookidu */
/* Container styling */
.promos-section {
    background-color: #fdfaf0; /* Light cream background from image */
    padding: 60px 0;
}

/* The Carousel/Grid Item */
.promo-carousel .item {
    padding: 10px;
}

.video-promo-box {
    position: relative;
    border-radius: 20px; /* Highly rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-promo-box:hover {
    transform: translateY(-5px);
}

/* Ensure images cover the area like the thumbnails */
.video-promo-box img {
    width: 100%;
    height: 225px; /* Adjust height as needed */
    object-fit: cover;
    display: block;
}

/* Red Play Button Overlay (matches the image) */
.play-btn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff0000; /* YouTube Red */
    color: white;
    width: 60px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.video-promo-box:hover .play-btn-icon {
    background-color: #cc0000;
}

/* Title/Section Styling */
.section-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #ff0000;
    margin: 0 auto 30px;
}