*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#000;
color:#fff;
overflow-x:hidden;
}

/* NAVBAR */
nav{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:rgba(0,0,0,.92);
backdrop-filter:blur(10px);
display:flex;
justify-content:space-between;
align-items:center;
padding:0 60px;
z-index:9999;
}

.logo img{
height:65px;
}

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

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

.nav-links a:hover{
color:#95C11F;
}

.call-btn-nav{
padding:14px 28px;
border:2px solid #95C11F;
border-radius:50px;
text-decoration:none;
color:#95C11F;
font-weight:700;
}

/* HERO */
.hero{
min-height:100vh;
background:
linear-gradient(
90deg,
rgba(0,0,0,.95) 0%,
rgba(0,0,0,.85) 35%,
rgba(0,0,0,.20) 100%
),
url('hero-truck.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
padding:140px 80px;
}

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

.hero-logo{width:180px;margin-bottom:20px;}

.hero h1{
font-family:'Bebas Neue',sans-serif;
font-size:170px;
line-height:.85;
letter-spacing:2px;
}

.hero h1 span{color:#95C11F;}

.hero h2{
font-size:32px;
letter-spacing:4px;
margin-top:10px;
}

.hero p{
margin-top:20px;
font-size:20px;
color:#ddd;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:40px;
}

.btn-primary{
background:#95C11F;
color:black;
padding:18px 35px;
border-radius:50px;
font-weight:800;
text-decoration:none;
}

.btn-secondary{
border:2px solid #95C11F;
color:white;
padding:18px 35px;
border-radius:50px;
font-weight:700;
text-decoration:none;
}

.contact-wrapper{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.contact-card{
background:#111;
padding:40px;
border-radius:15px;
text-align:center;
border:1px solid rgba(149,193,31,.2);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
border-color:#95C11F;
}

.contact-card i{
font-size:42px;
color:#95C11F;
margin-bottom:15px;
}

.contact-card h3{
margin-bottom:10px;
}

/* FEATURES */
.features{
display:grid;
grid-template-columns:repeat(4,1fr);
background:#070707;
}

.feature{
padding:35px;
border-right:1px solid rgba(149,193,31,.15);
text-align:center;
}

.feature i{
font-size:42px;
color:#95C11F;
margin-bottom:15px;
}

.feature h3{margin-bottom:10px;}

/* SECTIONS */
section{
padding:100px 80px;
}

.section-title{
font-size:48px;
font-weight:800;
text-align:center;
margin-bottom:50px;
color:#95C11F;
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.service-card{
background:#111;
padding:35px;
border-radius:15px;
border:1px solid rgba(149,193,31,.2);
transition:.3s;
}

.service-card:hover{
transform:translateY(-10px);
border-color:#95C11F;
}

.service-card i{
font-size:45px;
color:#95C11F;
margin-bottom:20px;
}

.service-card h3{margin-bottom:15px;}

.about-container{
display:grid;
grid-template-columns:2fr 1fr;
gap:50px;
max-width:1200px;
margin:auto;
align-items:center;
}

.about-text h3{
font-size:34px;
margin-bottom:20px;
color:#95C11F;
}

.about-text p{
color:#ddd;
line-height:1.9;
margin-bottom:20px;
}

.about-stats{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.stat-box{
background:#111;
padding:30px;
border-radius:15px;
text-align:center;
border:1px solid rgba(149,193,31,.2);
}

.stat-box h4{
font-size:28px;
color:#95C11F;
margin-bottom:10px;
}

/* WHY US */
.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.why-item{
background:#111;
padding:25px;
border-radius:10px;
}

.why-item i{
color:#95C11F;
margin-right:10px;
}

/* CONTACT */
.contact{
text-align:center;
}

.contact-info{
font-size:22px;
line-height:2.2;
}

/* FOOTER */
footer{
background:#050505;
padding:50px;
text-align:center;
border-top:1px solid rgba(149,193,31,.15);
}

footer p{color:#aaa;}

/* MOBILE */
@media(max-width:991px){

nav{padding:20px;}

.nav-links{display:none;}

.hero{padding:130px 25px;}

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

.hero-buttons{flex-direction:column;}

.features{grid-template-columns:1fr;}

.why-grid{grid-template-columns:1fr;}

section{padding:80px 25px;}
}

@media(max-width:991px){

    nav{
        padding:20px;
    }

    .nav-links{
        display:none;
    }

    .hero{
        padding:130px 25px;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

    .features{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-brand p{
        max-width:100%;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    section{
        padding:80px 25px;
    }
}@media(max-width:576px){

    .about-stats{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:34px;
    }

    .about-text h3{
        font-size:26px;
    }

    .contact-card{
        padding:30px 20px;
    }

    .stat-box{
        padding:20px;
    }
}

.footer{
    background:#050505;
    border-top:1px solid rgba(149,193,31,.15);
    margin-top:50px;
}

.footer-top{
    max-width:1200px;
    margin:auto;
    padding:60px 25px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-brand h3{
    color:#95C11F;
    margin-bottom:15px;
}

.footer-brand p{
    color:#aaa;
    line-height:1.8;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#95C11F;
}

.footer-contact p{
    color:#ccc;
}

.footer-socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#95C11F;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(149,193,31,.15);
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    text-align:center;
}

.sponsor{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}

.sponsor img{
    height:32px;
    width:auto;
    max-width:100%;
}

.sponsor span{
    color:#95C11F;
    font-weight:700;
}/* Tablet */
@media (max-width: 991px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
    }

    .sponsor{
        justify-content:center;
    }
}

/* Mobile */
@media (max-width: 576px){

    .footer{
        overflow:hidden;
    }

    .footer-top{
        padding:50px 20px;
    }

    .footer-bottom{
        padding:20px;
    }

    .sponsor{
        flex-direction:column;
        gap:8px;
    }

    .sponsor img{
        height:28px;
    }

    .copyright,
    .sponsor{
        width:100%;
    }
}