body {
  padding: 0;
  margin: 0;
  background: white;
  }

  /*Navigation Bar Section*/
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #25629b;
    transition: background-color 0.4s ease;
    z-index: 1000; 
  }
  .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;
}


/* Para sa header */
.flight-header {
  margin-top: 70px; 
  background-image: url(Images/FlightStatus3.jpg);
  background-size: 100% 100%;
  animation: gradientMove 8s ease infinite;
  color: #25629b;
  text-align: center;
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
  
}
.flight-header .header-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
  opacity: 1;
  transform: translateY(20px);
  padding-top: 60px; 
}
.flight-header h1 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: gold;
}
.flight-header p {
  font-size: 18px;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.4);
  color: white;
  font-weight: 300;
  margin-bottom: 30px;
}
.wave-shape {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px -6px 10px rgba(0,0,0,0.4));
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .flight-header h1 {
    font-size: 36px;
  }
  .flight-header p {
    font-size: 16px;
  }
}

/* Flight Search Box */
.flight-search-box {
  position: relative;
  margin: -300px auto 60px; 
  width: 50%;
  padding: 30px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flight-search-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Search Form */
.search-form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.search-form .form-group {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
}

.search-form label {
  font-weight: 600;
  font-size: 13px;
  color: #25629b;
  margin-bottom: 4px;
}

.search-form input[type="text"],
.search-form input[type="date"] {
  padding: 8px 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.search-form input:focus {
  border-color: #25629b;
  outline: none;
}
.btn-search {
  background-color: #25629b;
  color: gold;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.btn-search:hover {
  transform: scale(1.05);
  color: #25629b;
  background-color: gold;
  outline: none;
}
.search-type {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.search-type label {
  font-weight: 600;
  color: #25629b;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.search-type input[type="radio"] {
  accent-color: #b8860b;
  transform: scale(1.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.search-type input[type="radio"]:hover {
  transform: scale(1.2);
}








