    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
    }
    .navbar {
      background: linear-gradient(to right, #2E8B57, #FF7F50);
    }
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 500;
      padding: 10px 20px;
      transition: all 0.3s ease;
    }
    .navbar-nav .nav-link:hover {
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
    }

    .hero {
  position: relative;
  background: linear-gradient(to right, rgba(46, 139, 87, 0.85), rgba(255, 127, 80, 0.85)),
              url('img/flight-banner.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  background-blend-mode: overlay;
}

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.25rem;
    }

    .btn-custom {
      background-color: #FFD700;
      color: #000;
      border: none;
      padding: 10px 25px;
      font-weight: bold;
      border-radius: 30px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background-color: #ffcb05;
      transform: scale(1.05);
    }

    .destination-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .destination-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
	/*Why Choose Us*/
	.why-book-us {
  background: #f9f9f9;
}
.why-book-card {
  background: linear-gradient(to bottom right, #0E4D92, #00BFA6);
  color: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.why-book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.why-book-card i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 1rem;
}
.why-book-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}
/*Popular flights destination*/
.flight-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.flight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.flight-card .card-title {
  font-weight: bold;
  margin-top: 10px;
}
/*Affordable Flight Deals*/
.deal-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.deal-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #0E4D92;
  transition: transform 0.3s ease;
}
.deal-card:hover .deal-image {
  transform: scale(1.05);
}
/* Popular Flight Routes */
.route-card {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}
.route-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
/*News Letter*/
.newsletter input[type="email"]::placeholder {
  color: #999;
}

.newsletter input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}
/* Contact us */
.contact-section {
      background: #f8f9fa;
      padding: 60px 0;
    }
    .contact-title {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 20px;
      color: #0E4D92;
    }
    .contact-info i {
      color: #00BFA6;
      margin-right: 10px;
    }
    .form-control {
      border: none;
      border-bottom: 2px solid #ccc;
      border-radius: 0;
      background-color: transparent;
      box-shadow: none;
    }
    .form-control:focus {
      border-color: #00BFA6;
      outline: none;
      box-shadow: none;
    }
    .contact-btn {
      background-color: #0E4D92;
      color: white;
      border-radius: 25px;
      padding: 10px 30px;
      border: none;
    }
    .contact-btn:hover {
      background-color: #00BFA6;
    }
	/*Footer*/
    .footer {
      background: #1F1F1F;
      color: #ccc;
      padding: 40px 0;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }