* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    color: #333;
    background-color: #fff;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .navbar {
    background: #004aad;
    color: #fff;
    padding: 15px 0;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn {
    background: #fff;
    color: #004aad;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* Hero Section */
  .hero {
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .hero h1 span {
    color: #00bfff;
  }
  
  .hero p {
    margin-bottom: 25px;
  }
  
  .ride-types {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .ride-types button {
    background: white;
    color: #004aad;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .ride-types button.active,
  .ride-types button:hover {
    background: #00bfff;
    color: #fff;
  }
  
  .input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .input-group input {
    padding: 12px;
    border-radius: 5px;
    border: none;
    width: 230px;
  }
  
  .btn-primary {
    background: #004aad;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* About Section */
  .about {
    text-align: center;
    padding: 80px 0;
  }
  
  .about h2 {
    color: #004aad;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about p {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }
  
  /* Services */
  .services {
    background: #f7faff;
    padding: 80px 0;
    text-align: center;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    color: #004aad;
    margin-bottom: 10px;
  }
  
  .card a {
    color: #00bfff;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* Why Choose Us */
  .why-us {
    padding: 80px 0;
    text-align: center;
  }
  
  .reasons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
  
  .reason-card {
    background: #004aad;
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    flex: 1 1 250px;
  }
  
  /* Download */
  .download {
    background: #00bfff;
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  
  .download h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .download .buttons {
    margin-top: 20px;
  }
  
  .download .btn-primary {
    background: white;
    color: #004aad;
    margin: 10px;
  }
  
  /* Footer */
  footer {
    background: #002a5e;
    color: #ccc;
    padding: 50px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
  }
  
  footer h3 {
    color: white;
    margin-bottom: 15px;
  }
  
  footer ul {
    list-style: none;
  }
  
  footer ul li {
    margin-bottom: 10px;
  }
  
  footer ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  footer ul li a:hover {
    color: #00bfff;
  }
  
  footer .copyright {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  