  :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
        =========================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border-light);
            z-index: 1000;
            transition: var(--transition);
            padding: 0.75rem 0;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-medium);
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-brown);
            text-decoration: none;
            transition: var(--transition);
        }

        .logo:hover {
            color: var(--secondary-brown);
        }

        .logo-icon {
            width: 45px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-brown) 50%, var(--dark-brown) 100%);
            margin-right: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
            clip-path: polygon(0 20%, 50% 0%, 100% 20%, 100% 100%, 0% 100%);
            position: relative;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15px;
            height: 10px;
            background: white;
            clip-path: polygon(0 70%, 50% 0%, 100% 70%, 100% 100%, 0% 100%);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: var(--primary-brown);
        }

        .nav-link.active {
            color: var(--primary-brown);
            font-weight: 600;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), var(--warm-brown));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link.active::after,
        .nav-link:hover::after {
            transform: scaleX(1);
        }

        .header-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: white;
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-brown), var(--warm-brown));
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
            color: var(--dark-brown);
            box-shadow: var(--shadow-light);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, var(--light-gold), var(--accent-gold));
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-brown);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ===========================================
   HERO SECTION STYLES WITH BACKGROUND IMAGE
=========================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    
    /* Background Image with Overlay */
    background-image: 
        linear-gradient(135deg, 
            rgba(139, 69, 19, 0.9) 0%, 
            rgba(160, 82, 45, 0.8) 30%,
            rgba(205, 133, 63, 0.7) 60%,
            rgba(218, 165, 32, 0.3) 100%),
        url('https://vantageafricaleaders.com/assets/hero.jpg');
    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;
}

.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 {
    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);
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.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;
    animation: slideInRight 1s ease-out;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.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;
}

/* 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;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(244, 208, 63, 0.05));
    border-radius: 50%;
    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: 0.9rem;
        }

        .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;
    }
}
    
    
/* ===========================================
   ABOUT US SECTION CSS
=========================================== */
.about-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #CD853F);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b5b47;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 5rem;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c1810;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pillars-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.pillar {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
    border: 1px solid #e8e1d9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #CD853F);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.pillar-icon {
    margin-bottom: 2rem;
}

.icon-background {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.pillar-emoji {
    font-size: 2.5rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 2rem;
    text-align: center;
}

.pillar-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    border: 1px solid #e8e1d9;
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.highlight-label {
    font-size: 0.8rem;
    color: #6b5b47;
    font-weight: 600;
}

.stats-section {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.stats-section::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); }
}

.stats-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
.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, #2c1810 0%, #8B4513 50%, #A0522D 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.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.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(244, 208, 63, 0.1) 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.5rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: #F4D03F;
}

.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;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.eval360-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}

.features-side {
    padding-top: 2rem;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .icon {
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.eval360-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    width: 100%;          /* take full width of parent */
    max-width: 100%;      /* prevent shrinking */
    box-sizing: border-box; /* include padding in width */
}


.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #DAA520;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.eval360-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 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 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 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;
}

/* Dashboard Mockup Styles */
.dashboard-container {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.dashboard-header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: rgba(218, 165, 32, 0.3);
    color: #F4D03F;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.dashboard-content {
    padding: 1.5rem;
    color: #2c1810;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.kpi-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.kpi-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.kpi-label {
    font-size: 0.8rem;
    color: #6b5b47;
    margin-bottom: 0.5rem;
}

.kpi-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.kpi-trend.positive {
    color: #059669;
    background: #d1fae5;
}

.kpi-trend.neutral {
    color: #6b5b47;
    background: #f3f4f6;
}

.chart-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
}

.chart-filters {
    display: flex;
    gap: 0.5rem;
}

.filter {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.filter.active {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.chart-area {
    height: 120px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100px;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bar {
    background: linear-gradient(135deg, #DAA520, #F4D03F);
    border-radius: 4px 4px 0 0;
    flex: 1;
    max-width: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: growUp 1s ease-out;
}

.bar:hover {
    background: linear-gradient(135deg, #F4D03F, #DAA520);
    transform: scale(1.1);
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--bar-height, 100%); }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b5b47;
}

.activity-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #DAA520;
}

.activity-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.activity-time {
    font-size: 0.8rem;
    color: #6b5b47;
    flex-shrink: 0;
}

/* 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.95);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.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.5rem;
}

.card-text {
    font-weight: 600;
    color: #2c1810;
    font-size: 0.9rem;
}

@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); }
}

/* Bottom Features */
.bottom-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.bottom-feature {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bottom-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.bottom-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.bottom-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bottom-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .eval360-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dashboard-mockup {
        transform: none;
    }

    .floating-card {
        display: none;
    }

    .eval360-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-features {
        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;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .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: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .kpi-card {
        padding: 1rem;
    }

    .eval360-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .bottom-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .bottom-feature {
        padding: 1.5rem;
    }

    .chart-bars {
        height: 80px;
    }

    .chart-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .chart-filters {
        width: 100%;
        justify-content: space-between;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .dashboard-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .dashboard-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .activity-text {
        font-size: 0.85rem;
    }

    .activity-time {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .eval360-section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .eval360-header {
        margin-bottom: 3rem;
    }

    .header-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .features-side {
        padding-top: 1rem;
    }

    .intro-text {
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon .icon {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .eval360-stats {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1rem;
    }

    .kpi-card {
        padding: 0.75rem;
    }

    .kpi-value {
        font-size: 1.5rem;
    }

    .kpi-label {
        font-size: 0.75rem;
    }

    .chart-section {
        padding: 1rem;
    }

    .chart-header h4 {
        font-size: 1rem;
    }

    .chart-filters {
        gap: 0.25rem;
    }

    .filter {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }

    .chart-bars {
        height: 60px;
        gap: 0.25rem;
    }

    .chart-labels {
        font-size: 0.75rem;
    }

    .activity-section h4 {
        font-size: 1rem;
    }

    .activity-item {
        padding: 0.75rem;
    }

    .activity-icon {
        font-size: 1rem;
    }

    .bottom-feature {
        padding: 1rem;
    }

    .bottom-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .bottom-feature h4 {
        font-size: 1rem;
    }

    .bottom-feature p {
        font-size: 0.85rem;
    }

    /* Dashboard specific mobile fixes */
    .dashboard-mockup {
        margin: 0 -0.5rem;
        border-radius: 12px;
    }

    .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;
    padding: 6rem 0;
}

.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-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;
}

/* 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;
}

/* CTA Section */
.international-cta {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.international-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-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;
    }

    .international-cta {
        padding: 3rem 2rem;
    }

    .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 {
        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;
    }

    .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;
    }

    .international-cta {
        padding: 2rem 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: 6rem 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: 4rem;
}

.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-size: 3rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    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: 4rem;
    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: 3rem;
    }

    .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;
    padding: 6rem 0;
}

.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;
    padding: 0 1.5rem;
    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;
    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-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;
    margin-bottom: 3rem;
}

/* 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 {
        padding: 4rem 0;
    }

    .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 {
        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;
    }

    .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;
}