*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Top Header */
.top-header {
  background: #06101b;
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}
.top-header a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 10px;
}
.header {
  padding: 15px 0;
}

/*  background: url("/images/homebanner.jpg") center center/cover no-repeat; */
.banner {
 
  color: #fff;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner h1 {
  font-size: 3rem;
  font-weight: bold;
}
.section-title {
  margin: 60px 0 30px 0;
  text-align: center;
}
.service-card {
  transition: transform 0.3s;
}
.service-card:hover {
  transform: scale(1.05);
}
.horizontal-banner {
  background: #0f32f7;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 15px;
}
.horizontal-banner p{
  font-size: 20px;
}
.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.testimonial {
  background: #f8f9fa;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
footer {
  background: #0a121a;
  color: #fff;
  padding: 60px 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
  .header .navbar-nav {
    text-align: center;
  }
}

/* service */
    .service-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.vehicle-animation img {
    position: relative;
    animation: moveTruck 5s linear infinite alternate;
    left: -200px;  /* Start left offscreen */
    animation: moveTruck 8s linear infinite;
}

@keyframes moveTruck {
    0% { left: -200px; }
    100% { left: 100%; }
}
.service-card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}



