*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f4f7fb;
color:#333;
line-height:1.6;
}

/* NAVBAR */

header{
background:#0b2a4a;
color:white;
}

.contact a{
  color:white;
  text-decoration:none;
  font-size:16px;
}

.contact a:hover{
  color:#facc15;
}

.nav-container{
max-width:1000px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px;
}

.logo{
height:150px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:900;
transition:0.3s;
}

nav a:hover{
color:#ff8c00;
}


.hero{
position:relative;
height:550px;
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url("oil-truck-banner.jpeg");
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

.hero-content{
z-index:2;
margin-bottom:80px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

/* VEHICLE SLIDER */

.vehicle-slider{
position:absolute;
bottom:20px;
width:100%;
overflow:hidden;
}

.vehicle-track{
display:flex;
gap:40px;
animation:moveVehicles 15s linear infinite;
}

.vehicle-track img{
width:200px;
height:auto;
}

/* ANIMATION */

@keyframes moveVehicles{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}




/* BUTTON */

.btn{
background:#ff8c00;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:600;
}

.btn:hover{
background:#e57c00;
}

/* SECTIONS */

.section{
padding:70px 10%;
text-align:center;
}

.section h2{
font-size:32px;
margin-bottom:25px;
color:#0b2a4a;
}

.gray{
background:#eef2f7;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* CARDS */

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
color:#0b2a4a;
margin-bottom:10px;
}

/* LEADER IMAGES */

.leader-img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

/* CONTACT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:30px;
text-align:left;
}

input, textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#ff8c00;
color:white;
padding:12px 20px;
border:none;
border-radius:5px;
cursor:pointer;
font-weight:600;
}

button:hover{
background:#e57c00;
}

/* MAP */

.map iframe{
width:100%;
height:350px;
border:none;
}

/* FOOTER */

footer{
background:#0b2a4a;
color:white;
text-align:center;
padding:20px;
}

.powered{
margin-top:8px;
font-size:14px;
color:#ddd;
}

/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:28px;
padding:14px;
border-radius:50%;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:1000;
}

.instagram{
position:fixed;
bottom:80px;
right:20px;
background:#E1306C;
color:white;
font-size:28px;
padding:14px;
border-radius:50%;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:1000;
}

.whatsapp:hover{
transform:scale(1.1);
}

.instagram:hover{
transform:scale(1.1);
}




.popup{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
z-index:999;
text-align:center;
}

.popup-content{
margin-top:80px;
max-width:80%;
max-height:80%;
}

.close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.gallery-grid img{
cursor:pointer;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}




.gallery-section{
background:#f4f7fb;
padding:70px 10%;
text-align:center;
}

.gallery-section h2{
font-size:32px;
margin-bottom:30px;
color:#0b2a4a;
}




.popup{
display:none;
position:fixed;
z-index:999;
padding-top:80px;
left:0;
top:0;
width:100%;
height:100%;
background-color:rgba(0,0,0,0.9);
}

.popup-content{
margin:auto;
display:block;
max-width:80%;
max-height:80%;
}

.close{
position:absolute;
top:30px;
right:40px;
color:white;
font-size:40px;
cursor:pointer;
}

.gallery-grid img{
cursor:pointer;
transition:0.3s;
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.gallery-grid img:hover{
transform:scale(1.05);
}
