/* Custom styles beyond Tailwind */
/* bg-[#1F027D] */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Custom form styling */
select,
input,
button {
  outline: none;
}
/* Base styles for the navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: transparent; /* Initial transparent background */
}

/* Styles for when the navbar is scrolled */
.navbar.isScrolled {
  background-color: #cf151c; /* The red background color */
}

/*login button */

.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgb(0, 0, 0);
}

.auth-container {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  padding: 40px 30px 70px 30px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.auth-modal-overlay.active .auth-container {
  transform: translateY(0);
}

.auth-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1001;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.auth-close-btn:hover {
  background: #f5f5f5;
  color: #333;
  border-color: #ccc;
}

@media (max-width: 480px) {
  .auth-close-btn {
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

.content-section {
  text-align: center;
  margin-bottom: 30px;
}

.content-carousel {
  margin-bottom: 25px;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
}

.content-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.rewards-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #cf151c, #b8131a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.rewards-icon::before {
  content: "★";
  font-size: 36px;
  color: white;
  font-weight: bold;
}

.travel-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #cf151c, #b8131a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.travel-icon::before {
  content: "✈";
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.discount-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #cf151c, #b8131a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.discount-icon::before {
  content: "%";
  font-size: 36px;
  color: white;
  font-weight: bold;
}

.discount-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
}

.sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffd700;
  border-radius: 50%;
  animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.sparkle:nth-child(2) {
  top: 15%;
  right: 20%;
  animation-delay: 0.5s;
}
.sparkle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}
.sparkle:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

h2 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.auth-brand-logo {
  color: #cf151c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.auth-brand-logo::after {
  content: "🌿";
  margin-left: 5px;
}

.auth-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 25px 0 15px 0;
  color: #999;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  padding: 0 15px;
}

.email-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
}

.email-input:focus {
  border-color: #cf151c;
  box-shadow: 0 0 0 3px rgba(207, 21, 28, 0.1);
}

.email-input::placeholder {
  color: #999;
}

.continue-btn {
  width: 100%;
  background: #9ca3af;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.continue-btn:hover {
  background: #6b7280;
}

.continue-btn.active {
  background: #cf151c;
}

.continue-btn.active:hover {
  background: #b8131a;
}

.social-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.social-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  transform: translateY(-2px);
}

.social-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.facebook-circle {
  background: #1877f2;
  color: white;
}

.google-circle {
  background: #f5f5f5;
  color: #4285f4;
  border: 1px solid #e0e0e0;
}

.apple-circle {
  background: #000;
  color: white;
}

.fb-icon {
  font-size: 24px;
  font-family: Arial, sans-serif;
}

.google-g {
  font-size: 20px;
  font-family: "Product Sans", Arial, sans-serif;
  font-weight: 500;
}

.apple-icon {
  font-size: 20px;
  filter: brightness(0) invert(1);
}

.social-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.auth-terms {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: calc(100% - 40px);
}

.auth-terms a {
  color: #cf151c;
  text-decoration: none;
}

.auth-terms a:hover {
  text-decoration: underline;
}

.progress-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  height: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #cf151c;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(207, 21, 28, 0.3);
}

@media (max-width: 480px) {
  .auth-container {
    margin: 10px;
    padding: 30px 20px;
  }

  h2 {
    font-size: 20px;
  }

  .discount-icon {
    width: 60px;
    height: 60px;
  }

  .discount-icon::before {
    font-size: 28px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  header nav ul li {
    margin: 0.5rem 0;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
/* Inactive button styles */
.flight-type-button,
.hotel-type-button,
.tour-type-button {
  background-color: #ffffff !important;
  color: #666 !important;
  border: 1px solid #e0e0e0 !important;
  transition: all 0.3s ease !important;
}
.flight-type-button:hover,
.hotel-type-button:hover,
.tour-type-button:hover {
  background-color: #f5f5f5 !important;
  border-color: #ccc !important;
}
/* Active button styles */
.flight-type-button.active,
.hotel-type-button.active,
.tour-type-button.active {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
}
.flight-type-button.active:hover,
.hotel-type-button.active:hover,
.tour-type-button.active:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}
.multi-city-container,
.hotel-details,
.tour-details {
  display: none;
}
.multi-city-container.active,
.hotel-details.active,
.tour-details.active {
  display: block;
}
.autocomplete-container {
  position: relative;
  width: 100%;
}
/*.autocomplete-dropdown {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.autocomplete-item {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
.autocomplete-item:hover {
  background-color: #f1f5f9;
}*/
/*.heros-sections {
  height: 500px;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
  z-index: -1;
}
.video-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}*/

.heros-sections {
  height: 500px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.background-video {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
}
/*--------------popular-places---------------------*/

/*.container {
  max-width: 1200px;
  margin: 0 auto;
}*/

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.main-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}

.header {
  margin-bottom: 40px;
}
.headertext-box {
  display: flex;
}

.headderh1text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 5px;
  margin-right: 8px;
}

.country-text {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite alternate;
  font-size: 2.5rem;
  font-weight: 700;
}

@keyframes textGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

.country-text.fade-out {
  animation: fadeOut 0.5s ease-out forwards;
}

.country-text.fade-in {
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  transition: all 0.5s ease;
}

.experiences-grid {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.experiences-grid.fade-out {
  opacity: 0;
}

.experience-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/*.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.card-content {
  padding: 20px;
}*/

/*.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}*/

/*.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ff6b35;
  font-size: 14px;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-label {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.original-price {
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-left: 8px;
}*/

/* Responsive adjustments 
@media (max-width: 768px) {
  .header h1 {
      font-size: 2rem;
  }
  
  .experiences-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .card-content {
      padding: 16px;
  }
}*/

/* Enhanced hover effects 
.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05),
    rgba(255, 107, 53, 0.02)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}*/

.experience-card:hover::before {
  opacity: 1;
}
.card-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/*-----------------------------------*\
  #Reviews Review Section Styles
\*-----------------------------------*/

.Customer-Rv {
  background-color: #f3f5f6;
  margin-bottom: -30px;
}
.marquee {
  --gapess: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gapess);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gapess);
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gapess)));
  }
}

.reviewing-slide1 {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  display: inline-flex;
  margin: 15px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
}

.reviewing-slide2 {
  border-radius: 50%;
  height: 120px;
  min-height: 120px;
  min-width: 120px;
  object-fit: cover;
  object-position: 50% 50%;
  width: 120px;
  box-sizing: border-box;
  border-style: none;
  vertical-align: middle;
}

.reviewing-slide3 {
  margin-left: 20px;
  max-width: calc(100% - 120px);
  box-sizing: border-box;
}

.reviewing-slide4 {
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.reviewing-slide5 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-height: 72px;
  min-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 0px;
}

.reviewing-slide6 {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  display: inline-flex;
  margin: 15px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
}

.reviewing-slide7 {
  border-radius: 50%;
  height: 120px;
  min-height: 120px;
  min-width: 120px;
  object-fit: cover;
  object-position: 50% 50%;
  width: 120px;
  box-sizing: border-box;
  border-style: none;
  vertical-align: middle;
}

.reviewing-slide8 {
  margin-left: 20px;
  max-width: calc(100% - 120px);
  box-sizing: border-box;
}

.reviewing-slide9 {
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.reviewing-slide10 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-height: 72px;
  min-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 0px;
}

.reviewing-slide11 {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  display: inline-flex;
  margin: 15px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
}

.reviewing-slide12 {
  border-radius: 50%;
  height: 120px;
  min-height: 120px;
  min-width: 120px;
  object-fit: cover;
  object-position: 50% 50%;
  width: 120px;
  box-sizing: border-box;
  border-style: none;
  vertical-align: middle;
}

.reviewing-slide13 {
  margin-left: 20px;
  max-width: calc(100% - 120px);
  box-sizing: border-box;
}

.reviewing-slide14 {
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.reviewing-slide15 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-height: 72px;
  min-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 0px;
}

.reviewing-slide16 {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  display: inline-flex;
  margin: 15px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
}

.reviewing-slide17 {
  border-radius: 50%;
  height: 120px;
  min-height: 120px;
  min-width: 120px;
  object-fit: cover;
  object-position: 50% 50%;
  width: 120px;
  box-sizing: border-box;
  border-style: none;
  vertical-align: middle;
}

.reviewing-slide18 {
  margin-left: 20px;
  max-width: calc(100% - 120px);
  box-sizing: border-box;
}

.reviewing-slide19 {
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.reviewing-slide20 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-height: 72px;
  min-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 0px;
}

.reviewing-slide21 {
  -webkit-box-align: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  display: inline-flex;
  margin: 15px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
}

.reviewing-slide22 {
  border-radius: 50%;
  height: 120px;
  min-height: 120px;
  min-width: 120px;
  object-fit: cover;
  object-position: 50% 50%;
  width: 120px;
  box-sizing: border-box;
  border-style: none;
  vertical-align: middle;
}

.reviewing-slide23 {
  margin-left: 20px;
  max-width: calc(100% - 120px);
  box-sizing: border-box;
}

.reviewing-slide24 {
  color: rgb(0, 0, 0);
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}

.reviewing-slide25 {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  max-height: 72px;
  min-height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  box-sizing: border-box;
  margin-top: 0px;
}

/*--=========================================== reverse Verion ========================-*/
.marquee-back {
  --gapess: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gapess);
}
.markuee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gapess);
  animation: scroll-reverse 20s linear infinite;
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(calc(-100% - var(--gapess)));
  }
  100% {
    transform: translateX(0);
  }
}
#burger {
  display: none;
}
.navlinks-direction {
  display: none;
}
.navlinks-direction {
  list-style: none;
  background: green;
  height: 100vh;
  z-index: 999;
}
.navlinks-direction li {
  border: 1px solid #e60202;
  border-radius: 12px;
  padding: 12px;

  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}
.navlinks-direction a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 5px;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.curncee {
  height: 400px;
  width: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cf151c #e0e0e0;
  scrollbar-width: none;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
.curncee a {
  padding: 10px;
  width: 100%;
}
.contry {
  scrollbar-width: none;
  height: 400px;
  overflow-y: auto;
  border-radius: 5px;
}
/*#changerbox {
  z-index: 9999;
}
#swapper-icon {
  background: #090cd8;

  border-radius: 50%;
  position: absolute;
  position: relative;
}*/
.cardsection-tab {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* For Safari support */

  border-radius: 0.5rem; /* Equivalent to 8px */
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
}
/*flight booking start */
.fields-sizebox {
  border: 1px solid red;
  width: 100%;
}
/*.fields-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  border: 1px solid blue;
  grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr;
  width: 100%;
}*/
.fields-row {
  display: grid;
  width: 100% !important; /* Force the width */
  left: 0;
  right: 0;
  box-sizing: border-box;
  grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr;
}

.field-wrap {
  position: relative;
  width: 180px;
}

.field-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 1rem 1.25rem 0.2rem;
  align-items: start;
  text-align: left;
}

.field-input-area {
  padding: 0.15rem 1.25rem 1rem;
  cursor: pointer;
  min-height: 60px;
  text-align: left;
}

.field-city {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.field-city.placeholder {
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

.field-meta {
  font-size: 0.75rem;
  color: black;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.field-meta .code {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  margin-right: 5px;
  text-align: left;
  font-family: sans-serif;
}

.swap-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: all 0.2s;
  flex-shrink: 0;
  margin: 0 -1px;
  position: relative;
  z-index: 2;
}

.swap-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 360px;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  border: 1px solid rgb(207, 21, 28);
  border-radius: 14px;
  z-index: 999;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;

  color: #fff;
  font-family: "DM Sans", sans-serif;
}

.dropdown.open {
  display: flex;
}
.dropdown-right {
  right: 0;
  left: auto;
}

.search-wrap {
  padding: 0.75rem;
  border-bottom: 1px solid rgb(207, 21, 28);
}

.search-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: rgb(207, 21, 28);
  outline: none;
  transition: border-color 0.2s;
}

.search-input::placeholder {
  color: rgb(207, 21, 28);
}
.search-input:focus {
  border-color: rgb(207, 21, 28);
}

.options-list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: var(--border) transparent;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  border-left: 2px solid transparent;
}

.option-code {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgb(207, 21, 28);
  min-width: 38px;
  padding-top: 2px;
}
.option:hover {
  background: rgb(207, 21, 28);
  border-left-color: var(--accent);
}
.option:hover .option-code {
  color: var(--accent);
}

.option-info {
  flex: 1;
  min-width: 0;
}

.option-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.option-city {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.date-groupx {
  border-radius: 0.25rem; /* 4px */
  background: #fff;
  margin-right: 10px;
}
.fromto-groupx {
  background: #fff;
  display: flex;
  margin-right: 10px;
}
.formx {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.tox {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.travellers-field {
  border-radius: 0.25rem; /* 4px */
  background: #fff;
}

/* Footer Accordion - Mobile Responsive */
@media (max-width: 768px) {
  /* Hide all footer lists by default on mobile */
  #footernavlinks {
    display: none;
    max-height: 0;
    overflow: hidden;
  }

  /* Show list when it has the 'open' class */
  #footernavlinks.open {
    display: block;
    max-height: 500px;
    animation: slideDown 0.3s ease-out;
  }

  /* Make h3 headings clickable */
  #footernav {
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
    margin-bottom: 0px;
    border: 1px solid #e0e0e0;
    padding-bottom: 10px;
  }
  #senrow {
    margin-top: -20px;
  }

  /* Optional: Add visual feedback on hover */
  #footernav:hover {
    opacity: 0.8;
  }

  /* Add chevron icon effect - rotate when open */
  footer section > div > h3::after,
  .bg-gray-900 > div > div > h3::after {
    content: " ▼";
    font-size: 0.7em;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  footer section > div > h3.open::after,
  .bg-gray-900 > div > div > h3.open::after {
    transform: rotate(-180deg);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.option-country {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: sans-serif;
}

.option-airport {
  font-size: 0.73rem;
  color: var(--dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: sans-serif;
  text-align: left;
  font-family: sans-serif;
}

.no-results {
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Scoped Sidebar Container */
.fltr-sidebar {
  width: 300px;
  background-color: #ebf2f7;
  padding: 20px;
  font-family: sans-serif;
  color: #1a2b3c;
  margin-top: 50px;
}

.fltr-group {
  margin-bottom: 10px;
}

.fltr-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
}

.fltr-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
}

.fltr-check {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  cursor: pointer;
}

.fltr-flex-row {
  justify-content: space-between;
  width: 100%;
}

.fltr-price-tag {
  color: #5e6d7a;
  font-size: 13px;
}

.fltr-divider {
  height: 1px;
  background-color: #d1dce5;
  margin: 20px 0;
}

.fltr-search-input {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 15px;
  border: 1px solid #d1dce5;
  border-radius: 4px;
}

.fltr-toggle {
  background: none;
  border: none;
  color: #4a90e2;
  font-size: 14px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
}
.date-groupx {
  display: flex;
  gap: 10px;
}
/*flight booking end */
/* Desktop burger always hidden */
@media screen and (min-width: 769px) {
  .burger {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
  }
  #nav-action {
    display: none;
  }
  #burger {
    display: block;
    cursor: pointer;
  }
  /* Hide navlinks by default on mobile */
  .navlinks-direction {
    display: none;
    flex-direction: column;
    gap: 0;
    background-color: #10151f;
    padding: 16px 12px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
  }

  .navlinks-direction.open {
    display: block;
  }
  .clossmu {
    display: block;
    margin-left: auto;
    width: fit-content;
    cursor: pointer;
    margin-bottom: 30px;
  }
  #appdownload {
    display: flex;
    left: 0;
    right: 0;
  }
  .righticon svg {
    color: #fff;
    text-align: center;
    rotate: 270deg;
  }
  .headderh1text {
    font-size: 22px;
  }
  #countryText {
    font-size: 25px;
    margin-top: 1px;
  }
  #headerDescription {
    display: none;
  }
  #chator {
    display: none;
  }
  /*.fields-row {
    /* Switch from 6 columns to 1 column *
    grid-template-columns: 1fr;

    /* Add vertical spacing between the stacked items *
    gap: 12px;

    /* Optional: Add some breathing room inside the container *
    padding: 15px;
  }*/
  .fields-row {
    grid-template-columns: 1fr;
    max-width: none; /* Remove any desktop restrictions */
    width: 100vw; /* Option B: Use Viewport Width if 100% isn't enough */
    margin-left: 0;
    margin-right: 0;
  }
  .searo {
    display: block;
  }
  .search-flight-btn {
    width: 100%;
  }
  .tabA1 {
    width: 100%;
    justify-content: space-between;
  }
  .tabB1 {
    width: 100%;
    justify-content: space-between;
  }
  .putflight {
    border: 1px solid green;
    padding: 0;
  }

  .heros-sections {
    height: 100%;
  }
  .background-image {
    /* Switch to cover so the image fills the entire area without gaps */
    object-fit: cover;
    /* Ensure it stays anchored to the top */
    object-position: top;
    /* Often helps mobile performance with absolute images */

    height: 1150px;
  }

  .main-content {
    /* Remove or significantly reduce the large top gap */
    padding-top: 1.5rem;
    /* Ensure the content starts exactly where the image starts */
    margin-top: 0;
  }
  .fromto-groupx {
    display: block;
    background: none;
    width: 100% !important; /* Overrides the 180px */
    min-width: 0 !important; /* Removes any minimum limits */
    max-width: none !important; /* Removes any maximum limits */
  }

  .flight-type-button {
    border: 1px solid #e40606;
  }
  .cardsection-tab {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .inallflight {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .field-wrap {
    width: 100% !important; /* Overrides the 180px */
    min-width: 0 !important; /* Removes any minimum limits */
    max-width: none !important; /* Removes any maximum limits */
    display: block !important;
  }
  .formx {
    border-radius: 0.25rem; /* 4px */
    background: #fff;
  }
  .tox {
    border-radius: 0.25rem; /* 4px */
    background: #fff;
  }
  .tab-content {
    width: 100%;
    border: 1px solid red;
  }
}
