/* =========================================
   THINK2FLY FIX - PART 1
   Header + Navbar + Hero
========================================= */

/* Logo */
.logo{
    height:65px;
    width:auto;
    display:block;
}

/* Top Header */

.top-header{
    background:#0D47A1;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-header a{
    color:#fff;
    text-decoration:none;
}

.top-header a:hover{
    color:#FFC107;
}

.top-contact,
.top-social{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
    gap:18px;
}

.top-contact li,
.top-social li{
    display:flex;
    align-items:center;
}

.top-social{
    justify-content:flex-end;
}

/* Navbar */

.navbar{
    background:#fff;
    padding:15px 0;
    transition:.3s;
    z-index:999;
}

.navbar-nav .nav-link{
    font-size:15px;
    font-weight:600;
    color:#222;
    padding:12px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#0D47A1;
}

.navbar-toggler{
    border:none;
    box-shadow:none!important;
}

/* Hero */

.hero-section{
    background:linear-gradient(135deg,#0D47A1,#1976D2);
    color:#fff;
    padding:110px 0;
}

.hero-section h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
}

.hero-section p{
    color:#f1f1f1;
    font-size:17px;
}

.hero-section .btn-primary{
    background:#fff;
    color:#0D47A1;
    border:none;
}

.hero-section .btn-primary:hover{
    background:#FFC107;
    color:#000;
}

.hero-section .btn-outline-primary{
    border:2px solid #fff;
    color:#fff;
}

.hero-section .btn-outline-primary:hover{
    background:#fff;
    color:#0D47A1;
}

/* Sticky */

.sticky-top{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Responsive */

@media(max-width:991px){

.top-header{
    display:none;
}

.navbar-brand img,
.logo{
    height:55px;
}

.hero-section{
    text-align:center;
    padding:70px 0;
}

.hero-section h1{
    font-size:38px;
}

.hero-section img{
    margin-top:35px;
}

}

/* =========================================
   THINK2FLY FIX - PART 2
   Cards + Footer + Sections
========================================= */

/* Common Cards */

.card,
.job-card,
.country-card,
.service-card,
.blog-card,
.testimonial-card{

    background:#fff;
    border:none;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;

}

.card:hover,
.job-card:hover,
.country-card:hover,
.service-card:hover,
.blog-card:hover,
.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* Images */

.job-image img,
.country-card img,
.blog-card img,
.gallery-item img{

    width:100%;
    display:block;
    object-fit:cover;
    transition:.4s;

}

.job-card:hover img,
.country-card:hover img,
.blog-card:hover img,
.gallery-item:hover img{

    transform:scale(1.08);

}

/* Job */

.job-content{

    padding:25px;

}

.job-meta{

    display:flex;

    justify-content:space-between;

    margin:15px 0;

    flex-wrap:wrap;

    gap:10px;

}

.salary{

    color:#198754;

    font-weight:700;

    font-size:20px;

}

/* Country */

.country-card .content{

    padding:25px;

}

/* Service */

.service-card{

    text-align:center;

    padding:40px 30px;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#E3F2FD;

    color:#0D47A1;

    font-size:34px;

}

.service-card:hover{

    background:#0D47A1;

    color:#fff;

}

.service-card:hover h4,
.service-card:hover p{

    color:#fff;

}

.service-card:hover .service-icon{

    background:#fff;

}

/* Blog */

.blog-content{

    padding:25px;

}

.blog-date{

    font-size:14px;

    color:#777;

}

/* Gallery */

.gallery-item{

    border-radius:15px;

    overflow:hidden;

    position:relative;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(13,71,161,.75);

    opacity:0;

    transition:.3s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    font-size:40px;

    color:#fff;

}

/* Testimonials */

.testimonial-card{

    padding:30px;

    text-align:center;

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    margin-bottom:20px;

}

/* Footer */

.footer-area{

    background:#111827;

    color:#fff;

    padding:80px 0 20px;

}

.footer-area h4{

    color:#fff;

    margin-bottom:20px;

}

.footer-area p{

    color:#d1d5db;

}

.footer-links{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d1d5db;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#0D47A1;

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:40px;

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:20px;

}

.footer-bottom p{

    margin:0;

    color:#d1d5db;

}

/* Mobile */

@media(max-width:991px){

.job-meta{

    flex-direction:column;

}

.footer-area{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}