
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #000000;
            line-height: 1.6;
        }
/* Add these fixes to your main.css file */

/* 1. Prevent overall horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* 2. Fix hero pseudo-element */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Add this: */
    max-width: 100%;
    overflow: hidden;
}

/* 3. Fix grid columns responsive breakpoints */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2rem;
    align-items: center;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.consulting-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.mvv-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
}

.consulting-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 2.5rem;
}

/* 4. Fix section padding on mobile */
@media (max-width: 768px) {
    section {
        padding: 3rem 4%;
    }
    
    .hero {
        padding: 2rem 4%;
    }
    
    /* Fix all grids to single column on mobile */
    .products-grid,
    .services-grid,
    .clients-grid,
    .branches-grid,
    .service-categories,
    .consulting-services,
    .contact-container,
    .mvv-section,
    .about-features-grid,
    .team-grid,
    .consulting-process-grid,
    .why-choose-grid,
    .process-timeline,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix form rows */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Fix consulting stats */
    .consulting-stats-inline {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Fix about highlights */
    .about-highlights {
        flex-direction: column;
        width: 100%;
    }
    
    .highlight-badge {
        width: 100%;
        justify-content: center;
    }
    
    /* Fix timeline overflow */
    .timeline {
        padding-left: 0;
        margin-left: 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        left: 0;
        font-size: 1.8rem;
    }
    
    .timeline-year::after {
        left: 20px;
    }
    
    /* Fix CTA buttons */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Fix map container */
    .map-container iframe {
        height: 300px;
    }
    
    /* Fix service technologies badges */
    .service-technologies {
        gap: 0.5rem;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* 5. Make Africa SVG bigger on desktop */
.about-map {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.africa-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

/* Make it even bigger on larger screens */
@media (min-width: 1200px) {
    .map-container {
        max-width: 700px;
    }
}

@media (min-width: 1400px) {
    .map-container {
        max-width: 800px;
    }
}

/* Hover effect for desktop */
@media (min-width: 769px) {
    .africa-svg:hover {
        transform: scale(1.05);
    }
}

/* 6. Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .consulting-hero-content h3,
    .about-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Ensure buttons don't overflow */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Fix padding on cards */
    .product-card,
    .service-category-card,
    .consulting-service-card,
    .branch-card {
        padding: 1.5rem;
    }
}
        /* Glassmorphism Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding: 1rem 5%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #000;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #666;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #000;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
    color: #000; /* Ensure active link is fully black */
}

.nav-links a.active::after {
    width: 100%; /* Keep underline visible */
}


        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
            padding: 2rem 5%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .hero-content {
            max-width: 1400px;
            text-align: center;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: #333;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #000;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: #000;
            color: #fff;
        }

        .btn-primary:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #000;
        }

        .btn-secondary:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
        }

        /* Section Styles */
        section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #000;
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .product-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        /* What We Do Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-item {
            text-align: center;
            padding: 2rem;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .service-item:hover {
            border-color: #000;
            background: #fafafa;
        }

        .service-item i {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #000;
        }

        .service-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-item p {
            color: #666;
        }

        /* World Coverage Section */
        .coverage {
            background: #000;
            color: #fff;
            text-align: center;
        }

        .coverage .section-header h2,
        .coverage .section-header p {
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            padding: 2rem;
            border: 2px solid #fff;
            border-radius: 10px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            color: #ccc;
        }

        /* Clients Section */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .client-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
        }

        .client-logo:hover {
            border-color: #000;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #000;
            color: #fff;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #fff;
            color: #000;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
        }

        /* Contact Section Styles */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .contact-form-section h3,
        .contact-info-section h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .contact-form {
            background: #fff;
            padding: 2.5rem;
            border: 2px solid #000;
            border-radius: 15px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #000;
        }

        .form-group textarea {
            resize: vertical;
        }

        .contact-info-items {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .contact-info-item:hover {
            border-color: #000;
            transform: translateX(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border: 2px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #666;
            line-height: 1.6;
        }

        .map-section {
            margin-top: 4rem;
        }

        .map-container {
            border: 2px solid #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        /* Branches Section Styles */
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .branch-card {
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .branch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #000 0%, #666 100%);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .branch-icon {
            width: 80px;
            height: 80px;
            border: 3px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .branch-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .branch-location {
            color: #666;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .branch-location i {
            color: #000;
            margin-right: 0.5rem;
        }

        .branch-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .branch-contact {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .branch-contact p {
            color: #333;
            font-size: 0.95rem;
        }

        .branch-contact i {
            color: #000;
            margin-right: 0.5rem;
            width: 20px;
        }

        /* Services Page Styles */
        .service-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .service-category-card {
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            padding: 3rem;
            position: relative;
            transition: all 0.3s;
        }

        .category-number {
            position: absolute;
            top: -20px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            border: 3px solid #000;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .service-category-card:hover .category-icon {
            background: #000;
            color: #fff;
            transform: scale(1.1);
        }

        .service-category-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .category-intro {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e0e0e0;
        }

        .service-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-item i {
            color: #000;
            font-size: 1.3rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .feature-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .feature-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .service-technologies {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            padding-top: 2rem;
            border-top: 2px solid #e0e0e0;
        }

        .tech-badge {
            padding: 0.5rem 1rem;
            background: #000;
            color: #fff;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .tech-badge:hover {
            background: #333;
            transform: translateY(-2px);
        }

        /* Process Section */
        .process-section {
            margin-top: 5rem;
            padding: 4rem;
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 35px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #e0e0e0;
            z-index: 0;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-content h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .step-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Consulting Page Styles */
        .consulting-hero {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: #fff;
            padding: 4rem;
            border-radius: 15px;
            margin-bottom: 4rem;
        }

        .consulting-hero-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .consulting-hero-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #e0e0e0;
        }

        .consulting-stats-inline {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .inline-stat {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stat-big {
            font-size: 3rem;
            font-weight: 800;
        }

        .stat-small {
            color: #ccc;
            font-size: 1rem;
        }

        .consulting-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .consulting-service-card {
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .consulting-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .consulting-icon {
            width: 70px;
            height: 70px;
            background: #000;
            color: #fff;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .consulting-service-card:hover .consulting-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .consulting-service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .service-description {
            color: #666;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .consulting-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .consulting-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .consulting-list i {
            color: #000;
            margin-top: 0.3rem;
            flex-shrink: 0;
        }

        .consulting-deliverables {
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }

        .consulting-deliverables strong {
            width: 100%;
            margin-bottom: 0.5rem;
        }

        .consulting-deliverables span {
            padding: 0.4rem 1rem;
            background: #f5f5f5;
            border: 1px solid #000;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .consulting-process-section {
            background: #f5f5f5;
            padding: 4rem;
            border-radius: 15px;
            margin-bottom: 4rem;
        }

        .consulting-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .consulting-process-item {
            text-align: center;
            padding: 2rem;
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .consulting-process-item:hover {
            border-color: #000;
            transform: translateY(-5px);
        }

        .process-icon-wrapper {
            width: 80px;
            height: 80px;
            border: 3px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }

        .consulting-process-item:hover .process-icon-wrapper {
            background: #000;
            color: #fff;
        }

        .consulting-process-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .consulting-process-item p {
            color: #666;
            line-height: 1.6;
        }

        .why-choose-consulting {
            margin-bottom: 4rem;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .why-choose-item {
            text-align: center;
            padding: 2rem;
            border: 2px solid #000;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .why-choose-item:hover {
            background: #000;
            color: #fff;
            transform: scale(1.05);
        }

        .why-choose-item i {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #000;
            transition: color 0.3s;
        }

        .why-choose-item:hover i {
            color: #fff;
        }

        .why-choose-item h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .why-choose-item p {
            color: #666;
            line-height: 1.6;
            transition: color 0.3s;
        }

        .why-choose-item:hover p {
            color: #e0e0e0;
        }

        .consulting-cta {
            background: #000;
            color: #fff;
            padding: 4rem;
            border-radius: 15px;
            text-align: center;
        }

        .consulting-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .consulting-cta p {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Page Styles */
        .about-hero {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            padding: 3rem;
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            border: 2px solid #000;
            border-radius: 15px;
            margin-bottom: 5rem;
        }

        .about-map {
            position: relative;
        }

        .africa-map {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
        }

        @keyframes pulse {
            0%, 100% {
                r: 10;
                opacity: 0.5;
            }
            50% {
                r: 20;
                opacity: 0;
            }
        }

        .pulse-ring {
            animation: pulse 2s ease-out infinite;
        }

        .about-hero-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-hero-content p {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .highlight-badge {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.5rem;
            background: #000;
            color: #fff;
            border-radius: 25px;
            font-weight: 600;
        }

        .highlight-badge i {
            font-size: 1.3rem;
        }

        /* Mission, Vision, Values Section */
        .mvv-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .mvv-card {
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .mvv-icon {
            width: 80px;
            height: 80px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }

        .mvv-card:hover .mvv-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .mvv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .mvv-card p {
            color: #666;
            line-height: 1.7;
            text-align: left;
        }

        .values-list {
            list-style: none;
            text-align: left;
        }

        .values-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            color: #333;
        }

        .values-list i {
            color: #000;
        }

        /* Timeline Section */
        .story-section {
            margin-bottom: 5rem;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: #000;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-year {
            order: 2;
        }

        .timeline-item:nth-child(even) .timeline-content {
            order: 1;
            text-align: right;
        }

        .timeline-year {
            font-size: 2.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .timeline-year::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #000;
            border: 4px solid #fff;
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-item:nth-child(even) .timeline-year::after {
            left: 50%;
        }

        .timeline-content {
            background: #fff;
            border: 2px solid #000;
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .timeline-content h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            margin-bottom: 5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
            background: #fff;
            border: 2px solid #000;
            border-radius: 15px;
            transition: all 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1.5rem;
            border: 4px solid #fff;
            box-shadow: 0 0 0 2px #000;
        }

        .team-member h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .member-title {
            color: #666;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .member-bio {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .member-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .member-social a {
            width: 40px;
            height: 40px;
            border: 2px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            transition: all 0.3s;
        }

        .member-social a:hover {
            background: #000;
            color: #fff;
        }

        /* About Features Section */
        .about-why-section {
            margin-bottom: 5rem;
        }

        .about-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-feature {
            padding: 2rem;
            background: #fff;
            border: 2px solid #000;
            border-radius: 10px;
            position: relative;
            transition: all 0.3s;
        }

        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-number {
            position: absolute;
            top: -15px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
        }

        .about-feature h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-right: 40px;
        }

        .about-feature p {
            color: #666;
            line-height: 1.6;
        }

        /* About CTA */
        .about-cta {
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: #fff;
            padding: 4rem;
            border-radius: 15px;
            text-align: center;
        }

        .about-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .about-cta p {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                width: 100%;
                padding: 2rem;
                transition: left 0.3s;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-info-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-info-item:hover {
                transform: translateX(0) translateY(-5px);
            }

            .service-categories {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .consulting-services {
                grid-template-columns: 1fr;
            }

            .consulting-hero {
                padding: 2rem;
            }

            .consulting-hero-content h3 {
                font-size: 1.8rem;
            }

            .consulting-stats-inline {
                gap: 1.5rem;
            }

            .consulting-process-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .consulting-cta {
                padding: 2rem;
            }

            .consulting-cta h2 {
                font-size: 1.8rem;
            }

            .about-hero {
                grid-template-columns: 1fr;
                padding: 2rem;
            }

            .about-hero-content h3 {
                font-size: 1.8rem;
            }

            .about-highlights {
                flex-direction: column;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                grid-template-columns: 1fr;
                padding-left: 60px;
            }

            .timeline-item:nth-child(even) .timeline-year {
                order: 1;
            }

            .timeline-item:nth-child(even) .timeline-content {
                order: 2;
                text-align: left;
            }

            .timeline-year {
                position: absolute;
                left: 0;
                justify-content: flex-start;
            }

            .timeline-year::after {
                left: 30px;
            }

            .timeline-item:nth-child(even) .timeline-year::after {
                left: 30px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .about-features-grid {
                grid-template-columns: 1fr;
            }

            .about-cta {
                padding: 2rem;
            }

            .about-cta h2 {
                font-size: 1.8rem;
            }
        }
        