/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
}

.main-header {
  background-color: #003b95;
  padding: 10px 60px;
  /* border-bottom: 1px solid #eee; */
  /* max-width: 90%; */
  /* margin: 0 auto; */
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.justify-center {
  justify-content: center;
}
.space-bw {
  justify-content: space-between;
}
.space-between {
  justify-content: space-between;
}
/* Logo Styling */
.logo img {
  height: 65px; /* Adjust based on your logo image aspect ratio */
  display: block;
}
.logo a{
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

/* Nav Links Styling */
.nav-links {
  flex-grow: 1;
  display: none;
  justify-content: flex-end;
  margin-right: 40px;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2b70c9;
}

/* Support Widget Pill Styling */
/* .support-widget {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  height: 40px;
  border: 2px solid #ffb400;
} */

.support-info {
  background-color: #ffcc33; /* Yellow Background */
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 10px;
  height: 100%;
}

.agent-box {
  position: relative;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #ff8c00;
  overflow: visible; /* To allow status dot to peek out */
}

/* .agent-box::before,
.agent-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgb(253 48 29);
  animation: pulseSpread 2.8s ease-out infinite;
  z-index: 1;
} */

/* @keyframes pulseSpread {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
} */

.agent-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: #4caf50; /* Online Green */
  border: 2px solid white;
  border-radius: 50%;
}

.support-label {
  font-size: 13px;
  font-weight: bold;
  color: #1a4da3; /* Deep Blue text */
  white-space: nowrap;
}

.phone-box {
  background-color: #2b70c9; /* Blue Background */
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.phone-box a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
.hamburger {
  display: none;
  color: #fff;
}
/* Default (desktop) */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  /* .nav-links {
    position: absolute;
    top: 65px; 
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 15px 0;
    display: none;
  } */

  .nav-links.active {
    /* display: flex; */
    align-items: center;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}


/* Hamburger default hidden on desktop */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 22px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 44px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 10px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 0px;
  }
  .nav-links.col-33.active{
    width: 160px !important;
  }



  .nav-links a {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    color: #000;
  }

  .nav-links.active {
    display: flex;
  }
}


/* Responsive adjustments for Mobile */
@media (max-width: 900px) {
  .nav-links {
    margin-right: 0;
    justify-content: center;
  }
  .hamburger {
    display: block;
    margin-left: 10px;
    font-size: 19px;
  }
  .container {
    max-width: 95%;
  }
  .logo {
    width: 130px;
  }
  .logo a {
    font-size: 16px;
}
  .logo img {
    height: 44px;
    display: block;
  }
  .phone-box a {
    font-weight: 500;
    font-size: 10px;
  }
  .support-label {
    font-size: 10px;
    font-weight: bold;
    color: #1a4da3;
    white-space: nowrap;
  }
  .container {
    padding: 0px 0;
  }
  .support-widget {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
    height: 32px;
    border: 2px solid #ffb400;
  }
  .agent-box {
    position: relative;
    width: 35px;
    height: 27px;
    background: #fff;
    border-radius: 50%;
    border: none;
    overflow: visible;
  }
  .main-header {
    padding: 10px 10px;
    
  }

  .search-now-btn {
    padding: 8px !important;
    font-size: 16px !important;
  }
}

/* banner   */
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.hero-section {
  /* height: 100vh; */
  /* background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("images/bg_image.webp") no-repeat center center/cover; */
  /* display: flex;
  align-items: center;
  padding: 0 8%; */
background-color: #003b95;
  float: left;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 6rem;
  position: relative;
  min-height: 350px;
  background-position: 50% 0px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
.banner-plane {
  position: absolute;
  top: 10%;
  right: 180px;
  width: 200px;
}
.banner-plane img{
  width: 100%;
}
.text-header h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.text-header p {
  color: white;
  font-size: 24px;
  margin-bottom: 30px;
}

/* Glassmorphism Search Box */
.search-container {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  /* padding: 15px; */
  border-radius: 15px;
  width: 100%;
  max-width: 650px;
}

/* .tabs {
  margin-bottom: 20px;
} */

.tab {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 5px;
}

.tab.active {
  background: #29abe2; /* Blue color from image */
  font-weight: 600;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-end;
}

.input-group {
  flex: 1;
  background: #ffffff94;
  padding: 8px 12px;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #555;
  margin-bottom: 4px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-wrapper i {
  color: #666;
  font-size: 14px;
}

.input-wrapper input,
.input-wrapper select {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  color: #000;
}

/* Swap Button Circle */
.swap-btn {
  /* background: white; */
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  /* margin-bottom: 10px; */
  cursor: pointer;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

/* Disabled State for One Way */
.input-group.disabled {
  opacity: 0.4;
  background: rgba(200, 200, 200, 0.8);
  pointer-events: none;
}

/* Main Button */
.search-now-btn {
  width: 100%;
  padding: 14px;
  background: #ff4d4d; /* Vibrant red from image */
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 5px;
}

.search-now-btn:hover {
  background: #e63535;
}
.col-50 {
  width: 49%;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 10px 0;
}
.banner-plane{
  display: none;
}
.contact-grid {
 
  gap: 10px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px !important;
  background: #fdfdfd;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #eee;
}
  .contact-section {
    padding: 20px 0;
}
  .banner-plane {
  
    top: 14%;
    right: 30px;
    width: 110px;
}
  /* .form-row {
    flex-direction: column;
  } */
  .swap-btn {
    display: none;
  }
  .text-header h1 {
    font-size: 30px;
  }
  .hero-section {
    min-height: 500px;
    background-position: 68% 0px;
  }
  .input-wrapper input,
  .input-wrapper select {
    font-size: 11px;
  }
  .counter-row {
    margin-bottom: 8px;
  }
  .traveler-popup {
    padding: 10px;
    z-index: 1000;
  }
  .traveler-popup {
    padding: 10px !important;
  }
  .done-btn {
    padding: 6px 0;
  }
  .counter-row {
    margin-bottom: 10px !important;
  }
  .hero-section {
    padding-bottom: 8rem;
    margin-bottom: 80px;
  }
}
/* Position the parent relative so the popup anchors to it */
.traveler-group {
  position: relative;
  cursor: pointer;
}

.traveler-popup {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 204px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  height: 170px;
}

.traveler-popup.active {
  display: block;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.label-info {
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.count-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #efefef;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.2s;
}

.count-btn:hover {
  background: #f0f0f0;
  border-color: #999;
}

.count-val {
  font-weight: bold;
  font-size: 12px;
  width: 20px;
  text-align: center;
  color: #000;
}

.minor-link {
  display: block;
  color: #29abe2;
  text-decoration: none;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.minor-link:hover {
  text-decoration: underline;
}

.done-btn {
  width: 100%;
  padding: 5px;
  background: #006ce4; 
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

/* why choose  */
.why-choose {
  /* padding: 60px 0;
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  /* position: relative; */
  display: block; /* Ensures it acts as a separate block */
  clear: both; /* Ensures it stays below any floats */
  background-color: #ffffff;
  /* z-index: 1; */
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 1000px;
}

/* Grid setup to match the 4-top, 2-bottom look */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid #e1e8f0; /* Soft light blue border */
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;

  background: #fed00105;
  border: 1px solid #1b6dc23b;
  border-radius: 10px;
}

/* To make the last two cards centered or span specifically */
.feature-card.bottom-row {
  grid-column: span 2; /* Spans 2 columns to center the 2 bottom cards */
}

.card-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.card-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card.bottom-row {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
  .feature-card.bottom-row {
    grid-column: span 1;
  }
}

/* ////  section */
.class-of-service {
  padding: 60px 0;
  background-color: #fff;
}

.class-of-service .section-desc {
  margin-bottom: 40px;
  max-width: 1100px;
}

.class-of-service .section-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: 15px;
  overflow: hidden; /* Clips the image and label to the rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensures the image fills the area without stretching */
  display: block;
}

/* Red Label at the Bottom */
.service-label {
  background:#003b95;
  color: white;
  text-align: center;
  padding: 12px 5px;
  font-weight: bold;
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* ///// section */
.about-portal {
  background-color: #032663; /* Dark Navy Blue */
  padding: 60px 0;
  color: #ffffff;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Styling */
.about-content {
  flex: 1.2; /* Takes up a bit more space than the image */
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Image Styling */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px; /* Rounded corners as seen in the image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column; /* Stack vertically on tablets/phones */
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

/* footer  */
/* Footer Container */
.site-footer {
  font-family: Arial, sans-serif;
  color: white;
}

/* Top Icon Bar */
.footer-top-bar {
  background-color: #023481;
  padding: 30px 0;
  border-bottom: 2px solid #ff9900; /* Orange line */
}

.icon-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.icon-item i {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.icon-item span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Main Footer Content */
.footer-main {
  background-color: #023481;
  padding: 20px 0;
}

.main-flex {
  display: flex;
  justify-content: space-between;
}

.footer-about {
  flex: 2;
}
.footer-about.col-33 h3 a{
color: #fff;
}
.footer-contact {
  flex: 1;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
}
.footer-main h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-main p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: #fff;
}

/* Disclaimer Section */
.footer-disclaimer {
  background-color: #023481;
  color: #444;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid #ddd;
}
.footer-disclaimer p {
  color: #fff;
  font-size: 14px;
}

/* Bottom Copyright Bar */
.footer-bottom {
  background-color: #023481;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.col-33 {
  width: 32%;
}

/* Responsive Stacking */
@media (max-width: 768px) {
  .icon-flex {
    flex-direction: column;
    gap: 30px;
  }

  .main-flex {
    flex-direction: column;
    gap: 20px;
  }
  .col-33 {
    width: 100% !important;
    text-align: left;
  }
}

.footer-pages li {
  list-style: none;
  margin-bottom: 5px;
}
.footer-pages li a {
  color: #fff;
  text-decoration: none;
}

/* abouy page  */
.page-banner {
  /* Red linear gradient from left to right */
  background: linear-gradient(90deg, #ed2124 0%, #ff5252 100%);

  /* Section sizing */
  width: 100%;
  height: 180px; /* Adjust this to change the banner height */

  /* Center the text vertically and horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner h1 {
  color: #ffffff;
  font-family: "Arial", sans-serif; /* Replace with your site font */
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.info-section {
  padding: 40px 0;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.info-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.info-section p {
  margin-bottom: 15px;
  font-size: 15px;
}

.info-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.info-section li {
  margin-bottom: 8px;
  font-size: 15px;
}

.info-section a {
  color: #023481; /* Matching your blue theme */
  text-decoration: none;
  font-weight: 500;
}

.info-section a:hover {
  text-decoration: underline;
}

.support-details,
.company-info {
  margin-bottom: 20px;
}

.support-details p,
.company-info p {
  margin-bottom: 5px;
}

.info-section strong {
  color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* .info-section {
    padding: 20px 15px;
  } */

  .info-section h3 {
    font-size: 20px;
  }
}

/* contact us page  */
/* --- Contact Page Specific Styles --- */

/* 1. Red Banner */
.page-banner {
  background: #003b95;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  border-top: 1px solid #fff;
}
.page-banner h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
}

/* 2. Grid Layout */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Info side is narrower than form side */
  gap: 40px;
}

/* 3. Info Cards (Left Side) */
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #023481; /* Theme Blue */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.info-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.info-text p,
.info-text a {
  font-size: 15px;
  color: #666;
  text-decoration: none;
}

/* 4. Contact Form (Right Side) */
.contact-form-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #023481;
}

.contact-form-container p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #023481; /* Blue glow on focus */
}

.submit-btn {
  background: #023481;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #e63535;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
  .contact-section {
    padding: 30px 0;
}
  .contact-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
  }

  .form-row {
    /* flex-direction: column; */
    gap: 1;
  }
}

/* privacy page */
/* --- Legal/Privacy Page Styles --- */

.legal-section {
  padding: 20px 0;
}

.legal-content {
  /* max-width: 900px; 
  margin: 0 auto; */
  color: #333;
  line-height: 1.8; /* Increased line height for readability */
}

.last-updated {
  font-style: italic;
  color: #777;
  margin-bottom: 30px;
}

.legal-content h3 {
  font-size: 22px;
  color: #023481; /* Theme Blue */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.legal-content ul {
  margin-bottom: 25px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.legal-content strong {
  color: #1a1a1a;
}

.contact-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #ff4d4d; /* Red Accent */
  margin-top: 20px;
}

.contact-box a {
  color: #023481;
  text-decoration: none;
  font-weight: bold;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .legal-section {
    padding: 10px 15px;
  }
  .legal-content h3 {
    font-size: 20px;
  }
}
.input-group {
  position: relative;
}
.input-group .input-wrapper ul {
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  overflow-y: auto;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
  z-index: 99999;
  width: 100%;
  height: 250px;
}

.input-group .input-wrapper ul li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #006643;
  font-size: 14px;
  color: #006643;
  list-style: none !important;
}

/* sadsadasdasd */
.airlineModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99999;
  display: none;
}

.mod-top.allegiant {
  text-align: center;
  margin:15px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.mod-top img {
  width: 200px;
}   
.mod-mid-image{
  width: 100%;
  padding: 20px;
  /* background-color: #003b95;
    margin: 7px 0; */
}
.mod-mid-image img {
 height: 100%;
 width: 100%;
  display: block;
  margin: 0px auto 20px;
}

.mod-mid h3 {
  text-align: center;
  text-transform: capitalize;
  font-size: 19px;
  text-decoration: underline;
  color: #003b95;
}

.mod-mid .flex.align-center {
  background: #003b95;
  border-radius: 30px;
  padding: 10px;
  margin: 20px 0;
}

.mod-mid .flex.space-between {
  margin: 14px 0;
  padding: 0 15px;
}

.mod-mid .flex .icon {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.mod-mid .flex .icon i {
  font-size: 26px;
}

.mod-mid .flex .text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.mod-mid .flex .text a {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.mod-mid .iaia > div {
  width: 32.33%;
  text-align: center;
}

.mod-mid .iaia i {
  color: #003b95;
  margin-bottom: 10px;
  font-size: 24px;
}

.mod-mid .iaia p {
  font-size: 14px;
}

.mod-mid .reserve {
  background: #003b95;
  padding: 10px 0;
  text-align: center;
  margin: 15px 0;
}

.mod-mid .reserve p {
  font-size: 16px;
  color: #fff;
}

.mod-foot .flex.align-center {
  background: #003b95;
  padding: 10px;
  margin: 0px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  justify-content: center;
}

.mod-foot .flex .icon {
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
}

.mod-foot .flex .icon i {
  font-size: 26px;
}

.mod-foot .flex .text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.mod-foot .flex .text a {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}



/* //// */
.booking-ui {
  background: #fff;
  border-radius: 10px;
  /* padding: 14px; */
  max-width: 1200px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  position: absolute;
  bottom: -30px;
  border: 3px solid #ffb700;
}

/* TOP BAR */
.booking-top {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  /* margin-bottom: 12px; */
  padding: 15px;
}

.booking-top input {
  accent-color: #006ce4;
}

.booking-top select {
  border: none;
  background: transparent;
  font-weight: 600;
  
  width: 90px;
}

/* MAIN FORM */
.booking-form {
  display: flex;
  align-items: center;
  /* gap: 6px; */
}

/* INPUT FIELD */
.booking-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #febb02;
  border-radius: 5px;
  padding: 10px;
  flex: 1;
  position: relative;
}

.booking-field i {
  color: #006ce4;
  font-size: 18px;
}

.booking-field small {
  font-size: 11px;
  color: #666;
  display: block;
}

.booking-field input {
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
}

/* SWAP */
.booking-swap {
  background: #fff;
  border: 2px solid #febb02;
  border-radius: 0;
  width: 43px;
  height: 60px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  cursor: pointer;
}

/* SEARCH BUTTON */
.booking-search-btn {
  background: #006ce4;
  color: #fff;
  border: 2px solid #ffb700;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 0px;
  cursor: pointer;
}

.booking-search-btn:hover {
  background: #0053b3;
}

/* DROPDOWN FIX */
.dropdown-list {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #efefef;
}
.dropdown-list {
  list-style: none;          /* ❌ remove bullets */
  padding: 0;
  margin: 0;
  background: #fffefa;        /* black background */
  border-radius: 4px;
  max-height: 250px;
  overflow-y: auto;
}

.dropdown-list li {
  list-style: none;          /* extra safety */
  padding: 10px 12px;
  color: #000;               /* ✅ white text */
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.dropdown-list li:hover {
  background: #efefef;       /* nice blue hover */
  color: #000;
}


.explore-section {
  padding: 20px 0px;
}

.explore-section h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.explore-section .subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* GRID */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.explore-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-overlay h3 {
  font-size: 18px;
}

.flag {
  font-size: 18px;
}

/* ANYWHERE CARD */
.anywhere {
  background: #003b95;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anywhere-content {
  text-align: center;
  color: #fff;
}

.anywhere-content .globe {
  font-size: 40px;
  margin-bottom: 10px;
}

.anywhere-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.anywhere-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-card {
    height: 260px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .booking-form {
    flex-wrap: wrap;
    display: block;
  }

 
  .booking-search-btn {
  
    padding: 9px 28px;
    font-size: 14px;
  
    width: 100%;
}
  .tabs {
    margin-bottom: 0;
}
.booking-ui {
  left: 2.5%;
  bottom: -110px;
  border: 3px solid #ffb700;
  width: 95%;
}
.traveler-popup {
  
  bottom: -154px;
  left: 0px;
  width: 100%;

  border-radius: 0;
  
  height: 150px;
}
}





.popular-flights {
  padding: 20px 0px;
}

.popular-flights h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.popular-flights .subtitle {
  color: #666;
  margin-bottom: 20px;
}

/* Tabs */
.flight-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.flight-tabs .tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 15px;
  cursor: pointer;
  color: #555;
  position: relative;
}

.flight-tabs .tab.active {
  color: #0b5cff;
  font-weight: 600;
}

.flight-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0b5cff;
}

/* Grid */
.flight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.flight-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.flight-card:hover {
  transform: translateY(-6px);
}

.flight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.flight-info {
  padding: 14px;
}

.flight-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.flight-info p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
  .flight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .flight-grid {
    grid-template-columns: 1fr;
  }

  .flight-card img {
    height: 160px;
  }
}

.call_btn{
  background: #fff;
  padding: 10px 15px;
}

.call_btn a{
  color: #006ce4;
  font-weight: 500;
}