* {
  margin: 0;
}
body {
  margin: 0;
  font-family: Arial;
  background-color: #ef7d0c21;
}
.logo-box {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  h2 {
    color: deepskyblue;
  }
}
.logo-box p {
  margin: 0;
  font-size: 12px;
  color: #ffbf00;
  font-family: math;
}
/* loader */
.companylogo {
  border-radius: 10px;
}

.nav-right-content {
  text-decoration: none;
  color: white;
}
.nav-right-content:hover {
  color: orange;
}
.top-call-bar {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-center a {
  position: relative;
  text-decoration: none;
  color: white;
  margin: 0 15px;
  transition: 0.3s ease;
}

.nav-center a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}
/* LEFT SIDE */
.call-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}

.call-left img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT PART */
.call-left h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.call-left p {
  margin: 0;
  font-size: 13px;
}

/* RIGHT SIDE (FLAG) */
.call-right img {
  width: 40px;
  height: auto;
}
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid orange;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #11111178;
  color: white;
  padding: 10px 20px;
}


/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 50px;
  text-decoration: none;
  color: inherit;
}

.nav-left img {
  height: 85px;
  width: 135px;
  position: absolute;
  left: -26px;
  top: -4px;
}

/* CENTER MENU */
.nav-center {
  display: flex;
  gap: 25px;
}

.nav-center a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-center a:hover {
  color: #ffcc00;
}

/* RIGHT */
.nav-right {
  display: flex;
  gap: 15px;
  font-size: 14px;
}

/* SLIDER */
.slider {
  height: 80vh;
  position: relative;
  overflow: visible;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

/* IMAGES */
.slide:nth-child(1) {
  background-image: url("images/slide2.jpg");
}
.slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05");
}
.slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1494515843206-f3117d3f51b7");
}
.slide:nth-child(4) {
  background-image: url("images/slide1.jpg");
}
.slide:nth-child(5) {
  background-image: url("images/Subscribe.jpg");
}

/* OVERLAY */
.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  .heading-bannermain {
    display: block;
    text-align: center;
    margin-top: 1em;
    color: #fff;
    position: relative;
    margin-bottom: 2em;
    text-shadow: 0 2px 2px rgb(0 0 0 / 40%);
  }
}

/* SEARCH BOX */
.search-box {
  box-shadow: 10px 10px black;
  background: #0000004f;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 1100px;
  font-weight: 700;
  display: grid;
  color: white;
}

/* TRIP TYPE */
.trip-type-parent {
  margin-bottom: 10px;
}

.trip-type {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  color: white;
}

.trip-type input {
  margin-right: 5px;
}

/* MAIN ROW */
.trip-data {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
}

/* INPUT GROUP */
.input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 150px;
  position: relative;
}

.tooltip-error {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 11px;
  color: #fff;
  background: red;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  display: none;
}
.input-wrap {
  position: relative;
  width: 100%;
}
.input-group label {
  font-size: 13px;
  margin-bottom: 5px;
}

.input-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
input[type="date"] {
  cursor: pointer;
}

/* PASSENGER */
.passenger-box {
  position: relative;
  max-width: 200px;
}

#passengerInput {
  padding: 11.5px;
  cursor: pointer;
}

/* BUTTON */
#quoteBtn {
  font-size: x-large;
  height: 42px;
  padding: 0 20px;
  margin-top: 15px;
  background: orange;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#quoteBtn:hover {
  background-color: rgb(255, 102, 0);
}

/* SUGGEST DROPDOWN */
.suggest {
  color: black;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  /* max-height: 150px; */
  overflow-y: auto;
  z-index: 10;
  /* border-radius: 5px; */
  max-height: 220px;
  overflow-y: auto;
  border-radius: 6px;
}
.suggest div {
  padding: 8px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.suggest div:hover {
  background: #f5f5f5;
}
/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

/* Scrollbar track (background line) */
::-webkit-scrollbar-track {
  background: black; /* 👈 yeh black karega line */
}

/* Scrollbar thumb (moving part) */
::-webkit-scrollbar-thumb {
  background: orange;
  border-radius: 10px;
}

/* Hover effect (optional) */
::-webkit-scrollbar-thumb:hover {
  background: darkorange;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
}

.popup-content {
  background: white;
  width: 500px;
  padding: 25px;
  margin: 120px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FORM */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#title {
  max-width: 80px;
}

#submitForm {
  width: 100%;
  padding: 12px;
  background: orange;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#submitForm:hover {
  background-color: rgb(255, 102, 0);
}

/* PASSENGER DROPDOWN */
.passenger-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 185px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  color: black;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  #infantCount,
  #childCount,
  #adultCount {
    top: 6px;
    position: relative;
  }
  button:hover {
    background-color: rgb(255, 102, 0);
  }
}

.counter {
  display: flex;
  gap: 10px;
}

.counter button {
  width: 30px;
  height: 30px;
  background: orange;
  border: none;
  color: white;
  border-radius: 50%;
}

.done-btn {
  width: 100%;
  padding: 10px;
  background: orange;
  border: none;
  color: white;
  border-radius: 5px;
}
.done-btn:hover {
  background-color: rgb(255, 102, 0);
}

/* INPUT RESET */
input,
select {
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

select {
  appearance: none;
  background: white;
  padding: 10px;
  border-radius: 6px;
}

input:focus,
select:focus {
  border: 1px solid #ffc107;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}
#returnGroup {
  display: flex; /* 🔥 hamesha flex rahe */
}

.hidden {
  display: none !important;
}
.popup-header {
  position: relative;
  padding-bottom: 1.75rem;
  text-align: center; /* 🔥 heading center */
}

#close {
  position: absolute;
  bottom: 18px;
  right: 0px; /* 🔥 left corner */
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

#close:hover {
  color: orange;
}
input[name="trip"] {
  accent-color: orange;
}
.radio-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* Hide default radio */
.radio-container input {
  display: none;
}

/* Custom outer circle */
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid orange; /* 🔥 outer border orange */
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

/* Inner dot */
.custom-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffb347; /* 🔥 light orange */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease;
}

/* When checked */
.radio-container input:checked + .custom-radio::after {
  transform: translate(-50%, -50%) scale(1);
}
.radio-container:hover .custom-radio {
  border-color: rgb(255, 102, 0);
}
/* FEATURES */
.features {
  display: flex;
  justify-content: space-between;
  padding: 25px 60px;
  background: #f5f5f5;
  border-radius: 12px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 30%;
}

.feature-box img {
  width: 50px;
}

.feature-box h3 {
  margin: 0;
  font-size: 18px;
}

.feature-box p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #555;
}

/* DESTINATION SECTION */
.destinations {
  text-align: center;
  padding: 40px 20px;
}
.destination-span {
  color: orange;
}
/* small heading */
.sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sub-heading .lines {
  width: 50px;
  height: 2px;
  background: orange;
}

.sub-heading p {
  color: orange;
  font-weight: bold;
  letter-spacing: 1px;
}

/* main heading */
.destinations h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #0a1f44;
}

/* description */
.desc {
  color: #666;
  font-size: 14px;
}

.destination-cards {
  display: flex;
  gap: 20px;
  padding: 30px 60px;
  margin: 2rem;
  margin-top: 0px;
  background-color: #fff;
  border-radius: 1rem;
}

/* CARD */
.card {
  position: relative;
  flex: 1;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* DARK OVERLAY */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* TEXT */
.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.card-overlay h3 {
  margin: 0;
  font-size: 22px;
}

.card-overlay p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* HOVER EFFECT 🔥 */
.card:hover img {
  transform: scale(1.1);
}
.cancelLink {
  cursor: pointer;
}
.cancelLink:hover {
  color: orange;
}

/* subscribe */
.subscribe {
  background: url("images/Subscribe.jpg") center/cover;
  padding: 40px 60px;
  position: relative;
}

/* overlay */
.subscribe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.8); /* dark blue overlay */
}

.subscribe-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.subscribe-left {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.subscribe-left img {
  width: 50px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg); /* 🔥 orange look */
}

.subscribe-left h2 {
  margin: 0;
  font-size: 28px;
}

.subscribe-left p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* RIGHT */
.subscribe-right {
  display: flex;
  gap: 10px;
}

.subscribe-right input {
  padding: 12px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.subscribe-right button {
  background: orange;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
  height: 40px;
}

.subscribe-right button:hover {
  background: rgb(255, 102, 0);
}

/* airline slider */

.airlines {
  background: #f5f5f5;
  padding: 50px 0;
  background: #fff;
  text-align: center;
}
.airlines-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.airlines-heading .lines {
  width: 50px;
  height: 2px;
  background: orange;
}

/* heading same like reference */
.title {
  font-size: 28px;
  font-weight: 700;
}

.title span {
  color: orange;
}

/* slider */
.airline-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 🔥 MAIN FIX */
.airline-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content; /* important */
  animation: airlineScroll 20s linear infinite;
}

/* card */
.airline-card {
  width: 180px;
  height: 100px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0; /* 🔥 important */
}

/* animation */
@keyframes airlineScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.airline-card:hover {
  transform: scale(1.1);
  transition: 0.3s;
  border-radius: 8px;
}

/* hover stop */
.airline-slider:hover .airline-track {
  animation-play-state: paused;
}

.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.popup-box h2 {
  margin-bottom: 10px;
}

.popup-box button {
  margin-top: 15px;
  padding: 8px 18px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* error handeling css */
.input-error {
  border: 2px solid red !important;
}

.error-msg {
  font-size: 11px;
  color: red;
  margin-top: 3px;
}

.social-section {
  margin-top: 15px;
  position: absolute;
  right: 250px;
  top: 115px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: orange;
  transform: scale(1.2);
}
