@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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



body{
background:#fafafa;
color:#333;
line-height:1.6;
}

header{
background:linear-gradient(90deg, #fff 30%, #e74a3b 50%);
padding:15px 10%;
position:sticky;
top:0;
z-index:999;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}


nav a{
color:white;
text-decoration:none;
margin-left:15px;
font-weight:500;
}

.hero{
background:linear-gradient(#00000080,#00000080),url(../img/tanker.png);
background-size:cover;
background-position: center;
padding:100px 10%;
color:white;
text-align:center;
}

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

.btn{
background:#e74a3b;
padding:12px 25px;
border-radius:6px;
color:white;
text-decoration:none;
display:inline-block;
margin-top:15px;
border:none;
cursor:pointer;
}

.container{
padding:60px 10%;
}

section{
margin-bottom:60px;
}

h2{
margin-bottom:20px;
font-size:28px;
color:#222;
}

.roidiv{
    float:left;
    background-color: red;
}
.innercard{
    background-color: rgba(255,255,255,.8);
    width: 100%;
    height: 150px;
    padding:5px;
    border-radius: 5px;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,.05);
transition:.3s;
}

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

.counter{
font-size:32px;
font-weight:700;
color:#e74a3b;
}

input{
width:100%;
padding:12px;
margin:10px 0;
border-radius:6px;
border:1px solid #ccc;
}

.testimonial{
background:white;
padding:20px;
border-radius:10px;
font-size:14px;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.fade{
opacity:1;
transform:translateY(0);
transition:.8s ease;
}

.fade.animate{
opacity:0;
transform:translateY(30px);
}

.fade.show{
opacity:1;
transform:translateY(0);
}

footer{
background:#111;
color:white;
padding:40px 10%;
text-align:center;
}
/* MOBILE NAV */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
/* background:#111; */
color:#fff;
}

.logo{
color:#ff7a00;
}

.nav-links{
display:flex;
gap:15px;
}

.nav-links a{
color:#fff;
text-decoration:none;
}

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:#fff;
margin:4px 0;
}

/* MOBILE */

@media(max-width:768px){

.nav-links{
position:absolute;
top:148px;
left:0;
width:100%;
background:#e74a3b;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:flex;
}

}


@media(max-width:600px){
    header{
        background:linear-gradient(90deg, #e74a3b 30%, #e74a3b 50%); }
.hero h1{font-size:30px;}
.container{padding:40px 5%;}
nav{justify-content:center;display:none}
nav h2{width:100%;text-align:center;margin-bottom:10px;}
}
