
        :root {
            --gold: #FFD700;
            --neon-gold: #FFA500;
            --red: #B22222;
            --dark: #0F0F1A;
            --light: #FFF8E7;
            --gradient: linear-gradient(135deg, #FFD700, #FFA500, #FF6347);
            --glass: rgba(255,255,255,0.1);
            --shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Hind Siliguri', sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            text-shadow: 0 0 10px rgba(255,215,0,0.5);
        }

        /* Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, #1a1a2e, #0f0f1a);
        }

        /* Navbar */
        .navbar {
            background: rgba(15,15,26,0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255,215,0,0.2);
            transition: all 0.4s;
        }
        .navbar.scrolled {
            background: rgba(15,15,26,0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: var(--gold) !important;
            text-shadow: 0 0 15px var(--neon-gold);
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            position: relative;
            transition: all 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--gold);
            transition: all 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .nav-link:hover { color: var(--gold) !important; }

        /* Hero */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        .hero video {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }
        .hero-content {
            z-index: 2;
            animation: glow 2s infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 20px var(--gold); }
            to { text-shadow: 0 0 40px var(--neon-gold), 0 0 60px #FF4500; }
        }
        .hero h1 {
            font-size: 5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 20px auto;
            opacity: 0.9;
        }
        .glow-btn {
            background: var(--gradient);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(255,215,0,0.6);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        .glow-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 40px rgba(255,165,0,0.8);
        }
        .glow-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        .glow-btn:hover::before { left: 100%; }

        /* 3D Flip Card */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 300px;
            perspective: 1000px;
            margin: 20px 0;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .flip-card-front {
            background: var(--glass);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .flip-card-back {
            background: var(--gradient);
            color: white;
            transform: rotateY(180deg);
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Section */
        .section { padding: 120px 0; position: relative; }
        .section-alt { background: rgba(15,15,26,0.8); }
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            font-size: 3rem;
            position: relative;
        }
        /*.section-title::after {
            content: 'मंदिर परिचय ';
            font-size: 2rem;
            color: var(--gold);
            display: block;
            margin: 20px auto;
            animation: float 3s infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }*/

        /* Video */
        .video-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(255,215,0,0.3);
            transition: all 0.3s;
        }
        .video-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 0 50px rgba(255,215,0,0.5);
        }

        /* Floating CTA */
        .float-cta {
            position: fixed;
            bottom: 30px; right: 30px;
            background: var(--red);
            color: white;
            width: 70px; height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 0 30px rgba(178,34,34,0.7);
            z-index: 1000;
            animation: pulse 2s infinite;
            border: 3px solid var(--gold);
        }

        /* WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 110px; right: 30px;
            background: #25d366;
            color: white;
            width: 60px; height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 0 25px rgba(37,211,102,0.6);
            z-index: 1000;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: #ccc;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,215,0,0.2);
            text-align: center;
        }
        footer a { color: var(--gold); text-decoration: none; }
        footer a:hover { color: white; }

        /* Social Icons */
        .social-icons {
            margin: 20px 0;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 0 10px;
            font-size: 1.5rem;
            border-radius: 50%;
            background: rgba(255,215,0,0.1);
            color: var(--gold);
            transition: all 0.4s;
            box-shadow: 0 0 15px rgba(255,215,0,0.3);
        }
        .social-icons a:hover {
            background: var(--gold);
            color: #000;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 0 30px var(--neon-gold);
        }
        .read-more {
            color: var(--gold);
            font-weight: bold;
            text-decoration: none;
        }
        .read-more:hover {
            text-decoration: underline;
        }
        /*panchang*/
         .panchang-glow {
             animation: goldenPulse 4s infinite alternate;
        }
        @keyframes goldenPulse {
            0% {
            box-shadow: 0 0 20px rgba(255,215,0,0.4), 
                        0 0 40px rgba(255,165,0,0.2);
            }
            100% {
            box-shadow: 0 0 40px rgba(255,215,0,0.8), 
                        0 0 80px rgba(255,165,0,0.5);
            }
        }
        /* pujaa book dropdown*/
        #puja option,
        select.form-select option {
         background-color: #1a1a1a;   /* Dark gray for dropdown options */
             color: #ffffff;
        }
        /* Optional: Custom arrow icon (looks premium) */
        #puja {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 50px !important;
        }

        /* Hover & Focus Effect */
        #puja:focus,
        #puja:hover {
            background-color: #111111 !important;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4) !important; /* Gold glow */
            outline: none;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .section { padding: 80px 0; }
            .section-title { font-size: 2.2rem; }
            .social-icons a { width: 45px; height: 45px; font-size: 1.3rem; }
        }
    