/* ==========================
   GOOGLE FONT
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* ==========================
   NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    background:rgba(11,31,58,.75);
    backdrop-filter:blur(14px);

    z-index:1000;
}

.logo h2{
    color:#fff;
    font-size:1.4rem;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    transition:.3s;
    font-weight:500;
}

.nav-links a:hover{
    color:#D4AF37;
}

.apply-btn{
    background:#D4AF37;
    color:#0B1F3A;

    padding:12px 26px;
    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.apply-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}


/* ==========================
   HERO
========================== */

.hero{

    height:100vh;

    background:url("pics/file_0000000022f0720796d29ddbae8e837a.png") center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    text-align:center;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;
    z-index:10;

    width:90%;
    max-width:900px;

}

.hero h1{

    color:white;

    font-size:3.6rem;

    line-height:1.2;

    margin-bottom:20px;

}

.hero p{

    color:#f2f2f2;

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:40px;

}


/* ==========================
   BUTTONS
========================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    background:#D4AF37;

    color:#0B1F3A;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-5px) scale(1.05);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    transition:.3s;

}

.secondary-btn:hover{

    background:#fff;

    color:#0B1F3A;

    transform:translateY(-5px);

}


/* ==========================
   RESPONSIVE
========================== */

@media(max-width:900px){

.nav-links{

display:none;

}

.hero h1{

font-size:2.5rem;

}

.hero p{

font-size:1rem;

}

.navbar{

padding:0 5%;

}

}

/* ==========================
   ABOUT
========================== */

.about{
    padding:100px 8%;
    background:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    color:#0B1F3A;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h3{
    font-size:2rem;
    color:#0B1F3A;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.about-cards{
    display:grid;
    gap:20px;
}

.card{
    background:#f8f9fa;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #D4AF37;
    transition:0.3s;
}

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

.card h4{
    color:#0B1F3A;
    margin-bottom:10px;
}

.card p{
    color:#666;
}

@media(max-width:900px){

.about-content{
    grid-template-columns:1fr;
}

}

/* ==========================
   COUNTRIES
========================== */

.countries{
    padding:100px 8%;
    background:#f4f7fb;
}

.country-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.country-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.country-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.country-card h3{
    color:#0B1F3A;
    margin-bottom:15px;
    font-size:1.4rem;
}

.country-card p{
    color:#666;
    line-height:1.7;
}

/* ==========================
   APPLY
========================== */

.apply{
    padding:100px 8%;
    background:#fff;
}

.apply-box{
    max-width:800px;
    margin:auto;
    background:#0B1F3A;
    color:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
}

.apply-box h3{
    font-size:2rem;
    margin-bottom:20px;
}

.apply-box p{
    line-height:1.8;
    margin-bottom:35px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(37,211,102,.35);
}

/* ==========================
   FAQ
========================== */

.faq{
    padding:100px 8%;
    background:#f8f9fa;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:20px 25px;
    border:none;
    background:#fff;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question span{
    font-size:24px;
    color:#D4AF37;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 20px;
    color:#555;
    line-height:1.7;
}

/* ==========================
   CONTACT
========================== */

.contact{
    padding:100px 8%;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.contact-card{
    background:#f8f9fa;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#0B1F3A;
    margin-bottom:20px;
}

.contact-card p{
    color:#555;
    line-height:1.8;
}


/* ==========================
   FOOTER
========================== */

.footer{
    background:#0B1F3A;
    color:#fff;
    text-align:center;
    padding:40px 20px;
}

.footer h2{
    margin-bottom:15px;
}

.footer p{
    opacity:.85;
    margin-top:10px;
}


/* ==========================
   FLOATING WHATSAPP
========================== */

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#0B1F3A;

        flex-direction:column;
        align-items:center;

        padding:30px 0;

        display:none;
    }

    .nav-links.active{
        display:flex;
    }

}

/* Navbar Scroll Effect */

.navbar.scrolled{

    background:#0B1F3A;

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

    transition:.3s;

}

/* ==========================
   SCROLL ANIMATION
========================== */

.fade{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

.footer-links{
    margin:25px 0;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:white;
    transition:.3s;
}

.footer-links a:hover{
    color:#D4AF37;
}

.copyright{
    margin-top:25px;
    opacity:.7;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    padding:100px 8%;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    background:#f8f9fa;
    padding:30px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.why-card h3{
    color:#0B1F3A;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}
