 *{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
 
.container{width:100%; margin:0 auto;}
.navbar{
  position: sticky;
  top: 0;
  z-index: 3;
  width:100%;
  height:80px;
  padding:0 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.logo{
  width:160px;
  display:block;
   cursor: pointer;
}
.navbar-list{
  display:flex;
  align-items:center;
  gap:25px;
}
.navbar-list a{
  text-decoration:none;
  font-size:16px;
  color:#111;
  transition:color .2s;
}
.navbar-list a:hover{
  color:#198af3;
}
.navbar-list2{
  display:flex;
  align-items:center;
  gap:10px;
}
.navbar-list2 i{
  font-size:22px;
  color:#fff;
  background:#198af3;
  padding:8px;
  border-radius:50%;}
.nav-list2 p{font-size:14px;
  color:#555;
  margin:0;
}
.nav-list2 .phone{
  display:block;
  color:#198af3;
  font-weight:600;
  text-decoration:none;
  margin-top:4px;
}
.nav-list2 .phone:hover{
  color:#0a68c0;
}
.hamburger{display:none;cursor:pointer;}
.hamburger span{
  width:28px;height:3px;background:#111;margin:5px;display:block;
}

/* sidebar */
.mobile-sidebar{
  position:fixed;
  top:0;right:-250px;
  width:250px;height:100vh;
  background:#fff;
  padding:60px 20px;
  box-shadow:-2px 0 10px rgba(0,0,0,.1);
  display:flex;
  flex-direction:column;
  gap:20px;
  transition:.3s;
  z-index:9999;
}

.mobile-sidebar a{
  text-decoration:none;
  color:#111;
  font-size:18px;
}

.mobile-sidebar .close{
  position:absolute;
  top:15px;left:15px;
  background:none;border:none;font-size:32px;cursor:pointer;
}
/* ===== Banner ===== */
.banner{
  position: relative;
  width:100%;
  height: 55vh;   /* desktop */
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.banner img{
  width:100%;
  height:100%;
  object-fit:cover;
   filter: brightness(40%);
}

/* dark overlay */
.banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

/* text */
.banner-content{
  position:absolute;
  z-index:2;
  width:100%;
  padding:0 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}

.banner-content .left{
  font-size:48px;
  font-weight:700;
}

.banner-content .right{
  max-width:450px;
}

.banner-content .right p{
  font-size:25px;
  line-height:1.4;
}
.transport-zone{
  width:100%;
  padding:40px 5%;
  background:#fff;
}
.transport-card-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.transport-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
  transition:.4s;
  cursor:pointer;
}
.transport-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.transport-card .image-1{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
  margin-bottom:20px;
}
.transport-card .image-2{
  position:absolute;
  left:100px;
  bottom:130px;
  transform:translateX(-50%);
  width:80px;height:80px;
  object-fit:contain;
  background:#fafcfd;
  padding:15px;
  border-radius:50%;
  box-shadow:0 0 15px rgba(0,0,0,.15);}
.transport-card-content{
  padding:36px 30px;
  text-align:left;
}
.transport-card-content h2{
  font-size:22px;
  color:#111
  ;margin-bottom:8px;
}
.transport-card-content p{
  font-size:15px;
  color:#666;
  line-height:22px;
}
/* TESTIMONIALS */
.testimonial{
  width:100%;
  padding:20px 5%;
  position:relative;
  overflow:hidden;
  background:#fff;
}
.t-slides{
  display:flex;
  gap:10px;
  transition:transform .5s ease;}
.testmoial-card{
  min-width:32%;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 4px 25px rgba(0,0,0,.08);
  text-align:center;
}
.testmoial-card img{
  width:60px;
margin-bottom:12px;
 background-color: #111;
 border-radius: 5PX;
}
 
.testmoial-card p{font-size:20px;margin-bottom:8px;color:#198af3;}
.testmoial-card span i{font-size:20px;}
.testmoial-card h3{
  margin-top:8px;
  font-size:15px;
  line-height:22px;
  color:#555;
}
.t-prev,.t-next{
  position:absolute;
  top:55%;
  transform:translateY(-50%);
  background:#198af3;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:2;
}
.t-prev{left:10px;} .t-next{right:10px;}
footer.section-foote{
  width:100%;
  background:#091f6d;
  color:#ffffff;
  padding:50px 6vw;
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* ---------- TOP ---------- */
footer.section-foote{
  width:100%;
  background:#091f6d;
  color:#ffffff;
  padding:50px 6vw;
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* ---------- TOP ---------- */
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-top img{
  width:160px;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
}

.footer-top .input{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-top input{
  padding:12px 18px;
  border-radius:6px;
  border:none;
  outline:none;
  font-size:14px;
}

.footer-top button{
  padding:12px 22px;
  border:none;
  border-radius:6px;
  background:#ff9800;
  color:#fff;
  cursor:pointer;
}

/* ----------- MEDIUM ----------- */
.footer-medium-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}

.footer-medium-top-left{
  width:35%;
}

.footer-medium-top-left span{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:18px;
  font-weight:600;
}

.footer-medium-top-right{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex:1;
}

.footer-medium-top-right .list h1{
  font-size:18px;
  margin-bottom:12px;
}

.footer-medium-top-right ul{
  list-style:none;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-medium-top-right li{
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  opacity:.9;
}

.footer-medium-top-right li:hover{
  opacity:1;
  padding-left:4px;
  transition:.2s;
}

/* ----------- BOTTOM ----------- */
.footer-bottom{
  border-top:1px solid #ffffff25;
  padding-top:25px;
  text-align:center;
  font-size:14px;
  opacity:.7;
  color: #ffffff;
  background-color: #091f6d;
  padding: 5px;
}

@media (max-width:768px){
  body{
    overflow-x:hidden;
  }
   .navbar{
    height: 70px;
   }
  .banner{
    height:45vh;
  }
  .banner-content{
    padding:0 6%;
  }
  .banner-content .left{
    font-size:34px;
  }
  .banner-content .right p{
    font-size:16px;
  }
   .transport-zone{padding:20px 4%;}
  .transport-card-list{
    grid-template-columns:repeat(3,1fr);
    gap:25px;
  }
  .transport-card .image-1{height:180px;}
    .testimonial{
    padding: 10px 4%;
  }
  
  .testmoial-card{min-width:100%;}
.footer-top{
    flex-direction:column;
    gap:25px;
  }

  .footer-medium-top{
    flex-direction:column;
    gap:40px;
  }

  .footer-medium-top-left{
    width:100%;
  }
  .list li i{
    color: white;
  }
  .footer-medium-top-right{
    flex-wrap:wrap;
    justify-content:center;
  }
}
 
@media (max-width:468px){
  .navbar{
    height: 50px;
  }
  .navbar-list{display:none;}
  .hamburger{display:block;}
  .navbar img{width:100px;}
    .banner{
    height:35vh;
  }
  .banner-content{
    flex-direction:column;
    text-align:center;
    gap:8px;
  }
  .banner img{
    width: 100%;
  
  }
  .banner-content .left{
    font-size:26px;
  }
  .banner-content .right p{
    font-size:14px;
  }
   .transport-zone{
    padding:20px 4%;
  }
   .transport-card-list{
    grid-template-columns:repeat(1,1fr) ;
}
    footer{
    padding:20px 6%;
  }
  
  .footer-top{
    flex-direction:column;
    text-align:center;
  }

  .footer-top .input{
    width:100%;
    flex-direction:column;
  }

  .footer-top input{
    width:100%;
  }

  .footer-medium-top{
    flex-direction:column;
  }

  .footer-medium-top-left{
    width:100%;
    text-align:justify;
  }
.footer-medium-top-left span{
    margin-bottom:5px;
  }
  .footer-medium-top-right{
    flex-direction:column;
    gap:20px;
    align-items:center;
  
}
}