:root {
  --brand-green: #1d8c47;
  --brand-dark: #0b1f2c;
  --light-bg: #f5f7fb;
}

body {
  background-color: var(--light-bg);
  color: #202a37;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.hero {
  position: relative;
  min-height: 80vh;
  background-image: linear-gradient(120deg, rgba(7, 40, 66, 0.85), rgba(17, 89, 110, 0.65)), url("../../assets/img//TaxiImage.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16, 24, 32, 0.75), rgba(8, 90, 151, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(2, 18, 34, 0.4);
}

.text-shadow {
  text-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.map-card {
  border-radius: 30px;
  overflow: hidden;
}

.service-icon {
  color: var(--brand-green);
}

.service-card {
  box-shadow: 0 15px 45px rgba(15, 30, 45, 0.15);
}

.bg-gradient {
  background: linear-gradient(135deg, #1d8c47, #0b1f2c);
}

.border-dashed {
  border-style: dashed !important;
}

@media (max-width: 991px) {
  .hero {
    padding: 4rem 0;
  }
}

@media (max-width: 991px) {
  .hero-badge {
    margin-top: 2rem;
  }
}

