*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', sans-serif;
}

body{
background:#f4f6fa;
color:#333;
line-height:1.6;
}

/* HEADER */

header{
background:#0f172a;
padding:16px 8%;
position:sticky;
top:0;
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:white;
font-size:22px;
font-weight:bold;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
}

.menu-btn{
display:none;
font-size:24px;
color:white;
cursor:pointer;
}


/* HERO */

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('../images/truck.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:50px;
margin-bottom:15px;
animation:fadeUp 1s ease;
}

.hero p{
font-size:20px;
margin-bottom:25px;
animation:fadeUp 1.4s ease;
}

.btn{
background:#ff6b00;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}


/* SECTIONS */

.container{
width:85%;
margin:auto;
padding:70px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
}


/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}


/* CARD */

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
}

.card i{
font-size:40px;
color:#ff6b00;
margin-bottom:15px;
}

.card:hover{
transform:translateY(-6px);
}


/* PAGE HERO */

.page-hero{
background:#0f172a;
color:white;
text-align:center;
padding:80px 20px;
}

.page-hero h1{
font-size:40px;
margin-bottom:10px;
}


/* ABOUT */

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* FOUNDER SECTION */

.founder{
text-align:center;
}

.founder-card{
max-width:400px;
margin:auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.founder-card img{
width:160px;
height:160px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.founder-card h3{
margin-bottom:5px;
}

.founder-card .title{
color:#ff6b00;
font-weight:bold;
margin-bottom:10px;
}

.about-grid img{
width:100%;
border-radius:10px;
}


/* FLEET */

.fleet img{
width:100%;
height:180px;
object-fit:cover;
border-radius:10px;
}


/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

form input, form textarea{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:4px;
}

form button{
background:#ff6b00;
border:none;
padding:12px;
color:white;
cursor:pointer;
border-radius:4px;
}


/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:25px;
}


/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:28px;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,0.3);
}


/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* MOBILE */

@media(max-width:768px){

nav ul{
display:none;
flex-direction:column;
background:#0f172a;
position:absolute;
top:60px;
right:8%;
padding:20px;
}

nav ul.active{
display:flex;
}

.menu-btn{
display:block;
}

.hero h1{
font-size:36px;
}

.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

}

