
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#333;
}

.top-bar{
background:#0d3b66;
color:#fff;
padding:8px 0;
font-size:14px;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.top-flex{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.top-flex a{
color:#fff;
text-decoration:none;
margin-right:20px;
}

header{
position:fixed;
top:36px;
left:0;
width:100%;
z-index:999;
background:rgba(255,255,255,.96);
backdrop-filter:blur(8px);
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

nav{
height:80px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:32px;
font-weight:700;
color:#0057d9;
}

.logo span{
color:#ff6b00;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#ff6b00;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
color:#fff;
}

.hero-content{
max-width:650px;
}

.hero h1{
font-size:58px;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
margin-right:15px;
font-weight:600;
transition:.3s;
}

.primary{
background:#ff6b00;
color:#fff;
}

.primary:hover{
background:#e55d00;
}

.secondary{
border:2px solid #fff;
color:#fff;
}

.secondary:hover{
background:#fff;
color:#0057d9;
}

.hero-features{
display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.hero-features div{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.hero-features i{
color:#ffb703;
}

@media(max-width:768px){

header{
top:70px;
}

.top-flex{
justify-content:center;
text-align:center;
gap:10px;
}

nav{
flex-direction:column;
height:auto;
padding:20px 0;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
margin-top:15px;
}

nav ul li{
margin:10px;
}

.hero{
text-align:center;
padding:0 20px;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:17px;
}

.hero-features{
justify-content:center;
}

}

/*----------------------*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:40px;

color:#0057d9;

margin-bottom:10px;

}

.section-title p{

color:#666;

}

/*----------------------*/

.services{

padding:100px 0;

background:#f8fbff;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card .icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:#0057d9;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.service-card i{

font-size:38px;

color:#fff;

}

.service-card h3{

margin-bottom:15px;

}

.service-card p{

color:#666;

margin-bottom:20px;

}

.service-card a{

text-decoration:none;

color:#ff6b00;

font-weight:600;

}

/*----------------------*/

.counter{

padding:90px 0;

background:linear-gradient(135deg,#0057d9,#0099ff);

color:#fff;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

text-align:center;

gap:30px;

}

.counter h2{

font-size:55px;

margin-bottom:10px;

font-weight:700;

}

.counter p{

font-size:18px;

}


/*========================*/

.destinations{

padding:100px 0;

background:#fff;

}

.destination-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.destination-card{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

background:#fff;

}

.destination-card:hover{

transform:translateY(-10px);

}

.destination-card img{

width:100%;

height:240px;

object-fit:cover;

}

.destination-content{

padding:25px;

}

.destination-content a{

color:#ff6b00;

text-decoration:none;

font-weight:600;

}

/*========================*/

.fleet{

padding:100px 0;

background:#f7fbff;

}

.fleet-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.fleet-card{

background:#fff;

padding:20px;

text-align:center;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.fleet-card img{

width:100%;

height:220px;

object-fit:cover;

border-radius:15px;

margin-bottom:15px;

}

/*========================*/

.testimonial{

padding:100px 0;

background:#0057d9;

color:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.testimonial-card{

background:rgba(255,255,255,.1);

padding:30px;

border-radius:20px;

backdrop-filter:blur(10px);

}

.testimonial-card h4{

margin-top:20px;

color:#FFD54F;

}


/* Gallery */

.gallery{
padding:100px 0;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:240px;
object-fit:cover;
border-radius:15px;
transition:.3s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* FAQ */

.faq{
padding:90px 0;
background:#f8fbff;
}

.faq-item{
background:#fff;
padding:25px;
margin-bottom:20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* CTA */

.cta{
background:#0057d9;
padding:80px 20px;
color:#fff;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

/* Contact */

.contact-home{
padding:100px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

footer{
background:#111827;
color:#fff;
padding:70px 0;
}

footer ul{
list-style:none;
padding:0;
}

footer a{
color:#fff;
text-decoration:none;
}

footer i{
margin-right:15px;
cursor:pointer;
}

/* Floating Buttons */

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:32px;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.top-btn{
position:fixed;
left:25px;
bottom:25px;
width:55px;
height:55px;
background:#ff6b00;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
text-decoration:none;
font-size:22px;
}


/*================ WHY CHOOSE US ================*/

.why-us{
padding:100px 0;
background:#ffffff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.why-card{
background:#fff;
padding:35px 30px;
text-align:center;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
border-top:4px solid #0057d9;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-icon{
width:80px;
height:80px;
margin:0 auto 20px;
background:#0057d9;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.why-icon i{
font-size:32px;
color:#fff;
}

.why-card h3{
margin-bottom:15px;
font-size:22px;
color:#222;
}

.why-card p{
color:#666;
line-height:1.8;
}