/*======================================
    GOOGLE FONT & RESET
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0058BF;
    --secondary:#00b894;
    --dark:#0b1320;
    --light:#ffffff;
    --text:#6b7280;
    --bg:#f8fafc;
    --border:#e5e7eb;
    --shadow:0 20px 60px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);
    margin:auto;

}

.section{

    padding:90px 0;

}

.section-heading{

    text-align:center;
    max-width:700px;
    margin:0 auto 60px;

}

.section-heading span{

    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    font-size:.85rem;

}

.section-heading h2{

    margin-top:10px;
    font-size:2.6rem;
    font-weight:700;

}

.section-heading p{

    margin-top:15px;
    color:var(--text);

}

/*======================================
            BUTTONS
======================================*/

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    transition:var(--transition);
    font-weight:600;
    box-shadow:0 15px 40px rgba(13,110,253,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:50px;
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
    transition:var(--transition);

}

.btn-secondary:hover{

    background:#fff;
    color:var(--dark);

}

/*======================================
            HEADER
======================================*/

.header{

    position:fixed;
    width:100%;
    left:0;
    top:0;
    z-index:999;

   background:rgba(5,18,33,.25);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.18);

}

.navbar{

    height:110px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:1.7rem;
    font-weight:700;
    white-space:nowrap;
}


.nav-menu{

    display:flex;
    gap:38px;

}

.nav-menu a{

    color:#fff;
    font-weight:500;
    transition:.3s;

}

.nav-menu a:hover{

    color:#0058BF;

}

/*======================================
            HERO
======================================*/

.hero{

    position:relative;
    min-height:100vh;
 padding: 140px 0 100px;
    display:flex;
    align-items:center;

 background:
linear-gradient(rgba(5,18,33,.75),rgba(5,18,33,.75)),
url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=80");

background-size:cover;
background-position:center;
background-attachment:fixed;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(5,18,33,.82),
        rgba(5,18,33,.45)
    );

}

.hero-wrapper{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:58% 42%;
    gap:60px;
    align-items:center;

}

.hero-left{

    color:#fff;

}

.tag{

    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:20px;

    backdrop-filter:blur(12px);

}

.hero-left h1{

    font-size:3.8rem;
    line-height:1.1;
    margin-bottom:25px;

}

.hero-left p{

    max-width:560px;
    color:#dde5ef;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-bottom:35px;

}

.hero-features{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.hero-features div{

    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;

}

.hero-features i{

    color:#00d084;

}

/*======================================
        BOOKING CARD
======================================*/

.booking-card{

   background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 30px 80px rgba(0,0,0,.18);
max-width:520px;
margin-left:auto;
position:relative;
z-index:5;


}

.booking-card h2{

    font-size:2rem;
    margin-bottom:5px;

}

.booking-card p{

    color:var(--text);
    margin-bottom:25px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    display:block;
    margin-bottom:8px;
    font-size:.9rem;
    font-weight:600;

}

.form-group input,
.form-group select{

    width:100%;
    padding:15px;
    border:1px solid var(--border);
    border-radius:12px;
    outline:none;
    transition:.3s;
    background:#fff;

}

.form-group input:focus,
.form-group select:focus{

    border-color:var(--primary);

}

.form-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;

}

.trip-type{

    display:flex;
    gap:20px;
    margin:20px 0;

}

.trip-type label{

    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;

}

.booking-btn{

    width:100%;
    border:none;
    background:var(--primary);
    color:#fff;
    padding:17px;
    border-radius:12px;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}

.booking-btn:hover{

    background:#005ce6;
    transform:translateY(-2px);

}

/*======================================
            STATS
======================================*/

.stats{

    margin-top:-60px;
    position:relative;
    z-index:10;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.stat-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);

}

.stat-card h2{

    color:var(--primary);
    font-size:2.3rem;
    margin-bottom:10px;

}

.stat-card p{

    color:var(--text);

}
/*======================================
            SERVICES
======================================*/

.services{
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid #eef2f7;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.service-card i{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:#0058BF;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

/*======================================
            FLEET
======================================*/

.fleet{
    background:#f8fafc;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.fleet-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.35s;
}

.fleet-card:hover{
    transform:translateY(-12px);
}

.fleet-card img{
    height:240px;
    object-fit:cover;
}

.fleet-content{
    padding:25px;
}

.fleet-content h3{
    font-size:24px;
    margin-bottom:10px;
}

.fleet-content p{
    color:#666;
    margin-bottom:18px;
}

.fleet-content ul{
    display:flex;
    justify-content:space-between;
    color:#555;
    font-size:15px;
}

.fleet-content li i{
    color:#0d6efd;
    margin-right:6px;
}

/*======================================
            ROUTES
======================================*/

.route-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.route-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.route-card:hover{
    background:#0058BF;
    color:#fff;
    transform:translateY(-8px);
}

.route-card span{
    display:block;
    font-size:26px;
    margin:15px 0;
    color:#00b894;
}

.route-card:hover span{
    color:#fff;
}

/*======================================
          WHY CHOOSE US
======================================*/

.why-us{
    background:#0b1320;
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.subtitle{
    color:#00d084;
    font-weight:600;
    letter-spacing:2px;
}

.why-grid h2{
    font-size:42px;
    margin:15px 0 20px;
}

.why-grid p{
    color:#d7d7d7;
}

.why-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-items div{
    background:rgba(255,255,255,.06);
    padding:30px;
    border-radius:18px;
    transition:.3s;
}

.why-items div:hover{
    background:#0d6efd;
}

.why-items i{
    font-size:30px;
    margin-bottom:18px;
    color:#00d084;
}

.why-items h4{
    font-size:18px;
}

/*======================================
            PROCESS
======================================*/

.process{
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-grid div{
    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.3s;
}

.process-grid div:hover{
    transform:translateY(-8px);
}

.process-grid h3{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:28px;
}

.process-grid p{
    font-weight:600;
}

/*======================================
              CTA
======================================*/

.cta{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(135deg,#0d6efd,#01265D);
    color:#fff;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    max-width:650px;
    margin:auto;
    margin-bottom:35px;
    color:#eef5ff;
}

.cta .btn-primary{
    background:#fff;
    color:#0d6efd;
}

.cta .btn-primary:hover{
    background:#ffd166;
    color:#111;
}

/*======================================
              FOOTER
======================================*/

.footer{
    background:#08101d;
    color:#fff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
}

.footer h3{
    font-size:28px;
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:18px;
}

.footer p{
    color:#b8c2cc;
    line-height:1.8;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#b8c2cc;
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:8px;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px;
    color:#94a3b8;
}

/*======================================
        SIMPLE ANIMATIONS
======================================*/

.service-card,
.fleet-card,
.route-card,
.stat-card,
.process-grid div{
    transition:all .35s ease;
}

.service-card:hover,
.fleet-card:hover,
.route-card:hover,
.process-grid div:hover,
.stat-card:hover{
    transform:translateY(-10px);
}

/*======================================
      IMAGE HOVER EFFECT
======================================*/

.fleet-card{
    overflow:hidden;
}

.fleet-card img{
    transition:transform .5s;
}

.fleet-card:hover img{
    transform:scale(1.08);
}
.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.header.sticky{
   background:#06111f;
    transition:.35s;
}

.scrollTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.scrollTop.show{
    opacity:1;
    visibility:visible;
}

.nav-menu a.active{
    color:#ffd166;
}
.trust-bar{

background:#fff;
padding:20px 0;
box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.trust-bar .container{

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;

}

.trust-bar div{

font-weight:600;

}

.trust-bar i{

color:#0d6efd;
margin-right:8px;

}
/*======================================
            CONTACT
======================================*/

.contact{

background:#fff;

}

.contact-wrapper{

display:grid;

grid-template-columns:40% 60%;

gap:50px;

margin-top:50px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-card{

display:flex;

align-items:center;

gap:20px;

padding:25px;

background:#f8fafc;

border-radius:18px;

transition:.3s;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.contact-card:hover{

transform:translateY(-6px);

}

.contact-card i{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#0d6efd;

color:#fff;

font-size:28px;

}

.contact-card h3{

margin-bottom:8px;

}

.contact-card p{

color:#666;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form h3{

margin-bottom:25px;

font-size:30px;

}

.contact-form textarea{

width:100%;

padding:18px;

border:1px solid #ddd;

border-radius:12px;

outline:none;

resize:none;

font-family:Poppins;

}

.contact-form textarea:focus{

border-color:#0d6efd;

}

.map-section{

height:450px;

}

.map-section iframe{

width:100%;

height:100%;

border:0;

}
/* ================= LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.logo-img{
    height:95px;
    width:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 4px 12px rgba(0,0,0,.30));
    transition:.3s;
}

.logo-img:hover{
    transform:scale(1.05);
}


@media (max-width:768px){

.logo-img{
    height:65px;
}

}