/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f8fc;
    color:#222;
}

/* Navbar */

.navbar{
    background:#003566;
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.navbar-brand img{
    height:70px;
}

.nav-link{
    color:#fff!important;
    margin-left:20px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:#ffc107!important;
}

.btn-warning{
    border-radius:50px;
    font-weight:600;
    padding:10px 20px;
    transition:0.3s ease;
}

.btn-warning:hover{
    transform:translateY(-2px);
}

/* Hero */

.hero{
    background: linear-gradient(135deg,#eef5ff 0%,#dbeafe 100%);
    padding:80px 0 100px;
    position:relative;
    overflow:hidden;
}

.hero-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.20);
    animation:float 4s ease-in-out infinite;
    transition:0.4s;
}

.hero-image:hover{
    transform:scale(1.02);
}

.hero h1{
    font-size:64px;
    font-weight:800;
    color:#003566;
    line-height:1.15;
}

.hero p{
    font-size:22px;
    color:#555;
    margin:30px 0;
}

/* Floating Animation */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* Search */

.btn-search{
    background:#ff8c00;
    color:#fff;
    border:none;
}

.btn-search:hover{
    background:#e67600;
}

/* Featured */

.featured{
    padding-top:80px;
}

.airline-card{
    border:none;
    border-radius:20px;
    text-align:center;
    padding:30px;
    transition:.4s;
    margin-bottom:30px;
}

.airline-card img{
    width:120px;
    margin:auto;
    margin-bottom:20px;
}

.airline-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* Footer */

footer{
    background:#003566;
    color:#fff;
    padding:50px 0;
    margin-top:60px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    margin:5px;

}

.latest-jobs{
    ...
}

/* ================= Why Choose ================= */

.why-us{

padding:80px 0;

background:#ffffff;

}

.feature-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-icon{

font-size:55px;

color:#ff9800;

margin-bottom:20px;

}

.feature-card h4{

font-weight:700;

margin-bottom:15px;

color:#003566;

}

.feature-card p{

color:#666;

line-height:1.8;

}
/* ================= Testimonials ================= */

.testimonials{

padding:80px 0;

background:#f5f8fc;

}

/* Trusted Airlines */

.trusted-airlines{

background:#fff;

padding:60px 0;

}

.airline-logo{

height:60px;

transition:.3s;

}

.airline-logo:hover{

transform:scale(1.1);

}
/*================ NAVBAR ================*/

.custom-navbar{
    background:linear-gradient(90deg,#061A35,#0A2B53,#0D4177);
    padding:12px 0;
    box-shadow:0 8px 25px rgba(0,0,0,.18);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.3s ease;
}

.logo{
    max-height:68px;
    width:auto;
    object-fit:contain;
    transition:transform .3s ease;
}

.logo:hover{
    transform:scale(1.03);
}

.custom-navbar .nav-link{
    color:#ffffff !important;
    font-weight:600;
    margin:0 12px;
    padding:10px 6px;
    letter-spacing:.3px;
    position:relative;
    transition:.3s ease;
}
.custom-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#FFD54F;
    transition:.3s;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after{
    width:100%;
}

.custom-navbar .nav-link:hover{
    color:#FFD54F !important;
}

.apply-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#FFD54F,#FFB300);
    color:#062247;
    padding:12px 30px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(255,179,0,.25);
    transition:.3s;
}

.apply-btn:hover{
    color:#062247;
    transform:translateY(-2px);
    box-shadow:0 12px 22px rgba(255,179,0,.35);
}

/* Hero Heading */

.hero h1{
    font-size:64px;
    font-weight:800;
    color:#003566;
    line-height:1.15;
}

.hero p{
    font-size:22px;
    color:#555;
    margin:30px 0;
}
.hero .btn{
    background:#ff8c00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.hero .btn:hover{
    background:#003566;
    color:#fff;
    transform:translateY(-3px);
}
/*================ Latest Jobs ================*/

.latest-jobs{
    background:#f8f9fa;
}

.job-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

.job-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.job-card h4{

color:#003566;

font-weight:700;

margin-bottom:20px;

}

.job-card p{

margin-bottom:10px;

}

.job-card .btn{

margin-top:20px;

border-radius:30px;

font-weight:600;

}
/*================ WHY CHOOSE US ================*/

.why-us{
    background:#ffffff;
    padding:80px 0;
}

.why-card{
    background:#f8f9fa;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card h1{
    font-size:50px;
    margin-bottom:20px;
}

.why-card h5{
    color:#003566;
    font-weight:700;
}

.why-card p{
    color:#666;
}
/*================ Statistics ================*/

.stats-section{
    background:#003566;
    padding:80px 0;
}

.stat-box{
    color:#fff;
    padding:20px;
}

.stat-box h2{
    color:#ff9800;
    font-size:50px;
    font-weight:700;
}

.stat-box p{
    font-size:18px;
    margin-top:10px;
}
/*================ WhatsApp ================*/

.whatsapp{

position:fixed;

right:20px;

bottom:20px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

color:#fff;

}
/*================ AIRLINE SLIDER ================*/

.airline-slider-section{
    background:#ffffff;
}

.slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.slide-track{
    display:flex;
    width:calc(220px * 20);
    animation:scroll 30s linear infinite;
}

.slide{
    width:220px;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 10px;
    background:#ffffff;
    border-radius:15px;
    font-weight:700;
    font-size:20px;
    color:#003566;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.slide:hover{
    color:#ff9800;
    transform:translateY(-5px);
    transition:.3s;
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-220px * 10));
}

}
/*================ FOOTER ================*/

.footer{
    background:#003566;
    color:#fff;
    padding:70px 0 20px;
}

.footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#ddd;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff9800;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#ff9800;
    color:#fff;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#003566;
}

/* ================= GLOBAL SKYHIRE FOOTER ================= */
footer.site-footer.skyhire-footer{
    background:#fff !important;
    color:#526579 !important;
    margin:0 !important;
    padding:24px 0 0 !important;
    border-top:1px solid #e3eaf1;
    box-shadow:none !important;
}

.skyhire-footer .skyhire-footer-main{
    align-items:flex-start;
    row-gap:18px;
}

.skyhire-footer .footer-logo{
    display:block;
    width:112px;
    max-width:112px;
    height:48px;
    max-height:48px;
    object-fit:contain;
    object-position:left center;
    margin:0 0 10px;
    padding:0;
    background:transparent;
    border:0;
    filter:none !important;
    opacity:1 !important;
}

.skyhire-footer h5{
    color:#062544 !important;
    font-size:17px;
    line-height:1.3;
    font-weight:800;
    margin:0 0 10px !important;
}

.skyhire-footer p,
.skyhire-footer .footer-description{
    color:#526579 !important;
    font-size:14px;
    line-height:1.55;
    margin:0;
}

.skyhire-footer .footer-description{
    max-width:355px;
}

.skyhire-footer .footer-socials{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
}

.skyhire-footer .social-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    border:1px solid #d9e3ec;
    border-radius:50%;
    background:#f7fafc;
    color:#d89a00;
    font-size:12px;
    text-decoration:none;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}

.skyhire-footer .social-icon:hover{
    background:#f5b51b;
    border-color:#f5b51b;
    color:#062544;
    transform:translateY(-2px);
}

.skyhire-footer .footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.skyhire-footer .footer-links li{
    margin:0 0 5px;
    line-height:1.35;
}

.skyhire-footer .footer-links a,
.skyhire-footer .skyhire-footer-legal a{
    color:#526579;
    font-size:14px;
    text-decoration:none;
    transition:color .2s ease;
}

.skyhire-footer .footer-links a:hover,
.skyhire-footer .footer-links a.active,
.skyhire-footer .skyhire-footer-legal a:hover{
    color:#d89a00;
}

.skyhire-footer .skyhire-footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin:0 0 8px;
}

.skyhire-footer .skyhire-footer-contact i{
    flex:0 0 16px;
    width:16px;
    color:#d89a00;
    text-align:center;
    margin-top:3px;
}

.skyhire-footer .skyhire-footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:14px;
    padding:9px 0 10px;
    border-top:1px solid #e3eaf1;
}

.skyhire-footer .skyhire-footer-bottom p,
.skyhire-footer .skyhire-footer-bottom a{
    font-size:12px;
}

.skyhire-footer .skyhire-footer-legal{
    display:flex;
    align-items:center;
    gap:16px;
}

.whatsapp-btn{
    position:fixed;
    left:20px;
    bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    font-size:27px;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(0,0,0,.22);
    z-index:9999;
    transition:transform .2s ease,background .2s ease;
}

.whatsapp-btn:hover{
    background:#1ebe57;
    color:#fff;
    transform:scale(1.06);
}

.back-top{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#003566;
    color:#fff;
    font-size:18px;
    box-shadow:0 10px 24px rgba(0,0,0,.22);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    z-index:9999;
    transition:opacity .2s ease,visibility .2s ease,transform .2s ease,background .2s ease;
}

.back-top:hover{
    background:#ffc107;
    color:#062544;
    transform:translateY(-3px);
}

@media(max-width:991px){
    footer.site-footer.skyhire-footer{padding-top:20px !important;}
    .skyhire-footer .skyhire-footer-main{row-gap:20px;}
}

@media(max-width:767px){
    footer.site-footer.skyhire-footer{padding-top:18px !important;}
    .skyhire-footer .footer-logo{width:112px;max-width:112px;height:48px;max-height:48px;}
    .skyhire-footer .skyhire-footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        gap:5px;
    }
    .whatsapp-btn{left:14px;bottom:14px;width:50px;height:50px;font-size:24px;}
    .back-top{right:14px;bottom:14px;width:44px;height:44px;}
}
/*================ TESTIMONIALS ================*/

.testimonials{
    background:#f8f9fa;
    padding:80px 0;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    font-style:italic;
    color:#555;
}

.testimonial-card h5{
    margin-top:20px;
    color:#003566;
    font-weight:700;
}
.search-section{
    margin-top:-45px;
    position:relative;
    z-index:100;
}

.search-section .row{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
/* ================= Buttons ================= */

.btn-warning{
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50px;
    font-weight:600;
    padding:0 28px;
    width:auto;
}
.search-section .btn-warning{
    width:100%;
}

.btn-warning:hover{
    transform:translateY(-2px);
}

.btn-outline-primary{
    border-radius:50px;
    font-weight:600;
    padding:10px 20px;
    transition:0.3s ease;
}

.btn-outline-primary:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-2px);
}
.btn-outline-primary{
    width:100%;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-outline-primary:hover{
    background:#0d6efd;
    color:#fff;
}
.airline-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    padding:20px;
    background:#fff;
}
