/* ===============================
   LOADUP FREIGHT
   Professional Logistics Website
=================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#2c3e50;
    line-height:1.7;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*================ NAVBAR ================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(8,22,48,.82);
    backdrop-filter:blur(10px);
}

.logo h2{
    color:#fff;
    font-size:30px;
    font-weight:800;
}

.logo span{
    color:#00a8ff;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    color:#fff;
    transition:.3s;
    font-weight:500;
}

.navbar ul li a:hover{
    color:#00a8ff;
}

.quoteBtn{
    background:#00a8ff;
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.quoteBtn:hover{
    background:#0088d8;
}

/*================ HERO ================*/

.hero{
    height:100vh;
    background:url("header.png") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
}

.heroContent{
    position:relative;
    z-index:5;
    width:90%;
    max-width:900px;
}

.hero h1{
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:25px;
}

.hero p{
    color:#fff;
    font-size:20px;
    margin-bottom:40px;
}

.heroButtons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btnPrimary{
    background:#00a8ff;
    color:#fff;
    padding:16px 36px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btnSecondary{
    border:2px solid white;
    color:#fff;
    padding:16px 36px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btnPrimary:hover{
    transform:translateY(-4px);
    background:#0088d8;
}

.btnSecondary:hover{
    background:white;
    color:#0b1f3f;
}

/*================ GENERAL ================*/

section{
    padding:100px 0;
}

.sectionTitle{
    text-align:center;
    margin-bottom:60px;
}

.sectionTitle h5{
    color:#00a8ff;
    letter-spacing:2px;
    margin-bottom:10px;
}

.sectionTitle h2{
    font-size:42px;
    color:#0b1f3f;
}

/*================ ABOUT ================*/

.about .container{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.about h5{
    color:#00a8ff;
}

.about h2{
    font-size:40px;
    margin:15px 0 25px;
}

.about p{
    margin-bottom:18px;
}

.right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    font-size:38px;
    color:#00a8ff;
}

/*================ SERVICES ================*/

.serviceGrid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.serviceCard{
    background:white;
    border-radius:18px;
    padding:40px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.serviceCard:hover{
    transform:translateY(-12px);
}

.serviceCard i{
    font-size:50px;
    color:#00a8ff;
    margin-bottom:20px;
}

.serviceCard h3{
    margin-bottom:15px;
    color:#0b1f3f;
}

/*================ WHY ================*/

.why{
    background:#081630;
    color:white;
}

.why .container{
    text-align:center;
}

.why h5{
    color:#00a8ff;
}

.why h2{
    font-size:42px;
    margin-bottom:50px;
}

.whyGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.whyGrid div{
    background:rgba(255,255,255,.08);
    padding:35px;
    border-radius:15px;
}

.whyGrid i{
    color:#00a8ff;
    font-size:45px;
    margin-bottom:20px;
}

/*================ FLEET ================*/

.fleet{
    width:90%;
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.fleet p{
    font-size:18px;
}

/*================ TRACKING ================*/

.technology{
    background:#eef5fb;
}

.technology ul{
    margin-top:25px;
    list-style:none;
}

.technology li{
    padding:12px 0;
    border-bottom:1px solid #dfe8f4;
}

.technology li::before{
    content:"✓";
    color:#00a8ff;
    font-weight:bold;
    margin-right:12px;
}

/*================ CTA ================*/

.cta{
    background:#00a8ff;
    color:white;
    text-align:center;
}

.cta h2{
    font-size:44px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
}

.cta a{
    display:inline-block;
    background:white;
    color:#00a8ff;
    padding:16px 40px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.cta a:hover{
    transform:translateY(-5px);
}

/*================ CONTACT ================*/

.contact{
    width:90%;
    max-width:800px;
    margin:auto;
}

.contact form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{
    padding:18px;
    border:1px solid #d9e4ef;
    border-radius:10px;
    font-size:16px;
    font-family:Poppins,sans-serif;
}

.contact input:focus,
.contact textarea:focus{
    outline:none;
    border-color:#00a8ff;
}

.contact button{
    background:#00a8ff;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.contact button:hover{
    background:#0088d8;
}

/*================ FOOTER ================*/

footer{
    background:#081630;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    color:#00a8ff;
    margin-bottom:15px;
}

footer p{
    opacity:.85;
    margin-top:10px;
}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

.navbar{
flex-direction:column;
gap:20px;
}

.navbar ul{
flex-wrap:wrap;
justify-content:center;
}

.about .container{
grid-template-columns:1fr;
}

.hero h1{
font-size:46px;
}

.sectionTitle h2{
font-size:34px;
}

}

@media(max-width:768px){

.hero h1{
font-size:36px;
}

.hero p{
font-size:17px;
}

.heroButtons{
flex-direction:column;
align-items:center;
}

.btnPrimary,
.btnSecondary{
width:220px;
text-align:center;
}

.right{
grid-template-columns:1fr;
}

.sectionTitle h2{
font-size:30px;
}

.cta h2{
font-size:32px;
}

}