/* style.css */

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f5f8fa;
  margin: 0;
  padding: 0;
}

.hero-banner {
  min-height: 52vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1736959364958-40cfacc18edc?q=80")
      center/cover no-repeat;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-banner h1 {
  font-size: 3rem;
}
.hero-banner ul li {
  transition: transform 0.2s ease;
}

.hero-banner ul li:hover {
  transform: scale(1.05);
}

.hero-banner .btn-warning {
  background-color: #f0ad4e;
  border: none;
}

.card:hover {
  transform: scale(1.03);
  transition: 0.3s ease-in-out;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

blockquote {
  background: #f8f9fa;
  font-style: italic;
  border-left: 4px solid #ccc;
  padding: 1rem;
  margin: 0;
}

.blockquote-footer {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}
/* Custom Navbar Styling */
/* Custom Navbar Styling */
.navbar-custom {
  background: linear-gradient(
    to right,
    #1b1464,
    #2e3a87
  ); /* Business-class theme */
  padding: 14px 0;
  transition: background-color 0.3s ease-in-out;
}

.navbar-custom .navbar-brand {
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-custom .navbar-toggler {
  background-color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
}

/* Nav Links */
.navbar-custom .nav-link {
  color: #f8f9fa;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #ffd700; /* Gold on hover/active */
}

/* Call Button */
.btn-call {
  background-color: #ffd700;
  color: #1b1464;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-call:hover {
  background-color: #e6c200;
  color: #000;
}

/*Features*/
.card-slider {
  border-radius: 5px 5px 0 0;
  border-top-right-radius: 80px;
}

.owl-nav {
  text-align: center;
  margin-top: 20px;
}

.owl-nav button {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #0d6efd;
}

.card-slider img {
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  border-top-right-radius: 80px;
}
/*Airlines logo*/
.airlines {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.airlines__item {
  height: 23px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.airlines__item:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/*About Us*/
/* About Section Styles */
body {
  background-color: #f8f9fa;
  /* Light grey to contrast header/footer white */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.lead {
  font-size: 1.25rem;
  color: #6c757d;
}

.shadow-sm {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
}

.card-main {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-main:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-para {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
}

.text-black-50 {
  color: #6c757d !important;
}

a.text-black {
  color: #212529;
}

a.text-black:hover {
  text-decoration: underline;
}

img {
  vertical-align: middle;
  margin-right: 8px;
}
/*footer*/
.footer-v2 {
  background-color: #cc9577;
  color: #fff;
  padding: 32px 0 40px;
  text-align: center;
}

@media (min-width: 960px) {
  .footer-v2 {
    padding-top: 40px;
    text-align: left;
  }
}

.footer-v2__main {
  padding-bottom: 32px;
}

@media (min-width: 960px) {
  .footer-v2__main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }
}

@media (max-width: 959.98px) {
  .footer-v2__copyright {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.24);
    padding-bottom: 32px;
  }
}

@media (min-width: 960px) {
  .footer-v2__copyright {
    max-width: 225px;
  }
}

.footer-v2__copyright-logo {
  display: block;
  margin: 0 auto 8px;
  max-width: 148px;
}

@media (min-width: 960px) {
  .footer-v2__copyright-logo {
    margin: 0 0 16px;
  }
}

.footer-v2__copyright-logo svg {
  height: auto;
}

.footer-v2__copyright-text {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
}

.footer-v2__nav {
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .footer-v2__nav {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-between;
    margin-left: 20px;
  }
}

@media (min-width: 1140px) {
  .footer-v2__nav {
    margin-left: 5%;
  }
}

@media (min-width: 1440px) {
  .footer-v2__nav {
    margin-left: 125px;
  }
}

.footer-v2__menu {
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 959.98px) {
  .footer-v2__menu {
    margin-top: 32px;
  }
}

@media (min-width: 960px) {
  .footer-v2__menu {
    text-align: left;
  }
}

.footer-v2__menu-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.44px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-v2__menu-link {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
}

.footer-v2__menu-link:nth-child(n + 2) {
  margin-top: 12px;
}

.footer-v2__menu-link:focus,
.footer-v2__menu-link:hover {
  color: inherit;
  opacity: 0.8;
}

@media (max-width: 959.98px) {
  .footer-v2__social {
    margin-top: 32px;
  }
}

@media (min-width: 960px) {
  .footer-v2__social {
    margin-left: 20px;
    max-width: 200px;
    text-align: right;
  }
}

@media (min-width: 1140px) {
  .footer-v2__social {
    margin-left: 40px;
    max-width: 250px;
  }
}

@media (min-width: 1440px) {
  .footer-v2__social {
    max-width: 330px;
  }
}

.footer-v2__social-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.44px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-v2__social-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
  margin-bottom: 20px;
}

.footer-v2__social-list {
  display: flex;
  gap: 32px;
  justify-content: center;
}

@media (min-width: 960px) {
  .footer-v2__social-list {
    justify-content: flex-end;
  }
}

.footer-v2__social-link {
  transition: opacity 0.25s;
}

.footer-v2__social-link:focus,
.footer-v2__social-link:hover {
  opacity: 0.8;
}

.footer-v2__disclaimer {
  border-top: 1px solid hsla(0, 0%, 100%, 0.24);
  color: hsla(0, 0%, 100%, 0.64);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 14px;
  padding-top: 32px;
  text-align: left;
}

@media (min-width: 960px) {
  .footer-v2__disclaimer {
    padding-top: 40px;
  }
}

.footer-v2__disclaimer a {
  color: #fff;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.footer-v2__disclaimer a:focus,
.footer-v2__disclaimer a:hover {
  color: #fff;
}

.footer-v2__logos {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

@media (min-width: 720px) {
  .footer-v2__logos {
    gap: 32px;
  }
}

.footer-v2__logos__image {
  display: block;
  height: 40px;
  mix-blend-mode: screen;
  width: auto;
}
