        /* CSS Variables */
        :root {
            /* Color Palette */
            --primary: #D84315;
            --secondary: #F57C00;
            --accent-gold: #D4AF37;
            --bg-color: #FFFDF8;
            --section-bg: #FFF8EC;
            --card-bg: #FFFFFF;
            --heading-color: #4E342E;
            --text-color: #5F5F5F;
            --border-color: rgba(212, 175, 55, 0.25);
            --hover-color: #FFE082;
            
            /* Typography */
            --font-heading: 'Cinzel', serif;
            --font-subheading: 'Cormorant Garamond', serif;
            --font-body: 'Poppins', sans-serif;
            
            /* UI Elements */
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: 1px solid rgba(212, 175, 55, 0.3);
            --shadow-soft: 0 10px 30px rgba(78, 52, 46, 0.08);
            --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.15);
            --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
            --border-radius: 12px;
            
            /* Transitions */
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; /* Hide default cursor for custom cursor */
        }

        html {
            scroll-behavior: initial; /* Lenis handles this */
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--heading-color);
            font-weight: 600;
            line-height: 1.2;
        }

        .subheading {
            font-family: var(--font-subheading);
            font-size: 1.5rem;
            color: var(--primary);
            font-style: italic;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Custom Cursor */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 12px;
            height: 12px;
            background-color: var(--accent-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10020;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background-color 0.3s, box-shadow 0.3s;
            mix-blend-mode: difference;
        }

        .custom-cursor.expand {
            width: 40px;
            height: 40px;
            background-color: transparent;
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow-glow);
            mix-blend-mode: normal;
        }

        /* Loader */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--bg-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9998;
        }

        .loader-circle {
            width: 80px;
            height: 80px;
            border: 3px solid var(--border-color);
            border-top: 3px solid var(--accent-gold);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
            margin-bottom: 2rem;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
        }

        .loader-text {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }

        .loader-percent {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--accent-gold);
        }

        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes pulse { 0%, 100% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-gold));
            z-index: 1001;
        }

        /* Navbar */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 1rem 5%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: var(--glass-border);
            box-shadow: var(--shadow-soft);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* Unique Glowing and Blinking Om Icon Container */
        .logo-om-container {
            position: relative;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-om-ring {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border: 2px dashed var(--accent-gold);
            border-radius: 50%;
            animation: spinRing 15s linear infinite;
            opacity: 0.7;
        }

        .logo-om-glow {
            position: absolute;
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: omPulse 2s ease-in-out infinite;
            z-index: 1;
        }

        .logo-om-icon {
            color: var(--accent-gold);
            font-size: 1.5rem;
            z-index: 2;
            animation: omBlink 2.5s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes spinRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes omPulse {
            0%, 100% { transform: scale(0.85); opacity: 0.3; }
            50% { transform: scale(1.25); opacity: 0.7; }
        }

        @keyframes omBlink {
            0%, 100% { 
                opacity: 0.6; 
                filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4)); 
                transform: scale(0.95);
            }
            50% { 
                opacity: 1; 
                filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 15px rgba(216, 67, 21, 0.4)); 
                transform: scale(1.08);
            }
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
        }

        .nav-links li a {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--heading-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
            transition: var(--transition);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-links li a:hover {
            color: var(--primary);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
        }

        /* Navbar Options Icons Styling */
        .nav-links li a i {
            margin-right: 8px;
            color: var(--accent-gold);
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .nav-links li a:hover i {
            color: var(--primary);
            transform: scale(1.2) translateY(-1px);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: var(--heading-color);
            transition: var(--transition);
        }

        /* Devotional Scrolling Ticker */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(90deg, #2D1A16, #4E342E, #2D1A16);
            border-top: 1.5px solid rgba(212, 175, 55, 0.4);
            border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
            padding: 12px 0;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: marqueeScroll 25s linear infinite;
        }

        .ticker-content {
            display: flex;
            align-items: center;
            justify-content: space-around;
            min-width: 100%;
        }

        .ticker-content span {
            display: inline-flex;
            align-items: center;
            padding: 0 3rem;
            font-size: 1.2rem;
            color: var(--accent-gold);
            font-family: var(--font-heading);
            font-weight: 600;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
            white-space: nowrap;
        }

        .ticker-content i {
            margin-left: 2rem;
            color: var(--secondary);
            font-size: 0.95rem;
            text-shadow: 0 0 8px var(--secondary);
        }

        @keyframes marqueeScroll {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 20px rgba(216, 67, 21, 0.3);
            border: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary), var(--accent-gold));
            transition: var(--transition);
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--heading-color);
            border: 2px solid var(--accent-gold);
        }

        .btn-outline:hover {
            background: var(--accent-gold);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 120px 5% 60px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
            background: url('https://image.pollinations.ai/prompt/beautiful%20grand%20hindu%20temple%20interior%20golden%20warm%20lighting%20spiritual%20atmosphere%20blur%20background?width=1920&height=1080&nologo=true') center/cover no-repeat;
        }

        #hero-bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }

        .hero-video-youtube-wrap {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw; /* 16:9 ratio */
            min-height: 100vh;
            min-width: 177.77vh; /* 16:9 ratio */
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-video-youtube-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            transform: scale(1.25); /* Scale up to hide black borders and player branding */
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 253, 248, 0.9) 0%, rgba(255, 248, 236, 0.7) 100%);
            z-index: -1;
        }

        .hero-content-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            width: 100%;
            gap: 4rem;
            z-index: 1;
            margin-top: 5rem; /* Account for navbar */
        }

        .hero-text {
            flex: 1;
            text-align: left;
            max-width: 650px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lakshmi-circle {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            overflow: hidden;
            border: 8px solid var(--accent-gold);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.5);
            animation: floatingImage 6s ease-in-out infinite;
            position: relative;
        }

        /* Decorative glowing ring inside */
        .lakshmi-circle::before {
            content: '';
            position: absolute;
            top: 10px; right: 10px; bottom: 10px; left: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 2;
            pointer-events: none;
        }

        .lakshmi-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        @keyframes floatingImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.5); }
        }

        .hero-tagline {
            font-family: var(--font-subheading);
            font-size: 2rem;
            color: var(--primary);
            font-style: italic;
            margin-bottom: 1.5rem;
            display: block;
        }

        .hero-title {
            font-size: 4.5rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--heading-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
            line-height: 1.1;
        }

        .hero-buttons {
            display: flex;
            justify-content: flex-start;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--heading-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            color: var(--accent-gold);
            font-size: 1.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-15px) translateX(-50%); }
            60% { transform: translateY(-7px) translateX(-50%); }
        }

        /* Floating Particles / Petals */
        .particle {
            position: absolute;
            background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        /* Section Defaults */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-bg {
            background-color: var(--section-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* About Us Section Styling */
        #about {
            position: relative;
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
        }

        .about-lead {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--heading-color);
            margin-bottom: 2.5rem;
            font-family: var(--font-subheading);
            font-weight: 600;
        }

        .about-pillars {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pillar-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: #FFFFFF;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 0 10px 30px rgba(78, 52, 46, 0.03);
            transition: var(--transition);
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
        }

        .pillar-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(216, 67, 21, 0.06);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 1.4rem;
            flex-shrink: 0;
            transition: var(--transition);
            border: 1px solid rgba(216, 67, 21, 0.1);
        }

        .pillar-card:hover .pillar-icon {
            background: var(--primary);
            color: #FFFFFF;
            transform: scale(1.1) rotate(10deg);
        }

        .pillar-content h4 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            color: var(--heading-color);
            margin-bottom: 0.4rem;
            font-weight: 700;
        }

        .pillar-content p {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text-color);
            line-height: 1.5;
        }

        /* Showcase Image Column */
        .about-showcase {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .showcase-glow {
            position: absolute;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .showcase-image-wrapper {
            position: relative;
            z-index: 1;
            border-radius: 30px;
            padding: 12px;
            background: #FFFFFF;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            width: 100%;
            max-width: 440px;
        }

        .showcase-main-img {
            border-radius: 20px;
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .showcase-image-wrapper:hover {
            transform: translateY(-8px) rotate(1deg);
            box-shadow: var(--shadow-hover);
        }

        .showcase-image-wrapper:hover .showcase-main-img {
            transform: scale(1.03);
        }

        /* Floating Badge */
        .floating-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 110px;
            height: 110px;
            background: linear-gradient(135deg, var(--heading-color), #2D1A16);
            border-radius: 50%;
            border: 3px solid var(--accent-gold);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
            z-index: 2;
            animation: floatingBadge 4s ease-in-out infinite;
        }

        .badge-ring {
            position: absolute;
            top: 4px; left: 4px; right: 4px; bottom: 4px;
            border: 1px dashed rgba(212, 175, 55, 0.4);
            border-radius: 50%;
            animation: spinRing 20s linear infinite;
        }

        .badge-year {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--accent-gold);
            font-weight: 700;
            line-height: 1;
        }

        .badge-text {
            font-family: var(--font-body);
            font-size: 0.55rem;
            letter-spacing: 1px;
            color: #ccc;
            font-weight: 600;
            margin-top: 2px;
        }

        @keyframes floatingBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }        /* President Message */
        #president {
            background-color: #FDFAF5;
            padding: 80px 5%;
        }

        .president-card {
            background: #FFFFFF;
            border-radius: 40px;
            padding: 4rem;
            box-shadow: 0 20px 50px rgba(78, 52, 46, 0.05);
            display: flex;
            gap: 4rem;
            align-items: center;
            border: 1px solid rgba(212, 175, 55, 0.25);
            position: relative;
            overflow: hidden;
            max-width: 1100px;
            margin: 0 auto;
        }

        .president-card::before {
            content: none;
        }

        .president-img-container {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 3px solid var(--accent-gold);
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: var(--shadow-soft);
        }

        .president-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
        }

        .president-text {
            position: relative;
            z-index: 2;
            flex: 1;
            text-align: left;
        }

        .president-name {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: var(--heading-color);
            margin-bottom: 0.2rem;
            font-weight: 600;
        }        .president-title {
            font-family: var(--font-body);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-gold);
        }

        /* Auto Slider Styles */
        .president-slider-container {
            position: relative;
            width: 100%;
        }

        .slider-card-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slider-card-item.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            position: relative;
            z-index: 2;
        }

        .slider-card-item.exit {
            opacity: 0;
            visibility: hidden;
            transform: translateX(-40px);
            position: absolute;
            z-index: 1;
        }
        .president-name {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .president-quote-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .quote-icon {
            font-family: serif;
            font-size: 2.5rem;
            color: rgba(216, 67, 21, 0.3);
            line-height: 1;
            margin-top: -0.2rem;
        }

        .president-quote {
            font-family: var(--font-subheading);
            font-size: 1.4rem;
            color: var(--primary);
            font-style: italic;
            font-weight: 600;
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .president-desc {
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .president-socials {
            display: flex;
            gap: 0.8rem;
        }

        .president-socials .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(78, 52, 46, 0.15);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--heading-color);
            font-size: 1rem;
            transition: var(--transition);
        }

        .president-socials .social-btn:hover {
            border-color: var(--accent-gold);
            background: var(--accent-gold);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* Committee Section */
        .committee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
        }

        .committee-card {
            background: transparent;
            text-align: center;
            border: none;
            position: relative;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            transition: var(--transition);
        }

        .committee-img-container {
            width: 100%;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            position: relative;
            background: #FFFFFF;
        }

        .committee-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .committee-card:hover .committee-img-container {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-hover);
        }

        .committee-card:hover .committee-img {
            transform: scale(1.06);
        }

        .committee-name {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--heading-color);
            margin: 0;
            font-weight: 600;
            transition: var(--transition);
        }

        .committee-card:hover .committee-name {
            color: var(--primary);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
        }

        /* Journey Timeline */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: var(--border-color);
        }

        .timeline-progress {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--primary), var(--accent-gold));
            z-index: 1;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 4rem;
            width: 100%;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            right: -10px;
            width: 20px;
            height: 20px;
            background: var(--bg-color);
            border: 4px solid var(--accent-gold);
            border-radius: 50%;
            z-index: 2;
            transition: var(--transition);
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -10px;
        }

        .timeline-content {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            width: 90%;
            position: relative;
            border: 1px solid var(--border-color);
        }

        .timeline-item:hover .timeline-dot {
            background: var(--accent-gold);
            box-shadow: 0 0 15px var(--accent-gold);
        }

        .timeline-year {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Festival Highlights */
        .festival-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .festival-card {
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .festival-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .festival-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(78, 52, 46, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
            transition: var(--transition);
        }

        .festival-card:hover .festival-img {
            transform: scale(1.1);
        }

        .festival-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .festival-desc {
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .festival-card:hover .festival-title,
        .festival-card:hover .festival-desc {
            transform: translateY(0);
            opacity: 1;
        }

        /* Image Gallery */
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--border-color);
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--heading-color);
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(216, 67, 21, 0.3);
            transform: translateY(-2px);
        }

        .gallery-masonry {
            column-count: 3;
            column-gap: 1.5rem;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-soft);
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(78, 52, 46, 0.95) 0%, rgba(216, 67, 21, 0.4) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 2rem 1.5rem;
            opacity: 0;
            transition: var(--transition);
            text-align: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--accent-gold);
            font-size: 1.8rem;
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-overlay h4 {
            color: white;
            font-family: var(--font-heading);
            font-size: 1.3rem;
            margin-top: 1rem;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.1s;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .gallery-item:hover .gallery-overlay i,
        .gallery-item:hover .gallery-overlay h4 {
            transform: translateY(0) scale(1);
        }

        /* Divine Mantras Section Redesign */
        .mantras-section {
            background: linear-gradient(135deg, #1C0F0D, #2D1510, #1C0F0D);
            position: relative;
            overflow: hidden;
            padding: 120px 5%;
        }

        /* Glowing backdrops */
        .mantras-section .mantras-aura-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(80px);
            opacity: 0.25;
            z-index: 0;
        }

        .mantras-section .glow-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
            top: -10%;
            left: -10%;
        }

        .mantras-section .glow-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            bottom: -10%;
            right: -10%;
        }

        .mantras-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 550px;
            height: 550px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D4AF37" opacity="0.06" d="M50 0 C60 30 70 40 100 50 C70 60 60 70 50 100 C40 70 30 60 0 50 C30 40 40 30 50 0 Z"/></svg>') center/contain no-repeat;
            z-index: 0;
            animation: spin 80s linear infinite;
        }

        /* Card Frame */
        .mantras-frame {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            background: rgba(45, 21, 16, 0.45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 30px;
            padding: 4.5rem 3rem;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(212, 175, 55, 0.05);
            text-align: center;
        }

        /* Ornamental corners */
        .ornament {
            position: absolute;
            width: 35px;
            height: 35px;
            border: 2px solid var(--accent-gold);
            pointer-events: none;
        }

        .ornament-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
        .ornament-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
        .ornament-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
        .ornament-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

        .ornament::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 50%;
        }

        .ornament-tl::before { right: -4px; bottom: -4px; }
        .ornament-tr::before { left: -4px; bottom: -4px; }
        .ornament-bl::before { right: -4px; top: -4px; }
        .ornament-br::before { left: -4px; top: -4px; }

        .mantra-header {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mantra-om-container {
            position: relative;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .mantra-spin-icon {
            color: var(--accent-gold);
            font-size: 1.8rem;
            animation: spin 20s linear infinite;
            z-index: 2;
        }

        .mantra-om-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1.5px dashed rgba(212, 175, 55, 0.4);
            border-radius: 50%;
            animation: spinRing 15s linear infinite reverse;
            z-index: 1;
        }

        /* Carousel Wrapper */
        .mantra-carousel-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin: 2rem 0;
            min-height: 180px;
        }

        .mantra-container {
            position: relative;
            flex: 1;
            height: 140px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mantra-slide {
            position: absolute;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.9) translateY(15px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mantra-slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
        }

        .mantra-text {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.4;
            background: linear-gradient(135deg, #FFE082, #FFB300, #FFE082);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
        }

        .mantra-translation {
            font-family: var(--font-subheading);
            font-size: 1.3rem;
            color: #E2C3B7;
            font-style: italic;
            letter-spacing: 0.5px;
        }

        /* Navigation Buttons */
        .mantra-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-gold);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 3;
        }

        .mantra-nav-btn:hover {
            background: var(--accent-gold);
            color: #FFFFFF;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
            transform: scale(1.08);
        }

        .mantra-nav-btn:active {
            transform: scale(0.95);
        }

        /* Controls Section */
        .mantra-controls {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .chant-play-btn {
            position: relative;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--primary);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
        }

        .chant-play-btn:hover {
            transform: scale(1.1);
            background: var(--accent-gold);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }

        .play-btn-glow {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            opacity: 0;
            transform: scale(1);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .chant-play-btn.playing .play-btn-glow {
            animation: pulseRing 1.5s ease-out infinite;
        }

        .chant-play-btn:active {
            transform: scale(0.95);
        }

        /* Soundwave Indicator */
        .sound-wave {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 24px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sound-wave.active {
            opacity: 1;
            visibility: visible;
        }

        .sound-wave span {
            display: block;
            width: 3px;
            height: 5px;
            background: var(--accent-gold);
            border-radius: 3px;
            animation: waveBounce 1.2s ease-in-out infinite;
        }

        .sound-wave span:nth-child(2) { animation-delay: 0.15s; }
        .sound-wave span:nth-child(3) { animation-delay: 0.3s; }
        .sound-wave span:nth-child(4) { animation-delay: 0.45s; }
        .sound-wave span:nth-child(5) { animation-delay: 0.6s; }

        @keyframes waveBounce {
            0%, 100% { height: 5px; }
            50% { height: 24px; }
        }

        @keyframes pulseRing {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Dots Navigation */
        .mantra-dots {
            display: flex;
            gap: 0.6rem;
        }

        .mantra-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .mantra-dots .dot.active {
            background: var(--accent-gold);
            transform: scale(1.2);
            box-shadow: 0 0 8px var(--accent-gold);
        }

        @media (max-width: 768px) {
            .mantra-text {
                font-size: 1.8rem;
            }
            .mantra-translation {
                font-size: 1.05rem;
            }
            .mantras-frame {
                padding: 3rem 1.5rem;
            }
            .mantra-carousel-wrapper {
                gap: 0.8rem;
            }
            .mantra-nav-btn {
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
            }
        }

        /* Donation Section */
        .donation-card {
            background: var(--glass-bg);
            border: var(--glass-border);
            border-radius: 20px;
            padding: 4rem;
            box-shadow: var(--shadow-hover);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .donation-info h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .donation-info p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .bank-details {
            background: var(--section-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-gold);
        }

        .bank-details p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .bank-details span {
            font-weight: 600;
            color: var(--heading-color);
        }

        .qr-placeholder {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            text-align: center;
            border: 2px dashed var(--accent-gold);
        }
        
        .qr-placeholder img {
            width: 250px;
            height: 250px;
            margin: 0 auto 1.5rem;
            object-fit: cover;
        }

        /* Contact Section Upgrades */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.35fr;
            gap: 3.5rem;
            align-items: center;
        }

        .contact-card {
            background: #FFFFFF;
            padding: 2.2rem 2rem;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(78, 52, 46, 0.03);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(212, 175, 55, 0.15);
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .contact-card:hover {
            transform: translateX(10px) translateY(-2px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-icon {
            width: 62px;
            height: 62px;
            background: rgba(216, 67, 21, 0.05);
            border: 1px solid rgba(216, 67, 21, 0.15);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
            color: var(--primary);
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .contact-card:hover .contact-icon {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
            transform: rotate(15deg) scale(1.05);
            box-shadow: 0 0 15px rgba(216, 67, 21, 0.35);
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            margin-bottom: 0.4rem;
            color: var(--heading-color);
        }

        .contact-link {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            line-height: 1.6;
        }

        .contact-link:hover {
            color: var(--primary);
            transform: translateX(3px);
        }

        /* map ornamental framing */
        .map-wrapper {
            background: #FFFFFF;
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 30px;
            padding: 12px;
            box-shadow: 0 15px 45px rgba(78, 52, 46, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .map-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .map-placeholder {
            width: 100%;
            min-height: 420px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            min-height: 420px;
            display: block;
            border: none;
        }

        /* Devotional Video Section Redesign */
        #devotional-video {
            background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F0 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 5%;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .video-aura-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(90px);
            opacity: 0.15;
            z-index: 0;
        }

        #devotional-video .glow-1 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
            top: -10%;
            right: -10%;
        }

        #devotional-video .glow-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            bottom: -10%;
            left: -10%;
        }

        .video-wrapper {
            position: relative;
            z-index: 2;
            max-width: 960px;
            margin: 0 auto;
            background: linear-gradient(135deg, #2D1511 0%, #1C0C0A 100%);
            border: 2px solid rgba(212, 175, 55, 0.45);
            border-radius: 35px;
            padding: 2.2rem;
            box-shadow: 0 25px 60px rgba(45, 21, 16, 0.18), inset 0 0 40px rgba(212, 175, 55, 0.08);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1.5px solid rgba(212, 175, 55, 0.25);
            background: #000000;
        }

        .video-container iframe {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border: none;
            z-index: 1;
        }

        .video-cover {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 3;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.6s ease;
        }

        .video-cover img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            transition: transform 0.8s ease;
        }

        .video-cover:hover img {
            transform: scale(1.03);
            filter: brightness(0.5);
        }

        .video-play-btn {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFFFFF;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 4;
            box-shadow: 0 10px 30px rgba(216, 67, 21, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .video-cover:hover .video-play-btn {
            transform: scale(1.12);
            background: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
            color: #1A0E0C;
        }

        .video-play-btn::before {
            content: '';
            position: absolute;
            top: -10px; left: -10px; right: -10px; bottom: -10px;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            animation: pulseRing 1.5s infinite;
            opacity: 0.8;
            pointer-events: none;
        }

        .video-cover.fade-out {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* Playlist Styles */
        .video-playlist {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2.2rem;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .playlist-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1.5px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        .playlist-item:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.06);
        }

        .playlist-item.active {
            border-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.08);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
        }

        .playlist-thumb {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #000;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .playlist-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            opacity: 0.75;
        }

        .playlist-item:hover .playlist-thumb img {
            transform: scale(1.04);
            opacity: 0.95;
        }

        .playlist-item.active .playlist-thumb img {
            opacity: 1;
        }

        .thumb-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.45);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFFFFF;
            font-size: 1.5rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .playlist-item:hover .thumb-overlay {
            opacity: 1;
        }

        .playlist-item.active .thumb-overlay {
            opacity: 1;
            background: rgba(212, 175, 55, 0.15);
            color: var(--accent-gold);
        }

        .playlist-yt-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.82rem;
            color: #CBB9B5;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 8px 12px;
            border-radius: 20px;
            transition: var(--transition);
            font-family: var(--font-body);
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .playlist-yt-link i {
            color: #FF0000; /* YouTube Red logo */
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .playlist-yt-link:hover {
            background: var(--accent-gold);
            color: #1A0E0C;
            border-color: var(--accent-gold);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
        }

        .playlist-yt-link:hover i {
            color: #1A0E0C;
        }

        @media (max-width: 768px) {
            .video-playlist {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
        }

        /* Footer Redesign */
        footer {
            background: linear-gradient(180deg, #1C0F0D 0%, #0F0807 100%);
            color: white;
            padding: 7rem 5% 3rem;
            position: relative;
            overflow: hidden;
            border-top: 1.5px solid rgba(212, 175, 55, 0.35);
        }

        /* Subtle mandala background in footer */
        footer::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D4AF37" opacity="0.03" d="M50 0 C60 30 70 40 100 50 C70 60 60 70 50 100 C40 70 30 60 0 50 C30 40 40 30 50 0 Z"/></svg>') center/contain no-repeat;
            z-index: 0;
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .footer-col {
            position: relative;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FFE082, #FFB300, #FFE082);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .footer-logo-ring-container {
            position: relative;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .footer-logo-ring {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border: 1px dashed rgba(212, 175, 55, 0.5);
            border-radius: 50%;
            animation: spinRing 12s linear infinite;
        }

        .footer-logo i {
            font-size: 1.25rem;
            color: var(--accent-gold);
            -webkit-text-fill-color: var(--accent-gold);
            animation: omBlink 2.5s ease-in-out infinite;
        }

        .footer-desc {
            color: #CBB9B5;
            margin-bottom: 2rem;
            max-width: 380px;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-social-icons {
            display: flex;
            gap: 1rem;
        }

        .footer-social-icons a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.25);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-gold);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-social-icons a:hover {
            background: var(--accent-gold);
            color: #1C0F0D;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
            border-color: var(--accent-gold);
        }

        .footer-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: white;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }

        .footer-links li {
            margin-bottom: 1.2rem;
        }

        .footer-links a {
            color: #CBB9B5;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .footer-links a::before {
            content: '✦';
            color: var(--accent-gold);
            font-size: 0.75rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(8px);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
        }

        .footer-links a:hover::before {
            transform: scale(1.3) rotate(90deg);
        }

        /* Redesigned Newsletter */
        /* Standalone YouTube Subscribe Button */
        .footer-youtube-subscribe-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--accent-gold);
            color: #1C0F0D;
            border: 1px solid var(--accent-gold);
            padding: 12px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 30px;
            text-decoration: none;
            width: 100%;
            transition: var(--transition);
            font-family: var(--font-body);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
            margin-top: 1rem;
        }

        .footer-youtube-subscribe-btn i {
            color: #FF0000; /* YouTube Red color */
            font-size: 1.15rem;
            transition: var(--transition);
        }

        .footer-youtube-subscribe-btn:hover {
            background: #FFFFFF;
            color: #1C0F0D;
            border-color: #FFFFFF;
            box-shadow: 0 0 15px white;
            transform: translateY(-2px);
        }

        .footer-youtube-subscribe-btn:hover i {
            transform: scale(1.1);
        }

        /* Ornamental Divider */
        .footer-divider-container {
            position: relative;
            z-index: 1;
            margin: 4rem 0 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-divider-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
            z-index: 0;
        }

        .footer-divider-icon-wrapper {
            background: #120908; /* Blends with body bg */
            padding: 0 20px;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-divider-icon-wrapper span {
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            border-radius: 50%;
        }

        .footer-divider-icon-wrapper i {
            color: var(--accent-gold);
            font-size: 1.4rem;
            animation: spin 30s linear infinite;
        }

        .footer-bottom {
            text-align: center;
            position: relative;
            z-index: 1;
            color: #888;
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            backdrop-filter: blur(5px);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary);
            font-size: 1.5rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-hover);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent-gold);
            color: white;
            transform: translateY(-5px);
        }

        /* Lightbox Modal Styling */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(29, 17, 14, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10005;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .lightbox-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content-container {
            max-width: 90%;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transform: scale(0.85);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .lightbox-modal.active .lightbox-content-container {
            transform: scale(1);
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 75vh;
            border-radius: 20px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
            object-fit: contain;
        }

                .lightbox-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.8rem;
            color: #120908;
            background: rgba(255, 255, 255, 0.85);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10010;
            border: 1px solid var(--accent-gold);
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            line-height: 1;
            transition: var(--transition);
        }

                .lightbox-close:hover {
            color: #ffffff;
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .lightbox-caption {
            display: none !important; /* Hide description below photo */
            font-family: var(--font-heading);
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title { font-size: 3.5rem; }
            .hero-content-wrapper { flex-direction: column; text-align: center; margin-top: 4rem; }
            .hero-text { text-align: center; max-width: 100%; }
            .hero-buttons { justify-content: center; }
            .lakshmi-circle { width: 350px; height: 350px; }
            .about-grid, .donation-card, .contact-grid { grid-template-columns: 1fr; }
            .gallery-masonry { column-count: 2; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .custom-cursor { display: none; } /* Disable custom cursor on mobile */
            * { cursor: auto; }
            
            section { padding: 60px 5%; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--card-bg);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                text-align: center;
                box-shadow: var(--shadow-soft);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease-in-out;
            }

            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .hamburger { display: flex; }

            .hero-title { font-size: 2.2rem; margin-bottom: 1rem; }
            .hero-tagline { font-size: 1.2rem; margin-bottom: 1rem; }
            .hero-buttons { flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; margin: 0 auto 3rem; }
            .hero-buttons .btn { width: 100%; text-align: center; }
            
            .lakshmi-circle { width: 260px; height: 260px; margin-top: 1rem; }
            .section-title { font-size: 2rem; }
            
            /* Responsive About Us */
            .about-grid {
                gap: 3rem;
            }
            .about-lead {
                font-size: 1.15rem;
                margin-bottom: 2rem;
                text-align: center;
            }
            .pillar-card {
                padding: 1.2rem;
                gap: 1rem;
            }
            .pillar-icon {
                width: 44px;
                height: 44px;
                font-size: 1.25rem;
            }
            .about-showcase {
                max-width: 400px;
                margin: 0 auto;
                width: 100%;
            }
            .floating-badge {
                width: 90px;
                height: 90px;
                bottom: -15px;
                left: -15px;
            }
            .badge-year { font-size: 1.2rem; }
            .badge-text { font-size: 0.5rem; }
            
            .president-card {
                flex-direction: column;
                text-align: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
                border-radius: 30px;
            }
            .president-img-container {
                width: 200px;
                height: 200px;
            }
            .president-text {
                text-align: center;
            }
            .president-name {
                font-size: 1.8rem;
            }
            .president-quote-wrapper {
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 0.2rem;
            }
            .quote-icon {
                font-size: 2rem;
                margin-top: 0;
            }
            .president-quote {
                font-size: 1.2rem;
            }
            .president-socials {
                justify-content: center;
            }
            
            .timeline::before { left: 30px; }
            .timeline-progress { left: 30px; }
            .timeline-item, .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 70px;
                padding-right: 0;
                margin-bottom: 2.5rem;
            }
            .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
                left: 20px;
                right: auto;
            }
            .timeline-content { width: 100%; padding: 1.5rem; }
            .timeline-year { font-size: 1.5rem; }
            
            .festival-card { height: 350px; }
            
            .gallery-masonry { column-count: 1; }
            
            .mantras-section { padding: 60px 5%; }
            .mantra-text { font-size: 1.5rem; }
            .mantra-container { height: auto; min-height: 150px; }
            
            .donation-card { padding: 2rem 1.5rem; gap: 2.5rem; }
            .donation-info h3 { font-size: 1.8rem; }
            .qr-placeholder img { width: 200px; height: 200px; }
            
            .contact-grid { gap: 2rem; }
            .contact-card { flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1.5rem; }
            .map-placeholder { min-height: 300px; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
            .social-icons { justify-content: center; }
            .footer-title::after { left: 50%; transform: translateX(-50%); }
            .footer-links a { justify-content: center; }
        }
        
        @media (max-width: 480px) {
            .hero-title { font-size: 1.8rem; }
            .section-title { font-size: 1.8rem; }
            .lakshmi-circle { width: 220px; height: 220px; }
            .president-name { font-size: 1.5rem; }
            .president-quote { font-size: 1.1rem; }
            .president-img-container { width: 160px; height: 160px; }
            .mantra-text { font-size: 1.2rem; }
        }

