
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
        
        :root { --primary: #002147; --accent: #D4AF37; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #F8FAFC; overflow-x: hidden; width: 100%; }
        h1, h2, h3 { font-family: 'Playfair Display', serif; }

        /* Fix Swiper for Mobile */
        .swiper { width: 100%; height: 70vh; }
        @media (min-width: 768px) { .swiper { height: 90vh; } }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,33,71,0.8), rgba(0,33,71,0.4));
            z-index: 1;
        }

        /* Mobile Menu Animation */
        #mobile-menu {
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .mobile-menu-active { transform: translateX(0) !important; }

        /* Custom Utilities */
        .glass-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); }
        
        /* Prevent AOS white space */
        [data-aos] { pointer-events: none; }
        .aos-animate { pointer-events: auto; }

        /* Immersive Ken Burns Effect */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.swiper-slide-active .hero-bg-img {
    animation: kenburns 12s ease-out forwards;
}

/* Perfect Mobile Glassmorphism */
.hero-content-glass {
    background: rgba(0, 33, 71, 0.4); /* Darker tint for better contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content-glass {
        padding: 1.5rem !important;
        margin: 0 1rem;
        border-radius: 1rem;
    }
    .hero-title { font-size: 1.875rem !important; line-height: 1.2 !important; }
}

/* Custom Navigation UI */
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 5px !important;
    background: #fbbf24 !important; /* Amber-400 */
    opacity: 1;
}
   