
  .taxi-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px 20px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .taxi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #ffcc00;
  }

  .taxi-icon {
    font-size: 32px;
    color: #FF5F1F;
    flex-shrink: 0;
  }

  .taxi-text .title {
    color: #28a745;
    font-weight: 600;
    font-size: 17px;
    margin: 0;
  }

  .taxi-text .subtitle {
    font-weight: 700;
    font-size: 17px;
    color: #000;
    margin: 0;
  }
  a.text-dark {
  display: block;
  color: inherit;
}
a.text-dark:hover {
  text-decoration: none;
}

