*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f5f7fb;
color:#1b1b1b;
line-height:1.6;
}

/* NAVBAR */

header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:999;
background:#031B4E;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.navbar{
max-width:1300px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
}

.logo h2{
color:white;
font-size:28px;
font-weight:700;
letter-spacing:1px;
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#4DA3FF;
}

.call-btn{
background:#007BFF;
color:white;
padding:12px 22px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.call-btn:hover{
background:#005fd1;
transform:translateY(-2px);
}

/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 30px;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("images/truck.jpg");
background-size:cover;
background-position:center;
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:60px;
color:white;
margin-bottom:25px;
font-weight:700;
}

.hero p{
font-size:22px;
color:white;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:#007BFF;
color:white;
padding:18px 35px;
border-radius:40px;
text-decoration:none;
font-size:18px;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#005fd1;
transform:translateY(-4px);
}

.btn-secondary{
background:white;
color:#031B4E;
padding:18px 35px;
border-radius:40px;
text-decoration:none;
font-size:18px;
font-weight:600;
transition:.3s;
}

.btn-secondary:hover{
background:#ececec;
}

/* SERVICES */

.services{
padding:100px 50px;
background:white;
}

.services h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
color:#031B4E;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
max-width:1300px;
margin:auto;
}

.card{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.3s;
text-align:center;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:55px;
color:#007BFF;
margin-bottom:20px;
}

.card h3{
font-size:25px;
margin-bottom:15px;
color:#031B4E;
}

/* ABOUT */

.about{
padding:100px 50px;
background:#EEF5FF;
}

.about-text{
max-width:1100px;
margin:auto;
}

.about h2{
font-size:42px;
margin-bottom:25px;
color:#031B4E;
}

.about p{
font-size:19px;
margin-bottom:30px;
}

.about ul{
list-style:none;
}

.about li{
padding:10px 0;
font-size:18px;
}

/* CTA */

.cta{
padding:100px 30px;
text-align:center;
background:#031B4E;
color:white;
}

.cta h2{
font-size:44px;
margin-bottom:20px;
}

.cta p{
font-size:20px;
margin-bottom:40px;
}

/* FOOTER */

footer{
background:#021231;
color:white;
padding:70px 30px 25px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
max-width:1200px;
margin:auto;
}

.footer-container h3,
.footer-container h4{
margin-bottom:18px;
}

.footer-container p{
margin-bottom:12px;
}

.copyright{
text-align:center;
margin-top:50px;
font-size:15px;
opacity:.8;
}

/* RESPONSIVE */

@media(max-width:900px){

.navbar{
flex-direction:column;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.services,
.about,
.cta{
padding:70px 20px;
}

.services h2,
.about h2,
.cta h2{
font-size:34px;
}

.call-btn{
display:none;
}

}

.quote-page{

padding:150px 20px 80px;

background:#f5f7fb;

min-height:100vh;

}

.quote-container{

max-width:950px;

margin:auto;

background:white;

padding:50px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.quote-container h1{

font-size:42px;

margin-bottom:15px;

color:#031B4E;

}

.quote-container p{

margin-bottom:35px;

font-size:18px;

}

.row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.quote-container input,

.quote-container select,

.quote-container textarea{

width:100%;

padding:16px;

border:1px solid #d6d6d6;

border-radius:10px;

font-size:16px;

}

.quote-container textarea{

resize:vertical;

margin-bottom:25px;

}

.quote-container button{

width:100%;

background:#007BFF;

color:white;

border:none;

padding:18px;

font-size:18px;

border-radius:10px;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.quote-container button:hover{

background:#005fd1;

}

@media(max-width:768px){

.row{

grid-template-columns:1fr;

}

.quote-container{

padding:30px;

}

}
/* ===== SERVICES ===== */

.services{
    padding:100px 8%;
    background:#f8f9fc;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#002b6b;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#0057ff;
    margin-bottom:20px;
}

.service-card h3{
    color:#002b6b;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}.stats{
display:flex;
justify-content:center;
gap:60px;
margin-top:60px;
flex-wrap:wrap;
}

.stat{
color:white;
text-align:center;
}

.stat h2{
font-size:42px;
color:#0d6efd;
margin-bottom:10px;
font-weight:700;
}

.stat p{
font-size:18px;
}/* WHY US */

.why-us{
padding:100px 30px;
background:#0b1635;
}

.why-us .section-title{
text-align:center;
margin-bottom:60px;
}

.why-us h2{
font-size:44px;
color:white;
margin-bottom:15px;
}

.why-us .section-title p{
color:#d6d6d6;
font-size:18px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.why-card{
background:white;
padding:40px 30px;
border-radius:18px;
text-align:center;
transition:.35s;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.why-card:hover{
transform:translateY(-12px);
}

.why-card i{
font-size:55px;
color:#0d6efd;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
font-size:24px;
}

.why-card p{
color:#666;
line-height:1.7;
}/* PROCESS */

.process{
padding:100px 30px;
background:#f7f9fc;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:60px;
}

.process-card{
background:white;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 20px 45px rgba(0,0,0,.08);
transition:.3s;
}

.process-card:hover{
transform:translateY(-10px);
}

.number{
width:70px;
height:70px;
margin:auto;
margin-bottom:25px;
background:#0d6efd;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
font-weight:bold;
}

.process-card h3{
margin-bottom:15px;
font-size:24px;
}

.process-card p{
color:#666;
line-height:1.7;
}/* COMPANY STATS */

.stats-section{

padding:90px 30px;

background:#0d6efd;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.stat-box{

text-align:center;

color:white;

}

.stat-box h2{

font-size:60px;

font-weight:700;

margin-bottom:15px;

}

.stat-box p{

font-size:20px;

letter-spacing:1px;

}/* QUOTE BANNER */

.quote-banner{

background:#002b6b;

padding:90px 40px;

}

.quote-banner-content{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

flex-wrap:wrap;

}

.quote-banner h2{

color:white;

font-size:42px;

margin-bottom:20px;

}

.quote-banner p{

color:#d9d9d9;

font-size:18px;

max-width:700px;

line-height:1.8;

}

.quote-banner .btn-primary{

font-size:20px;

padding:20px 40px;

}.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:75px;
    height:75px;
}

.logo span{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
}