:root {
            --primary: #0B3C74;
            --secondary: #7C1234;
            --accent: #D4AF37;
            --background: #F7F9FC;
            --text: #2D3748;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background-color: var(--background);
            
        }

        h1, h2, h3, h4, .font-heading {
            font-family: 'Playfair Display', serif;
        }

        .font-number {
            font-family: 'Montserrat', sans-serif;
        }

        /* Glassmorphism & Apple UI Style */
        .glass-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 30px rgba(11, 60, 116, 0.06);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .glass-card:hover {
            box-shadow: 0 20px 40px rgba(11, 60, 116, 0.12);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #F1F5F9;
        }
        ::-webkit-scrollbar-thumb {
            background: #0B3C74;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #7C1234;
        }

        /* Hero Background Image with Gradient Overlay */
        .hero-bg {
            background: linear-gradient(135deg, rgba(5, 31, 62, 0.85) 0%, rgba(11, 60, 116, 0.75) 50%, rgba(75, 11, 31, 0.85) 100%), url('../img/main_hero_bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* Button Ripple & Glow */
        .btn-gold {
            background: linear-gradient(135deg, #D4AF37 0%, #B8911D 100%);
            color: #0B3C74;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #E5C354 0%, #C49C24 100%);
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, #0B3C74 0%, #1656A0 100%);
            color: #FFFFFF;
            transition: all 0.3s ease;
        }
        .btn-primary-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(11, 60, 116, 0.4);
        }

        /* Page Loader */
        #page-loader {
            position: fixed;
            inset: 0;
            background: #0B3C74;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loader-ring {
            width: 70px;
            height: 70px;
            border: 5px solid rgba(212, 175, 55, 0.2);
            border-top: 5px solid #D4AF37;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(3deg); }
        }
        .animate-float {
            animation: float 5s ease-in-out infinite;
        }

        /* Pulse Gold Glow */
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
        }
        .pulse-gold {
            animation: pulseGlow 2.5s infinite;
        }

        /* Tab active state */
        .tab-btn.active {
            background-color: #0B3C74;
            color: #FFFFFF;
            border-color: #D4AF37;
            box-shadow: 0 4px 14px rgba(11, 60, 116, 0.25);
        }

        /* Section transition view mode */
        .view-section {
            display: block;
        }
/* Responsive overrides for missing tailwind classes */
@media (min-width: 1024px) {
    .lg\:hidden {
        display: none !important;
    }
    .lg\:flex {
        display: flex !important;
    }
    .lg\:block {
        display: block !important;
    }
}
@media (min-width: 768px) {
    .md\:hidden {
        display: none !important;
    }
    .md\:flex {
        display: flex !important;
    }
    .md\:block {
        display: block !important;
    }
}



/* Fix AOS horizontal scroll issue without breaking position: sticky */
body, html {
    overflow-x: visible; /* Required for position: sticky to work */
}

main, footer {
    overflow-x: hidden; /* Contains the animations to prevent horizontal scrolling */
}

/* Custom utilities */
.bg-red-600 {
    background-color: #dc2626 !important;
}

/* Enhanced News Ticker */
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #dc2626, #991b1b);
    color: white;
    padding: 8px 0;
    position: relative;
    z-index: 40;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-badge {
    background: #ffed4a;
    color: #991b1b;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-right: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-link {
    color: #ffed4a;
    text-decoration: underline;
    margin-left: 15px;
    transition: opacity 0.2s;
}

.ticker-link:hover {
    opacity: 0.8;
}
