        /* ===========================
           HOME PAGE SPECIFIC STYLES
        ============================ */
        body {
            margin: 0;
            padding: 0;
            background: transparent;
            font-family: var(--font-sans);
            background: var(--bg-gradient);
            background-image: var(--mesh-gradient), var(--bg-gradient);
            background-attachment: fixed;
            background-size: 200% 200%;
            animation: meshAnim 30s ease infinite;
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM30 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm-20 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z' fill='%238B1914' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: -1;
            opacity: 0.6;
        }


        /* Visibility Safety Fix: Ensures content isn't stuck at opacity:0 */
        .sr {
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .sr.is-visible,
        .sr.sr-ready {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Section Headings */
        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0e8dd;
        }

        .section-heading h2 {
            margin: 0;
            font-size: 1.9rem;
            color: #8B1914;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .section-heading h2::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 2rem;
            background: linear-gradient(to bottom, #f57c00, #8B1914);
            border-radius: 4px;
        }

        /* ── Quick Links Bar ── */
        .quick-links-bar {
            display: flex;
            gap: 0;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .quick-link-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.8rem 1rem;
            text-decoration: none;
            color: #333;
            border-right: 1px solid #f0e8dd;
            transition: all 0.35s ease;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .quick-link-item:hover {
            background: #fff8f2;
            color: #8B1914;
            transform: translateY(-3px);
        }

        .quick-link-item .icon {
            font-size: 2rem;
        }

        .quick-link-item span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ── About Split ── */
        .about-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(139, 25, 20, 0.15);
            margin-bottom: 3rem;
            transform: translateZ(0) !important;
            gap: 0;
            padding: 0;
            background: linear-gradient(135deg, #8B1914, #c0392b);
        }

        .about-split-left {
            background: transparent;
            padding: 4rem 3.5rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            border-radius: 16px 0 0 16px;
            margin: 0;
        }

        .about-split-left h2 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-split-left p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .about-split-right {
            position: relative;
            min-height: 450px;
            overflow: hidden;
            border-radius: 0 16px 16px 0;
            margin: 0;
        }

        .about-split-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 0;
            display: block;
        }

        .about-split-right:hover img {
            transform: scale(1.1);
        }

        /* ── Stats ── */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
            padding: 10px;
            /* Allow for hover lift */
        }

        .stat-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-bottom: 4px solid #f57c00;
        }

        .stat-card .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #8B1914;
        }

        /* ── Services ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
            padding: 10px;
            /* Allow for hover lift */
        }

        .service-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(139, 25, 20, 0.1);
        }

        .hero-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .service-card .svc-icon {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            display: block;
        }

        .service-card h3 {
            color: #8B1914;
            margin-bottom: 0.5rem;
        }

        /* ── Page Section ── */
        .page-section {
            padding: 2rem 2.5rem 3rem;
            max-width: 1800px;
            width: 96%;
            margin: 0 auto;
        }

        /* ── Timings ── */
        .timings-table {
            width: 100%;
            border-collapse: collapse;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .timings-table th {
            background: #8B1914;
            color: white;
            padding: 1rem 1.5rem;
            text-align: left;
        }

        .timings-table td {
            padding: 0.9rem 1.5rem;
            border-bottom: 1px solid #f0e8dd;
        }

        .hero-btn-orange {
            display: inline-block;
            padding: 0.8rem 2.2rem;
            background: linear-gradient(135deg, #f57c00, #e65100);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
        }

        .hero-btn-orange:hover {
            background: linear-gradient(135deg, #ff8a65, #f57c00);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(245, 124, 0, 0.5);
        }

        /* ── Two-Tier Header ── */
        .two-tier-header {
            background: #540D0C;
            /* Dark Maroon */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 50px;
            border-bottom: 2px solid #D48B01;
            /* Gold Bottom Line */
        }

        .header-logo-group {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .header-logo-group img {
            height: 90px;
            width: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #D48B01;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        }

        .header-title-text {
            font-family: var(--font-sans);
            color: #ffffff;
            font-size: 2.2rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .header-avatars {
            display: flex;
            gap: 1rem;
        }

        .avatar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.85rem;
            color: #ffffff;
            font-weight: 500;
            position: relative;
        }

        .avatar-item img {
            border-radius: 50%;
            border: 2px solid #ffffff;
            object-fit: cover;
            margin-bottom: 0.4rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }

        .avatar-item:hover img {
            transform: scale(1.1);
        }

        .avatar-item span {
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        /* ── Orange Navbar ── */
        .orange-navbar-row {
            background: #540D0C;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            will-change: transform, background-color, box-shadow, backdrop-filter;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
        }

        .orange-navbar-row.nav-hidden {
            transform: translateY(-100%) !important;
            box-shadow: none !important;
            pointer-events: none;
        }

        .orange-navbar-row.nav-scrolled {
            background: rgba(84, 13, 12, 0.95) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        }

        .orange-navbar-row ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
            justify-content: center;
            max-width: 1400px;
        }

        .orange-navbar-row li {
            position: relative;
            flex: 1;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
        }

        .orange-navbar-row li:last-child {
            border-right: none;
        }

        .orange-navbar-row li a {
            display: block;
            color: white;
            font-weight: 600;
            padding: 1.1rem 0;
            text-transform: uppercase;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .orange-navbar-row li a:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        /* Donate Button Styling */
        .orange-navbar-row li a.nav-donate-btn {
            background: linear-gradient(to bottom, #ff851b, #e67000);
            color: white;
            font-weight: 800;
        }

        .orange-navbar-row li a.nav-donate-btn:hover {
            background: linear-gradient(to bottom, #E89B02, #C67E00);
            transform: scale(1.02);
        }

        .orange-navbar-row li:hover>.dropdown {
            display: block;
        }

        .orange-navbar-row .dropdown {
            position: absolute;
            top: 100%;
            left: 100%;
            background: #ffffff;
            min-width: 200px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            display: none;
            padding: 0.5rem 0;
            border-radius: 0 0 12px 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 100;
        }

        .orange-navbar-row .dropdown a {
            color: #333 !important;
            padding: 0.8rem 1.2rem;
            text-transform: none;
            display: flex !important;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            text-align: left;
            flex: none;
            width: auto;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .orange-navbar-row .dropdown a:last-child {
            border-bottom: none;
        }

        .orange-navbar-row .dropdown a:hover {
            background: #540d0c3c !important;
            color: #540D0C !important;
        }

        /* ── Carousel Slider ── */
        .carousel-container {
            position: relative;
            width: 100%;
            /* height: 100vh; Premium Full Screen */
            overflow: hidden;
            background: #000;
        }

        .carousel-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
            will-change: transform;
            transform: translateZ(0);
        }

        .carousel-slide {
            flex: 0 0 33.333333%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%),
                linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
        }

        .gold-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(212, 139, 1, 0.15) 0%, transparent 70%);
            mix-blend-mode: overlay;
            z-index: 1;
        }

        .premium-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 0 150px rgba(212, 139, 1, 0.2);
            pointer-events: none;
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 5;
            margin-left: 8%;
            max-width: 650px;
            color: white;
        }

        .slide-content h1 {
            font-size: 4rem;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .slide-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .slide-torn-paper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .torn-left {
            width: 55%;
            height: 100%;
            background: #ebd8bd;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 4rem 4rem 8%;
            /* Cinematic smooth easing fade blend (Ultra-Premium) */
            -webkit-mask-image: linear-gradient(to right,
                    rgba(0, 0, 0, 1) 60%,
                    rgba(0, 0, 0, 0.85) 75%,
                    rgba(0, 0, 0, 0.4) 90%,
                    rgba(0, 0, 0, 0) 100%);
            -webkit-mask-size: 100% 100%;
            z-index: 2;
        }

        /* .torn-left .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            color: #d32f2f;
            font-weight: 900;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: fit-content;
        } */
        .torn-left .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: #d32f2f;
            font-weight: 900;
            font-size: 1.2rem;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
            width: fit-content;
            animation: livePulse 2s infinite;
        }

        @keyframes livePulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
            }

            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
            }
        }

        .torn-right {
            width: 70%;
            height: 100%;
            margin-left: -25%;
            background-size: cover;
            background-position: center 25%;
            z-index: 1;
        }

        .carousel-controls {
            position: absolute;
            right: 5%;
            bottom: 25%;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .slide-indicator {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            border-bottom: 3px solid rgba(255, 255, 255, 0.7);
            line-height: 1;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1.5rem;
        }

        .nav-arrow:hover {
            background: white;
            color: #000;
        }

        .arch-overlay {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 60px;
            z-index: 15;
            pointer-events: none;
        }

        .vertical-tab {
            position: absolute;
            left: 0;
            right: auto;
            top: 50%;
            transform: translateY(-50%);
            background: #e65100;
            color: white;
            padding: 1.5rem 0.8rem;
            writing-mode: vertical-rl;
            border-radius: 0 12px 12px 0;
            font-weight: 800;
            cursor: pointer;
            z-index: 100;
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            width: auto;
            white-space: nowrap;
        }

        .vertical-tab:hover {
            background: #bf360c;
        }

        /* ── Map Section ── */
        .map-section {
            margin-bottom: 5rem;
            padding: 0 1rem;
        }

        .map-wrap {
            display: grid;
            grid-template-columns: 380px 1fr;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0e8dd;
            min-height: 480px;
            transform: translateZ(0);
            -webkit-transform: translate3d(0, 0, 0);
            -webkit-backface-visibility: hidden;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
        }

        .map-info-panel {
            background: linear-gradient(135deg, #8B1914 0%, #a31d17 100%);
            color: white;
            padding: 3.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-info-panel::after {
            content: '';
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            font-size: 10rem;
            opacity: 0.1;
            transform: rotate(-15deg);
        }

        .map-info-panel h3 {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 2rem;
            font-weight: 800;
            position: relative;
            z-index: 2;
            margin-top: 0;
        }

        .mi-row {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
            align-items: flex-start;
            position: relative;
            z-index: 2;
        }

        .mi-row .ic {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .mi-row p,
        .mi-row a {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            text-decoration: none;
            word-break: break-word;
        }

        .mi-row a:hover {
            color: #f57c00;
        }

        .get-directions {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
            padding: 1rem 2rem;
            background: #f57c00;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: fit-content;
            box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .get-directions:hover {
            background: white;
            color: #8B1914;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .map-frame {
            position: relative;
            width: 100%;
            height: 100%;
            background: #f0f0f0;
        }

        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.2) contrast(1.1);
        }

        @media (max-width: 1000px) {
            .map-wrap {
                grid-template-columns: 1fr;
            }

            .map-frame {
                height: 350px;
            }

            .map-info-panel {
                padding: 1.5rem 1.2rem 1.5rem;
            }

            .map-info-panel .get-directions {
                align-self: center;
            }

            .two-tier-header {
                display: flex !important;
                flex-direction: column !important;
                padding: 0.8rem 1rem !important;
                gap: 0.8rem !important;
                text-align: center;
                position: sticky !important;
                top: 0 !important;
                z-index: 10000 !important;
                will-change: transform, background-color, box-shadow;
                transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease !important;
                background: #540D0C !important;
            }

            .two-tier-header.nav-hidden {
                transform: translateY(-100%) !important;
                box-shadow: none !important;
                pointer-events: none;
            }

            .two-tier-header.nav-scrolled {
                background: rgba(84, 13, 12, 0.95) !important;
                /* Premium semi-transparent maroon */
                backdrop-filter: blur(12px) !important;
                -webkit-backdrop-filter: blur(12px) !important;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
                border-bottom: 1px solid rgba(212, 139, 1, 0.25) !important;
                padding: 0.5rem 1.0rem !important;
                /* Super-compact padding when scrolled down */
            }

            /* Hide the 3 Saint photos when scrolled down for optimal screen space */
            .two-tier-header.nav-scrolled .header-avatars {
                display: none !important;
            }

            .two-tier-header-top-row {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100% !important;
            }

            .header-logo-group {
                flex-direction: row;
                gap: 0.7rem;
                align-items: center;
                justify-content: flex-start;
            }

            .header-logo-group img {
                height: 42px !important;
                width: 42px !important;
            }

            .header-title-text {
                font-size: 1.1rem !important;
                letter-spacing: 1.5px;
                text-align: left;
            }

            .header-title-text span {
                font-size: 0.65rem !important;
            }

            /* 3 avatars in a clean centered row */
            .header-avatars {
                display: flex !important;
                justify-content: center;
                align-items: center;
                gap: 1.2rem;
            }

            .header-avatars .avatar-item {
                flex-direction: column;
                align-items: center;
            }

            .header-avatars .avatar-item img {
                width: 50px !important;
                height: 50px !important;
                border-width: 2px;
                margin-bottom: 2px;
            }

            .header-avatars .avatar-item span {
                font-size: 0.55rem !important;
                letter-spacing: 0;
                opacity: 0.9;
            }

            .orange-navbar-row {
                display: none !important;
            }

            .orange-navbar-row li a {
                padding: 0.6rem 0.8rem;
                font-size: 0.75rem;
            }

            .slide-content {
                margin: 0;
                padding: 1rem 2rem;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .slide-content h1 {
                font-size: 2.2rem;
                text-align: center;
            }

            .slide-content p {
                font-size: 1rem;
                text-align: center;
            }

            .carousel-container {
                height: 80vh !important;
                overflow: hidden !important;
            }

            .carousel-track {
                display: flex !important;
                width: 300% !important;
            }

            .carousel-slide {
                flex: 0 0 33.333333% !important;
                width: 100vw !important;
                overflow: hidden !important;
            }

            /* --- Torn Paper Mobile Overhaul --- */
            .carousel-slide.slide-torn-paper {
                flex-direction: column !important;
                height: 100% !important;
            }

            .torn-left {
                width: 100% !important;
                height: auto !important;
                padding: 2rem 1.5rem !important;
                -webkit-mask-image: none !important;
                mask-image: none !important;
                text-align: center !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .torn-left h2 {
                font-size: 1.6rem !important;
                line-height: 1.2 !important;
                text-align: center !important;
                margin-bottom: 1rem !important;
            }

            .torn-left p {
                line-height: 1.2 !important;
                text-align: center !important;
            }

            .torn-right {
                width: 100% !important;
                flex: 1 !important;
                min-height: 200px !important;
                margin-left: 0 !important;
                display: block !important;
                background-size: cover !important;
                background-position: center 25% !important;
            }

            .carousel-controls {
                left: 50% !important;
                right: auto !important;
                bottom: 2% !important;
                transform: translateX(-50%) !important;
                gap: 1rem !important;
                z-index: 100 !important;
                background: rgba(0, 0, 0, 0.2) !important;
                padding: 5px 15px !important;
                border-radius: 50px !important;
            }

            /* Grid Stacking Overhaul */
            .stats-row {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem !important;
                width: 100% !important;
            }

            .services-grid {
                grid-template-columns: 1fr !important;
                gap: 1.2rem !important;
                width: 100% !important;
            }

            .quick-links-bar {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                width: 100% !important;
            }

            .quick-link-item {
                border-right: 1px solid #f0e8dd !important;
                border-bottom: 1px solid #f0e8dd !important;
                padding: 1.2rem 0.5rem !important;
            }

            .quick-link-item:nth-child(even) {
                border-right: none !important;
            }

            .quick-link-item:last-child {
                grid-column: span 2 !important;
                border-bottom: none !important;
            }

            .about-split {
                grid-template-columns: 1fr !important;
            }

            .about-split-left {
                padding: 1.5rem 1.2rem;
                text-align: center;
                align-items: center;
                border-radius: 16px 16px 0 0;
            }

            .about-split-left .hero-om-watermark {
                font-size: 8rem !important;
                left: 50% !important;
                top: 50% !important;
                transform: translate(-50%, -50%) !important;
            }

            .about-split-left h2 {
                font-size: 1.8rem;
            }

            .about-split-right {
                min-height: 300px;
                border-radius: 0 0 16px 16px;
            }

            .about-split-right img {
                border-radius: 0;
            }

            .page-section {
                padding: 3rem 1.2rem;
            }

            .section-heading h2 {
                font-size: 1.4rem;
            }

            /* --- Timings Table Mobile Card View --- */
            .timings-table,
            .timings-table thead,
            .timings-table tbody,
            .timings-table tr,
            .timings-table td {
                display: block;
                width: 100%;
            }

            .timings-table {
                background: transparent;
                box-shadow: none;
                border: none;
            }

            .timings-table thead {
                display: none;
                /* Hide header on mobile */
            }

            .timings-table tr {
                background: white;
                margin-bottom: 1.2rem;
                border-radius: 16px;
                padding: 1.2rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                border: 1px solid #f0e8dd;
            }

            .timings-table td {
                padding: 0.6rem 0;
                border-bottom: 1px solid #f9f6f2;
                display: flex;
                flex-direction: column;
                gap: 4px;
                text-align: left;
            }

            .timings-table td:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            /* Labels for mobile cards */
            .timings-table td::before {
                content: attr(data-label);
                font-size: 0.7rem;
                font-weight: 700;
                text-transform: uppercase;
                color: #8B1914;
                opacity: 0.6;
                letter-spacing: 0.5px;
            }

            /* Specific styling for Session cell */
            .timings-table td:first-child {
                font-size: 1.15rem;
                font-weight: 700;
                color: #8B1914;
                border-bottom: 2px solid #f0e8dd;
                padding-bottom: 0.8rem;
                margin-bottom: 0.4rem;
                flex-direction: row;
                align-items: center;
                gap: 8px;
            }

            .timings-table td:first-child::before {
                display: none;
            }

            .timings-table td[data-label="Time"] {
                font-weight: 600;
                color: #333;
                font-size: 1rem;
            }

            .timings-table td[data-label="Activity"] {
                color: #555;
                line-height: 1.5;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 500px) {
            .stats-row {
                grid-template-columns: 1fr;
            }

            .header-title-text {
                font-size: 1.3rem;
            }

            .slide-content h1 {
                font-size: 1.8rem;
            }

            .carousel-container {
                height: 480px;
            }
        }

        /* --- Announcement Section --- */
        .announcement-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .ann-header {
            margin-bottom: 1.5rem;
        }

        .ann-badge {
            background: linear-gradient(135deg, #8B1914 0%, #d32f2f 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(139, 25, 20, 0.3);
            position: relative;
            animation: annPulse 2s infinite;
        }

        .ann-badge i {
            font-size: 1rem;
        }

        @keyframes annPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(139, 25, 20, 0.6);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(139, 25, 20, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(139, 25, 20, 0);
            }
        }

        /* --- Announcement Ticker --- */
        .ann-ticker-wrap {
            width: 100vw;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            background: #8B1914;
            color: white;
            padding: 10px 0;
            margin: 1rem 0 1.5rem;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(139, 25, 20, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ann-ticker-content {
            display: inline-block;
            padding-left: 100%;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            animation: tickerScroll 25s linear infinite;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .ann-ticker-wrap:hover .ann-ticker-content {
            animation-play-state: paused;
        }

        .ann-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(139, 25, 20, 0.15);
            border: 2px solid rgba(139, 25, 20, 0.8);
            position: relative;
            animation: annGlow 4s ease-in-out infinite;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes annGlow {

            0%,
            100% {
                border-color: rgba(139, 25, 20, 0.8);
                box-shadow: 0 20px 60px rgba(139, 25, 20, 0.15);
            }

            50% {
                border-color: #f57c00;
                box-shadow: 0 20px 70px rgba(245, 124, 0, 0.2);
            }
        }

        .ann-header h2 {
            font-size: 2.2rem;
            color: #8B1914;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

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

        .ann-img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
            background: #fff;
            display: block;
        }

        .ann-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            width: 100%;
            background: #000;
        }

        .ann-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- Ways to Devote Section --- */
        .devote-header {
            text-align: center;
            position: relative;
        }

        .devote-header h2 {
            font-family: var(--font-sans);
            font-size: 2.4rem;
            color: #6d4c41;
            display: inline-flex;
            align-items: center;
            gap: 1.2rem;
            margin: 0;
            font-weight: 500;
        }

        .devote-header .subtitle {
            color: #8B1914;
            font-weight: 700;
        }

        .devote-header .divider {
            color: #ccc;
            font-weight: 300;
            font-size: 2rem;
        }

        .devote-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .devote-card {
            position: relative;
        }

        .card-inner {
            background: rgba(215, 92, 21, 0.204);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 1.2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.5);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            z-index: 2;
        }

        .devote-card:hover .card-inner {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-color: #f57c00;
        }

        .card-image-wrap {
            width: 100%;
            height: 220px;
            border-radius: 18px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            position: relative;
            border: 4px solid #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .card-image-wrap::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border: 1px solid rgba(212, 139, 1, 0.4);
            border-radius: 12px;
            pointer-events: none;
        }

        .card-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .devote-card:hover .card-image-wrap img {
            transform: scale(1.1);
        }

        .card-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .card-content h3 {
            font-family: var(--font-sans);
            color: #8B1914;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 800;
        }

        .card-content p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .devote-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
            min-height: 48px;
            background: #ffffff;
            color: #8B1914;
            border-radius: 50px;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 2px solid #8B1914;
            gap: 8px;
            cursor: pointer;
            margin-top: auto;
        }

        .devote-btn:hover {
            background: #8B1914;
            color: white !important;
            border-color: #8B1914;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(230, 81, 0, 0.25);
        }
        
        .devote-btn:active {
            transform: scale(0.98);
        }

        .devote-btn i {
            font-size: 1.1rem;
        }

        @media (max-width: 1100px) {
            .devote-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 650px) {
            .devote-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .devote-header h2 {
                font-size: 1.4rem;
                /* flex-direction: column; */
                gap: 0.4rem;
            }

            .devote-header .divider {
                display: none;
            }

            .card-number {
                font-size: 2rem;
            }
        }

        /* ── Premium Hanuman Chalisa Banner ── */
        .premium-chalisa-banner {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            margin: 0 auto 0 5%;
            /* Shifted to the left */
            width: 90%;
            max-width: 800px;
            min-height: 220px;
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(30, 8, 5, 0.45);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 2;
        }

        .premium-chalisa-banner:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(40, 10, 5, 0.55);
        }

        .premium-chalisa-banner .banner-bg {
            display: none;
        }

        .premium-chalisa-banner .banner-overlay {
            display: none;
        }

        .banner-content-wrap {
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 3rem 4rem;
            color: white;
        }

        .banner-text-area {
            max-width: 650px;
        }

        .live-badge-small {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(5px);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
        }

        .live-badge-small svg {
            width: 14px;
            height: 14px;
        }

        .banner-text-area h2 {
            font-size: 3rem;
            margin: 0 0 0.8rem 0;
            font-weight: 900;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            line-height: 1.1;
        }

        .banner-text-area p {
            font-size: 1.15rem;
            margin: 0;
            opacity: 0.95;
            line-height: 1.6;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .banner-play-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: relative;
            padding-right: 2rem;
        }

        .premium-play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            color: #d84315;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }

        .premium-chalisa-banner:hover .premium-play-btn {
            transform: scale(1.1);
            color: #8B1914;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .pulse-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
            animation: pulsePlay 2s infinite;
        }

        @keyframes pulsePlay {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.75);
                opacity: 0;
            }
        }

        .play-text {
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
        }

        @media(max-width: 850px) {
            .banner-content-wrap {
                flex-direction: column;
                text-align: center;
                padding: 2.5rem 1.5rem;
                gap: 1.5rem;
            }

            .banner-play-area {
                padding-right: 0;
            }

            .premium-chalisa-banner {
                width: 92%;
                min-height: auto;
                margin: 0 auto;
                border-radius: 20px;
            }

            .banner-text-area h2 {
                font-size: 2.2rem;
                margin-bottom: 0.5rem;
            }

            .banner-text-area p {
                font-size: 1rem;
                line-height: 1.4;
                display: none;
                /* Hide description on mobile for cleaner look */
            }

            .live-badge-small {
                margin-bottom: 0.5rem;
            }

            .premium-play-btn {
                width: 70px;
                height: 70px;
            }
        }

        /* Chalisa Modal Glassmorphism */
        .chalisa-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 5, 5, 0.85);
            /* Darker backdrop */
            z-index: 9999;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .chalisa-modal.active {
            display: flex;
            opacity: 1;
        }

        .premium-chalisa-content {
            background: linear-gradient(160deg, #2a110a 0%, #150500 100%);
            padding: 3.5rem 2.5rem;
            border-radius: 30px;
            width: 90%;
            max-width: 420px;
            position: relative;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 2px 10px rgba(255, 120, 0, 0.2);
            border: 1px solid rgba(255, 120, 0, 0.15);
            transform: translateY(30px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .chalisa-modal.active .premium-chalisa-content {
            transform: translateY(0) scale(1);
        }

        .premium-close {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            top: 20px;
            right: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .premium-close:hover {
            background: #d84315;
            color: white;
            transform: rotate(90deg);
        }

        .chalisa-art-container {
            position: relative;
            width: 160px;
            height: 160px;
            margin: 0 auto 2.5rem;
        }

        .art-ring {
            position: absolute;
            top: -12px;
            left: -12px;
            right: -12px;
            bottom: -12px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, transparent, #f57c00, #d84315, transparent);
            animation: spin 4s linear infinite;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .chalisa-art-container:has(.chalisa-art.playing) .art-ring,
        .chalisa-art.playing~.art-ring {
            opacity: 1;
        }

        .chalisa-art {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #1a0b08;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 2;
            transition: transform 0.5s;
        }

        .chalisa-art.playing {
            animation: spin 15s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .chalisa-title {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0 0 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, #ffb74d, #f57c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .chalisa-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            letter-spacing: 0.5px;
        }

        .custom-audio-player {
            width: 100%;
        }

        .time-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            font-family: monospace;
        }

        .progress-bar-container {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(to right, #f57c00, #ffb74d);
            border-radius: 10px;
            position: relative;
        }

        .progress-thumb {
            position: absolute;
            right: -6px;
            top: -4px;
            width: 14px;
            height: 14px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(245, 124, 0, 0.8);
            transform: scale(0);
            transition: transform 0.2s;
        }

        .progress-bar-container:hover .progress-thumb {
            transform: scale(1);
        }

        .player-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .control-btn {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .control-btn:hover {
            color: white;
            transform: scale(1.15);
        }

        .control-btn svg {
            width: 28px;
            height: 28px;
        }

        .play-pause-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f57c00, #d84315);
            border: none;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(216, 67, 21, 0.4);
            transition: all 0.3s;
        }

        .play-pause-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 15px 35px rgba(216, 67, 21, 0.5);
        }

        .play-pause-btn svg {
            width: 32px;
            height: 32px;
        }

        /* ── Gallery Preview Grid ── */
        .gallery-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gp-item {
            height: 250px;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 3px solid #fff;
        }

        .gp-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(139, 25, 20, 0.2);
        }

        .gallery-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        @media(max-width: 768px) {
            .chalisa-banner {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .chalisa-content {
                flex-direction: column;
            }
        }

        /* ── Infinite Divine Marquee ── */
        .marquee-section {
            padding: 2rem 0;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.3);
            position: relative;
        }

        .marquee-container {
            display: flex;
            width: fit-content;
            animation: marqueeScroll 35s linear infinite;
            gap: 2rem;
            padding: 0 20px;
        }

        .marquee-item {
            width: 250px;
            height: 350px;
            flex-shrink: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .marquee-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 1rem));
            }
        }

        /* ── Bento Gallery ── */
        .bento-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .bento-item {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .bento-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        /* Bento Grid Layout Variations */
        .bento-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .bento-item.wide {
            grid-column: span 2;
        }

        .bento-item.tall {
            grid-row: span 2;
        }

        .bento-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            z-index: 2;
        }

        .bento-item:hover img {
            transform: scale(1.1);
        }

        .bento-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .bento-item:hover .bento-content {
            transform: translateY(0);
            opacity: 1;
        }

        /* ── Parallax Window ── */
        .parallax-window {
            height: 500px;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            margin: 4rem 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-top: 2px solid #8B1914;
            border-bottom: 2px solid #8B1914;
        }

        .parallax-window::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .parallax-text {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        @media (max-width: 1024px) {
            .bento-gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .bento-item.large,
            .bento-item.wide,
            .bento-item.tall {
                grid-column: span 1;
                grid-row: span 1;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .marquee-item {
                width: 280px;
                height: 200px;
            }

            .parallax-text {
                font-size: 2rem;
            }

            .parallax-window {
                height: auto;
                min-height: 400px;
                padding: 4rem 20px;
                background-attachment: scroll;
                /* Fix for iOS background-attachment: fixed bug */
            }

            /* Gallery Content always visible on mobile */
            .bento-content {
                opacity: 1;
                transform: translateY(0);
                padding: 1.2rem;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            }

            .bento-content h3 {
                font-size: 1.1rem;
            }

            .bento-content p {
                font-size: 0.85rem;
                display: none;
                /* Hide description on mobile to save space */
            }

            /* Katha Float Button Adjustment */
            .katha-float-btn {
                padding: 0.8rem 0.5rem;
                font-size: 0.8rem;
            }

            .katha-float-content {
                gap: 8px;
            }
        }

        /* ===================== FLOATING LIVE PILL ===================== */
        .floating-live-pill {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #d32f2f;
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 800;
            text-decoration: none;
            z-index: 9999;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .floating-live-pill:hover {
            background: #b71c1c;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
            color: white;
        }

        .live-pill-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        @media (max-width: 768px) {
            .floating-live-pill {
                bottom: 25px;
                left: 50%;
                transform: translateX(-50%);
                width: auto;
                white-space: nowrap;
            }

            .floating-live-pill:hover {
                transform: translateX(-50%) translateY(-3px);
            }
        }

        /* ===================== NEW PHASE 2 STYLES ===================== */
        /* Glassmorphism Buttons */
        .glass-btn {
            background: rgba(255, 255, 255, 0.15) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            color: #000000 !important;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        }

        .glass-btn:hover {
            background: rgba(255, 255, 255, 0.25) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            color: red !important;
        }

        /* Carousel Animations */
        .carousel-slide .anim-title,
        .carousel-slide .anim-desc,
        .carousel-slide .anim-btn {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .carousel-slide.active .anim-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .carousel-slide.active .anim-desc {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .carousel-slide.active .anim-btn {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        /* Devotional Quotes */
        .quote-container {
            background: linear-gradient(135deg, #fffdfa 0%, #fff5ea 100%);
            border: 1px solid #f0e8dd;
            border-left: 5px solid #f57c00;
            padding: 3rem;
            border-radius: 12px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 2rem auto;
            max-width: 900px;
        }

        .quote-icon {
            width: 48px;
            height: 48px;
            color: #f57c00;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .quote-text {
            font-size: 1.6rem;
            font-style: italic;
            color: #540D0C;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .quote-author {
            font-size: 1.1rem;
            color: #d32f2f;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* Floating Decorative Elements */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10 L65 50 L105 55 L65 60 L60 100 L55 60 L15 55 L55 50 Z' fill='%23D48B01' fill-opacity='0.02' /%3E%3C/svg%3E");
            pointer-events: none;
            z-index: -2;
            opacity: 0.8;
        }