/* font style use localy */
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* search form css */
@import url(header.css);
@import url(banner-form.css);
@import url(loader.css);
@import url(toast.css);

html, body {
  overflow-x: hidden;
}


.breadcrumb-tem+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* header page css for form */
.bg-none {
  background: none !important;
}

/* banner css */
.home_banner {
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(5px);
  background-repeat: no-repeat;
  z-index: 99;
}

.home_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.home_banner h1 {
  line-height: 1.5;
}

.fill-mode {
  fill: #fff !important;
}

.rotate-180 {
  -webkit-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
}

.inner-banner {
  background: none;
  padding: 30px 0px !important;
  background: var(--falcon-primary) !important;

}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Pro"; 
  font-weight: 900; 
  content: "\f105"; 
  color: #fff; 
  padding-right: 8px;
}

.bn_heading {
  font-size: 80px;
}

/* Trending destinations Css */
.trend-desti:before {
  position: absolute;
  content: "";
  background-image: url(../img/feature-bg.png );
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .2;
  width: 100%;
  height: 735px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}


/* offer-card css */
.custom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
  transform: translateY(-8px);
}

/* footer css  */
/* payment_icons fooetr css */
.payment_icons {
  background-color: var(--falcon-primary);
}

.payment_icons img {
  height: 28px;
}

.assist-img {
  height: 6.125rem;
  width: 6.125rem;
  min-width: 6.125rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistance-btn {
  background: linear-gradient(to right,
      var(--falcon-primary),
      color-mix(in srgb, var(--falcon-primary) 70%, var(--falcon-secondary) 30%),
      var(--falcon-secondary));
  background-size: 200% auto;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

.assistance-btn:hover {
  background-position: right center;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-loading {
  animation: progressAnim 2s infinite linear;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.bg-search {
  background-color: #f2f2f2;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.cta-gradient {
  background: linear-gradient(135deg, rgb(var(--falcon-primary-rgb), 0.5) 0%, rgb(var(--falcon-primary-rgb), 1) 100%);
}

.bg-pattern-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 15px 15px;
  color: rgba(255, 255, 255, 0.3);
}

.circle-blur {
  filter: blur(60px);
  opacity: 0.5;
  border-radius: 50%;
}

.deal-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      /* top color with opacity */
      rgba(0, 0, 0, 0.5)
      /* bottom color with opacity */
    ),
    url(../img/deal-bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
  /* optional, for white text on dark overlay */
}

.shape-element {
  bottom: -1px;
  position: absolute;
  fill: #ffffff;

  z-index: 4;
  width: 100%;
}

.shape-element svg {
  height: 70px;
  line-height: 0px;
  width: 100%;
}

.bottom-to-up {
  transform: rotate(180deg);
}
.top-element {
 top: -1px !important;
 bottom: auto !important;
}
.form-control::placeholder{
  color: #000 !important;
}

.bg_flight {
  background: #344050;
  color: #fff !important;
  padding: 5px;
}

.bg-arc {
  background: var(--falcon-primary);
  color: #fff !important;
  padding: 5px;
  width: 15%;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}


span.aa-service-tag {
    background: #205198;
    padding: 8px 17px 8px 10px;
    line-height: 43px;
    color: #fff !important;
    display: ruby-text;
    font-size: 13px;
}

.aa-service-tag  {
       width: 100%!important;
 }
 .btn-close {color: #000!important; position: absolute; z-index: 1000000!important; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")!important;;}

 .btn-close {
    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")!important;
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
}



.title-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--falcon-white);
  position: relative;
  background: var(--falcon-primary);
  border-radius: 50px;
  padding: 5px 10px 5px 2px;
}
.title-tagline i {
  font-size: 16px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--falcon-white);
  color: var(--falcon-primary);
  text-align: center;
  border-radius: 50px;
}
.title-heading {
  font-weight: 700;
  text-transform: capitalize;
  color: var(--falcon-dark);
  margin-top: 8px;
  margin-bottom: 0;
}

.about-img{
  text-align: right;
  position: relative;
}
.about-img .shape{
  position: absolute;
  top: -15px;
  left: 70px;
  width: 35%;
}
.about-img .img-1{
  width: 58%;
  border-radius: 200px;
}
.about-img .img-2{
  position: absolute;
  left: 50px;
  bottom: 0px;
  width: 50%;
  border-radius: 200px;
  border: 10px solid #fff;
}

.step-card {
  text-align: center;
  transition: all .35s ease;
  padding: 20px;
  position: relative
}
.step-card img {
  width: 70px;
  filter: brightness(0) saturate(100%);
  margin-bottom: 15px;
}
.step-card .contents h4 {
  font-weight: 700
}
.step-card .contents h3 {
  background: linear-gradient(180deg, #000 -97.22%, #76767600 91.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 700
}
.step-card:hover,
.step-card:focus {
  border-radius: 18px;
  background: #f7f5f2;
}


.flight-booking-title {
  background-color: var(--falcon-primary);
  color: var(--falcon-white);
  border-radius: 15px 15px 0 0;
  padding: 10px;
  font-size: 20px;
}
.flight-booking-item{
  background: var(--falcon-white);
  border-radius: 0 0 15px 15px;
  padding: 15px 12px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.flight-booking-item .flight-booking-content {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.flight-booking-item .flight-booking-content:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}
.flight-booking-item .flight-booking-airline{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flight-booking-item .flight-booking-time{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.flight-booking-item .flight-booking-time .start-time,
.flight-booking-item .flight-booking-time .end-time{
  display: flex;
  align-items: center;
  gap: 12px;
}
.flight-booking-item .flight-booking-time i{
  font-size: 20px;
  color: var(--falcon-primary);
}
.flight-booking-item .flight-text{
  color: var(--falcon-dark);
  font-weight: 500;
}
.flight-booking-item .flight-stop{
  text-align: center;
}
.flight-booking-item .flight-stop-arrow{
  margin-top: 5px;
  border-top: 3px solid var(--falcon-dark);
  position: relative;
  width: 140px;
}
.flight-booking-item .flight-stop-arrow::before{
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: var(--falcon-dark) transparent transparent transparent;
  right: -1.5px;
  top: -9.6px;
  transform: scaleY(-1);
}


.blog-item {
  background: var(--falcon-white);
  padding: 20px;
  border-radius: 50px 50px 50px 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  position: relative;
  display: flex;
  align-items: center;
}
.blog-date{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  background: var(--falcon-white);
  color: var(--falcon-primary);
  font-weight: 500;
  border-radius: 50px;
  padding: 2px 15px;
  z-index: 1;
  white-space: nowrap;
}
.blog-item-img {
  overflow: hidden;
  border-radius: 50px 50px 50px 0;
}
.blog-item-img img {
  border-radius: 50px 50px 50px 0;
  transition: all .5s ease-in-out;
}
.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}
.blog-item-info {
  padding-left: 20px;
}
.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.blog-item-info h4 a {
  color: var(--falcon-dark);
  text-decoration: none;
}
.blog-item-info h4 a:hover {
  color: var(--falcon-primary);
}

.airline-card {
  display: block;
  padding: 12px 18px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: var(--falcon-white);
  color: var(--falcon-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.airline-card:hover {
  background-color: var(--falcon-primary);
  color: var(--falcon-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}