/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Arial:wght@400;700&display=swap');

/* Variables */
:root {
    --primary-green: #006400;
    --light-green: #90EE90;
    --medium-green: #2E8B57;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #f4f4f4;
    --black: #000000;
    --namibia-blue: #003580;
    --namibia-red: #c8102e;
    --namibia-green: #00843d;
    --namibia-yellow: #ffb81c;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-green);
}

section {
    padding: 4rem 0;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-green);
}

.nav-menu a.active {
    border-bottom: 2px solid var(--primary-green);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.hero-image {
    position: relative;
    height: 300px;
    margin: 2rem auto;
}

.africa-map {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background-image: url('../img/africa-map.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
}

.flag-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--namibia-blue);
    border-radius: 50%;
    top: 55%;
    left: 47%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.flag-pin:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 15px;
    background: var(--white);
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
}

/* Call to Action Buttons */
.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--medium-green);
    border-color: var(--medium-green);
}

.btn-secondary:hover {
    background-color: rgba(0, 100, 0, 0.1);
}

/* About Section */
.about {
    background-color: var(--white);
    text-align: center;
    background-image: url('../img/cityOfLights.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    text-align: center;
    background-image: url('../img/upper - logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    background-attachment: scroll;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 244, 244, 0.85);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 3;
}

.services h2 {
    margin-bottom: 3rem;
}

.service-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(0);
    box-shadow: none;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
}

/* Mission Section */
.mission {
    background-color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../img/museumSN.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.mission .container {
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.mission h2 {
    margin-bottom: 2rem;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Tagline Section */
.tagline {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.tagline h2, .tagline h3 {
    color: var(--white);
}

.tagline h3 {
    font-size: 1.2rem;
    font-weight: normal;
}

.tagline h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
    text-align: center;
    background-image: url('../img/upper - logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    background-attachment: scroll;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 244, 244, 0.85);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    position: relative;
    z-index: 2;
}

/* Desktop-only hover effects for contact items */
@media (min-width: 769px) {
    .contact-item {
        cursor: pointer;
    }
    
    .contact-item:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 16px 40px rgba(37,99,235,0.13);
        background-color: var(--gray-50);
    }

    .contact-item:hover i {
        transform: scale(1.2);
        color: var(--primary-green);
    }

    .contact-item:hover p {
        color: var(--primary-green);
    }
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: transform 0.3s, color 0.3s;
}

.contact-item p {
    transition: color 0.3s;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

footer .logo {
    margin-bottom: 1.5rem;
}

footer .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Set AISOD link color to grey instead of default blue */
footer a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--light-gray);
}

/* Mobile Optimization */
/* Replace the existing @media section with this enhanced version */

/* Mobile Navigation */
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-green);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

/* Utility Classes */
.d-mobile-only {
    display: none !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .d-mobile-only {
        display: block !important;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 5rem;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 102;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        margin-left: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-green);
        cursor: pointer;
        padding: 0.5rem;
    }
    
    /* Background images */
    .about, .services, .mission, .contact {
        background-attachment: scroll;
        background-size: contain;
        background-position: center;
    }
    
    .mission {
        max-width: 100%;
        height: auto;
        min-height: 400px;
        background-position: center top;
    }
    
    .mission .container {
        max-width: 100%;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-image {
        height: 220px;
        margin: 1.5rem auto;
    }
    
    .africa-map {
        width: 220px;
        height: 220px;
    }
    
    /* Sections Padding */
    section {
        padding: 3rem 0;
    }
    
    /* Services Grid */
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Call to action */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1rem;
    }
    
    /* Tagline Section */
    .tagline h2 {
        font-size: 1.8rem;
    }
    
    .tagline h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.5rem;
    }
    .logo img {
        height: 48px;
        max-width: 90vw;
    }
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .nav-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding-top: 3rem;
        transition: right 0.3s;
        z-index: 200;
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--primary-green);
        z-index: 201;
    }
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--primary-green);
    }
    .hero {
        padding: 2rem 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
    .hero-image {
        height: 160px;
    }
    .africa-map {
        width: 160px;
        height: 160px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card {
        padding: 1rem;
        font-size: 1rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-item {
        flex-direction: row;
        align-items: center;
        font-size: 1rem;
    }
    .contact-item i {
        font-size: 1.3rem;
        margin-right: 0.7rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    .tagline h2, .tagline h3 {
        font-size: 1.2rem;
    }
    footer {
        font-size: 0.9rem;
        padding: 1rem 0.5rem;
    }
}

/* Fix for touch interactions */
@media (hover: none) {
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    /* Add active states for touch interactions */
    .btn:active {
        background-color: var(--medium-green);
        transform: scale(0.98);
    }
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 101;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
} 
@media (max-width: 600px) {
    .section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .about-description,
    .about-values,
    .about-stats,
    .stat-card,
    .service-card,
    .package-card,
    .step-card,
    .faq-list,
    .faq-item,
    .faq-question,
    .faq-answer,
    .contact-info,
    .contact-form,
    .footer-bottom {
        text-align: center !important;
    }
    .hero-content,
    .hero-buttons,
    .platform-badges,
    .about-flex,
    .contact-flex,
    .services-grid,
    .packages-grid,
    .steps-grid,
    .about-stats,
    .faq-list {
        justify-content: center !important;
        align-items: center !important;
    }
    .service-card,
    .package-card,
    .step-card,
    .stat-card,
    .faq-item,
    .contact-form {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .about-values li,
    .contact-list li {
        justify-content: center !important;
    }
    .contact-list {
        padding-left: 0;
        padding-right: 0;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }
    .platform-badges {
        flex-direction: column;
        gap: 0.7rem;
    }
    .hero-img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
    }
    .logo-icon {
        height: 36px !important;
        width: auto !important;
    }
    .services-grid, .packages-grid, .steps-grid, .about-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card, .package-card, .step-card, .contact-form {
        padding: 0.8rem 0.3rem;
        font-size: 0.98rem;
    }
    .package-card .btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-question {
        padding: 1rem 1.2rem 1rem 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.98rem;
    }
    .about-flex, .contact-flex {
        gap: 0.7rem;
    }
    .about-values li, .contact-list li {
        font-size: 0.98rem;
    }
    .stat-card {
        padding: 0.7rem 0.2rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1rem;
        padding: 0.7rem;
    }
    .footer-bottom {
        font-size: 0.95rem;
        margin-top: 1.2rem;
        line-height: 1.5;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .nav-logo .logo-icon {
        height: 28px !important;
    }
    .nav-container {
        padding: 0 0.5rem;
    }
    .nav-menu {
        padding: 1rem 0;
    }
    .about-description,
    .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Navbar improvements */
    .navbar {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        z-index: 3000;
        background: #fff;
    }
    .nav-logo, .nav-link, .btn-get-started {
        min-height: 44px;
        min-width: 44px;
        font-size: 1.05rem;
    }
    .nav-link {
        padding: 0.7rem 0;
    }
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    /* Hero section improvements */
    .hero {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .hero-img {
        max-width: 95vw;
        height: auto;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.7rem;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Service cards improvements */
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        border: 1.5px solid var(--gray-200);
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .service-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    /* Packages improvements */
    .packages-grid {
        gap: 1.5rem;
    }
    .package-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
        border: 1.5px solid var(--gray-200);
    }
    .package-card.featured {
        background: var(--gray-50);
        border: 2px solid var(--primary-blue);
    }
    .package-card .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Steps improvements */
    .steps-grid {
        gap: 1.5rem;
    }
    .step-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    /* About improvements */
    .about-description, .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-values i {
        font-size: 1.5rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-card {
        margin-bottom: 0.7rem;
        padding: 0.7rem 0.2rem;
    }
    /* FAQ improvements */
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-item {
        margin-bottom: 1rem;
    }
    .faq-question {
        padding: 1.2rem 1.2rem 1.2rem 1rem;
        font-size: 1.05rem;
        min-height: 44px;
    }
    .faq-question::after {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    .faq-question[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 1.05rem;
        background: var(--gray-50);
        border-top: 1px solid var(--gray-200);
    }
    /* Contact improvements */
    .contact-info {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    .contact-list li {
        min-height: 44px;
        font-size: 1.05rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1.05rem;
        padding: 0.9rem;
        min-height: 44px;
        width: 100%;
    }
    .contact-form .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    /* Footer improvements */
    .footer-bottom {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        line-height: 1.6;
        padding: 1.2rem 0.5rem;
        background: var(--gray-50);
    }
    .footer-bottom a {
        font-size: 1.05rem;
        min-height: 44px;
        display: inline-block;
    }
    /* General improvements */
    body, .section, .container, .service-card, .package-card, .step-card, .faq-item, .contact-form, .stat-card {
        font-size: 1.05rem;
    }
    * {
        box-sizing: border-box;
    }
    html, body {
        overflow-x: hidden !important;
    }
}
@media (max-width: 600px) {
    .loading-logo .logo-icon {
        height: 72px !important;
        border-radius: 14px !important;
    }
    .loading-logo .loading-favicon {
        height: 140px !important;
        border-radius: 20px !important;
    }
    .hero-buttons {
        flex-direction: row !important;
        gap: 0.7rem;
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    .hero-buttons .btn {
        width: auto !important;
        min-width: 120px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        font-size: 1rem;
        margin-bottom: 0 !important;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
    }
    .stat-card {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 1.2rem 0.7rem !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 110px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-img {
        border-radius: 12px;
    }
}
@media (max-width: 400px) {
    .section-title, .hero-title {
        font-size: 1.1rem;
    }
    .btn, .btn-primary, .btn-secondary {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        min-height: 44px;
    }
    .faq-question {
        font-size: 1rem;
    }
}
@media (max-width: 900px) {
    .section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .about-flex, .contact-flex {
        gap: 2rem;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .about-description,
    .about-values,
    .about-stats,
    .stat-card,
    .service-card,
    .package-card,
    .step-card,
    .faq-list,
    .faq-item,
    .faq-question,
    .faq-answer,
    .contact-info,
    .contact-form,
    .footer-bottom {
        text-align: center !important;
    }
    .hero-content,
    .hero-buttons,
    .platform-badges,
    .about-flex,
    .contact-flex,
    .services-grid,
    .packages-grid,
    .steps-grid,
    .about-stats,
    .faq-list {
        justify-content: center !important;
        align-items: center !important;
    }
    .service-card,
    .package-card,
    .step-card,
    .stat-card,
    .faq-item,
    .contact-form {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .about-values li,
    .contact-list li {
        justify-content: center !important;
    }
    .contact-list {
        padding-left: 0;
        padding-right: 0;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }
    .platform-badges {
        flex-direction: column;
        gap: 0.7rem;
    }
    .hero-img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
    }
    .logo-icon {
        height: 36px !important;
        width: auto !important;
    }
    .services-grid, .packages-grid, .steps-grid, .about-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card, .package-card, .step-card, .contact-form {
        padding: 0.8rem 0.3rem;
        font-size: 0.98rem;
    }
    .package-card .btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-question {
        padding: 1rem 1.2rem 1rem 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.98rem;
    }
    .about-flex, .contact-flex {
        gap: 0.7rem;
    }
    .about-values li, .contact-list li {
        font-size: 0.98rem;
    }
    .stat-card {
        padding: 0.7rem 0.2rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1rem;
        padding: 0.7rem;
    }
    .footer-bottom {
        font-size: 0.95rem;
        margin-top: 1.2rem;
        line-height: 1.5;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .nav-logo .logo-icon {
        height: 28px !important;
    }
    .nav-container {
        padding: 0 0.5rem;
    }
    .nav-menu {
        padding: 1rem 0;
    }
    .about-description,
    .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Navbar improvements */
    .navbar {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        z-index: 3000;
        background: #fff;
    }
    .nav-logo, .nav-link, .btn-get-started {
        min-height: 44px;
        min-width: 44px;
        font-size: 1.05rem;
    }
    .nav-link {
        padding: 0.7rem 0;
    }
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    /* Hero section improvements */
    .hero {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .hero-img {
        max-width: 95vw;
        height: auto;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.7rem;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Service cards improvements */
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        border: 1.5px solid var(--gray-200);
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .service-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    /* Packages improvements */
    .packages-grid {
        gap: 1.5rem;
    }
    .package-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
        border: 1.5px solid var(--gray-200);
    }
    .package-card.featured {
        background: var(--gray-50);
        border: 2px solid var(--primary-blue);
    }
    .package-card .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Steps improvements */
    .steps-grid {
        gap: 1.5rem;
    }
    .step-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    /* About improvements */
    .about-description, .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-values i {
        font-size: 1.5rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-card {
        margin-bottom: 0.7rem;
        padding: 0.7rem 0.2rem;
    }
    /* FAQ improvements */
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-item {
        margin-bottom: 1rem;
    }
    .faq-question {
        padding: 1.2rem 1.2rem 1.2rem 1rem;
        font-size: 1.05rem;
        min-height: 44px;
    }
    .faq-question::after {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    .faq-question[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 1.05rem;
        background: var(--gray-50);
        border-top: 1px solid var(--gray-200);
    }
    /* Contact improvements */
    .contact-info {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    .contact-list li {
        min-height: 44px;
        font-size: 1.05rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1.05rem;
        padding: 0.9rem;
        min-height: 44px;
        width: 100%;
    }
    .contact-form .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    /* Footer improvements */
    .footer-bottom {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        line-height: 1.6;
        padding: 1.2rem 0.5rem;
        background: var(--gray-50);
    }
    .footer-bottom a {
        font-size: 1.05rem;
        min-height: 44px;
        display: inline-block;
    }
    /* General improvements */
    body, .section, .container, .service-card, .package-card, .step-card, .faq-item, .contact-form, .stat-card {
        font-size: 1.05rem;
    }
    * {
        box-sizing: border-box;
    }
    html, body {
        overflow-x: hidden !important;
    }
}
@media (max-width: 900px) {
    .about-flex, .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .services-grid, .packages-grid, .steps-grid, .about-stats {
        grid-template-columns: 1fr;
    }
    .about-flex, .contact-flex {
        gap: 1.2rem;
    }
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
[data-aos] {
    transition-property: opacity, transform, box-shadow;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.service-card, .package-card, .step-card, .stat-card, .faq-item {
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.service-card:hover, .package-card:hover, .step-card:hover, .faq-item:hover {
    box-shadow: 0 16px 40px rgba(37,99,235,0.13);
    transform: translateY(-8px) scale(1.04);
    background: var(--gray-50);
}
.btn, .btn-primary, .btn-secondary {
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn:active {
    transform: scale(0.97);
}

/* Mobile Navigation Styles */
.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.mobile-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0;
    max-width: 100%;
}

.mobile-logo-container {
    background-color: var(--white);
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.mobile-header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hamburger-btn {
    background-color: var(--white);
    border: none;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    margin: 0;
    transition: background-color 0.3s;
}

.hamburger-btn:active {
    background-color: var(--light-gray);
}

/* Ensure proper vertical centering for both logo and button */
.mobile-navbar .container > * {
    display: flex;
    align-items: center;
    height: 100%;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    padding-top: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(0,100,0,0.1);
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.mobile-nav-menu a:active,
.mobile-nav-menu a.active {
    background-color: rgba(0,100,0,0.1);
}

.mobile-sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Adjust main content for mobile navbar */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }

    .mobile-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
    }
    
    /* Ensure logo doesn't get too large on different screen sizes */
    .mobile-logo-container img {
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }

    section {
        scroll-margin-top: 60px;
    }
}

/* Add specific mobile styles for the map */
@media (max-width: 768px) {
    .hero-image {
        position: relative;
        height: 220px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .africa-map {
        position: relative;
        left: auto;
        transform: none;
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .africa-map img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
}