  :root {
            /* Colors from Vantage Africa Logo */
            --primary-brown: #8B4513;
            --secondary-brown: #A0522D;
            --accent-gold: #DAA520;
            --light-gold: #F4D03F;
            --dark-brown: #654321;
            --warm-brown: #CD853F;
            
            /* Supporting Colors */
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --text-dark: #2c1810;
            --text-gray: #6b5b47;
            --text-light: #8a7966;
            --border-light: #e8e1d9;
            --shadow-light: 0 2px 4px rgba(139, 69, 19, 0.1);
            --shadow-medium: 0 4px 12px rgba(139, 69, 19, 0.15);
            --shadow-heavy: 0 8px 25px rgba(139, 69, 19, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

/* ===========================================
   HEADER STYLES - FIXED BUTTON VISIBILITY
=========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: #8B4513;
}

.nav-link.active {
    color: #8B4513;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, #8B4513);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(218, 165, 32, 0.2);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 69, 19, 0.05));
    transform: translateX(5px);
}

.dropdown-link:last-child {
    margin-bottom: 0;
}

.dropdown-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(139, 69, 19, 0.1));
    border-radius: 8px;
}

.dropdown-title {
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0.2rem;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: #666;
}

/* FIXED Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    min-width: fit-content;
}

.btn {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #8B4513 !important;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    font-weight: 700;
    border: 2px solid #DAA520;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
    color: #8B4513 !important;
    border-color: #FFD700;
}

/* Ensure buttons are always visible */
.btn-primary,
.btn-secondary {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8B4513;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(139, 69, 19, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .header-cta {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        flex-wrap: nowrap;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .header-cta {
        display: flex !important;
        gap: 0.4rem;
    }
    
    .btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
        border-top: 1px solid rgba(218, 165, 32, 0.2);
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(218, 165, 32, 0.2);
        margin-top: 0.5rem;
        background: rgba(248, 250, 252, 0.9);
    }
    
    /* Keep buttons visible on mobile - move to mobile menu */
    .header-cta {
        display: flex !important;
        gap: 0.5rem;
        order: 2;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
}

@media (max-width: 600px) {
    .header-cta {
        flex-direction: column;
        gap: 0.3rem;
        align-items: stretch;
    }
    
    .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        flex-wrap: wrap;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .header-cta {
        width: 100%;
        order: 4;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active {
    animation: slideDown 0.3s ease;
}

/* Force visibility for debugging */
.header-cta .btn {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Lead Form */
.lead-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lead-form h3 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Floating Graphics Elements */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;  /* Change from 0.1 to 0.05 */
    animation: float 6s ease-in-out infinite;
}

.graphic-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.graphic-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.graphic-3 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 25%;
    animation-delay: 4s;
}

.graphic-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding-top: 60px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        height: auto;
        padding: 1.5rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .lead-form {
        padding: 1.5rem;
    }
}
        /* ===========================================
           FOOTER STYLES
        =========================================== */
        .footer {
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--dark-brown) 100%);
            color: var(--off-white);
            padding: 4rem 0 1.5rem;
            margin-top: 0;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .footer-brand p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            /*color: var(--text-light);*/
            font-size: 1rem;
        }

        .contact-icon {
            width: 20px;
            margin-right: 1rem;
            /*color: var(--accent-gold);*/
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: var(--text-light);
            text-decoration: none;
            margin-left: 1.5rem;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        /* ===========================================
           ANIMATIONS
        =========================================== */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===========================================
           RESPONSIVE DESIGN
        =========================================== */
                        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem 1rem;
                box-shadow: var(--shadow-heavy);
                gap: 1.5rem;
                border-top: 1px solid var(--border-light);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-dropdown .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin-top: 1rem;
                border: 1px solid var(--border-light);
                display: none;
            }

            .nav-dropdown.mobile-open .dropdown-menu {
                display: block !important;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .header-cta {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-headline {
                font-size: 2.75rem;
            }

            .graphic-element {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.25rem;
            }

            .hero-subheadline {
                font-size: 1.1rem;
            }

            .hero-split {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .hero-card {
                height: 150px;
                padding: 1.5rem 1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom a {
                margin: 0 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .hero-container {
                padding: 0 1rem;
            }

            .hero-headline {
                font-size: 1.9rem;
            }

            .badge {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }

            .btn-lg {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
            }

            .lead-form {
                padding: 1.5rem;
            }
        }

        /* ===========================================
           UTILITY CLASSES
        =========================================== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            /*padding: 5rem 0;*/
        }

        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        
        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-4 { margin-bottom: 1rem; }
        
        .hidden { display: none; }
        .visible { display: block; }
        /* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    padding: 1rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e1d9;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: #2c1810;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
}

.dropdown-link:last-child {
    margin-bottom: 0;
}

.dropdown-link:hover {
    background: #f5f5f5;
    color: #8B4513;
    transform: translateX(5px);
}

.dropdown-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c1810;
    margin-bottom: 0.25rem;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: #6b5b47;
    line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 1rem;
        border: 1px solid #e8e1d9;
        display: none;
    }
    
    .nav-dropdown.mobile-open .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-link:hover {
        transform: none;
    }
}
    
    

.accreditation-section {
    text-align: center;
    position: relative;
    z-index: 2;
}

.accreditation-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 3rem;
}

.badges-container {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.accreditation-badge {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    border: 2px solid #e8e1d9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accreditation-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
    border-color: #DAA520;
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.badge-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.badge-description {
    font-size: 0.9rem;
    color: #6b5b47;
    line-height: 1.4;
}

/* Desktop - 5 badges in one row */
@media (min-width: 1200px) {
    .badges-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large tablets - 3 badges per row */
@media (max-width: 1199px) and (min-width: 768px) {
    .badges-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .accreditation-badge {
        padding: 1.5rem 1rem;
    }
}

/* Small tablets and large phones - 2 badges per row */
@media (max-width: 767px) and (min-width: 480px) {
    .badges-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .accreditation-badge {
        padding: 1.5rem 1rem;
    }
    .badge-title {
        font-size: 1rem;
    }
    .badge-description {
        font-size: 0.85rem;
    }
}

/* Mobile phones - 1 badge per row */
@media (max-width: 479px) {
    .badges-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .accreditation-badge {
        padding: 1.5rem 1rem;
    }
    .accreditation-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-statement {
        padding: 2rem;
    }

    .pillar {
        padding: 2rem 1.5rem;
    }

    .pillar-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-section {
        padding: 3rem 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 2rem 1rem;
    }

    .badges-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-title {
        font-size: 1.75rem;
    }
}



/* ===========================================
   EVAL360 SPOTLIGHT SECTION CSS
=========================================== */
.eval360-section {
    background: linear-gradient(
        135deg, 
        #5c3a2e 0%,   /* Lighter brown */
        #7d4f3d 50%,  /* Medium brown */
        #9a6d5a 100%  /* Even lighter brown */
    );
    color: white;
    position: relative;
    overflow: hidden;
   
}

.eval360-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(244, 208, 63, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.eval360-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.eval360-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 700;
    color: #F4D03F;
    font-size: 1.05rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.eval360-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}

.features-side {
    padding-top: 2rem;
}

.features-side .intro-text {
    margin-bottom: 3rem;
}

.features-side .intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(218, 165, 32, 0.4);
}

.feature-icon .icon {
    font-size: 2rem;
}

.feature-icon .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.eval360-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #F4D03F;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.eval360-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    color: #2c1810;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Dashboard Link Wrapper */
.dashboard-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dashboard-link:hover {
    transform: scale(1.02);
}

/* Dashboard Mockup Styles */
.dashboard-container {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.4s ease;
}

.dashboard-link:hover .dashboard-mockup {
    transform: rotateY(-4deg) rotateX(1deg) scale(1.02);
}

.dashboard-header {
    background: linear-gradient(135deg, #7d4f3d, #9a6d5a);
    color: white;
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-item.active {
    background: rgba(244, 208, 63, 0.25);
    color: #F4D03F;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.user-avatar {
    font-size: 1.2rem;
}

.dashboard-content {
    padding: 2rem;
    color: #2c1810;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.kpi-card {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: #7d4f3d;
    margin-bottom: 0.35rem;
}

.kpi-label {
    font-size: 0.85rem;
    color: #6b5b47;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.kpi-trend {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
}

.kpi-trend.positive {
    color: #059669;
    background: #d1fae5;
}

.kpi-trend.neutral {
    color: #6b5b47;
    background: #f3f4f6;
}

.chart-section {
    background: white;
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    border: 1px solid #e5e7eb;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.chart-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c1810;
}

.chart-filters {
    display: flex;
    gap: 0.6rem;
}

.filter {
    padding: 0.35rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    font-weight: 600;
}

.filter.active {
    background: #7d4f3d;
    color: white;
    border-color: #7d4f3d;
}

.chart-area {
    height: 130px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 110px;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.bar {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    border-radius: 6px 6px 0 0;
    flex: 1;
    max-width: 45px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: growUp 1s ease-out;
}

.bar:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: scale(1.05);
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--bar-height, 100%); }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b5b47;
    font-weight: 600;
}

.activity-section h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1.25rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0.9rem;
    background: #fafafa;
    border-radius: 10px;
    border-left: 4px solid #DAA520;
}

.activity-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.activity-time {
    font-size: 0.85rem;
    color: #6b5b47;
    flex-shrink: 0;
    font-weight: 600;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    padding: 1.15rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-1 {
    top: 20%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation: float 8s ease-in-out infinite reverse;
}

.card-3 {
    top: 60%;
    right: -8%;
    animation: float 7s ease-in-out infinite;
}

.card-icon {
    font-size: 1.75rem;
}

.card-text {
    font-weight: 700;
    color: #2c1810;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .eval360-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dashboard-mockup {
        transform: none;
    }

    .dashboard-link:hover .dashboard-mockup {
        transform: scale(1.02);
    }

    .floating-card {
        display: none;
    }

    .eval360-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .eval360-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .eval360-logo {
        height: 28px;
    }

    .eval360-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        justify-content: center;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-icon .icon img {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .kpi-card {
        padding: 1.25rem;
    }

    .eval360-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.75rem;
    }

    .chart-bars {
        height: 90px;
    }

    .chart-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .chart-filters {
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-content {
        padding: 1.25rem;
    }

    .dashboard-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .dashboard-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        padding: 1.15rem;
    }

    .activity-text {
        font-size: 0.9rem;
    }

    .activity-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .eval360-section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .eval360-header {
        margin-bottom: 3rem;
    }

    .header-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .eval360-logo {
        height: 25px;
    }

    .features-side {
        padding-top: 1rem;
    }

    .features-side .intro-text {
        margin-bottom: 2rem;
    }

    .features-side .intro-text p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-icon .icon img {
        width: 40px;
        height: 40px;
    }

    .feature-icon .icon {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .eval360-stats {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.85rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1rem;
    }

    .kpi-card {
        padding: 1rem;
    }

    .kpi-value {
        font-size: 1.6rem;
    }

    .kpi-label {
        font-size: 0.75rem;
    }

    .chart-section {
        padding: 1.25rem;
    }

    .chart-header h4 {
        font-size: 1rem;
    }

    .chart-filters {
        gap: 0.35rem;
    }

    .filter {
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
    }

    .chart-bars {
        height: 70px;
        gap: 0.35rem;
    }

    .chart-labels {
        font-size: 0.75rem;
    }

    .activity-section h4 {
        font-size: 1rem;
    }

    .activity-item {
        padding: 0.85rem;
    }

    .activity-icon {
        font-size: 1.1rem;
    }

    .dashboard-mockup {
        margin: 0 -0.5rem;
        border-radius: 14px;
    }

    .dashboard-user {
        font-size: 0.8rem;
    }

    .user-name {
        display: none;
    }
}

/* ===========================================
   INTERNATIONAL TRAINING SECTION CSS
=========================================== */
.international-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;

}

.international-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    /*z-index: 1;*/
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.international-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    color: #8B4513;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #8B4513;
}

.section-title {
   font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b5b47;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Program Types Grid */
.program-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.program-type {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.15);
    border-color: #DAA520;
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-type h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.program-type p {
    color: #6b5b47;
    line-height: 1.5;
}

/* Map Section */
.map-section {
    margin-bottom: 6rem;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.map-header p {
    font-size: 1.1rem;
    color: #6b5b47;
}

.map-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.world-map {
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.map-svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.continent {
    transition: all 0.3s ease;
}

.continent:hover {
    fill: rgba(139, 69, 19, 0.4);
}

.pin {
    fill: #8B4513;
    stroke: white;
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pin:hover {
    fill: #DAA520;
    r: 10;
}

.pin.active {
    fill: #DAA520;
    stroke: #F4D03F;
    stroke-width: 3;
    animation: glow 2s infinite;
}

.pin-label {
    font-size: 12px;
    font-weight: 600;
    fill: #2c1810;
    pointer-events: none;
    text-anchor: start;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { 
        fill: #DAA520;
        filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.6));
    }
    50% { 
        fill: #F4D03F;
        filter: drop-shadow(0 0 12px rgba(244, 208, 63, 0.8));
    }
}

/* Country Cards */
.country-cards {
    position: relative;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(218, 165, 32, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.country-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    border-color: #DAA520;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.country-flag {
    font-size: 2.5rem;
}

.country-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.country-info p {
    color: #6b5b47;
    font-size: 0.95rem;
}

.programs-delivered {
    margin-bottom: 2rem;
}

.programs-delivered strong {
    display: block;
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 1rem;
}

.programs-delivered ul {
    list-style: none;
    padding: 0;
}

.programs-delivered li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6b5b47;
    font-size: 0.9rem;
}

.programs-delivered li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-weight: bold;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b5b47;
    font-weight: 600;
}

.testimonial {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 208, 63, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #DAA520;
}

.testimonial p {
    font-style: italic;
    color: #6b5b47;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #8B4513;
    font-weight: 600;
    font-style: normal;
}

/* Programs Offered */
.programs-offered {
    margin-bottom: 6rem;
}

.programs-offered h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 3rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.12);
    border-color: #DAA520;
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.program-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-card p {
    color: #6b5b47;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.program-details span {
    background: rgba(218, 165, 32, 0.1);
    color: #8B4513;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}



@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
}

.cta-feature span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    color: #2c1810;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .program-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .international-section {
        /*padding: 4rem 0;*/
    }

    .container {
        padding: 0 1rem;
    }

    .international-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .program-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .program-type {
        padding: 2rem 1.5rem;
    }

    .map-header h3 {
        font-size: 1.75rem;
    }

    .map-container {
        gap: 2rem;
    }

    .world-map {
        padding: 1.5rem;
    }

    .country-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .programs-offered {
        margin-bottom: 4rem;
    }

    .programs-offered h3 {
        font-size: 1.75rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card {
        padding: 1.5rem;
    }

 

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-feature {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .international-section {
        
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .header-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .program-type {
        padding: 1.5rem 1rem;
    }

    .type-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .program-type h3 {
        font-size: 1.1rem;
    }

    .world-map {
        padding: 1rem;
    }

    .pin-label {
        font-size: 10px;
    }

    .country-card {
        padding: 1rem;
    }

    .country-flag {
        font-size: 2rem;
    }

    .programs-delivered li {
        font-size: 0.85rem;
    }

    .program-card {
        padding: 1.25rem;
    }

    .program-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .program-card h4 {
        font-size: 1.1rem;
    }

    

    .cta-content h3 {
        font-size: 1.75rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .cta-feature span:last-child {
        font-size: 0.9rem;
    }
}
.map-svg {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.continent {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.continent:hover {
  fill: rgba(139, 69, 19, 0.45);
  stroke: rgba(139, 69, 19, 0.8);
}

/* Pins */
.pin {
  fill: #2563eb; /* blue */
  stroke: #fff;
  stroke-width: 2;
  cursor: pointer;
  transition: transform 0.25s ease, fill 0.3s ease;
}
.pin:hover {
  transform: scale(1.4);
  fill: #facc15; /* yellow */
}
.pin.active {
  fill: #22c55e; /* green */
  transform: scale(1.2);
}

/* Labels */
.pin-label {
  font-size: 12px;
  font-family: "Segoe UI", sans-serif;
  fill: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  pointer-events: none; /* prevent blocking pin clicks */
}

/* ===========================================
   VIRTUAL COURSES SECTION CSS
=========================================== */
.virtual-courses-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.virtual-courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    /*z-index: 1;*/
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.courses-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    color: #8B4513;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #8B4513;
}

.section-titl {
    font-size: 2rem;
    font-weight: 800;
    color: black;
    margin-bottom: 2.5rem;
    line-height: 1.0;
}

.section-subtitle {
    font-size: 0.8rem;
    color: #6b5b47;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Course Filters */
.course-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(139, 69, 19, 0.2);
    background: white;
    color: #8B4513;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border-color: #8B4513;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #F4D03F);
}

.course-card.featured::before {
    background: linear-gradient(90deg, #8B4513, #DAA520);
    height: 6px;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.15);
    border-color: #DAA520;
}

.course-card.featured {
    border: 2px solid #DAA520;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(255, 255, 255, 1));
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 208, 63, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.course-badge {
    padding: 0.4rem 1rem;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.featured-badge {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border-color: #8B4513;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-description {
    color: #6b5b47;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(218, 165, 32, 0.1);
    color: #8B4513;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #8B4513;
}

.currency {
    font-size: 1rem;
    color: #6b5b47;
    font-weight: 600;
}

.enroll-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.enroll-btn:hover {
    background: linear-gradient(135deg, #A0522D, #CD853F);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.featured-btn {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    color: #2c1810;
}

.featured-btn:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
}

/* Course Benefits */
.course-benefits {
    margin-bottom: 6rem;
    text-align: center;
}

.course-benefits h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.12);
    border-color: #DAA520;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6b5b47;
    line-height: 1.5;
}

/* CTA Section */
.virtual-cta {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.virtual-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    color: #2c1810;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .virtual-courses-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .courses-header {
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .course-filters {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .course-card {
        padding: 1.5rem;
    }

    .course-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .course-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .enroll-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .course-benefits {
        margin-bottom: 4rem;
    }

    .course-benefits h3 {
        font-size: 1.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem 1rem;
    }

    .virtual-cta {
        padding: 3rem 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .virtual-courses-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .header-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .course-card {
        padding: 1.25rem;
    }

    .course-title {
        font-size: 1.1rem;
    }

    .course-description {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .virtual-cta {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.75rem;
    }
}

/* Animation Classes */
.course-card.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.course-card.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===========================================
   IMPACT & SUCCESS STORIES SECTION CSS
=========================================== */
.impact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(218, 165, 32, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
   
    position: relative;
    z-index: 2;
}

.impact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50px;
    
    margin-bottom: 2rem;
    color: #8B4513;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #8B4513;
}

.section-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b5b47;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    text-align: center;
    
}

/* Case Studies Carousel */
.case-studies-section {
    margin-bottom: 6rem;
}

.case-studies-carousel {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.carousel-container {
    position: relative;
    min-height: 600px;
}

.case-study {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.case-study-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.case-study-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(139, 69, 19, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.case-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #DAA520;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.case-header {
    margin-bottom: 2rem;
}

.case-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.case-location {
    color: #6b5b47;
    font-weight: 500;
}

.case-challenge,
.case-solution,
.case-results {
    margin-bottom: 2rem;
}

.case-challenge h5,
.case-solution h5,
.case-results h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.case-challenge p,
.case-solution p {
    color: #6b5b47;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 208, 63, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.result-text {
    font-size: 0.85rem;
    color: #6b5b47;
    font-weight: 600;
}

.case-quote {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(218, 165, 32, 0.05));
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #DAA520;
}

.case-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #6b5b47;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-quote cite {
    font-size: 0.95rem;
    color: #8B4513;
    font-weight: 600;
    font-style: normal;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    padding: 0.75rem 2rem;
    border: 2px solid rgba(139, 69, 19, 0.2);
    background: white;
    color: #8B4513;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
    border-color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
}

.nav-btn.active {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border-color: #8B4513;
}

/* Video Testimonials */
.testimonials-section {
    margin-bottom: 6rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.12);
}

.video-placeholder {
    position: relative;
    height: 200px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #8B4513;
    transform: scale(1.1);
}

.play-icon {
    color: white;
    font-size: 1.2rem;
    margin-left: 4px;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    padding: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.testimonial-info p {
    color: #6b5b47;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-preview {
    font-style: italic;
    color: #8a7966;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Written Testimonials */
.written-testimonials {
    margin-bottom: 6rem;
}

.written-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.written-testimonial {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.written-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.15);
    border-color: #DAA520;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(218, 165, 32, 0.3);
    font-family: serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-initials {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.author-details p {
    font-size: 0.9rem;
    color: #6b5b47;
    margin-bottom: 0.25rem;
}

.organization {
    font-size: 0.85rem;
    color: #8a7966;
    font-weight: 500;
}

/* Impact Statistics */
.impact-stats {
    margin-bottom: 6rem;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.stat-category {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    text-align: center;
}

.stat-category h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 2rem;
}

.stat-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b5b47;
    font-weight: 600;
    line-height: 1.3;
}

/* Success CTA */
.success-cta {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.success-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    color: #2c1810;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-image {
        height: 150px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .written-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .impact-section {
        
    }

    .container {
        padding: 0 1rem;
    }

    .impact-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .case-studies-carousel {
        padding: 2rem;
    }

    .carousel-container {
        min-height: auto;
    }

    .case-study-image {
        height: 120px;
    }

    .country-flag {
        font-size: 3rem;
    }

    .case-overlay {
        bottom: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .case-title {
        font-size: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-nav {
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .nav-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonials-grid,
    .written-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .written-testimonial {
        padding: 1.5rem;
    }

    .testimonial-info {
        padding: 1.25rem;
    }

    .subsection-title {
        font-size: 1.75rem;
    }

    .stat-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-category {
        padding: 2rem 1.5rem;
    }

    .success-cta {
        padding: 3rem 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .impact-section {
        
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .header-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .case-studies-carousel {
        padding: 1.5rem;
    }

    .case-title {
        font-size: 1.3rem;
    }

    .case-challenge h5,
    .case-solution h5,
    .case-results h5 {
        font-size: 1rem;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-initials {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .success-cta {
        padding: 2rem 1rem;
    }

    .cta-content h3 {
        font-size: 1.75rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-icon img {
    max-height: 40px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Or for the second option */
.logo-image {
    height: 60px; /* Adjust as needed */
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}
/* Hero Section */
 .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;

    /* Background Image Only */
    /*background-image: url('https://vantageafricaleaders.com/assets/hero.jpeg');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 208, 63, 0.15) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            background-size: auto, auto, 20px 20px;
            z-index: 1;
        }

        /* Floating Graphics - Removed since we have background image now */

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            text-align: left;
            animation: slideInLeft 1s ease-out;
        }

        .hero-headline {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.15;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

      .highlight {
    color: #000000;  /* pure black */
    font-size: 2rem; /* adjust as needed for headline */
    font-weight: 700;
}

.hero-subheadline {
    color: #000000;  /* pure black */
    font-size: 1.25rem; /* smaller for subheadline */
    font-weight: 500;
    line-height: 1.4;
    text-align: center; /* optional */
}
.hero-subheadline {
    color: #000000;   /* solid black */
    font-size: 1rem;  /* smaller than before */
    font-weight: 500;
    line-height: 1.4;
    text-align: center; /* optional */
}
.highlight {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #000000;
    background-clip: initial;
    color: #000000;

    font-size: 2rem;   /* headline size */
    font-weight: 700;
}

.hero-subheadline {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #000000;
    background-clip: initial;
    color: #000000;

    font-size: 1rem;   /* smaller size */
    font-weight: 500;
    line-height: 1.4;
    text-align: center; /* optional */
}


        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
            color: white;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
        }

        .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            animation: slideInRight 1s ease-out;
        }

        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            width: 100%;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 1.5rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(218, 165, 32, 0.4);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.3s ease;
            opacity: 0;
        }

        .hero-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-out;
        }

        .hero-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .hero-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .hero-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Animation Keyframes */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding-top: 60px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding: 0 1rem;
            }

            .hero-content {
                text-align: center;
            }

            .hero-split {
                grid-template-columns: 1fr;
            }

            .hero-headline {
                font-size: clamp(2rem, 6vw, 2.5rem);
            }

            .btn-lg {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .hero-card {
                height: auto;
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                padding: 0 1rem;
            }

            .hero-card {
                padding: 1.5rem 1rem;
            }
        }
        .section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-dark);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.footer-contacts {
    padding: 2rem 1rem;
    background: #4A1D13; /* brand dark brown */
    color: #fff;
    border-radius: 8px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold, #e0b238); /* gold accent */
    font-weight: 600;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-entry {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-entry a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-entry a:hover {
    color: var(--accent-gold, #e0b238);
}

.whatsapp-link {
    color: var(--accent-gold, #e0b238);
    font-weight: 500;
}
