*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#055190;
    --dark:#00103c;
    --orange:#f27909;
    --white:#ffffff;
    --light:#f5f7fa;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:var(--white);
}

/* =========================
NAVBAR
========================= */

.custom-navbar{
    background:rgba(0,16,60,.92);
    backdrop-filter:blur(10px);
    padding:16px 0;
    transition:.4s;
}

.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.brand-text{
    color:var(--white);
    font-size:26px;
    font-weight:700;
    margin-left:10px;
}

.nav-link{
    color:var(--white) !important;
    margin-left:18px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-link::after{
    content:'';
    width:0;
    height:2px;
    background:var(--orange);
    position:absolute;
    left:0;
    bottom:-5px;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-link:hover{
    color:var(--orange) !important;
}

.login-btn{
    background:var(--orange);
    color:var(--white);
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    border:none;
    transition:.4s;
}

.login-btn:hover{
    background:var(--white);
    color:var(--primary);
    transform:translateY(-3px);
}

/* =========================
HERO SECTION
========================= */

.hero-section{
    background:
    linear-gradient(rgba(0,16,60,.78),rgba(0,16,60,.78)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.2;
    color:var(--white);
}

.hero-title span{
    color:var(--orange);
}

.hero-text{
    color:#ddd;
    font-size:19px;
    margin:25px 0;
    line-height:1.8;
}

.hero-btn{
    background:var(--orange);
    color:var(--white);
    padding:16px 38px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
}

.hero-btn:hover{
    background:var(--white);
    color:var(--primary);
    transform:translateY(-5px);
}

.hero-car{
    max-width:95%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================
BOOKING BOX
========================= */

.booking-box{
    background:var(--white);
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.1);
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.booking-box input,
.booking-box select{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

.booking-box button{
    height:55px;
    border:none;
    background:var(--orange);
    color:var(--white);
    border-radius:12px;
    font-weight:600;
}

/* =========================
SERVICES
========================= */

.services-section{
    padding:100px 0;
    background:var(--light);
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:var(--dark);
}

.service-card{
    background:var(--white);
    padding:45px 30px;
    border-radius:25px;
    text-align:center;
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    width:100%;
    height:5px;
    background:var(--orange);
    position:absolute;
    left:0;
    top:0;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-card i{
    font-size:60px;
    color:var(--orange);
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

/* =========================
DESTINATIONS
========================= */

.destination-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.destination-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.destination-card:hover img{
    transform:scale(1.1);
}

.destination-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,rgba(0,0,0,.8));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.destination-overlay h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
}

/* =========================
WHY US
========================= */

.why-section{
    padding:100px 0;
}

.why-box{
    background:#fff;
    padding:22px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateX(10px);
}

.why-box i{
    color:green;
    margin-right:12px;
    font-size:20px;
}

/* =========================
COUNTER SECTION
========================= */

.counter-section{
    background:var(--primary);
    padding:80px 0;
    color:#fff;
}

.counter-box h2{
    font-size:52px;
    font-weight:800;
}

.counter-box p{
    font-size:18px;
}

/* =========================
TESTIMONIAL
========================= */

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.testimonial-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

/* =========================
FOOTER
========================= */

.footer-section{
    background:var(--dark);
    color:#fff;
    padding:90px 0 20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--orange);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

    .hero-section{
        text-align:center;
        padding:120px 0;
    }

    .hero-car{
        margin-top:50px;
    }

    .section-title{
        font-size:38px;
    }
}

@media(max-width:576px){

    .hero-title{
        font-size:34px;
    }

    .hero-text{
        font-size:16px;
    }

    .brand-text{
        font-size:18px;
    }

    .logo-img{
        width:45px;
        height:45px;
    }

    .booking-box{
        margin-top:30px;
    }
}