/* font style use localy */
@import url(fonts.css);

::selection {
  background-color: #0A2472;
  color: #fff;
}

header {
  z-index: 999;
}

body {
  font-family: 'Outfit', sans-serif;
}




/* search form css */
/* @import url(search-form.css); */
.home_banner form {
  background-color: #F5F7FA !important;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(13, 71, 161, 0.25);
  padding: 1.5rem 2rem;
  transition: box-shadow 0.3s ease;
  z-index: 99 !important;
}

/* Input fields styling */
.home_banner form input,
.home_banner form select,
.home_banner form button {
  border-radius: 0.5rem;
  border: 1px solid #AF884A;
  padding: 0.75rem 1.9rem;
  font-size: 1rem;
  color: #212121;
}



/* Input focus style */
.home_banner form input:focus,
.home_banner form select:focus {
  border-color: #0D47A1;
  box-shadow: 0 0 8px rgba(13, 71, 161, 0.5);
  outline: none;
}

/* Button style */
.home_banner form button {
  background-color: #FB8500;
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home_banner form button:hover {
  background-color: #e57500;
}


.autocomplete-list {
  position: absolute;
  z-index: 1000;
  width: 400px;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 2px;
  max-width: 100%;

}

.autocomple-option button {
  min-width: 50px !important;
  padding: 5px !important;
  background-color: var(--falcon-secondary);
  color: #fff;
}

.autocomple-option div {
  font-size: var(--falcon-body-font-size) !important;
}

.autocomple-option:hover {
  background-color: var(--falcon-light);
}

.frm_llbs {
  position: absolute;
  top: 14px;
  left: 9px;
  margin: 0;
}

.fm_ln1 .form-group {
  margin: 0 0px 15px 0;
  position: relative;
}

input.ipt1 {
  text-transform: capitalize;
  border-radius: 4px;
  padding: 5px 10px 5px 32px;
  background: #f4f9fc !important;
}

.searchIcons {
  color: #0D47A1 !important;
}

/* .fisrt_edus {
  border-radius: 25px 0 0 25px !important;
} */

.autocomple-option button {
  max-width: max-content !important;
  padding: 5px !important;
  margin: 0px;
  background: var(--falcon-secondary);
}

.res_hh {
  color: #000;
  margin-bottom: .5rem;
}



/* top navbar styles */
/* navbar css styles */
.top-bar {
  background: linear-gradient(135deg, #03045e 0%, #03045e 100%);
  border-bottom: 2px solid #fb8500;
}

.top-bar small {
  font-size: 0.85rem;
}

.top-bar .social-icons a {
  margin-left: 10px;
  color: #fff;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:first-child {
  margin-left: 0;
}


.navbar .nav-link {
  color: #03045e !important;
}

/* Active navbar link yellow */
.navbar .nav-link.active {
  color: #fff !important;
  /* Yellow color */
}

/* Optional: Hover effect */
.navbar .nav-link:hover {
  color: #fff !important;
}

.collapsing {
  overflow: hidden;
  transition: height 0.2s ease;
}

.collapse {
  transition: height 0.2s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Navigation Links */
.logo-img {
  max-height: 40px;
  height: auto;
  width: auto;
}

.nav-link {
  color: #03045e !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 12px;
  /* thoda space bg ke liye */
  border-radius: 6px;
  /* chhota sa rounded effect */
}

.nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FB8500 0%, #FB8500 100%);
  border-radius: 6px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scale(1);
}


/* Sticky Navbar */
.sticky-top {
  z-index: 1020;
}

/* cta btn in navigation on moible */
.mobile-header-cta {
  transition: all 0.3s ease;
}

.mobile-header-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(3, 4, 94, 0.25) !important;
}


/* Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
  }

  .btn-primary {
    margin-top: 1rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .navbar-brand {
    flex: 0 0 auto;
    margin-right: 8px;
  }

  .mobile-header-cta {
    flex: 0 0 auto;
  }

  .navbar-toggler {
    flex: 0 0 auto;
  }

  /* Better alignment */
  .navbar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .logo-img {
    max-height: 35px;
  }
}

@media (max-width: 768px) {
  .top-bar small {
    font-size: 0.75rem;
  }

  .display-4 {
    font-size: 2rem;
  }
}

@media (max-width: 380px) {
  .mobile-header-cta {
    padding: 0.4rem 0.5rem !important;
    gap: 4px !important;
  }

  .mobile-header-cta img {
    width: 30px !important;
    height: 30px !important;
  }

  .mobile-header-cta .small {
    font-size: 0.55rem !important;
  }

  .mobile-header-cta .fw-bold {
    font-size: 0.75rem !important;
  }
}


/* hero banner styles */
.home-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.home-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  z-index: 0;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(3, 4, 94, 0.45);
  z-index: 1;
} */


/* about us section styles */

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-heading {
  color: #03045e;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
}

.about-heading .highlight {
  color: #FB8500;
}

.about-description {
  color: #03045e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about-description .highlight {
  font-weight: 700;
  color: #FB8500;
}

.about-list {
  list-style-type: "✓ ";
  padding-left: 1.25rem;
  color: #03045e;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.about-btn {
  background-color: #FB8500;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 6px;
  color: #fff;
  border: none;
}

.about-btn:hover {
  background-color: #e57500;
  color: #fff;
}

.about-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Steps Section */
.about-steps {
  background: #fef7ec;
}

.step-box {
  border-left: 4px solid #FB8500;
  padding-left: 1rem;
}

.step-box h5 {
  color: #03045e;
  font-weight: 600;
}

.step-box p {
  color: #555;
  font-weight: 500;
}

.step-box a {
  color: #FB8500;
  text-decoration: none;
  font-weight: 600;
}

/* Traveling Section css */
.text-start h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.text-primary-custom {
  color: #03045e;
}

/* Button */
.btn-outline-custom {
  color: #03045e;
  border: 2px solid #03045e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #FB8500;
  border-color: #FB8500;
  color: #fff;
  box-shadow: 0 4px 8px rgba(251, 133, 0, 0.3);
}

/* Hover lift for card */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  /* subtle shadow */
}

/* Icon styling */
.icon-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid #FB8500;
  padding: 5px;
}

/* Weekend Destinations Section */
.destination-img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Flight Booking CTA Section */
.cta-btn:hover {
  background: #e27400 !important;
  box-shadow: 0 8px 28px rgba(251, 133, 0, 0.6) !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
  color: #fff !important;
}

@media (max-width: 767px) {
  .cta-btn {
    width: 100%;
    justify-content: center !important;
    font-size: 1rem !important;
    padding: 0.9rem 1rem !important;
  }

  .col-lg-6.col-md-6.py-3 {
    text-align: center;
  }

  .col-lg-6.col-md-6.py-3.d-flex {
    justify-content: center !important;
  }

  h2 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  p {
    font-size: 0.80rem !important;
    line-height: 1.5 !important;
  }

  .badge {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 2.2rem !important;
  }

  .cta-btn {
    font-size: 0.95rem !important;
    padding: 0.85rem 1.5rem !important;
  }
}


/* Demos / Why Book With Us Section */
.text-primary-custom {
  color: #03045e;
}

.text-secondary-custom {
  color: #FB8500;
}

/* Paragraph styling */
#demos p {
  line-height: 1.7;
  color: #000;
}

#demos h1,
#demos h2 {
  line-height: 1.2;
}

#demos ul li {
  margin-bottom: 0.5rem;
  color: #03045e;
}

.why-book-item {
  color: #03045e;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-secondary-custom {
  color: #FB8500;
}

/* Mobile Fullscreen Call Popup */
#mobileCallPopup {
  display: none !important;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#mobileCallPopup.show {
  display: flex !important;
  opacity: 1;
  transform: scale(1);
}

#mobileCallPopup.hiding {
  opacity: 0;
  transform: scale(0.95);
}

/* Button hover */
#mobileCallPopup .btn:hover {
  background: #e27400 !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Phone number hover */
#mobileCallPopup a[href^="tel:"]:hover h2 {
  color: #ffa500 !important;
  transition: color 0.3s ease;
}




/* faqs section */


.pass_bx {
  text-align: center;
}


.form-control::placeholder {
  color: var(--falcon-dark) !important;
}

.readtrue {
  cursor: pointer !important;
  background-color: #fff !important;
  opacity: 1;
}

.form-control[disabled] {
  opacity: 0.4 !important;
}

.psg_dls {
  position: absolute;
  background: #fff;
  padding: 10px;
  top: 65px;
  border-radius: 10px;
  z-index: 9999;
}


.psg_dls .btn,
.btn_done {
  color: #fff;
  padding: 5px;
  line-height: 1;
  background-color: #0D47A1;
}

.btn_done {
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

.psg_dls .form-control {
  padding: 5px;
  height: 26px;
  line-height: 1;
  border-radius: 5px !important;
}

.psg_dls .input-group {
  gap: 5px;
}

.customradio:has(input[type="radio"]:checked) {
  background-color: #FB8500 !important;
  border-color: var(--falcon-primary);
  color: #fff !important;
}

.position-relative.p-4.p-md-5.rounded {
  background: #e1700d;
  max-width: 1140px;
}

/* banner css */
.home_banner {
  background: url('../img/hero-banner.png');
  background-size: cover;
  background-position: center;
  height: 320px;
  position: relative;
}

.inner-banner {
  background: url(../img/bread.png);
  padding: 4rem 0;
  background-position: bottom;
  background-size: cover;
}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}

.bn_heading {
  font-size: 16px;
}

p.fs-6 {
  font-size: 54px !important;
  font-weight: 800;
}

.searchForm {
  bottom: -3rem;
  z-index: 3 !important;
}

/* footer css  */

/* fixed cta css */
/* Show CTA box on mobile and tablet only */
@media (max-width: 991px) {
  #cta-box {
    display: flex !important;
  }
}

/* Hide on desktop */
@media (min-width: 992px) {
  #cta-box {
    display: none !important;
  }
}

/* Smooth closing animation */
#cta-box {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#cta-box.hiding {
  opacity: 0;
  transform: translateY(20px);
}

/* Close button hover effect */
#cta-close:hover {
  transform: rotate(90deg) scale(1.1);
  transition: transform 0.2s ease;
}

/* Call button hover effect */
#cta-box .btn:hover {
  background: #e27400 !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(251, 133, 0, 0.8) !important;
}


.footerBg {
  background-color: #14213D;
}

.ftrHeadng {
  color: #FF8F00 !important;
}

.hover-underline:hover {
  text-decoration: underline;
  text-decoration-color: var(--hover-color);
  text-underline-offset: 4px;
}

.btn-pill {
  border-radius: 50rem !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer-gradient {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* search result  css */
.airline-logo {
  height: 50px;
  width: 100px;
  object-fit: contain;
  background-color: var(--falcon-light);
  border-radius: 5px;
  overflow: hidden;
}

/* breadcrumb css  */
.breadcrumb-tem+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* css for toast  */
.toast {
  z-index: 10;
  animation: slideIn 0.5s ease-out;
  width: max-content;
  max-width: 290px;
}

/* Toast animation */
@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* loader css  */
.loader-box {
  z-index: 9999;
}

.loader-card {
  max-width: 600px;
  width: 100%;
}

.progress-bar-custom {
  animation: loading 2s ease-in-out infinite;
}

.progress-plane {
  animation: movePlane 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  75% {
    width: 85%;
  }

  90% {
    width: 90%;
  }

  100% {
    width: 90%;
  }
}

@keyframes movePlane {
  0% {
    left: 0%;
  }

  50% {
    left: 70%;
  }

  75% {
    left: 85%;
  }

  90% {
    left: 90%;
  }

  100% {
    left: 90%;
  }
}

/* popup styles */

.expedia-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: none;
}

@media (min-width: 769px) {
  .expedia-popup-overlay {
    display: none !important;
  }
}

.agent-image {
  width: 60px;
  height: 60px;
}

.btn-success {
  --bs-btn-bg: var(--bs-success);
  --bs-btn-border-color: var(--bs-success);
  --bs-btn-hover-bg: #7ab521;
  --bs-btn-hover-border-color: #7ab521;
}