  body{
    background: aliceblue;
  }
  /* Top Bar */
  .top-bar {
      background-color: #0F3D3E;
      color: white;
      font-size: 14px;
      padding: 6px 0;
  }

  .top-bar i {
      margin-right: 6px;
  }

  /* Header Gradient Updated */
  .header-gradient {
      background: linear-gradient(135deg, #0E4D92, #00BFA6);
      color: white;
      padding: 15px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
      text-decoration: underline;
  }

  /* Hero Section */
  .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5),
              rgba(0, 0, 0, 0.5)), url('img/airplane-flying.jpg') center/cover no-repeat;
      color: white;
      padding: 120px 20px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
  }

  .hero-section .container {
      position: relative;
      z-index: 2;
  }

  /* .hero-section .btn-explore {
    background-color: #00BFA6;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #fff;
} */

  .hero-section .btn-explore:hover {
      background-color: #03658C;
      color: #fff;
      transform: scale(1.05);
  }

  .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background: url('img/wave.png') repeat-x;
      background-size: contain;
      z-index: 1;
  }


  .hero-section h1 {
      font-size: 3rem;
      font-weight: bold;
  }

  .hero-section p {
      font-size: 1.2rem;
  }

  .btn-explore {
      background-color: #E0F7F4;
      color: #03658C;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .btn-explore:hover {
      background-color: #03658C;
      color: white;
  }

  .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: url('img/wave.png');
      background-size: contain;
      transform: scaleY(-1);
  }

  .section-title {
      font-weight: 700;
      font-size: 2rem;
      color: #0E4D92;
  }

  .feature-card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }

  .feature-card i {
      font-size: 36px;
      color: #00BFA6;
      margin-bottom: 15px;
  }

  .feature-card:hover {
      transform: translateY(-5px);
  }

  .flyer-box {
      /* background: linear-gradient(135deg, #2AA9B2, #F58735); */
      background: linear-gradient(135deg, #00BFA6, #03658C);
      color: white;
      padding: 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: all 0.3s ease;
  }

  .flyer-box:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .deal-card {
      background: #ffffff;
      border-left: 6px solid #03658C;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
  }

  .deal-card h5 {
      color: #0E4D92;
      font-weight: 600;
  }

  .deal-card p {
      color: #555;
  }

  .deal-card:hover {
      transform: scale(1.03);
  }


  .destination-card img {
      transition: transform 0.3s ease;
      border-radius: 12px;
  }

  .destination-card:hover img {
      transform: scale(1.05);
  }

  .destination-card h5 {
      font-weight: bold;
      margin-top: 12px;
  }

  .destination-card p {
      font-size: 0.95rem;
      color: #555;
  }

  /*Popular Flight Routes*/
  /* .popular-routes {
      background: #f9f9f9;
  } */

  .route-card {
      background-color: #fff;
      transition: all 0.3s ease;
  }

  .route-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  }

  /* Newsletter Section */
  #subscribe {
      /* background: url('https://source.unsplash.com/1600x900/?travel,airplane') no-repeat center center/cover; */
      color: #fff;
      padding: 60px 0;
  }

  #subscribe h2 {
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }

  #subscribe p {
      font-size: 18px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  #subscribe .form-control {
      border-radius: 30px;
      padding: 12px;
      border: none;
  }

  #subscribe .btn-primary {
      border-radius: 30px;
      padding: 12px 20px;
      font-weight: bold;
      background: #00bfa6;
      border: none;
  }

  #subscribe .btn-primary:hover {
      background: #00bfa669;
  }

  /* About Us Section */
  .about-us {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 50px 20px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }

  .about-us h2 {
      font-size: 2.5rem;
      color: #0E4D92;
      font-weight: bold;
  }

  .about-us h4 {
      color: #00BFA6;
      margin-top: 30px;
  }

  .about-us p,
  .about-us li {
      font-size: 1rem;
      color: #444;
  }

  .about-us ul {
      padding-left: 0;
      list-style: none;
  }

  .about-us ul li {
      margin-bottom: 10px;
  }

  .about-us ul li i {
      color: #0E4D92;
      margin-right: 10px;
  }

/*Contact US*/
.custom-border{
    border: none !important;
    border-bottom: 2px solid #007CC3 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: border-color 0.3s;
}

.submit{
    background: linear-gradient(135deg, #00BFA6, #03658C);
}
  /* Footer */
  .footer-colorful {
      background: linear-gradient(to right, #03658C, #00BFA6);
      color: white;
      padding: 50px 0;
  }

  .footer-colorful h5 {
      font-weight: bold;
      margin-bottom: 15px;
  }

  .footer-colorful a {
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
  }

  .footer-colorful a:hover {
      text-decoration: underline;
  }

  .social-icons a {
      color: white;
      font-size: 20px;
      margin-right: 15px;
      transition: transform 0.3s ease;
  }

  .social-icons a:hover {
      transform: scale(1.2);
  }

  .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
  }