        /* Custom Fonts */
        .font-headline { font-family: 'Playfair Display', serif; }
        .font-body { font-family: 'Inter', sans-serif; }

        /* Custom Gradient Background for Hero */
        .hero-bg {
            background: linear-gradient(135deg, #e0e7ff 0%, #c4b5fd 100%);
            position: relative;
            overflow: hidden;
        }
        /* Subtle background shapes/iconography */
        .hero-bg::before, .hero-bg::after {
            content: '';
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            animation: float 20s infinite ease-in-out;
            z-index: 0;
        }
        .hero-bg::before {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
            transform: scale(0.8);
        }
        .hero-bg::after {
            width: 300px;
            height: 300px;
            bottom: -50px;
            right: -50px;
            animation-delay: 10s;
            transform: scale(1.1);
        }

        /* Scrolling Ticker Animation */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
        }
        .ticker {
            display: inline-block;
            white-space: nowrap;
            animation: ticker-scroll 30s linear infinite;
        }
        @keyframes ticker-scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Glassmorphism Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        /* Custom Scrollbar for Video Carousel */
        .horizontal-scroll-container::-webkit-scrollbar {
            height: 8px;
        }
        .horizontal-scroll-container::-webkit-scrollbar-thumb {
            background: #9333ea;
            border-radius: 10px;
        }
        .horizontal-scroll-container::-webkit-scrollbar-track {
            background: #f3f4f6;
        }

        /* Common Card Hover Effects */
        .card-hover {
            transition: all 0.3s ease-in-out;
        }
        .card-hover:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        /* Style for the three content sections in the modal */
        .content-section {
            border-left: 4px solid #8b5cf6;
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        .content-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #4c1d95;
            margin-bottom: 0.5rem;
        }

        /* 🔥 Background Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

/* 🔥 Bold Marquee Animation */
.ticker-wrap {
    position: relative;
    white-space: nowrap;
}

.ticker-bold {
    display: inline-block;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

