
    .nagnath-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Video full cover */
.nagnath-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark + saffron devotional overlay */
.nagnath-overlay {
    position: absolute;
    inset: 0;
    background:
       
        linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Content */
.nagnath-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* Text styles */
.trust-text {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.nagnath-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.nagnath-content h1 span {
    color: #ff9f1c;
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.8);
}

.welcome-text {
    font-size: 20px;
    max-width: 850px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #ff6a00;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

.btn.primary:hover {
    background: #e85c00;
    transform: translateY(-2px);
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .nagnath-content h1 {
        font-size: 36px;
    }

    .welcome-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

  /* Color scheme from your website */
        :root {
            --primary-orange: #F96300;
            --dark-blue: #1C538E;
            --light-blue: #4a6fa5;
            --white: #ffffff;
            --light-gray: #f5f5f5;
        }

        .live-darshan-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #234770 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .live-darshan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(249,99,0,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
            opacity: 0.5;
        }

        .live-darshan-container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            color: var(--white);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .section-header .subtitle {
            color: var(--primary-orange);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            margin: 20px auto;
            border-radius: 2px;
        }

        .video-container {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin-bottom: 40px;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 30px;
        }

        .temple-name {
            color: var(--dark-blue);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #dc3545;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            animation: pulse-badge 2s infinite;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            50% { box-shadow: 0 0 0 8px rgba(220, 53, 69, 0); }
        }

        .temple-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }

        .info-card {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-orange);
        }

        .info-card .label {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .info-card .value {
            color: var(--dark-blue);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .action-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: var(--primary-orange);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            background: #e65100;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 99, 0, 0.4);
            color: white;
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--primary-orange);
            padding: 12px 28px;
            border: 2px solid var(--primary-orange);
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
        }

        .side-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-box {
            background: var(--white);
            padding: 25px;
            border-radius: 8px;
            border-top: 4px solid var(--primary-orange);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .feature-box h5 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.15rem;
        }

        .feature-box p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .icon-box {
            width: 45px;
            height: 45px;
            background: var(--primary-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .temple-name {
                font-size: 1.4rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
                justify-content: center;
            }
        }

        .govt-seal {
            width: 70px;
            height: 70px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        
        
        
        