body {
  background: #f4f7ff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #1e3a8a;
}

.btn-book {
  background-color: #1e3a8a;
  border: none;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.3rem;
  color: white;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: transparent;
  color: #1e3a8a !important;
  border: 2px solid #1e3a8a;
}

/* Hero */
.hero-section {
  padding: 3rem 1rem;
}

.hero-title {
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #1e3a8a;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.rounded-img {
  border-radius: 2.5rem 0 2.5rem 2.5rem;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-button {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(30, 58, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0); }
}

/* Sections Background */
.section-bg-light {
  background-color: #f9fafc;
}

.section-bg-white {
  background-color: #ffffff;
}

.section-bg-main {
  background-color: #f4f7ff;
}

/* Fly Anywhere */
.fly-anywhere-section {
  text-align: center;
  padding: 4rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

.fly-anywhere-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.3rem;
  position: relative;
  display: inline-block;
}

.fly-anywhere-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background-color: #f9a825;
  margin: 0.3rem auto 0;
  border-radius: 10px;
}

.fly-anywhere-subtitle {
  font-weight: 400;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.8rem;
}

.partners-logos {
  display: flex;
  animation: slideLeft 20s linear infinite;
  gap: 2rem;
  justify-content: flex-start;
  padding: 1rem 0;
}

.partners-logos img {
  max-height: 40px;
  filter: grayscale(0);
  transition: filter 0.3s ease;
}

.partners-logos img:hover {
  filter: brightness(0.7);
}

@keyframes slideLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.airplane-animation {
  position: absolute;
  top: 0;
  left: -100px;
  animation: flyAcross 10s linear infinite;
}

@keyframes flyAcross {
  0% { left: -100px; top: 20px; }
  50% { top: 10px; }
  100% { left: 100%; top: 20px; }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .partners-logos img {
    margin: 0 0.5rem 1rem;
    max-height: 30px;
  }
}

.icon-main {
  color: #1e3a8a;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  background-color: #1e3a8a;
  color: white;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #0b1e6b;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
