@import url('https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Archivo+Black&family=Changa+One:ital@0;1&family=Exo+2:ital,wght@0,100..900;1,100..900&family=New+Rocker&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Allan:wght@400;700&family=Archivo+Black&family=Changa+One:ital@0;1&family=New+Rocker&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}



/* .............HOMEPAGE............... */




/* .............Navbar............... */

header{
    background-color: #0b0b3b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}


.HamBUG{
    display: none;
}
.nav-links{
    gap: 40px;
    display: flex;
   
}

.nav-links a{
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    font-weight: 500;
}
.nav-links a:hover{
    text-decoration: underline;
    color: #D89B2D;
}

.Contact-BTN button{
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.5s ease;
}
.Contact-BTN button:hover{
    transform: scale(1.1);
    background-color: #D89B2D;
    color: white;

}

.dropDown{
    display: flex;
    position: relative;
}


#mobile-contact{
    display: none;
}





/* .............Background............... */

.BackGRD{
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 600px;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    animation: slide 15s infinite;
    background-color: rgba(0,0,0,.48);
}

@keyframes slide{
    0%{
        background-image: url(images/plane.jpg);
    }

    50%{
        background-image: url(images/cities\ london.jpg);
    }
    
    75%{
        background-image: url(images/HD\ cities\ \(1\).jpg);
    }

    100%{
        background-image: url(images/plane.jpg);
    }
}

.line{
    width:60px;
height:3px;
background:#D89B2D;
margin:18px auto;
border-radius:20px;
}
.BackGRD{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.hero-subtitle{
    font-size: clamp(0.9rem, 5vw, 1rem);
}

.BackGRD-Words{
    text-align: center;
}

.BackGRD-Words h1{
    text-align: center;
    font-size:clamp(2rem, 5vw, 3rem);
     max-width:900px;
    margin:auto;
    line-height:1.15;
    
}

.BackGRD-Words p:last-of-type{
    max-width:750px;
    margin:25px auto 0;
    line-height:1.8;
}
/* .BackGRD-Words p{
    text-align: center;
    font-size: x-large;
} */
.BTN-Consultation{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.BackGRD button{
    height: 50px;
    border-radius: 10px;
    background-color: #0b0b3b;
    color: white;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    /* box-shadow: 0px 5px 10px; */
    margin-top: 50px;
    cursor: pointer;
    transition: 0.5s ease;
    padding: 10px;
}
.BackGRD button:hover{
    background-color:#D89B2D;
    color:#0b0b3b;
    transform: translateY(-10px);
}
.BTN-Consultation .mail{
    display: flex;
    justify-content:center;
    align-items: center;

}



/* ================= about section ===== */
.about-Section{
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    gap: 20px;
    margin-top: 90px;
    flex-wrap: wrap;
}

.about-Section .image-div{
    background-image: url('images/sasa.jpg');
    width: 100%;
    max-width: 600px;
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
   background-color: #ffffff7e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.content-div{
    width: 100%;
    max-width: 600px;
    padding:0px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lineSEC{
    width: 120px;
    height: 3px;
    background-color: #D89B2D;
}
.content-div p{
    color: #555;
    line-height: 1.8;
}

.content-div button{
    height: 40px;
    border: none;
    background-color: #0b0b3b;
    color: white;
    font-weight: 600;
    font-size: 1.0rem;
    border-radius: 12px;
    transition: 0.3s ease;
}

.content-div button:hover{
    background-color: #D89B2D;
    color: #0b0b3b;
}
.content-div h1{
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #0b0b3b;
}






/* ===================================== */
 /* .............Our Services............... */
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services {
   padding: 15px;
    background: #f8f9fa;
    text-align: center;
    padding-bottom: 30px;
}

.services h2 {
   font-size: clamp(2.2rem , 5vw, 3rem);
    margin-bottom: 10px;
    color: #0b0b3b;
}

.services .subtitle {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.service-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px #d89c2d9c;
    transition: 0.3s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0px 10px #d89c2d9c;
}

.service-box i {
    font-size: 3rem;
    color:#D89B2D;
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 25px;
    color: #0b0b3b;
}

.service-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

 /* <!-- Services list --> */
.services-list{
    width: 200px;
    height: 250px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 10px black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1;
    align-items: center;
    cursor: pointer;
    z-index: 99999;
    position: absolute;
    top: 30px;
    right: 10px;
    color: black;
    display: none;
    
}
.services-list p:hover{
    text-decoration: underline navy;
    color: navy;
}

.fa-solid{
    font-weight: bold;
    font-size: smaller;
}


<!-- /* .............Why us............... */ -->

.Why-us{
    display: flex;
    justify-content: space-around;
    align-items: start;
    gap:30px 20px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    margin-top: 80px;
    padding: 20px;
    flex-wrap: wrap;
    /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6); */
    
}


.Whywords{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
}
.Whywords h3{
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: #0b0b3b;
}

.lineWHY{
    width: 200px;
    height: 3px;
    background-color: #D89B2D;
    margin-top: -15px;
}

.Whywords p{
   color: #4d4d4d;
    line-height: 1.5;
}

.Whywords button{
    font-size: 0.9rem;
    padding: 10px;
    background-color: #0b0b3b;
    border: none;
    color:white;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3 ease;
}

.tru{
    color: #D89B2D;
    display: block;
    font-weight: 600;
}

.Whywords button:hover{
    background-color: #D89B2D;
    color: #0b0b3b;
}
/* .Whywords{
    font-size: large;
    line-height: 1.2;
    text-align: end;
}
.Whywords h3{
    font-size: 2rem;
    color: #0b0b3b;
    
   
}

.Whywords button{
    width: 100px;
    height: 40px;
    background-color: navy;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: white;
}
.Whywords button:hover{
    background-color: black;
} */




/* ==============================success story ============= */

/* .success-section{
    margin-top: 80px;
    padding: 15px;
}
.success-text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.success-text h1{
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0b0b3b;
    text-align: center;
} */

.divide{
    width: 200px;
    height: 3px;
    background-color: #D89B2D;
}

/* .success-text p{
    max-width: 600px;
    text-align: center;
    color: #4d4d4d;
} */


.success-story{
    width:90%;
    margin:100px auto;
    position:relative;
}

.Heading{
    text-align:center;
    margin-bottom:50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Heading h2{
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #0b0b3b;
}
.Heading p{
    color: #4d4d4d;
}
.slider{

    display:flex;
    gap:35px;
    padding: 20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;

    scrollbar-width:none;
}

.slider::-webkit-scrollbar{
    display:none;
}
.seeStory{
    padding:0px 10px;
}

.seeStory button{
    padding: 8px;
    border: none;
    background-color: #0b0b3b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
}

.card strong{
    color: #D89B2D;
    padding:0px 8px;
}

.card.index{
    padding: 20px;
}

.card{

    min-width:340px;
    background:white;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    overflow:hidden;

    height: auto;
    scroll-snap-align:start;
    
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{

    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{

    color:#0b0b3b;

    padding:20px 20px 10px;
}

.card p{

    padding:0 20px 25px;
    color:#555;
    line-height:1.7;
}

.prev,
.next{

    position:absolute;

    top:55%;

    transform:translateY(-50%);

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#0b0b3b;

    color:white;

    font-size:22px;

    cursor:pointer;

    z-index:10;
}

.prev{

    left:-25px;
}

.next{

    right:-25px;
}

@media(max-width:768px){

    .card{

        min-width:90%;
    }

    .prev,
    .next{

        display:none;
    }

}


 /* .............start section............... */ -->

.stats-head{
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: xx-large;
    text-decoration: underline;
}
.stats-section{
    background-image: url('images/cities\ london.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 128, 0.744);
    padding:60px 20px;
    color:#fff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.stats-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box p{
    font-size:16px;
    letter-spacing:1px;
}


/* =======whatsapp module ====== */

.whatsapp{
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    right: 30px;
   border-radius: 50%;
   transition: 0.3s ease;
   width: 60px;
  
}

.whatsapp:hover{
     transform:scale(1.1);
}


/* .............footer............... */ 
.footer{
background:rgb(11, 11, 59);
color:white;
padding:60px 10%;

margin-top: 40px;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-logo{
width:200px;
margin-bottom:15px;
}

.footer-col h3{
color:#D89B2D;
margin-bottom:15px;
font-size:18px;
}

.footer-col a{
display:block;
color:white;
text-decoration:none;
margin:8px 0;
font-size:15px;
}

.footer-col a:hover{
color:#55c3ff;
}

.footer-email{
margin-top:15px;
}

.social-icons i{
font-size:18px;
margin-right:10px;
cursor:pointer;
}

.footer-btn{
margin-top:15px;
padding:12px 30px;
background:#D89B2D;
border:none;
color:white;
cursor:pointer;
border-radius:5px;
transition: 0.3s ease;
font-weight: 600;
}

.footer-btn:hover{
background:#4c6f9a;
}

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.1);
font-size:14px;
}

/* ............. MOBILE RESPONSIVENESS FOR FOOTER ............. */
@media (max-width: 768px){

    /* section{
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
    } */

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

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-logo{
        width:150px;
        margin:0 auto 15px;
        display:block;
    }

    .footer-col{
        text-align:center;
    }

    .footer-col h3{
        font-size:16px;
    }

    .footer-col a{
        font-size:14px;
    }

    .social-icons{
        justify-content:center;
        display:flex;
    }

    .social-icons i{
        margin:0 8px;
    }

    .footer-btn{
        width:100%;
        max-width:250px;
    }

    .footer-bottom{
        font-size:13px;
    }
}

















<!-- /* .............ABOUT US PAGE............... */ -->
.About-us{
    width: 100%;
    height: 500px;
    background-image: url('utils/images/airport-terminal.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    background-position:center;
    background-size: cover;
}


.about-heroCon small{
    color: #D89B2D;
    font-weight: 600;
     letter-spacing:2px;
     font-size: 1rem;
}

.about-heroCon {
    width: 100%;
    max-width: 500px;
}

.overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, .96) 0%,
            rgba(255, 255, 255, .90) 35%,
            rgba(255, 255, 255, .20) 55%,
            rgba(0, 0, 0, .35) 100%);
    padding: 50px;
    display: flex;
    align-items: center;
    position: relative;

}

.divide.about{
    width: 150px;
}

.about-heroCon h1{
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    color: #0b0b3b;
    margin-bottom: 4px;
}

.about-heroCon p{
    color: #4d4d4d;
    line-height: 1.8;
}
.History{
    display: flex;
    justify-content: center;
    padding: 0px 10px;
    margin-top: 150px;
    gap: 50px;
    flex-wrap: wrap;
}

.History2{
    display: flex;
    justify-content: center;
    padding: 0px 10px;
    margin-top: 80px;
    gap: 50px;
    flex-wrap: wrap;
}

.history-text2{
    width: 100%;
    max-width: 600px;
}

.history-img2{
    width: 100%;
    max-width: 500px;
}

.history-text2 p{
    color: #4d4d4d;
    line-height: 1.5;
}
.history-img{
    background-image: url('images/sasa.jpg');
    width: 100%;
    max-width: 600px;
    height: 450px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color:rgba(255, 255, 255, 0.384);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}


.history-text{
    width: 100%;
    max-width: 600px;
}


.history-text h3{
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0b0b3b;
    margin-bottom: 5px;

}
.History p{
    line-height: 1.5;
    color: #4d4d4d;
}


<!-- /* .............Why choose us.............. */ -->
.WhyUS{
    display: flex;
    justify-content: space-around;
    margin-top: 150px;
    flex-wrap: wrap;
    align-items: center;
}



.Whychooseus h3{
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #0b0b3b;
    margin-bottom: 10px;   
}

.Whychooseus p{
    text-align: justify;
    line-height: 2;
}

.divide.why{
    width: 400px;
    margin-bottom: 18px;
}

.markText{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:30px;

}
/* .markText div{
    display: flex;
} */

.markText strong{
    color: #D89B2D;
    margin-bottom: -5px;
}
.markText p{
    color: #4d4d4d;
}
.Whychooseus{
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.boxlogo{
    width: 500px;
    height: 400px;
    background-color: rgb(11, 11, 59);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-top: 40px;
    flex-direction: column;
    color:rgba(255,255,255,.88);
    padding: 15px;
    gap: 25px;
}


<!-- /* .............Our purpose.............. */ -->
.Ourpurposehead{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 150px;
    margin-bottom: 30px;

    
}
.Ourpurposehead h3{
    font-size: xx-large;
    color: #0b0b3b;
}


.Ourpurposehead p{
    font-size: x-large;
    color:#D89B2D;
    font-weight: bold;
    margin-bottom: -10px;
}

.lindDiv{
    width: 180px;
    height: 3px;
    background-color: #D89B2D;
}


.OurPurposeBox{
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.OurPurposeBox1:hover{
     transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(11,11,59,.15);
}
.OurPurposeBox1, .OurPurposeBox2{
    width: 400px;
   
    border-radius: 15px;
    box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.322);
    display: flex;
    justify-content: baseline;
    padding: 20px;
    flex-direction: column;
    transition: 0.3s ease;
}
.OurPurposeBox1 h3, .OurPurposeBox2 h3{
    font-size: x-large;
}
.OurPurposeBox1 p, .OurPurposeBox2 p{
    line-height: 1.5;
}

.team-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 120px
}

.team-header h1{
    color: #0b0b3b;
    font-size: clamp(2rem, 5vw, 3rem);
}
.linkk{
    width: 100px;
    height: 3px;
    background-color: #D89B2D;
}

.team-imageDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
}

.team-imageDiv div{
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    background-image: url('utils/images/ceo.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    box-shadow: 0px 0px 5px rgba(128, 128, 128, 0.548);
}
.team-imageDiv strong{
    font-size: 1.8rem;
    color: #0b0b3b;
}

/* ............. MOBILE RESPONSIVENESS FOR ABOUT ............. */
@media screen and (max-width: 768px) {

    /* ABOUT HERO SECTION */
    .About-us{
        height: 500px;
        margin-top: 0;
        align-items: end;
    }
     .overlay {
        justify-content: start;
        padding: 20px;
        align-items: end;
    }

    .about-heroCon{
        background-color: rgba(255, 255, 255, 0.815);
        padding: 5px;
    }

    .About-us p{
        line-height: 1.2;
    }

    /* HISTORY SECTION */
    .History{
        padding: 20px;
        flex-direction: column-reverse;
    }

   
    

    /* WHY CHOOSE US SECTION */
    .WhyUS{
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        margin-top: 40px;
    }

    .Whychooseus{
        width: 100%;
    }

    .Whychooseus h3{
        font-size: 2rem;
    }

    .divide.why{
        width: 320px;
    }

    .Whychooseus p{
        text-align: left;
        font-size: 15px;
        line-height: 1.8;
        color: #4d4d4d;
    }

    .Whychooseus button{
        width: 160px;
        height: 45px;
        margin: 20px auto 0;
        font-size: 14px;
    }

    /* LOGO/IMAGE BOX */
    .boxlogo{
        width: 100%;
        max-width: 340px;
        height: auto;
        min-height: 250px;
        padding: 20px;
        margin-top: 0;
        border-radius: 15px;
    }

    .boxlogo img{
        width: 100%;
        max-width: 220px;
        height: auto;
    }

    /* OUR PURPOSE SECTION */
    .Ourpurposehead{
        padding: 20px;
        text-align: center;
    }

    .Ourpurposehead h3{
        font-size: 1.8rem;
        margin-top: 0;
    }

    .Ourpurposehead p{
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .OurPurposeBox{
        gap: 25px;
        padding: 20px;
        margin-top: 10px;
    }

    .OurPurposeBox1,
    .OurPurposeBox2{
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 230px;
        padding: 20px;
    }

    .OurPurposeBox1 h3,
    .OurPurposeBox2 h3{
        font-size: 1.3rem;
    }

    .OurPurposeBox1 p,
    .OurPurposeBox2 p{
        font-size: 14px;
        line-height: 1.7;
    }

    /* VIDEO SECTION */
    .video-section{
        padding: 20px;
        margin-top: 30px;
    }

    .video-section video{
        width: 100%;
        height: auto;
        border-radius: 15px;
        object-fit: cover;
    }
}














<!-- /* .............VISA PAGE............... */ -->
.Visas{
    width: 100%;
    height: 500px;
    background-image: url('utils/images/top-view-travel-objects.png');
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
}

.headLine{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    text-align: center;
    padding: 20px;

}

.headLine h1{
  font-size: clamp(2rem,5vw, 2.5rem);
  color: #0b0b3b;
  margin-bottom: 5px;
}

/* .lineVisa{
    width: 300px;
    height: 3px;
    background-color: #D89B2D;
} */
.headLine p{
    color: #4d4d4d;
}


.proccess{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.proccessCard{
    box-shadow: 2px 2px 10px  #d89c2d81;
    padding: 12px;
    border-radius: 12px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    width: 100%;
    padding: 20px;
    max-width: 300px;
    height: 300px;
    border-top:5px solid #D89B2D;
    gap: 10px;
}

.proccessCard:hover{
    transform: translateY(-10px);
    box-shadow: 0px 0px 15px #d89c2d81;

}

.proccessCard span{
    display: block;
    background-color: #0b0b3b;
    width: fit-content;
    padding: 3px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proccess .proccessCard:nth-child(1){
     border-top:5px solid #0b0b3b;
}

.proccessCard i{
    font-size: 2.5rem;
    color: #D89B2D;
    margin: 20px 0;
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fcf0da;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-left: 20px;
}

.proccessCard strong{
    margin-top: 15px;
    color: #0b0b3b;
}
.proccessCard p{
    color: #4d4d4d;
}
.visa-section {
  padding: 30px 20px;
  margin-top: 80px;
}


.assessment-info{
    padding:90px 0;
    text-align:center;
    margin-top: 150px;
}

.assessment-info .section-tag{
    color:#D89B2D;
    letter-spacing:3px;
    font-weight:700;
    font-size:.9rem;
}

.assessment-info h2{
    margin:15px 0;
    font-size:2.5rem;
    color:#0b0b3b;
}

.assessment-info h2 span{
    color:#D89B2D;
}

.assessment-text{
    width:700px;
    max-width:90%;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.assessment-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin:60px 0;
}

.feature{
    padding:30px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature i{
    font-size:2rem;
    color:#D89B2D;
    margin-bottom:15px;
}

.feature h4{
    color:#0b0b3b;
    margin-bottom:8px;
}

.feature small{
    color:#666;
}

.assessment-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    background:#0b0b3b;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.assessment-btn:hover{
    background:#D89B2D;
}

.containervisasection {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



.containervisasection p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.containervisasection h1{
    color: #0b0b3b;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  height: 90px;
  resize: none;
}

.BTNProfile {
  width: 100%;
  padding: 14px;
  background: #0b0b3b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

.BTNProfile:hover {
  background: #001f4d;
}


.faq{

    padding:100px 8%;
    background:#f8f9fc;
    margin-top: 100px;

}

.section-title{

    color:#D89A23;
    letter-spacing:2px;
    font-weight:600;

}

.faq h2{

    color:#0b0b3b;
    font-size:2.6rem;
    margin:10px 0 20px;

}

.faq-intro{

    max-width:700px;
    line-height:1.8;
    color:#666;
    margin-bottom:50px;

}

.faq-wrapper{

    display:flex;
    flex-direction:column;
    gap:20px;

}

details{

   
    background:#fff;
    border-radius:12px;
    padding:22px 28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

summary{

    cursor:pointer;
    font-weight:600;
    color:#0b0b3b;
    font-size:1.1rem;

}

details p{

    margin-top:20px;
    color:#666;
    line-height:1.8;

}





.visa-contact{

    padding:100px 8%;
    margin-top: 90px;

}

.contact-box{

    background:#0b0b3b;
    border-radius:25px;
    text-align:center;
    padding:80px 40px;

}

.contact-box span{

    color:#D89A23;
    letter-spacing:2px;
    font-weight:600;

}

.contact-box h2{

    color:#fff;
    font-size:2.8rem;
    margin:20px 0;

}

.contact-box p{

    max-width:700px;
    margin:auto;
    color:#ddd;
    line-height:1.8;

}

.contact-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;

}

.contact-buttons a{

    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.contact-buttons a:first-child{

    background:#25D366;
    color:#fff;

}

.contact-buttons a:last-child{

    background:#D89A23;
    color:#fff;

}

.contact-buttons a:hover{

    transform:translateY(-4px);

}

/* .faq{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    padding: 20px;
    gap: 20px;
    flex-direction: column;
}

.faq-content{
    width: 100%;
    max-width: 400px;
    border: 1px solid #0b0b3b;
    padding: 5px;
    height: 40px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-content:hover{
    overflow: visible;
    height: auto;
} */



/* ............. MOBILE RESPONSIVENESS FOR VISA PAGE ............. */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
@media(max-width:768px){

.assessment-features{
    grid-template-columns:1fr;
}

.assessment-info h2{
    font-size:2rem;
}

}











<!-- /* .............BLOG PAGE............... */ -->

.Blog{
    width: 100%;
    height: 500px;
    background-image: url(images/island\ for\ blog\ new.jpg);
    background-color: rgba(11, 11, 59, 0.447);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    color: white;
}
.Blog p{
    font-size: 300%;
    font-family: "ABeeZee", sans-serif;
    font-weight: bold;
}

<!-- /* .............Blog Section............... */ -->

.latest {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.latest-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.latest-card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.latest-card:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.555);
}

.latest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.latest-content {
    padding: 20px;
}

.latest-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.latest-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.latest-content a {
    text-decoration: none;
    color: navy;
    font-weight: bold;
}

/* ............. MOBILE RESPONSIVENESS FOR BLOG PAGE ............. */
/* ....... it align itself........... */








<!-- /* .............CONTACT PAGE............... */ -->

.Contact{
    width: 100%;
    height: 500px;
    background-image: url('utils/images/cocococ.jpg');
    /* background-color: rgba(11, 11, 59, 0.447); */
    display: flex;
    align-items: center;
    justify-content: center;
    background-position:center;
    background-size: cover;
   
}


.inner-contentHero{
    width: 100%;
    max-width: 500px;
}

.inner-contentHero small{
    color:#D89B2D ;
    font-size: 1rem;
    font-weight: 600;

}

.inner-contentHero h1{
    color: #0b0b3b;
    font-size:clamp(2rem, 5vw, 3rem) ;
}

.inner-contentHero p{
    color: #4d4d4d;
    line-height: 1.5;
}



<!-- /* .............Contact............... */ -->

.container-contact{
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
}

/* LEFT SIDE */
.contact-left {
    width: 45%;
}

.contact-left small {
    color:#D89B2D;
    letter-spacing: 3px;
    font-weight: 600;
}

.contact-left h1 {
    font-size: 40px;
    margin: 20px 0;
    color: #0b0b3b;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 12px 0;
    color: #555;
}

/* RIGHT SIDE */
.contact-right {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.contact-right h3 {
    margin-bottom: 20px;
    color: #0b0b3b;
}

.form-rowcontact {
    display: flex;
    gap: 10px;
}

.inputcontact, .textarea-contact {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.textarea-contact {
    height: 120px;
    resize: none;
}

.BTN-Submit {
    width: 150px;
    padding: 15px;
    background: #0b0b3b;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.BTN-Submit:hover {
    background: #D89B2D;
}


input,textarea{
    font-size: 15px;
}
/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.whatsapp-float i {
  margin-top: 15px;
}

.whatsapp-float:hover {
  background-color: #20b358;
}








/* ==== form loader ==== */

#LoadeR{
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.507);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

#LoadeR span{
    width: 25px;
    height: 25px;
    
    border: 3px solid white;
    border-top:3px solid gray;
    border-radius: 50%;
    animation: spinner 2s infinite;
}

@keyframes spinner {
    to{transform: rotate(360deg);}
}
/* ............. MOBILE RESPONSIVENESS FOR CONTACT PAGE ............. */

@media (max-width: 768px) {

    /* CONTACT HERO SECTION */
    /* .Contact{
        height: 250px;
        margin-top: 0;
        text-align: center;
        padding: 20px;
        background-position: center;
        background-size: cover;
    } */

    .inner-contentHero{
        background-color: rgba(255, 255, 255, 0.801);
    }
    /* .Contact p{
        font-size: 2rem;
        line-height: 1.3;
    } */

    /* CONTACT CONTAINER */
    .container-contact{
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    /* LEFT + RIGHT SECTIONS */
    .contact-left,
    .contact-right{
        width: 100%;
    }

    .contact-left{
        text-align: center;
    }

    .contact-left small{
        font-size: 12px;
        letter-spacing: 2px;
    }

    .contact-left h1{
        font-size: 28px;
        margin: 15px 0;
        line-height: 1.3;
    }

    .contact-info{
        margin-top: 20px;
    }

    .contact-info p{
        font-size: 15px;
        line-height: 1.6;
        margin: 10px 0;
    }

    /* FORM */
    .contact-right{
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .contact-right h3{
        text-align: center;
        font-size: 22px;
    }

    .form-rowcontact{
        flex-direction: column;
        gap: 0;
    }

    .inputcontact,
    .textarea-contact{
        font-size: 15px;
        padding: 14px;
        border-radius: 10px;
    }

    .textarea-contact{
        height: 140px;
    }

    .BTN-Submit{
        width: 100%;
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }

    /* WHATSAPP BUTTON */
    .whatsapp-float{
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }

    .whatsapp-float i{
        margin-top: 13px;
    }
    
   
}

/* ............. MOBILE RESPONSIVENESS FOR CONTACT PAGE(PART 2) ............. */
@media (max-width:768px){

    .container-contact{
        flex-direction: column;
        padding: 40px 15px;
        gap: 30px;
    }

    .contact-left,
    .contact-right{
        width: 100%;
        box-sizing: border-box;
    }

    .contact-right{
        padding: 20px 15px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .form-rowcontact{
        flex-direction: column;
        width: 100%;
    }

    .inputcontact,
    .textarea-contact{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .BTN-Submit{
        width: 100%;
        box-sizing: border-box;
    }

}



















/* ...........Responsive........... */
@media(max-width:900px){

    select{
        min-height: 40px;
    }
    section{
        overflow-x: hidden;
    }
    .whatsapp{
        right: 10px;
    }
    .about-Section{
            flex-direction: column-reverse;
    }

    .History2{
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header{
        justify-content: space-between;
        padding: 5px ;
        padding-left: 8px;
    }

/* NAVBAR */
.navbar{
    position: relative;
    /* justify-content: space-between;
    padding: 0px; */
}

/* HIDE NORMAL MENU */
.nav-links{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0b0b3b;
    padding: 20px;
    gap: 20px;
    z-index: 999;
}

/* SHOW MENU WHEN ACTIVE */
.nav-links.active{
    display: flex;
}

#mobile-contact{
    display: flex;
}

/* LINKS */
.nav-links a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* CONTACT BUTTON */
.Contact-BTN button{
    display: none;
}

/* HAMBURGER */
.HamBUG{
    display: flex;
    font-size: xx-large;
    color: white;
    padding-right: 50px;
    cursor: pointer;
}

/* SERVICES DROPDOWN */
#navlinkser{
    position: relative;
}

/* DROPDOWN BOX */
.services-list{
    left: 0;
   
}

/* SHOW DROPDOWN */


/* HERO TEXT */
.BackGRD-Words h1{
    text-align: center;
    line-height: 1.5;
    padding: 5px;
}

.BackGRD-Words p{
    text-align: center;
    
}

/* WHY US */
.Why-us{
    display: flex;
}

.Why-usMobile{
    background-image: url(images/cities\ london.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.632);
    justify-content: center;
    align-items: center;
    color: white;
    display: flex;
    height: 250px;
}

.Whywordsmobile{
    font-size: xx-small;
    font-family: "ABeeZee", sans-serif;
    padding: 5px;
    line-height: 1.4;
}

.Whywordsmobile h3{
    font-size: large;
}

.Whywordsmobile button{
    width: 70px;
    height: 25px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    color: navy;
}

.Whywordsmobile button:hover{
    transform: scale(1.1);
}

}


/* .............start section............... */ 
.stats-container{
grid-template-columns:repeat(2,1fr);
}


/* Mobile */
@media(max-width:500px){
.stats-container{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.stat-box h2{
font-size:32px;
}



}



