    /* ========================================
   AFRICAN HERO SECTION STYLES
   ======================================== */

    /* Main Section */
    .african-hero-section {
        position: relative;
        height: 85vh;
        min-height: 650px;
        max-height: 900px;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* Background Container */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-video,
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel,
    .carousel-inner {
        height: 100%;
    }

    /* Gradient Overlay with Brand Colors */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(135deg,
                rgba(46, 125, 50, 0.85) 0%,
                rgba(76, 175, 80, 0.75) 25%,
                rgba(255, 152, 0, 0.7) 75%,
                rgba(255, 193, 7, 0.6) 100%); */
        z-index: 1;
    }

    /* African Pattern Overlay */
    .african-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            repeating-linear-gradient(45deg,
                transparent,
                transparent 35px,
                rgba(255, 255, 255, 0.03) 35px,
                rgba(255, 255, 255, 0.03) 70px);
        z-index: 1;
        pointer-events: none;
    }

    /* Content Container */
    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    /* Hero Badge */
    .hero-badge {
        display: inline-block;
        background: rgba(255, 193, 7, 0.9);
        color: var(--dark-gray);
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
        animation: pulse 2s infinite;
    }

    /* Hero Title */
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    }

    .highlight-text {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
    }

    /* Hero Subtitle */
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.7;
        margin-bottom: 30px;
        max-width: 600px;
        text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
        opacity: 0.95;
    }

    /* Big Five Icons */
    .big-five-icons {
        display: flex;
        gap: 15px;
        margin-bottom: 35px;
        flex-wrap: wrap;
    }

    .icon-item {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .icon-item:hover {
        background: rgba(255, 193, 7, 0.9);
        border-color: var(--primary-yellow);
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
    }

    /* CTA Buttons */
    .hero-actions {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        color: white;
    }

    .btn-hero-primary:hover {
        background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
        color: white;
    }

    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
        color: white;
    }

    /* Quick Stats */
    .hero-stats {
        display: flex;
        gap: 30px;
        align-items: center;
        padding: 25px 0;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-yellow);
        line-height: 1;
        margin-bottom: 5px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 2px;
        height: 40px;
        background: rgba(255, 255, 255, 0.3);
    }

    /* Feature Card (Desktop) */
    .hero-feature-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .hero-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .feature-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gradient-secondary);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 1;
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    }

    .feature-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .feature-content {
        padding: 25px;
    }

    .feature-content h4 {
        color: white;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .feature-content p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
    }

    .price-tag {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-yellow);
    }

    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        text-align: center;
    }

    .scroll-indicator a {
        color: white;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .scroll-indicator a:hover {
        transform: translateY(-5px);
    }

    .scroll-icon {
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 25px;
        position: relative;
    }

    .scroll-wheel {
        width: 6px;
        height: 10px;
        background: white;
        border-radius: 3px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scrollDown 2s infinite;
    }

    /* Background Toggle Button */
    .background-toggle {
        position: absolute;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 3;
    }

    .background-toggle:hover {
        background: var(--primary-orange);
        border-color: var(--primary-orange);
        transform: scale(1.1);
    }

    /* Animations */
    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @keyframes scrollDown {
        0% {
            transform: translate(-50%, 0);
            opacity: 0;
        }

        40% {
            opacity: 1;
        }

        80% {
            transform: translate(-50%, 20px);
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    /* Responsive Design */
    @media (max-width: 1199px) {
        .hero-title {
            font-size: 3rem;
        }

        .hero-subtitle {
            font-size: 1.15rem;
        }
    }

    @media (max-width: 991px) {
        .african-hero-section {
            height: 75vh;
            min-height: 600px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            gap: 20px;
        }

        .stat-number {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 767px) {
        .african-hero-section {
            height: auto;
            min-height: 100vh;
            padding: 100px 0 60px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .big-five-icons {
            gap: 10px;
        }

        .icon-item {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            justify-content: center;
        }

        .hero-stats {
            justify-content: space-between;
        }

        .stat-divider {
            height: 30px;
        }

        .scroll-indicator,
        .background-toggle {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .hero-badge {
            font-size: 0.8rem;
            padding: 8px 16px;
        }

        .hero-title {
            font-size: 1.75rem;
        }

        .stat-number {
            font-size: 1.4rem;
        }

        .stat-label {
            font-size: 0.75rem;
        }
    }