
/** fleet-section **/

.fleet-block .image-box,
.service-card .image-box {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #1a1b1f;
}

.fleet-block .image-box img,
.service-card .image-box img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fleet-block .inner-box:hover .image-box img,
.service-card .inner-box:hover .image-box img {
  transform: scale(1.04);
}

.fleet-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  border-radius: 10px;
  background: linear-gradient(135deg, #212226 0%, #2d2d35 50%, #1a1b1f 100%);
  overflow: hidden;
}

.fleet-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(var(--theme-color-rgb), 0.18), transparent 55%),
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
}

.fleet-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.fleet-block .inner-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.fleet-block .inner-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 25px 90px 0px rgba(0, 0, 0, 0.12);
}

.fleet-block .lower-content {
  padding: 28px 30px 30px;
}

.fleet-block .category-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.fleet-block h4 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 12px;
  color: var(--title-color);
}

.fleet-block .capacity {
  font-size: 15px;
  color: #6e6e6e;
  margin-bottom: 10px;
}

.fleet-block .capacity i {
  color: var(--theme-color);
  margin-right: 6px;
}

.fleet-block p {
  font-size: 15px;
  line-height: 24px;
  color: #6e6e6e;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e5e5;
}

.fleet-block .btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fleet-block .btn-box .theme-btn {
  padding: 10px 28px;
}

.service-card .inner-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.service-card .inner-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 25px 90px 0px rgba(0, 0, 0, 0.12);
}

.service-card .lower-content {
  padding: 28px 30px 30px;
}

.service-card .category-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card h4 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 12px;
  color: var(--title-color);
}

.service-card p {
  font-size: 15px;
  line-height: 24px;
  color: #6e6e6e;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e5e5;
}

.service-card .btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-card .btn-box .theme-btn {
  padding: 10px 28px;
}

.fleet-category-title {
  margin-top: 20px;
  margin-bottom: 40px;
}

.fleet-help-box {
  background: #fff;
  box-shadow: 0px 20px 80px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 40px 45px;
  text-align: center;
}

.fleet-help-box h3 {
  margin-bottom: 12px;
}

.fleet-help-box p {
  margin-bottom: 25px;
  color: #6e6e6e;
}


/** responsive-css **/

@media only screen and (max-width: 767px) {
  .fleet-help-box {
    padding: 30px 25px;
  }

  .fleet-block .lower-content,
  .service-card .lower-content {
    padding: 22px 20px 25px;
  }
}
