body {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
}

.topbar-business-hours {
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero */
.hero-about {
  position: relative;
  min-height: 500px; /* adjust as needed */
  background: url("assets/images/truck\ banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-about .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7); /* dark overlay */
}

.hero-about .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-about h1 {
  font-weight: 700;
}

.hero-about p {
  font-size: 1.1rem;
}


/* Step Boxes */
.step-box {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}
.step-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Fleet Cards */
#fleet .card {
  border-radius: 12px;
  transition: all 0.2s ease;
}
#fleet .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#fleet .card-img-top {
  height: 200px;
  object-fit: cover;
}
#fleet .card-body h5 {
  font-weight: 600;
}
#fleet .card-body ul li {
  margin-bottom: 0.3rem;
}

/* Pricing CTA */
#pricing .p-5 {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

/* Footer */
footer {
  background: #0f172a;
  color: #fff;
}

footer h4, footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

footer p, footer li, footer a {
  font-size: 0.9rem;
  color: #cbd5e1;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
