/* About Stat Card (Floating Card) */
.service-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
  border: 1px solid var(--border);
}

@media (max-width: 1023px) {
  .service-stat-card {
    right: 1.5rem;
    bottom: -1rem;
  }
}

@media (max-width: 640px) {
  .service-section {
    padding: 4rem 0;
  }
}

/* Added min-height so the About Us image stretches fully top-to-bottom */
.service-image-wrapper {
  min-height: 500px;
}

/* --- Fleet Card --- */
.fleet-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

/* --- Fleet Stats Card --- */
.fleet-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fleet-stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 32px -12px rgba(80, 156, 53, 0.15);
  transform: translateY(-4px);
}

/* --- Industry Card --- */
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(80, 156, 53, 0.1);
  transform: translateY(-5px);
}
