@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2681ff;
    --secondary: #32a8dd;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #64748b;
    --bg: #f8fafc;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: #222;
    overflow-x: hidden;
}

/* Top Bar */

.top-bar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar i {
    margin-right: 8px;
    color: #38bdf8;
}

/* Navbar */

.navbar {
    padding: 18px 0;
    transition: .4s;
}

.navbar-brand {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
}

.nav-link {
    color: #1e293b !important;
    font-weight: 600;
    margin-left: 10px;
    transition: .3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
}

/* Hero Section */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(15, 23, 42, .85),
            rgba(15, 23, 42, .85)),
        url('2.avif');

    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;

}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: .9;
}

.hero-section img {
    border-radius: 25px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .4);
}

/* Buttons */

.btn-primary {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 15px 35px;
}

/* Search Section */

#flight-search {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

#flight-search .container {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
}

/* Section Heading */

section h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--dark);
}

/* Service Cards */

.service-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .04);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(38, 129, 255, .15);
}

.service-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: var(--primary);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Why Us */

.why-us {
    background: #fff !important;
}

.why-us img {
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .1);
}

.why-us .fa-check-circle {
    margin-right: 10px;
    font-size: 20px;
}

/* Statistics */

.stats-section {
    background:
        linear-gradient(135deg,
            #2681ff,
            #32a8dd);
}

.stats-section h2 {
    font-size: 3rem;
    color: white;
}

.stats-section p {
    font-size: 18px;
}

/* Testimonials */

.testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    transition: .4s;
    border: 1px solid var(--border);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* CTA */

.cta-section {
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e3a8a);
}

.cta-section h2 {
    color: #fff;
    font-size: 3rem;
}

.cta-section .btn {
    border-radius: 50px;
    font-weight: 700;
    padding: 15px 35px;
}

/* Footer */

.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-section h4,
.footer-section h5 {
    color: #fff;
    margin-bottom: 25px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer-section a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section hr {
    border-color: #334155;
    margin: 40px 0 20px;
}

/* Images */

img {
    max-width: 100%;
}

/* Scrollbar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #2681ff;
    border-radius: 20px;
}

/* Responsive */

@media(max-width:991px) {

    .hero-section {
        text-align: center;
        padding: 100px 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section img {
        margin-top: 40px;
    }

    section h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }


}

@media(max-width:576px) {

    .top-bar {
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-brand {
        font-size: 20px !important;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 25px;
    }

    #flight-search .container {
        padding: 20px;
    }


}