:root{
--primary:#0b2545;
--secondary:#ff9800;
--light:#f5f7fb;
--dark:#081826;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:var(--light);
color:#222;
overflow-x:hidden;
}

/* ================= NAVBAR ================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 5%;
z-index:9999;
background:rgba(11,37,69,0.90);
backdrop-filter:blur(8px);
transition:0.4s;
}

header.scrolled{
background:rgba(11,37,69,0.98);
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo h2{
color:white;
font-size:24px;
}

.logo-img{
width:65px;
height:65px;
object-fit:contain;
background:white;
padding:5px;
border-radius:50%;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
position:relative;
}

nav a:hover{
color:var(--secondary);
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:var(--secondary);
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

.menu-btn{
display:none;
font-size:30px;
color:white;
cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
}

.hero-content h1{
    font-size:56px;
    margin-bottom:20px;
    text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
    text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.slider{
width:100%;
height:100%;
position:relative;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
z-index:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(45%);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
width:90%;
max-width:900px;
z-index:2;
animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translate(-50%,-30%);
}

to{
opacity:1;
transform:translate(-50%,-50%);
}

}

.hero-content h1{
font-size:60px;
margin-bottom:20px;
line-height:1.2;
}

.hero-content p{
font-size:22px;
margin-bottom:30px;
line-height:1.6;
}

/* ================= BUTTON ================= */

.btn{
padding:15px 30px;
background:var(--secondary);
color:white;
text-decoration:none;
border-radius:10px;
display:inline-block;
font-weight:600;
border:none;
cursor:pointer;
transition:0.3s;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* ================= SECTION ================= */

.section{
padding:90px 5%;
}

.section-title{
text-align:center;
margin-bottom:45px;
}

.section-title h2{
font-size:40px;
color:var(--primary);
margin-bottom:10px;
}

/* ================= GRID ================= */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

/* ================= CARD ================= */

.card{
background:white;
padding:20px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:250px;
object-fit:contain;
background:#f5f5f5;
padding:10px;
border-radius:15px;
margin-bottom:15px;
}

.card h3{
margin-bottom:10px;
color:var(--primary);
}

.card p{
line-height:1.7;
color:#555;
}

.card-icon{
font-size:50px;
margin-bottom:15px;
}

/* ================= STATS ================= */

.stats-section{
background:linear-gradient(
135deg,
#0b2545,
#123763,
#1a4d82
);
padding:100px 5%;
}

.stats-container{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(230px,1fr));
gap:30px;
}

.stat-box{
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.15);
padding:45px 25px;
border-radius:25px;
text-align:center;
backdrop-filter:blur(10px);
transition:0.4s;
box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

.stat-box:hover{
transform:translateY(-10px);
background:rgba(255,255,255,0.12);
}

.stat-icon{
font-size:55px;
margin-bottom:20px;
}

.stat-box h2{
font-size:60px;
color:var(--secondary);
margin-bottom:15px;
font-weight:700;
}

.stat-box p{
font-size:20px;
color:white;
font-weight:500;
}

/* STATS HEADING FIX */

.stats-section .section-title h2{
color:#ffffff;
font-size:42px;
margin-bottom:15px;
text-shadow:0 2px 10px rgba(0,0,0,0.4);
}

.stats-section .section-title p{
color:#f1f1f1;
font-size:18px;
max-width:800px;
margin:0 auto 40px;
line-height:1.7;
}

.stats-section .section-title{
margin-bottom:50px;
text-align:center;
}
/* ===== STATS HEADING ===== */

.stats-section .section-title{
text-align:center;
margin-bottom:50px;
}

.stats-section .section-title h2{
color:#ffffff;
font-size:42px;
font-weight:700;
margin-bottom:15px;
text-shadow:0 3px 10px rgba(0,0,0,0.4);
}

.stats-section .section-title p{
color:#f8f8f8;
font-size:18px;
max-width:900px;
margin:auto;
line-height:1.8;
}

/* ================= FLEET ================= */

.fleet-heading{
margin:50px 0 20px;
font-size:32px;
color:var(--primary);
border-left:6px solid var(--secondary);
padding-left:15px;
}

/* ================= FLEET FILTER ================= */

.fleet-filter{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin:40px 0;
}

.fleet-filter button{
padding:12px 25px;
border:none;
background:white;
color:var(--primary);
border-radius:30px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.fleet-filter button:hover,
.fleet-filter button.active{
background:var(--secondary);
color:white;
transform:translateY(-3px);
}

/* ================= GALLERY ================= */

.gallery-container{
width:100%;
overflow:hidden;
padding:20px 0;
}

.gallery-slider{
display:flex;
align-items:center;
gap:20px;
width:max-content;
animation:moveGallery 45s linear infinite;
}

.gallery-slider img{
width:320px;
height:220px;
object-fit:cover;
border-radius:18px;
flex-shrink:0;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
transition:0.4s;
}

.gallery-slider img:hover{
transform:scale(1.05);
}

@keyframes moveGallery{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* ================= BOOKING ================= */

.booking{
background:white;
padding:35px;
border-radius:25px;
max-width:900px;
margin:auto;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.form-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

input,
select,
textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
outline:none;
}

textarea{
height:120px;
resize:none;
}

/* ================= MAP ================= */

..map-container{
max-width:800px;
margin:0 auto;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe{
height:300px;
}

/* ================= CLIENTS ================= */

.client-container{
width:100%;
overflow:hidden;
padding:20px 0;
}

.client-slider{
display:flex;
align-items:center;
gap:40px;
width:max-content;
animation:clientMove 20s linear infinite;
}

.client-slider img{
width:180px;
height:100px;
object-fit:contain;
background:white;
padding:15px;
border-radius:15px;
flex-shrink:0;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.4s;
}

.client-slider img:hover{
transform:scale(1.08);
}

@keyframes clientMove{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* ================= FOOTER ================= */

footer{
background:var(--dark);
padding:60px 5% 25px;
color:white;
margin-top:50px;
}

.footer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-top:30px;
}

footer h3{
margin-bottom:18px;
color:var(--secondary);
font-size:22px;
}

footer p,
footer a{
color:#ddd;
line-height:1.8;
text-decoration:none;
display:block;
transition:0.3s;
}

footer a:hover{
color:var(--secondary);
}

.social-links{
display:flex;
gap:15px;
margin-top:20px;
}

.social-links a{
width:45px;
height:45px;
background:rgba(255,255,255,0.08);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
}

.social-links a:hover{
background:var(--secondary);
transform:translateY(-5px);
}

.copyright{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.1);
font-size:15px;
}

/* ================= FLOAT BUTTONS ================= */

.float-btn,
.call-btn{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:white;
text-decoration:none;
z-index:999;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.float-btn{
bottom:20px;
background:#25d366;
}

.call-btn{
bottom:95px;
background:#ff9800;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

nav{
position:absolute;
top:80px;
left:-100%;
background:rgba(11,37,69,0.98);
width:100%;
flex-direction:column;
padding:25px;
transition:0.4s;
}

nav.active{
left:0;
}

.menu-btn{
display:block;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:16px;
}

.gallery-slider img{
width:240px;
height:170px;
}

.client-slider img{
width:120px;
height:70px;
}

.stat-box h2{
font-size:40px;
}

.stat-box p{
font-size:16px;
}

.stat-icon{
font-size:45px;
}

}