*{
  margin: 0;
}

body{
  font-family: Montserrat , arial;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; 
  height: 100px; 
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.logo-container {
  color: #06569e;
}

.logo-container a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center; 
  gap: 50px; 
}

.nav-links a {
 text-decoration: none;
 color: black;
}

.nav-links a:hover{
  color: #06569e;
  text-decoration: underline;
  font-weight: bold;
}

.nav-links input[type="text"] {
  height: 60px;
  border: none;
  outline: none;
  padding: 0 10px;
  font-family: Montserrat, arial;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 5px 10px;
  border: none;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.search-box i {
  font-size: 16px;
  color: gray;
}

.intro {
  color: white;
  background-image: url('img/airplane-4885803.jpg');
  background-size: cover;
  background-position: center;
  padding: 200px 50px; 
}

.intro h2 {
font-weight: 400;
}

.intro button {
  background-color: #5dade2;
  color: white;
  border: 2px solid white;
  padding: 12px 24px; 
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.intro button:hover {
  background-color: #3498db;
}

.feature {
  color: white;
  background-image: url('img/airport-4120835\ copy.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 50px; 
}

.short-line {
  width: 100px;   
  margin: 20px 0;     
  border-top: 2px solid #5dade2; 

}

.feature button {
  background-color: #5dade2;
  color: white;
  border: 2px solid white;
  padding: 12px 24px; 
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.feature button:hover {
  background-color: #3498db;
}

.company {
  color: white;
  background-image: url('img/plane-7013022.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 50px; 
}

.our {
  background-image: url('img/bgsolid.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px 30px; 
}

.our button {
  background-color: #5dade2;
  color: white;
  border: 2px solid white;
  padding: 10px 20px; 
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 75%;
}

.our button:hover {
  background-color: #3498db;
}

.story {
  color: white;
  background-image: url('img/bgblue.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 50px; 
}

.mission {
  color: white;
  background-image: url('img/mission.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 50px; 
}

.services {
  color: white;
  background-image: url('img/services.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 50px; 
}

.quality {
  color: white;
  background-image: url('img/quality.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 50px; 
}

.contactus {
  color: white;
  background-image: url('img/contact.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 50px; 
}

footer {
  background-color: #3498db; 
  color: white;
  padding:  10px 20px;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-logo a {
  text-decoration: none;
  color: white;
}

.footer-brand {
  text-align: center;
  flex: 1;
}

.footer-bottom {
  text-align: center;
  flex: 1;
}

.footer-social {
  text-align: center;
  flex: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #06569e;
  border-radius: 5px;
  transition: all 0.3s ease;
}


@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    height: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ccc;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .search-box {
    justify-content: center;
  }

  .search-box input {
    width: 80%;
  }

  .search-results {
  list-style: none;
  padding: 0;
}

.search-results li {
  margin: 20px 0;
  padding: 15px;
  background-color: #f2f4f8;
  border-radius: 8px;
}

.search-results a {
  font-weight: bold;
  color: #000096;
  text-decoration: none;
}

.search-results a:hover {
  text-decoration: underline;
}

}

/* contact.css */

/* Container and card */
.contact-card-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px;
  background-color: #f8f8f8;
  min-height: 80vh;
}

.contact-card {
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: Montserrat, Arial, sans-serif;
}

.contact-card h1 {
  color: #06569e;
  margin-bottom: 12px;
}

.contact-card .small {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.contact-card label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

/* Captcha row */
.contact-card .captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* Button styling */
.contact-card button {
  background-color: #06569e;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-card button:hover {
  background-color: #3498db;
}

/* Messages */
.success {
  color: #27ae60;
  margin-bottom: 14px;
}

.error {
  color: #c0392b;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 30px 20px;
  }
}
