* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 40px;
}

span {
  
  color: #e6ab18;
 
}

.quote-btn {
  background: #007bff;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.main-nav {
  background: #002244;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  background: #0056b3;
}

.banner {
  background: url('airplane.avif') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.tracking-section {
  padding: 30px;
  text-align: center;
}

.tracking-section input {
  padding: 10px;
  width: 250px;
  max-width: 90%;
  margin: 10px auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.tracking-section button {
  padding: 10px 20px;
  background: #007bff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.tracking-section button:hover {
  background: #0056b3;
}

#result {
  margin-top: 20px;
  font-weight: bold;
  color: green;
}
.footer {
  background-color: #f3f3f3;
  color: #222;
  padding: 30px 20px;
}

.footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 200px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-links h4 {
  color: #2e2e70;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}
/* Responsive */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  main-nav {
    flex-direction: column;
    align-items: center;
  }

  .main-nav a {
    padding: 10px;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
