  body {
  padding: 0;
  margin: 0;
  background: white;
  }

  /*Navigation Bar Section*/
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none !important;
    background-color: transparent;
    transition: background-color 0.4s ease;
    z-index: 1000; 
  }
  .navbar:hover {
    background-color: rgba(37, 98, 155, 0.90) !important;
  }
  .navbar.scrolled {
    background-color: rgba(37, 98, 155, 0.90)!important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .navbar-brand {
    width: 70px;
    height: 70px;
    position: absolute;
    left: 400px;
  }
  .navbar-nav .nav-item {
    position: relative;
    margin: 0 25px; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    }
  .navbar-nav .nav-link {
    color: white !important;
    transition: color 0.3s ease;
    position: relative;
  }
  .navbar-nav .nav-link:hover{
    cursor: pointer;
  }
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background-color: gold; 
    transition: width 0.3s ease
  }
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }


  /* Dropdown menu for Navigations */
.nav-item.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 50px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 500px;
  background-color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;      
  left: 0;
  width: 100%;
  height: 12px;     
  background: transparent;
}
.dropdown-menu .dropdown-item {
  color: #25629b;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  border-radius: 6px;
  flex: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dropdown-menu .dropdown-item:hover {
  background-color: gold;
  color: #25629b;
  transform: translateY(-3px);
}
.dropdown-item i {
  font-size: 20px;
  margin-bottom: 6px;
  color: #25629b;
}
.dropdown-item small {
  font-weight: normal;
  color: #555;
  font-size: 12px;
}


  /* Image Carousel BG */
  .carousel{
    margin-top: 0;
  }
  .carousel-item{
    position: relative;
  }
  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .carousel-item img{
    position: relative;
    z-index: 0;
    height: 450px;
    object-fit: cover;
  }

  /* Flight Search Box Styling Section */
  .flight-search-box {
      position: relative;
      margin: 0;             
      padding: 20px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(50px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border-radius: 10px ;
      max-width: 1050px;
      margin-left: auto;
      margin-right: auto;
      margin-top: -50px;      
      z-index: 10;
  }
  .flight-search-box form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    
  }
  .flight-search-box .form-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
  }
  .flight-search-box label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white; 
  }
  .button-label {
    text-decoration: none;
    color: #25629b;
  }
  .button-label:hover {
    text-decoration: none;
    color: gold;
  }
  .form-group{
    color: black;
  }
  .flight-search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s;
  }
  .flight-search-box input:focus {
    border-color: #25629b;
    outline: none;
    box-shadow: 0px 0px 6px rgba(37, 98, 155, 0.4);
  }
  .flight-search-box button {
    height: 45px;
    margin-top: 10px;
    padding: 12px 25px;
    background:#25629b;
    color:gold ;
    outline: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    width: 100%;
  }
  .flight-search-box button:hover {
    background: gold;
    color:#25629b;
  }
  .swap-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  }
  .swap-icon {
  font-size: 20px;
  color: #25629b;
  background: #f8f8f8;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  }
  .swap-icon:hover {
  background: gold;
  color: #1b4a77;
  transform: rotate(180deg);
  }

  /* Drop Down Menu Para sa Select Places*/
  .input-container {
    position: relative;
    width: 100%;
  }

  .input-container input {
    width: 100%;
    padding-right: 28px;
    box-sizing: border-box;
  }
  .dropdown-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    cursor: pointer;
    color: #25629b;
    user-select: none;
  }
  .dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% - 1px); 
    left: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;      
    border-radius: 0 0 6px 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 9999;
    max-height: 150px;
    overflow-y: auto;
  }

  .dropdown-list li {
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
  }

  .dropdown-list li:hover {
    background: #f0f0f0;
  }


  /* Field Icons sa Select Places */
.input-icon-wrapper {
  position: relative;
  display: inline-block;
  width: 180px; 
}

.input-icon-wrapper i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #25629b;
  pointer-events: none; 
}

.input-icon-wrapper input {
  width: 100%;
  padding: 10px 10px 10px 35px; 
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ccc;
}


  /* Destination Card Section */
  .destination-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: transform 0.4s, box-shadow 0.4s;
      cursor: pointer;
  }
  .destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0, 0.25);
  
  }
  .destination-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s;
  }
  .destination-card:hover img {
      transform: scale(1.05);
  }
  .destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 43, 70, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
  }
  .destination-overlay h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .destination-overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .destination-overlay button {
    background: #1b4a77;
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
  }
  .destination-overlay button:hover {
    background: #16395c;
  }
  .destination-card:hover .destination-overlay {
    opacity: 1;
  } 
  .where-to-fly-next {
    margin-top: 80px; 
  }

/* Exclusive Flight Recommendation*/
.flight-ticket {
  display: flex;
  align-items: stretch;
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  position: relative;
  max-width: 100%;
  height: 160px;
}
.flight-ticket:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  
}
.flight-ticket img {
  width: 160px;
  height: 100%;
  object-fit: cover;
}
.ticket-details button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%); 
  padding: 10px 20px;
  background: #16395c;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.ticket-details button:hover{
  background: gold;
  color: #25629b;
}

.ticket-details {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border-radius: 0 20px 20px 0;
}
.ticket-details::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-left: 2px dashed #ccc;
}
.ticket-details h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #2c3e50;
}
.ticket-details p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7f8c8d;
  margin-bottom: 5px;
}
.flight-ticket::before,
.flight-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #f8f9fa;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #ddd;
}
.flight-ticket::before {
  left: -10px;
  background: #25629b;
}
.flight-ticket::after {
  right: -10px;
  background: #25629b;
}


 /* Footer */
  .footer {
    background: #1b4a77;
    color: white;
    padding: 40px 0;
  }
  .footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
  }
  .footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
  }
  .footer a:hover {
    color: white;
  }
  .footer .social-icon {
    font-size: 20px;
    color: #ddd;
    transition: 0.3s;
  }
  .footer .social-icon:hover {
    color: #fff;
  }

  @media (max-width: 575.98px) {

  .description {
    left: 0;
    padding: 0 15px;
    position: absolute;
    top: 10%;
    transform: none;
    text-align: center;
    }

    .description h1 {
    font-size: 2em;
    }

    .description p {
    font-size: 1.2rem;
    }

    .features {
    margin: 0;
    }
  }