/* font style use localy */
@import url(fonts.css);
@import url(loader.css);
@import url(toast.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;
}

/* header page css for form */
.bg-none {
  background: none !important;
}

.header {
  transition: transform 0.4s ease-in-out, top 0.4s ease-in-out;
  transform: translateY(0);
  z-index: 1000;
  position: sticky;
  top: 0px;
  background-color: #fff;
}

.sticky-header {
  position: sticky !important;
  top: 0.5rem !important;
  animation: slideDown 0.4s ease forwards;
  z-index: 1030;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* custum css start  */
.navbar-nav .nav-link {
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: var(--falcon-primary);
  color: #fff;
}

.navbar-nav .nav-link.active {
  background-color: var(--falcon-secondary);
  color: #fff;
}


/* banner css */
.home_banner {
  padding-top: 200px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-image: url(../img/home_banner.jpg);
}

.home_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.8),
      /* blue with 50% opacity */
      rgba(0, 210, 255, 0.3)
      /* light blue with 50% opacity */
    );
  pointer-events: none;
  z-index: 1;
}

.home_banner h1 {
  font-size: 50px;
}

.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;
}

.bn_heading {
  font-size: 80px;
}


/* footer css  */
/* payment_icons fooetr css */
.payment_icons {
  background-color: var(--falcon-primary);
}

.payment_icons img {
  height: 28px;
}

.form-control::placeholder,
.form-control {
  color: #000;
}

.desti-sec img {
  height: 200px;
  object-fit: cover;
}

.enquiry-fixed {
  bottom: 30px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  z-index: 9999;
}

.object-fit-cover {
  object-fit: cover;
}

/* Wrapper optional: can use to dim background if needed */
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  /* prevent interaction outside open menu */
}

/* Actual menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -270px;
  /* hidden offscreen */
  width: 270px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 1rem;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: left 0.3s ease-in-out;
  pointer-events: auto;
}

/* When Bootstrap adds "show" class (after collapse is open) */
.mobile-menu.show {
  left: 0;
  /* slide into view */
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  line-clamp: 2; 
  overflow: hidden;
  text-overflow: ellipsis;
}