﻿/* --- AARB GLOBAL STYLES --- */
:root {
    --primary-deep-blue: #1E4E8C;
    --primary-royal-blue: #2F6FB2;
    --accent-gold: #D4AF37;
    --accent-yellow: #F2C94C;
    --accent-bronze: #A67C00;
    --highlight-blue: #6FA8DC;
    --pure-white: #FFFFFF;
    --off-white: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --shadow-elevation: 0 20px 35px -12px rgba(30, 78, 140, 0.15);
    --shadow-card: 0 8px 20px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.05);
    --border-radius-xl: 32px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- View Management (SPA Logic) --- */
.view-section {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mega Menu Styles --- */
.mega-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: var(--shadow-elevation);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1050;
    border-top: 4px solid var(--accent-gold);
    padding: 2rem;
}

    .mega-menu.wide {
        width: 1100px;
        padding: 0;
    }

        .mega-menu.wide .row {
            display: flex;
            flex-wrap: wrap;
        }

        .mega-menu.wide .col {
            flex: 1;
            min-width: 180px;
            padding: 2rem 1.2rem;
            border-right: 1px solid rgba(0,0,0,0.05);
            transition: background 0.2s;
            display: flex;
            flex-direction: column;
        }

            .mega-menu.wide .col:last-child {
                border-right: none;
            }

            .mega-menu.wide .col:hover {
                background: rgba(248, 250, 252, 0.5);
            }

        .mega-menu.wide h6 {
            font-weight: 800;
            color: var(--primary-deep-blue);
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.menu-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mega-menu .list-unstyled {
    margin-bottom: 0;
}

    .mega-menu .list-unstyled li a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.8rem;
        display: block;
        padding: 6px 0;
        transition: 0.2s;
        font-weight: 500;
        border-radius: 6px;
        padding-left: 8px;
        padding-right: 8px;
    }

        .mega-menu .list-unstyled li a:hover {
            color: var(--primary-deep-blue);
            background: rgba(30, 78, 140, 0.05);
            transform: translateX(4px);
        }

/* Gradient Utility Classes */
.bg-icon-blue {
    background: linear-gradient(135deg, #2F6FB2 0%, #1E4E8C 100%);
}

.bg-icon-gold {
    background: linear-gradient(135deg, #F2C94C 0%, #D4AF37 100%);
}

.bg-icon-green {
    background: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
}

.bg-icon-purple {
    background: linear-gradient(135deg, #8E44AD 0%, #6C3483 100%);
}

.bg-icon-red {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

/* Standard Mega Menu Styles */
.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 130%;
}

.menu-column {
    border-right: 1px solid rgba(0,0,0,0.05);
}

    .menu-column:last-child {
        border-right: none;
    }

/* --- Navbar & Ribbon --- */
.glass-ribbon {
    background: var(--primary-deep-blue);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 0;
    font-size: 0.8rem;
}

.social-icon-modern {
    background: rgba(255,255,255,0.15);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: 0.2s;
    color: var(--accent-gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

    .social-icon-modern:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        transform: translateY(-2px);
    }

.lang-pill {
    background: rgba(255,255,255,0.15);
    border-radius: 60px;
    padding: 4px;
    display: inline-flex;
    gap: 6px;
}

.lang-opt {
    background: transparent;
    border: none;
    padding: 6px 22px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: 0.2s;
}

    .lang-opt.active {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 40px;
    padding: 6px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-gold:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
    }

.navbar-modern {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(30, 78, 140, 0.1);
    padding: 10px 0;
}

.brand-wrapper {
    margin-right: 2rem;
    align-self: center;
    max-width: 340px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
}

.brand-emblem {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: white;
    padding: 2px;
    flex-shrink: 0;
}

.brand-text h4 {
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0;
    color: var(--primary-deep-blue);
    line-height: 1.1;
}

.brand-text span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-bronze);
    display: block;
}

.navbar-nav .nav-link-modern {
    padding: 8px 12px !important;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-main);
    border-radius: 40px;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .navbar-nav .nav-link-modern:hover,
    .navbar-nav .nav-link-modern.active {
        background: rgba(30, 78, 140, 0.08);
        color: var(--primary-deep-blue);
    }

.navbar-nav .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
    font-size: 0.75rem;
}

.navbar-nav {
    gap: 2px;
}

/* --- Hero Section --- */
.hero-modern {
    position: relative;
    padding: 70px 0 100px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-glow-orb {
    position: absolute;
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(30, 78, 140, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: softPulse 6s infinite alternate;
    pointer-events: none;
}

@keyframes softPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-particle {
    position: absolute;
    background: rgba(242, 201, 76, 0.4);
    border-radius: 50%;
    filter: blur(3px);
    animation: floatUp 10s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

.hero-badge {
    background: rgba(30, 78, 140, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
}

.glass-input {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 80px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.2s;
}

    .glass-input:focus-within {
        border-color: var(--accent-yellow);
        box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.3);
    }

.ai-input {
    background: transparent;
    border: none;
    padding: 14px 24px;
    color: white;
    font-weight: 500;
    width: 100%;
    outline: none;
}

    .ai-input::placeholder {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 400;
    }

.btn-gold {
    background: var(--accent-gold);
    border: none;
    border-radius: 60px;
    padding: 12px 36px;
    font-weight: 700;
    color: white;
    transition: 0.2s;
}

    .btn-gold:hover {
        background: #b5952f;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
    }

.btn-cta-yellow {
    background: var(--accent-yellow);
    border: none;
    border-radius: 60px;
    padding: 14px 32px;
    font-weight: 700;
    color: var(--primary-deep-blue);
    transition: 0.2s;
}

    .btn-cta-yellow:hover {
        background: #ffe066;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(242, 201, 76, 0.4);
    }

.ai-card {
    background: rgba(30, 78, 140, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    margin-top: 24px;
    display: none;
}

/* --- Cards --- */
.stat-card {
    background: var(--pure-white);
    border-radius: 28px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: 0.25s;
    border: 1px solid var(--slate-100);
    border-top: 4px solid transparent;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-elevation);
        border-top-color: var(--accent-gold);
    }

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-deep-blue);
}

.service-card {
    background: var(--pure-white);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--slate-100);
    height: 100%;
    cursor: pointer;
}

    .service-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-6px);
        box-shadow: 0 20px 30px -15px rgba(0,0,0,0.08);
    }

.service-icon {
    width: 76px;
    height: 76px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--primary-deep-blue);
}

.payment-method-card {
    background: white;
    border-radius: 28px;
    padding: 1.6rem;
    border: 1px solid var(--slate-200);
    transition: 0.2s;
}

    .payment-method-card:hover {
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-card);
    }

.news-card {
    background: white;
    border-radius: 24px;
    padding: 1.4rem;
    border-left: 4px solid var(--accent-gold);
    transition: 0.2s;
    height: 100%;
    cursor: pointer;
}

    .news-card:hover {
        transform: translateX(6px);
        background: #FFFCF0;
    }

/* --- Footer --- */
.footer-modern {
    background: linear-gradient(180deg, var(--primary-deep-blue) 0%, #153058 100%);
    border-top: 4px solid var(--accent-gold);
    padding-top: 3rem;
}

.footer-link {
    color: #B9CFDF;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    transition: 0.2s;
}

    .footer-link:hover {
        color: var(--accent-yellow);
        padding-left: 5px;
    }

/* --- UI Helpers --- */
.ai-chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--accent-gold);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1030;
    border: 2px solid white;
    transition: 0.2s;
}

    .ai-chat-fab:hover {
        transform: scale(1.07);
        background: var(--accent-yellow);
        color: var(--primary-deep-blue);
    }

.toast-custom {
    background: white;
    border-left: 5px solid var(--accent-gold);
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    width: auto;
    max-width: 350px;
}

    .toast-custom.show {
        transform: translateX(0);
    }

/* --- RESOURCE LIBRARY STYLES --- */
.library-header {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 50px 0 60px;
}

.search-filters {
    background: white;
    border-radius: 80px;
    padding: 5px 5px 5px 20px;
    box-shadow: var(--shadow-card);
}

.doc-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
    cursor: pointer;
    height: 100%;
}

    .doc-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-elevation);
        border-left: 3px solid var(--accent-gold);
    }

.doc-icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-deep-blue);
}

.badge-category {
    background: rgba(30, 78, 140, 0.1);
    color: var(--primary-deep-blue);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 600;
}

.missing-doc-banner {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    border-left: 4px solid var(--accent-gold);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
}

.btn-request {
    background: var(--accent-gold);
    color: var(--primary-deep-blue);
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-request:hover {
        background: var(--accent-yellow);
        transform: translateY(-2px);
    }

.btn-outline-request {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-bronze);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.request-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid #ffe6b3;
    margin-bottom: 1rem;
}

.status-badge {
    background: #FFF3E0;
    color: #B85C00;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 30px;
}

/* --- Mission Vision Hero Section --- */
.mv-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 3rem 0 4rem;
    position: relative;
    isolation: isolate;
}

.mv-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.vision-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Vision & Mission Cards */
.vision-card, .mission-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    transition: all 0.25s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .vision-card:hover, .mission-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.vision-icon, .mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-deep-blue);
    margin-bottom: 1.5rem;
}

.vision-card h3, .mission-card h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-blue);
}

.vision-text, .mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

.quote-mark {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.4;
    font-family: serif;
}

/* Values Section */
.section-header {
    border-left: 5px solid var(--accent-gold);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 1.6rem;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .value-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary-deep-blue);
}

.value-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-deep-blue);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.value-amharic {
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 0.5rem;
}

/* --- Responsive Fixes --- */
@media (max-width: 1200px) {
    .mega-menu.wide {
        width: 95%;
        left: 2.5%;
        transform: none;
    }

        .mega-menu.wide .col {
            min-width: 180px;
        }
}
/* ============================================
   DIGITAL SERVICES PAGE STYLES
   ============================================ */

/* Digital Services Hero Section */
.digital-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 4rem 0 5rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

    /* Decorative ray effect background */
    .digital-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
        opacity: 0.4;
        animation: pulse 10s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.digital-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pure-white);
}

.digital-badge {
    background: rgba(242, 201, 76, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Cards (Digital Services specific) */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(30, 78, 140, 0.1);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    /* Top border accent using Gold */
    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

        .service-card:hover::after {
            transform: scaleX(1);
        }

    .service-card .service-icon {
        width: 64px;
        height: 64px;
        background: rgba(111, 168, 220, 0.15);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        color: var(--primary-deep-blue);
        margin-bottom: 1.5rem;
        transition: 0.3s;
    }

    .service-card:hover .service-icon {
        background: var(--accent-gold);
        color: var(--pure-white);
    }

    .service-card h4 {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--primary-deep-blue);
    }

    .service-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

.service-link {
    color: var(--primary-royal-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

    .service-link:hover {
        gap: 12px;
        color: var(--accent-gold);
    }

    .service-link i {
        transition: transform 0.2s;
    }

    .service-link:hover i {
        transform: translateX(4px);
    }

/* Platform Cards */
.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 78, 140, 0.1);
    height: 100%;
    cursor: pointer;
}

    .platform-card:hover {
        border-color: var(--primary-royal-blue);
        transform: translateY(-5px);
        box-shadow: var(--shadow-elevation);
    }

.platform-icon {
    font-size: 2.5rem;
    color: var(--highlight-blue);
    margin-bottom: 1rem;
    transition: 0.3s;
}

.platform-card:hover .platform-icon {
    color: var(--primary-deep-blue);
}

.platform-card h5 {
    font-weight: 700;
    color: var(--primary-deep-blue);
}

/* Stats Banner */
.stats-banner {
    background: var(--primary-deep-blue);
    border-radius: 24px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

    /* Background pattern */
    .stats-banner::before {
        content: '';
        position: absolute;
        right: -50px;
        bottom: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, var(--primary-royal-blue) 0%, transparent 70%);
        opacity: 0.3;
    }

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Custom Toast for Digital Services */
.toast-custom {
    background: white;
    border-left: 5px solid var(--primary-deep-blue);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 78, 140, 0.2);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 320px;
}

    .toast-custom.show {
        transform: translateX(0);
    }

.toast-icon {
    background: rgba(30, 78, 140, 0.1);
    color: var(--primary-deep-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Digital Services Responsive */
@media (max-width: 768px) {
    .digital-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .digital-hero {
        padding: 3rem 0;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .glass-input {
        flex-direction: column;
        border-radius: 32px;
    }

    .btn-gold, .btn-cta-yellow {
        width: 100%;
    }

    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 1rem;
        background: #f8fafc;
        transform: none !important;
        display: none;
    }

        .mega-menu.show {
            display: block;
        }

        .mega-menu.wide .col {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #eee;
            padding: 1rem;
        }

        .mega-menu.wide .row {
            flex-direction: column;
        }
}

@media (max-width: 768px) {
    .mv-title {
        font-size: 1.9rem;
    }

    .vision-card h3, .mission-card h3 {
        font-size: 1.4rem;
    }

    .vision-text, .mission-text {
        font-size: 1rem;
    }

    .value-card {
        padding: 1.2rem;
    }
}
/* ============================================
   FORMER PRESIDENTS PAGE STYLES
   ============================================ */

/* Hero Section for Former Presidents */
.hero-modern {
    position: relative;
    padding: 70px 0 100px;
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-glow-orb {
    position: absolute;
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: softPulse 6s infinite alternate;
    pointer-events: none;
}

@keyframes softPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    filter: blur(4px);
    animation: floatUp 10s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #FFFBF0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
}

/* President Cards */
.president-card {
    background: var(--pure-white);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--slate-200);
    height: 100%;
}

    .president-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-elevation);
        border-color: var(--accent-gold);
    }

.president-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-bottom: 4px solid var(--accent-gold);
}

.president-card h4 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--primary-deep-blue);
}

.president-term {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-bronze);
    letter-spacing: 0.5px;
}

.leadership-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
    margin-top: 0.75rem;
}

/* Former Presidents Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .president-img {
        width: 180px;
        height: 180px;
    }
}

/* Section text styles */
.bg-light.border {
    border-color: var(--slate-200) !important;
    background: var(--pure-white) !important;
}

    .bg-light.border p {
        color: var(--text-muted);
    }

    .bg-light.border small {
        color: var(--text-muted);
    }


/* ============================================
   HEAD SPEECH PAGE STYLES
   ============================================ */

/* Speech Hero Section */
.speech-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.speech-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.speech-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Speech Card */
.speech-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-200);
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.president-img-wrapper {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    height: 100%;
}

.president-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: white;
}

.president-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.president-title {
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.speech-content {
    padding: 2.5rem;
}

.greeting {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-deep-blue);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.speech-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

    .speech-text p {
        margin-bottom: 1.2rem;
    }

.quote-signature {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(212, 175, 55, 0.3);
    text-align: right;
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
}

.signature-title {
    font-size: 0.85rem;
    color: var(--accent-bronze);
}

.slogan {
    background: rgba(242, 201, 76, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-deep-blue);
    font-size: 0.9rem;
}

/* Head Speech Responsive */
@media (max-width: 768px) {
    .speech-title {
        font-size: 1.8rem;
    }

    .president-img {
        width: 150px;
        height: 150px;
    }
    .president-name {
        font-size: 1.2rem;
    }

    .speech-content {
        padding: 1.5rem;
    }

    .speech-text {
        font-size: 0.9rem;
    }

    .greeting {
        font-size: 1rem;
    }
}

/* ============================================
   FOUNDATION & MILESTONES PAGE STYLES
   ============================================ */

/* Card Styles for Foundation Page */
.legal-card {
    background: var(--pure-white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--slate-200);
    transition: 0.2s;
}

    .legal-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-elevation);
        border-color: var(--accent-gold);
    }

.section-title {
    font-weight: 800;
    color: var(--primary-deep-blue);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 70px;
        height: 3px;
        background: var(--accent-gold);
        border-radius: 4px;
    }

/* Milestone Timeline */
.milestone-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 3px dashed var(--accent-gold);
    margin: 2rem 0;
}

.milestone-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

    .milestone-item:before {
        content: '';
        position: absolute;
        left: -2.2rem;
        top: 0.2rem;
        width: 1rem;
        height: 1rem;
        background: var(--accent-gold);
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    }

.milestone-year {
    font-weight: 800;
    color: var(--accent-bronze);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.milestone-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Cards for Foundation Page */
.stat-card {
    background: var(--pure-white);
    border-radius: 24px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
}

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-deep-blue);
}

.stat-card .fw-semibold {
    color: var(--text-main);
}

.stat-card small {
    color: var(--text-muted);
}

/* Border Gold Utility */
.border-gold {
    border-color: var(--accent-gold) !important;
}

.bg-light-custom {
    background: rgba(242, 201, 76, 0.1);
}

/* Foundation Page Responsive */
@media (max-width: 768px) {
    .legal-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .milestone-timeline {
        padding-left: 1rem;
    }

    .milestone-item {
        padding-left: 1rem;
    }

        .milestone-item:before {
            left: -1.5rem;
        }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   OVERVIEW & MANDATE PAGE STYLES
   ============================================ */

/* Mandate Hero Section */
.mandate-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 3rem 0 4rem;
    position: relative;
    isolation: isolate;
    margin-top: 0;
}

.mandate-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.legal-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Mandate Cards */
.mandate-card {
    background: white;
    border-radius: 28px;
    padding: 1.6rem;
    transition: all 0.25s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .mandate-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.mandate-number {
    width: 44px;
    height: 44px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-deep-blue);
    margin-bottom: 1rem;
}

.mandate-card h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-deep-blue);
}

.mandate-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mandate Page Responsive */
@media (max-width: 768px) {
    .mandate-title {
        font-size: 1.9rem;
    }

    .mandate-card {
        padding: 1.2rem;
    }
}

/* ============================================
   CURRENT OPENINGS PAGE STYLES
   ============================================ */

/* Openings Hero Section */
.openings-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.openings-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.openings-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* No Openings Card */
.no-openings-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-200);
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.no-openings-icon {
    width: 100px;
    height: 100px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--accent-gold);
}

.no-openings-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 1rem;
}

.no-openings-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: rgba(242, 201, 76, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-gold);
}

    .info-box h5 {
        color: var(--primary-deep-blue);
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .info-box p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Stay Tuned Cards */
.stay-tuned {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
    transition: all 0.25s ease;
}

    .stay-tuned:hover {
        border-color: var(--accent-gold);
        transform: translateY(-3px);
    }

/* Buttons */
.btn-gold {
    background: var(--accent-gold);
    border: none;
    border-radius: 60px;
    padding: 6px 16px;
    font-weight: 600;
    color: var(--primary-deep-blue);
    transition: 0.2s;
    font-size: 0.75rem;
}

    .btn-gold:hover {
        background: #e0b354;
        transform: translateY(-1px);
    }

/* Current Openings Responsive */
@media (max-width: 768px) {
    .openings-title {
        font-size: 1.8rem;
    }

    .no-openings-title {
        font-size: 1.4rem;
    }

    .no-openings-card {
        padding: 2rem 1.5rem;
    }

    .no-openings-text {
        font-size: 1rem;
    }
}

/* ============================================
   NEWS CENTRE PAGE STYLES
   ============================================ */

/* News Hero Section */
.news-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.news-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Featured News Section */
.featured-news-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

/* LEFT BIG FEATURED CARD - Sliding Carousel */
.big-featured-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
    height: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .big-featured-card:hover {
        transform: translateY(-5px);
    }

.big-featured-img {
    height: 380px;
    object-fit: cover;
    width: 100%;
}

.big-featured-content {
    padding: 1.8rem;
}

.featured-badge {
    background: var(--accent-gold);
    color: var(--primary-deep-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.big-featured-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.big-featured-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* RIGHT SIDE CARDS - STATIC */
.right-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--slate-200);
    height: 100%;
    display: flex;
}

    .right-news-card:hover {
        transform: translateY(-3px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-card);
    }

.right-news-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.right-news-content {
    padding: 0.8rem 1rem;
    flex: 1;
}

.right-news-date {
    font-size: 0.65rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.right-news-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
    color: var(--primary-deep-blue);
    line-height: 1.4;
}

.right-news-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BOTTOM ROW SMALL CARDS */
.small-news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--slate-200);
    height: 100%;
}

    .small-news-card:hover {
        transform: translateY(-3px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-card);
    }

.small-news-img {
    height: 110px;
    object-fit: cover;
    width: 100%;
}

.small-news-content {
    padding: 0.8rem;
}

.small-news-date {
    font-size: 0.6rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.small-news-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0.4rem 0 0;
    color: var(--primary-deep-blue);
    line-height: 1.3;
}

/* Left Side Swiper Styles */
.left-swiper {
    height: 100%;
}

    .left-swiper .swiper-slide {
        height: auto;
    }

.left-swiper-pagination {
    position: relative;
    margin-top: 1rem;
    text-align: center;
}

    .left-swiper-pagination .swiper-pagination-bullet {
        background: var(--slate-200);
        opacity: 1;
        width: 10px;
        height: 10px;
    }

    .left-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--accent-gold);
    }

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-gold);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-card);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }

/* Older News Grid Cards */
.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

    .news-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.news-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.news-card-body {
    padding: 1.2rem;
}

.news-date {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--primary-deep-blue);
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.read-more {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

    .read-more:hover {
        gap: 10px;
        color: var(--accent-bronze);
    }

/* News Centre Responsive */
@media (max-width: 768px) {
    .news-title {
        font-size: 1.8rem;
    }

    .big-featured-img {
        height: 220px;
    }

    .big-featured-title {
        font-size: 1.2rem;
    }

    .right-news-img {
        width: 80px;
        height: 80px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 992px) {
    .right-news-card {
        flex-direction: column;
    }

    .right-news-img {
        width: 100%;
        height: 140px;
    }
}

/* ============================================
   EVENTS CALENDAR PAGE STYLES
   ============================================ */

/* Events Hero Section */
.events-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.events-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.events-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Events Grid */
.events-grid {
    margin-top: 2rem;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

    .event-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.event-date-badge {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 1rem;
    text-align: center;
    color: white;
    min-width: 100px;
}

.event-date-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 1.2rem;
    flex: 1;
}

.event-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-time {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.75rem;
}

.event-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.event-register-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-bronze);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .event-register-btn:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        transform: translateY(-2px);
    }

/* Filter Section */
.filter-section {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.filter-select {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    cursor: pointer;
}

    .filter-select:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

/* Upcoming Events Banner */
.upcoming-banner {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .upcoming-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .upcoming-banner h3 {
        color: var(--accent-gold);
        font-weight: 700;
    }

    .upcoming-banner p {
        color: rgba(255,255,255,0.8);
    }

/* Past Events Section */
.past-events-section {
    opacity: 0.8;
}

.past-event-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    opacity: 0.8;
}

    .past-event-card:hover {
        transform: translateY(-3px);
        border-color: var(--accent-gold);
        opacity: 1;
    }

.past-event-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.past-event-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Events Calendar Responsive */
@media (max-width: 768px) {
    .events-title {
        font-size: 1.8rem;
    }

    .filter-section {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-select {
        width: 100%;
    }

    .event-date-badge {
        min-width: 80px;
        padding: 0.75rem;
    }

    .event-date-day {
        font-size: 1.5rem;
    }

    .upcoming-banner {
        padding: 1.5rem;
    }
}

/* ============================================
   PUBLICATIONS PAGE STYLES
   ============================================ */

/* Publications Hero Section */
.publications-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.publications-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.publications-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Publications Filter Section */
.publications-filter-section {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.publications-filter-select {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    cursor: pointer;
}

    .publications-filter-select:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

.publications-search-input {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    width: 100%;
}

    .publications-search-input:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

/* Publication Card */
.publication-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

    .publication-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.publication-icon {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
}

    .publication-icon i {
        font-size: 2.5rem;
    }

.publication-content {
    padding: 1.2rem;
}

.publication-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.publication-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 50px;
}

.publication-date {
    font-size: 0.7rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.publication-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 60px;
}

.publication-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-publication {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-bronze);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

    .btn-publication:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        transform: translateY(-2px);
    }

.btn-publication-primary {
    background: var(--accent-gold);
    color: var(--primary-deep-blue);
}

    .btn-publication-primary:hover {
        background: #e0b354;
    }

/* Featured Publication Banner */
.featured-publication {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .featured-publication:hover {
        transform: translateY(-5px);
    }

    .featured-publication::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .featured-publication h3 {
        color: var(--accent-gold);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .featured-publication p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1rem;
    }

    .featured-publication .btn-publication {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        border: none;
    }

        .featured-publication .btn-publication:hover {
            background: white;
        }

/* Publications Grid */
.publications-grid {
    margin-top: 1rem;
}

/* Pagination */
.publications-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--slate-200);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

    .pagination-page:hover,
    .pagination-page.active {
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        color: var(--primary-deep-blue);
    }

    .pagination-page.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Publications Responsive */
@media (max-width: 768px) {
    .publications-title {
        font-size: 1.8rem;
    }

    .publications-filter-section {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .publications-filter-select,
    .publications-search-input {
        width: 100%;
    }

    .featured-publication {
        padding: 1.5rem;
    }

    .publication-title {
        font-size: 0.9rem;
        min-height: auto;
    }

    .publication-description {
        font-size: 0.75rem;
        min-height: auto;
    }
}

/* ============================================
   VIDEO GALLERY PAGE STYLES
   ============================================ */

/* Video Gallery Hero Section */
.video-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.video-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Video Gallery Filter Section */
.video-filter-section {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.video-filter-select {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    cursor: pointer;
}

    .video-filter-select:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

.video-search-input {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    width: 100%;
}

    .video-search-input:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

/* Video Card */
.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

    .video-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

    .play-icon-overlay i {
        font-size: 1.5rem;
        color: var(--primary-deep-blue);
        margin-left: 4px;
    }

.video-card:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-gold);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.video-content {
    padding: 1rem;
}

.video-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.video-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 45px;
}

.video-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.video-views {
    font-size: 0.7rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Modal Styles for Video Playback */
.video-modal .modal-content {
    background: transparent;
    border: none;
}

.video-modal .modal-body {
    padding: 0;
}

.video-modal .close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.video-modal .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: black;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

/* Video Gallery Grid */
.video-grid {
    margin-top: 1rem;
}

/* Load More Button */
.load-more-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-bronze);
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

    .load-more-btn:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        transform: translateY(-2px);
    }

/* Video Gallery Responsive */
@media (max-width: 768px) {
    .video-title {
        font-size: 1.8rem;
    }

    .video-filter-section {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .video-filter-select,
    .video-search-input {
        width: 100%;
    }

    .video-thumbnail img {
        height: 160px;
    }

    .video-card-title {
        font-size: 0.85rem;
        min-height: auto;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .video-thumbnail img {
        height: 160px;
    }
}

/* ============================================
   KEY ACHIEVEMENTS PAGE STYLES
   ============================================ */

/* Achievements Hero Section */
.achievements-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.achievements-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.achievements-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Stats Counter Section */
.stats-counter-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.stats-counter-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s ease;
}

    .stats-counter-card:hover {
        transform: translateY(-5px);
    }

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-deep-blue);
    margin-top: 0.5rem;
}

.stats-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Achievement Card */
.achievement-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .achievement-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.achievement-icon {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
}

    .achievement-icon i {
        font-size: 2.5rem;
    }

.achievement-content {
    padding: 1.2rem;
}

.achievement-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.achievement-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.achievement-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-200);
}

.achievement-stat {
    flex: 1;
    text-align: center;
}

.achievement-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.achievement-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Timeline Section */
.timeline-section {
    background: var(--off-white);
    border-radius: 28px;
    padding: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-year-badge {
    min-width: 100px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    text-align: center;
    font-weight: 700;
    height: fit-content;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

    .timeline-content h5 {
        color: var(--primary-deep-blue);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-bottom: 0;
    }

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 28px;
    padding: 2rem;
    color: white;
}

.award-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .award-card:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-5px);
    }

.award-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.award-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.award-year {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Key Achievements Responsive */
@media (max-width: 768px) {
    .achievements-title {
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year-badge {
        width: fit-content;
    }

    .achievement-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   BRANCH OFFICES PAGE STYLES
   ============================================ */

/* Branch Offices Hero Section */
.branch-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.branch-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.branch-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Branch Stats Section */
.branch-stats-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.branch-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s ease;
}

    .branch-stat-card:hover {
        transform: translateY(-5px);
    }

.branch-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.branch-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Filter Section */
.branch-filter-section {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.branch-filter-select {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    cursor: pointer;
}

    .branch-filter-select:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

.branch-search-input {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    width: 100%;
}

    .branch-search-input:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

/* Branch Table */
.branch-table-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.branch-table {
    width: 100%;
    margin-bottom: 0;
}

    .branch-table thead th {
        background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
        color: white;
        padding: 1rem;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
    }

    .branch-table tbody tr {
        transition: background 0.2s ease;
        cursor: pointer;
    }

        .branch-table tbody tr:hover {
            background: rgba(242, 201, 76, 0.05);
        }

    .branch-table tbody td {
        padding: 1rem;
        vertical-align: middle;
        color: var(--text-main);
        border-bottom: 1px solid var(--slate-200);
    }

.branch-name {
    font-weight: 700;
    color: var(--primary-deep-blue);
}

.branch-phone {
    font-family: monospace;
    font-size: 0.9rem;
}

.branch-location {
    font-size: 0.9rem;
}

.branch-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

/* Branch Map Section */
.branch-map-section {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    margin-top: 2rem;
}

.branch-map-placeholder {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--slate-100) 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px dashed var(--slate-200);
}

/* Branch Detail Modal */
.branch-detail-modal .modal-content {
    border-radius: 24px;
    border: none;
}

.branch-detail-header {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 24px 24px 0 0;
}

.branch-detail-body {
    padding: 1.5rem;
}

.branch-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-200);
}

    .branch-detail-item:last-child {
        border-bottom: none;
    }

.branch-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.branch-detail-content {
    flex: 1;
}

.branch-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-detail-value {
    font-weight: 600;
    color: var(--primary-deep-blue);
}

/* Pagination */
.branch-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Branch Offices Responsive */
@media (max-width: 768px) {
    .branch-title {
        font-size: 1.8rem;
    }

    .branch-filter-section {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .branch-filter-select,
    .branch-search-input {
        width: 100%;
    }

    .branch-table thead {
        display: none;
    }

    .branch-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--slate-200);
        border-radius: 16px;
        padding: 1rem;
    }

    .branch-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--slate-200);
    }

        .branch-table tbody td:last-child {
            border-bottom: none;
        }

        .branch-table tbody td::before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--primary-deep-blue);
            width: 40%;
        }
}

@media (min-width: 769px) and (max-width: 992px) {
    .branch-table thead th,
    .branch-table tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.faq-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* FAQ Search Section */
.faq-search-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.faq-search-card {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-elevation);
}

.faq-search-input {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-size: 1rem;
    width: 100%;
    background: var(--off-white);
}

    .faq-search-input:focus {
        outline: none;
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }

/* Category Filter */
.faq-category-section {
    margin-top: 2rem;
}

.faq-category-btn {
    background: white;
    border: 1px solid var(--slate-200);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .faq-category-btn:hover {
        border-color: var(--accent-gold);
        color: var(--accent-bronze);
    }

    .faq-category-btn.active {
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        color: var(--primary-deep-blue);
    }

/* FAQ Accordion */
.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.2s ease;
}

    .faq-item:hover {
        box-shadow: var(--shadow-elevation);
    }

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

    .faq-question:hover {
        background: rgba(242, 201, 76, 0.05);
    }

    .faq-question h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-deep-blue);
        margin: 0;
        flex: 1;
        padding-right: 1rem;
    }

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--off-white);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

    .faq-answer-content p {
        margin-bottom: 0.75rem;
    }

    .faq-answer-content ul,
    .faq-answer-content ol {
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }

    .faq-answer-content li {
        margin-bottom: 0.25rem;
    }

    .faq-answer-content a {
        color: var(--accent-gold);
        text-decoration: none;
    }

        .faq-answer-content a:hover {
            text-decoration: underline;
        }

/* No Results */
.faq-no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 24px;
}

    .faq-no-results i {
        font-size: 3rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .faq-no-results h4 {
        color: var(--primary-deep-blue);
        margin-bottom: 0.5rem;
    }

    .faq-no-results p {
        color: var(--text-muted);
    }

/* Contact Support Banner */
.faq-contact-banner {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: white;
}

    .faq-contact-banner h3 {
        color: var(--accent-gold);
        margin-bottom: 0.5rem;
    }

    .faq-contact-banner p {
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

.faq-contact-btn {
    background: var(--accent-gold);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--primary-deep-blue);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .faq-contact-btn:hover {
        background: white;
        transform: translateY(-2px);
        color: var(--primary-deep-blue);
    }

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-search-card {
        border-radius: 30px;
    }

    .faq-category-section {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .faq-category-btn {
        display: inline-block;
        white-space: nowrap;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .faq-answer-content {
        font-size: 0.85rem;
        padding: 0 1rem 1rem 1rem;
    }

    .faq-contact-banner {
        padding: 1.5rem;
    }
}

/* ============================================
   EXAM SCHEDULE PAGE STYLES
   ============================================ */

/* Exam Hero Section */
.exam-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.exam-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.exam-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Exam Stats Section */
.exam-stats-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.exam-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s ease;
}

    .exam-stat-card:hover {
        transform: translateY(-5px);
    }

.exam-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.exam-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Exam Filter Section */
.exam-filter-section {
    background: white;
    border-radius: 60px;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.exam-filter-select {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    cursor: pointer;
}

    .exam-filter-select:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

.exam-search-input {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    background: var(--off-white);
    font-size: 0.9rem;
    width: 100%;
}

    .exam-search-input:focus {
        outline: none;
        border-color: var(--accent-gold);
    }

/* Exam Table */
.exam-table-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.exam-table {
    width: 100%;
    margin-bottom: 0;
}

    .exam-table thead th {
        background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
        color: white;
        padding: 1rem;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
    }

    .exam-table tbody tr {
        transition: background 0.2s ease;
        cursor: pointer;
    }

        .exam-table tbody tr:hover {
            background: rgba(242, 201, 76, 0.05);
        }

    .exam-table tbody td {
        padding: 1rem;
        vertical-align: middle;
        color: var(--text-main);
        border-bottom: 1px solid var(--slate-200);
    }

.exam-position {
    font-weight: 700;
    color: var(--primary-deep-blue);
}

.exam-date {
    font-family: monospace;
    font-size: 0.9rem;
    white-space: nowrap;
}

.exam-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-upcoming {
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
}

.status-open {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.status-closed {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.status-in-progress {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

/* Application Deadline Badge */
.deadline-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    display: inline-block;
}

    .deadline-badge.urgent {
        background: rgba(231, 76, 60, 0.2);
        animation: pulse 1.5s infinite;
    }

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Exam Detail Modal */
.exam-detail-modal .modal-content {
    border-radius: 24px;
    border: none;
}

.exam-detail-header {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 24px 24px 0 0;
}

.exam-detail-body {
    padding: 1.5rem;
}

.exam-detail-section {
    margin-bottom: 1.5rem;
}

    .exam-detail-section h6 {
        color: var(--primary-deep-blue);
        font-weight: 700;
        margin-bottom: 0.75rem;
        border-left: 3px solid var(--accent-gold);
        padding-left: 0.75rem;
    }

.exam-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-200);
}

.exam-detail-icon {
    width: 36px;
    height: 36px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
}

.exam-detail-content {
    flex: 1;
}

.exam-detail-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exam-detail-value {
    font-weight: 600;
    color: var(--primary-deep-blue);
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

    .requirements-list li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

        .requirements-list li i {
            color: var(--accent-gold);
            font-size: 0.8rem;
        }

/* Pagination */
.exam-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

/* Important Notice */
.important-notice {
    background: rgba(242, 201, 76, 0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

    .important-notice i {
        color: var(--accent-gold);
        font-size: 1.2rem;
    }

    .important-notice p {
        margin: 0;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

/* Exam Schedule Responsive */
@media (max-width: 768px) {
    .exam-title {
        font-size: 1.8rem;
    }

    .exam-filter-section {
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
    }

    .exam-filter-select,
    .exam-search-input {
        width: 100%;
    }

    .exam-table thead {
        display: none;
    }

    .exam-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--slate-200);
        border-radius: 16px;
        padding: 1rem;
    }

    .exam-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--slate-200);
    }

        .exam-table tbody td:last-child {
            border-bottom: none;
        }

        .exam-table tbody td::before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--primary-deep-blue);
            width: 40%;
        }

    .exam-stat-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .exam-table thead th,
    .exam-table tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .exam-date {
        white-space: normal;
    }
}

/* ============================================
   WHY AARB PAGE STYLES
   ============================================ */

/* Why AARB Hero Section */
.why-aarb-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.why-aarb-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.why-aarb-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Reason Cards */
.reason-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .reason-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

    .reason-icon i {
        font-size: 2rem;
        color: var(--accent-gold);
    }

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Banner */
.why-aarb-stats {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 28px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

    .why-aarb-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-sub {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Values Section */
.values-section {
    background: var(--off-white);
    border-radius: 28px;
    padding: 2rem;
    margin-top: 2rem;
}

.value-chip {
    background: white;
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
}

    .value-chip:hover {
        border-color: var(--accent-gold);
        transform: translateY(-3px);
        box-shadow: var(--shadow-card);
    }

    .value-chip i {
        font-size: 1.5rem;
        color: var(--accent-gold);
        margin-bottom: 0.5rem;
        display: block;
    }

    .value-chip h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-deep-blue);
        margin-bottom: 0.25rem;
    }

    .value-chip p {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Employee Testimonials */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--slate-200);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h6 {
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* CTA Section */
.why-aarb-cta {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

    .why-aarb-cta h3 {
        color: var(--accent-gold);
        margin-bottom: 1rem;
    }

    .why-aarb-cta p {
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-gold);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--primary-deep-blue);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-primary:hover {
        background: white;
        transform: translateY(-2px);
        color: var(--primary-deep-blue);
    }

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-secondary:hover {
        background: var(--accent-gold);
        color: var(--primary-deep-blue);
        transform: translateY(-2px);
    }

/* Why AARB Responsive */
@media (max-width: 768px) {
    .why-aarb-title {
        font-size: 1.8rem;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-icon {
        width: 60px;
        height: 60px;
    }

        .reason-icon i {
            font-size: 1.5rem;
        }

    .stat-number {
        font-size: 1.8rem;
    }

    .values-section {
        padding: 1.5rem;
    }

    .why-aarb-stats {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .reason-card h3 {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   OUR CULTURE PAGE STYLES
   ============================================ */

/* Culture Hero Section */
.culture-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.culture-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.culture-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Culture Pillars Section */
.culture-pillar-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .culture-pillar-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.culture-pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

    .culture-pillar-icon i {
        font-size: 2rem;
        color: var(--accent-gold);
    }

.culture-pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
}

.culture-pillar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Work Environment Section */
.work-env-section {
    background: var(--off-white);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
}

.env-feature {
    text-align: center;
    padding: 1rem;
}

    .env-feature i {
        font-size: 2rem;
        color: var(--accent-gold);
        margin-bottom: 1rem;
        display: inline-block;
    }

    .env-feature h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-deep-blue);
        margin-bottom: 0.5rem;
    }

    .env-feature p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Team Activities Gallery */
.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .activity-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.activity-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .activity-image i {
        font-size: 3rem;
        color: var(--accent-gold);
    }

.activity-content {
    padding: 1.2rem;
}

    .activity-content h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-deep-blue);
        margin-bottom: 0.5rem;
    }

    .activity-content p {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

    .benefit-item i {
        font-size: 2rem;
        color: var(--accent-gold);
        margin-bottom: 1rem;
        display: inline-block;
    }

    .benefit-item h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
        opacity: 0.9;
        margin-bottom: 0;
    }

/* Employee Spotlight */
.spotlight-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .spotlight-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.spotlight-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.spotlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.25rem;
}

.spotlight-card .position {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.spotlight-card .quote {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Join Our Team CTA */
.join-cta {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

    .join-cta h3 {
        color: var(--accent-gold);
        margin-bottom: 1rem;
    }

    .join-cta p {
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

/* Our Culture Responsive */
@media (max-width: 768px) {
    .culture-title {
        font-size: 1.8rem;
    }

    .culture-pillar-card {
        padding: 1.5rem;
    }

    .culture-pillar-icon {
        width: 60px;
        height: 60px;
    }

        .culture-pillar-icon i {
            font-size: 1.5rem;
        }

    .culture-pillar-card h3 {
        font-size: 1.1rem;
    }

    .work-env-section {
        padding: 1rem;
    }

    .benefits-section {
        padding: 1rem;
    }

    .activity-image {
        height: 150px;
    }

    .spotlight-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .culture-pillar-card h3 {
        font-size: 1.1rem;
    }
}

/* ============================================
   TRAINING & GROWTH PAGE STYLES
   ============================================ */

/* Training Hero Section */
.training-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    isolation: isolate;
}

.training-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.training-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Training Stats Section */
.training-stats-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.training-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s ease;
}

    .training-stat-card:hover {
        transform: translateY(-5px);
    }

.training-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.training-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Training Programs Section */
.program-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .program-card:hover {
        transform: translateY(-6px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

    .program-icon i {
        font-size: 1.8rem;
        color: var(--accent-gold);
    }

.program-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.75rem;
}

.program-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.program-duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 201, 76, 0.15);
    color: var(--accent-bronze);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Career Path Section */
.career-path-section {
    background: var(--off-white);
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
}

.path-step {
    text-align: center;
    position: relative;
}

.path-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.3rem;
}

.path-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.path-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Upcoming Training Table */
.training-table-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.training-table {
    width: 100%;
    margin-bottom: 0;
}

    .training-table thead th {
        background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
        color: white;
        padding: 1rem;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
    }

    .training-table tbody tr {
        transition: background 0.2s ease;
    }

        .training-table tbody tr:hover {
            background: rgba(242, 201, 76, 0.05);
        }

    .training-table tbody td {
        padding: 1rem;
        vertical-align: middle;
        color: var(--text-main);
        border-bottom: 1px solid var(--slate-200);
    }

.training-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

    .training-badge.upcoming {
        background: rgba(242, 201, 76, 0.15);
        color: var(--accent-bronze);
    }

    .training-badge.ongoing {
        background: rgba(46, 204, 113, 0.15);
        color: #27ae60;
    }

    .training-badge.completed {
        background: rgba(52, 152, 219, 0.15);
        color: #3498db;
    }

/* Certification Section */
.cert-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    box-shadow: var(--shadow-card);
}

    .cert-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: var(--shadow-elevation);
    }

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .cert-icon i {
        font-size: 1.8rem;
        color: var(--accent-gold);
    }

.cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.5rem;
}

.cert-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Learning Resources Section */
.resource-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

    .resource-card:hover {
        transform: translateX(5px);
        border-color: var(--accent-gold);
        background: rgba(242, 201, 76, 0.05);
    }

.resource-icon {
    width: 45px;
    height: 45px;
    background: rgba(242, 201, 76, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .resource-icon i {
        font-size: 1.3rem;
        color: var(--accent-gold);
    }

.resource-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    margin-bottom: 0.25rem;
}

.resource-content p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Training & Growth Responsive */
@media (max-width: 768px) {
    .training-title {
        font-size: 1.8rem;
    }

    .program-card {
        padding: 1.2rem;
    }

    .program-icon {
        width: 55px;
        height: 55px;
    }

        .program-icon i {
            font-size: 1.4rem;
        }

    .training-table thead {
        display: none;
    }

    .training-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--slate-200);
        border-radius: 16px;
        padding: 1rem;
    }

    .training-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--slate-200);
    }

        .training-table tbody td:last-child {
            border-bottom: none;
        }

        .training-table tbody td::before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--primary-deep-blue);
            width: 40%;
        }

    .path-step {
        margin-bottom: 1.5rem;
    }

    .training-stat-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .program-card h3 {
        font-size: 1rem;
    }

    .training-table thead th,
    .training-table tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   TIN VERIFICATION PAGE STYLES
   ============================================ */

/* TIN Hero Section */
.tin-hero {
    background: linear-gradient(115deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 80%, #4a8ec1 100%);
    padding: 2rem 0 2.5rem;
    position: relative;
    isolation: isolate;
}

.tin-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tin-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #FFFBF0;
}

/* Search Card */
.tin-search-card {
    margin-top: -30px;
    position: relative;
    z-index: 20;
}

.search-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-elevation);
}

.search-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tin-input {
    flex: 1;
    border: 2px solid var(--slate-200);
    border-radius: 60px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: monospace;
    font-weight: 600;
}

    .tin-input:focus {
        outline: none;
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    }

    .tin-input::placeholder {
        font-family: monospace;
        font-weight: normal;
    }

.btn-verify {
    background: var(--accent-gold);
    border: none;
    border-radius: 60px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    color: var(--primary-deep-blue);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-verify:hover {
        background: #e0b354;
        transform: translateY(-2px);
    }

    .btn-verify:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 2rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--accent-gold);
}

/* Taxpayer Profile Card */
.profile-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
    margin-top: 2rem;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
    padding: 1.5rem;
    color: white;
}

    .profile-header h3 {
        margin: 0;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .profile-header p {
        margin: 0.5rem 0 0;
        opacity: 0.8;
        font-size: 0.85rem;
    }

.profile-body {
    padding: 1.5rem;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 0.75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-deep-blue);
    word-break: break-word;
}

.info-value-bilingual {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-value-en {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-deep-blue);
}

.info-value-am {
    font-size: 0.85rem;
    color: var(--accent-bronze);
}

/* Error Card */
.error-card {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.error-icon {
    width: 70px;
    height: 70px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .error-icon i {
        font-size: 2rem;
        color: #e74c3c;
    }

.error-card h4 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.error-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Info Note */
.info-note {
    background: rgba(242, 201, 76, 0.1);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

    .info-note i {
        color: var(--accent-gold);
        font-size: 1.2rem;
    }

/* TIN Verification Responsive */
@media (max-width: 768px) {
    .tin-title {
        font-size: 1.6rem;
    }

    .search-input-group {
        flex-direction: column;
    }

    .btn-verify {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .profile-header h3 {
        font-size: 1.2rem;
    }

    .info-note {
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   MOBILE DROPDOWN FIX
========================================= */

@media (max-width: 991.98px) {

    .navbar .dropdown-menu.mega-menu,
    .navbar .dropdown-menu.mega-menu.wide {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        margin-top: .5rem;
        padding: 1rem;
        border-radius: 16px;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        background: #fff;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
    }

    .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto;
        padding-bottom: 1rem;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu .col,
    .mega-menu .col-md-4,
    .mega-menu .col-md-6 {
        width: 100%;
    }

    .menu-column {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

        .menu-column:last-child {
            border-bottom: 0;
        }

    .dropdown-toggle::after {
        float: right;
        margin-top: .7rem;
    }
}

/* =========================================
   DESKTOP HOVER
========================================= */

@media (max-width: 991.98px) {

    .navbar .dropdown-menu.mega-menu,
    .navbar .dropdown-menu.mega-menu.wide {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        width: 100% !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: .5rem;
        padding: 1rem;
        border-radius: 16px;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .mega-menu .col,
    .mega-menu .col-md-4,
    .mega-menu .col-md-6 {
        width: 100%;
    }

    .menu-column,
    .mega-menu .col {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

        .mega-menu .col:last-child {
            border-bottom: 0;
        }

    .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 991px) {
    .nav-item.dropdown {
        position: relative;
    }

        .nav-item.dropdown .mega-menu {
            display: none;
            position: static;
            width: 100%;
            padding: 1rem;
            margin-top: 0.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .nav-item.dropdown.show .mega-menu {
            display: block !important;
        }

    .nav-link-modern {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

        .nav-link-modern .bi-chevron-down {
            transition: transform 0.3s ease;
        }

    .nav-item.dropdown.show .nav-link-modern .bi-chevron-down {
        transform: rotate(180deg);
    }

    /* Increase touch target size for mobile */
    .nav-link-modern {
        padding: 12px 16px;
        touch-action: manipulation;
    }

    /* Better mobile menu styling */
    .mega-menu.wide .row {
        flex-direction: column;
    }

    .mega-menu .col {
        margin-bottom: 1rem;
    }

    /* Add visual feedback for taps */
    .nav-link-modern:active {
        background-color: rgba(0,0,0,0.05);
    }
}

/* Ensure dropdowns work on touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-item.dropdown:hover .mega-menu {
        display: none;
    }

    .nav-item.dropdown.show .mega-menu {
        display: block;
    }
}