.afro-visa-section{
    background: linear-gradient(135deg,#041B3D,#072B5A);
    border-radius:25px;
    overflow:hidden;
    font-family:Poppins,sans-serif;
    color:#fff;
}

.afro-hero{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    padding:60px;
    gap:40px;
}

.afro-left{
    flex:1;
    min-width:350px;
}

.afro-right{
    flex:1;
    min-width:350px;
    position:relative;
}

.afro-right img{
    width:100%;
    border-radius:20px;
    display:block;
}

.afro-title{
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.afro-title span{
    color:#F5B301;
}

.afro-desc{
    font-size:20px;
    color:#dbe6f5;
    margin-bottom:25px;
}

.afro-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px;
}

.afro-feature{
    color:#fff;
    font-size:16px;
}

.afro-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.afro-btn{
    padding:16px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.afro-primary{
    background:#F5B301;
    color:#000;
}

.afro-secondary{
    border:1px solid #F5B301;
    color:#fff;
}

.afro-card{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#082752;
    padding:20px;
    border-radius:15px;
    width:260px;
}

.section-heading{
    text-align:center;
    padding:40px 20px 20px;
}

.section-heading small{
    color:#F5B301;
    display:block;
    margin-bottom:10px;
}

.section-heading h2{
    font-size:46px;
    margin:0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding:40px;
}

.service-card{
    background:#072447;
    border:1px solid #1F3B64;
    border-radius:15px;
    padding:25px;
}

.service-card h3{
    margin-top:0;
    color:#F5B301;
}

.countries-section{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    padding:0 40px 40px;
}

.countries-box,
.help-box{
    background:#072447;
    border-radius:15px;
    padding:30px;
}

.countries-box{
    flex:2;
}

.help-box{
    flex:1;
}

.country-list{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:20px;
}

.country{
    background:#0d315f;
    padding:10px 15px;
    border-radius:30px;
}

.trust-bar{
    background:#03142F;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:30px;
}

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

.trust-item h4{
    margin-bottom:8px;
    color:#F5B301;
}

@media(max-width:991px){

.services-grid{
grid-template-columns:1fr 1fr;
}

.trust-bar{
grid-template-columns:1fr 1fr;
}

.afro-title{
font-size:42px;
}

.afro-hero{
padding:30px;
}

}

@media(max-width:767px){

.services-grid{
grid-template-columns:1fr;
}

.trust-bar{
grid-template-columns:1fr;
}

.afro-card{
position:relative;
width:100%;
right:auto;
bottom:auto;
margin-top:20px;
}

.section-heading h2{
font-size:32px;
}

}