/* ================= GLOBAL ================= */
html, body {
  height: 100%;
  overflow-x: hidden;
  background: #f2f2f2;
}
/* Apply Lato to the entire body or specific nav items */
body, .nav-heading, .nav-subtitle, .mmt-label {
  font-family: 'Lato', sans-serif !important;
}
body {
  padding-top: 75px;
}

/* ================= TOPBAR ================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  padding: 8px 80px;
  z-index: 9999;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
  max-width: 120px;
}


/* ================= MAIN MENU ================= */
.menu-center {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  position: relative;
  text-align: center;
  text-decoration: none;
  margin-left : 15px;
}

.nav-item img {
  width: 20px;
  height: 20px;
  transition: .3s ease;
}

/* Icon toggle */
.default-icon { display: inline; }
.hover-icon { display: none; }

.nav-item:hover .default-icon,
.nav-item.active .default-icon {
  display: none;
}

.nav-item:hover .hover-icon,
.nav-item.active .hover-icon {
  display: inline;
}

/* Menu text */
.nav-item .nav-text {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.nav-item:hover .nav-text,
.nav-item.active .nav-text {
  color: deeppink;
}

/* ================= RIGHT SECTION ================= */
.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= DROPDOWNS ================= */
.dropdown-wrapper {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 260px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
  z-index: 9999;
}

.dropdown-wrapper:hover .dropdown-content {
  display: block;
}

/* ================= MOBILE GRID DISABLED ================= */
.mobile-menu-grid {
  display: none !important;
}

/* ================= MOBILE LAYOUT ================= */
/* ================= MOBILE LAYOUT FIX ================= */
@media (max-width: 768px) {

  body {
    padding-top: 140px;
  }

  .topbar {
    padding: 6px 10px;
    flex-wrap: wrap;
  }

  /* ===== FIRST ROW: LOGO + CS + LOGIN ===== */
  .topbar > .d-flex.align-items-center {
    width: 50%;
    order: 1;
  }

  .right-section {
    width: 50%;
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }

  .right-sectionimg {
    width: 18px;
    height: 12px;
  }

  .right-section .nav-text {
    font-size: 10px;
    padding: 2px 4px;
  }

  /* ===== SECOND ROW: MAIN MENU ===== */
  .desktop-menu {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: space-around;
    margin-top: 8px;
  }

  .desktop-menu .nav-item {
    flex: 1 1 25%;
    max-width: 25%;
    margin: 0;
  }

  .desktop-menu img {
    width: 36px;
    height: 36px;
  }

  .desktop-menu .nav-text {
    position: static;
    transform: none;
    font-size: 11px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 4px;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .logo {
    max-width: 120px;
  }

  .nav-item img {
    width: 20px;
    height: 20px;
  }

  .nav-item .nav-text {
    font-size: 10px;
  }
}
@media (max-width: 768px) {

  body {
    padding-top: 75px;
  }

  /* Topbar must NOT break first row */
  .topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 8px;
  }

  /* ===== FORCE FIRST ROW ===== */
  .topbar > .d-flex.align-items-center,
  .topbar > .right-section {
    flex: 0 0 auto !important;
    width: auto !important;
    white-space: nowrap;
  }

  .topbar > .d-flex.align-items-center {
    order: 1;
  }

  .topbar > .right-section {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Logo */
  /* .logo img {
    height: 23px;
    width: auto;
  } */
  .logo img {
    width: 75%;
    height: auto;
  }
  


  .right-section .nav-text {
    font-size: 9px;
    padding: 2px 4px;
    line-height: 1;
  }

  /* ===== SECOND ROW MENU ===== */
  .desktop-menu {
    order: 3;
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    margin-top: 8px;
  }

  .desktop-menu .nav-item {
    flex: 1 1 25%;
    max-width: 25%;
    margin: 0;
  }

  .desktop-menu img {
    width: 36px;
    height: 36px;
  }

  .desktop-menu .nav-text {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    font-size: 11px;
    margin-top: 4px;
    padding: 0;
  }
  .left-section a img 
  {
    width : 23px;
    height : auto;
  }
    .icon-circle {
      width: 27px;
      height: 27px;
  }
  .mmt-login-icon
  {
    width: 20px;
  height: 20px;
  }
}
/* Hide slider on mobile devices */
@media (max-width: 768px) {
  .slider,
  .homepage-slider,
  .banner-slider,
  #slider,
  #carouselExampleIndicators,
  #homeSlider {
    display: none !important;
  }
  .mmt-flag
  {
    width :23px;
  }
}
#helpIcon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: move;
  display: flex;
  align-items: center;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

#helpIcon i {
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  display: none;
  z-index: 1001;
  max-width: 300px;
}

.popup input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}

.popup .warning {
  color: red;
  font-size: 12px;
  display: none;
}

.popup button {
  margin-top: 10px;
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup .close-btn {
  float: right;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.popup-title {
  font-weight: bold;
  margin-bottom: 10px;
}

#messageBox {
  margin-top: 10px;
  font-size: 13px;
  color: #155724;
  background-color: #d4edda;
  padding: 10px;
  border-radius: 4px;
  display: none;
}

.hover-icon {
display: none;
}

/* ================= SLIDER + SEARCH ================= */

.slider-wrapper { position: relative; }

.search-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 70%;
  z-index: 10;
}

.trip-title {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 28px;
  border-radius: 10px;
  font-weight: 600;
  color: #1e88e5;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.search-field { flex: 1; }

.search-field label {
  font-size: 12px;
  color: #777;
  margin-bottom: 4px;
  display: block;
}

.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
}

.search-btn {
  background: #2f8dd8;
  color: #fff;
  border: none;
  padding: 10px 26px;
  font-size: 15px;
  border-radius: 22px;
  white-space: nowrap;
}

/* ================= MOBILE SEARCH FIX ================= */

@media (max-width: 768px) {

.search-wrapper {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  padding: 0 10px;
  margin-top: -0px;
}

.trip-title {
  position: static;
  transform: none;
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
}

/* KEEP SEARCH IN ONE LINE */
.search-box {
  flex-direction: row;
  gap: 8px;
  padding: 10px;
}

.search-field select {
  font-size: 13px;
}

.search-btn {
  padding: 10px 16px;
  font-size: 14px;
}
}

/* ================= TOUR SECTION ================= */

.tour-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.section-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 14px;
}

/* Horizontal scroll */
.tour-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 22px;
}

.tour-row::-webkit-scrollbar {
  height: 5px;
}
.tour-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Card */
.tour-item {
  flex: 0 0 170px;
  text-decoration: none;
}

/* Image box */
.tour-img-box {
  position: relative;
  height: 135px;
  border-radius: 16px;
  border: 1.5px solid #e6e6e6;
  overflow: hidden;
  background: #fff;
}

/* Image */
.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Floating price pill */
.tour-price-overlay {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  white-space: nowrap;
}
/* SECTION */
.tour-section {
    /* background: #fffafa; */
    border-radius: 18px;
    padding: 0px;
    margin-top: 0px;
    box-shadow: 0 10px 28px rgba(19, 8, 8, 0.96);
}

/* HEADERS */

.section-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

/* GRID – 5 PER ROW */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

/* CARD */
/* .tour-card {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(13, 8, 8, 0.59);
  border: 1px solid #c1a2a2;
} */
/* .tour-card {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  position: relative;
  text-decoration: none;
  color: #000;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid #c1a2a2;

  box-sizing: border-box;
  transition: transform .3s;

} */

.tour-card,
.smart-card,
.emt-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover,
.smart-card:hover,
.emt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

/* HOVER = 3D LIFT */
.tour-card:hover .tour-image-box {
  transform: translateY(-6px);
  box-shadow:
    0 14px 0 #000,
    0 22px 40px rgba(0,0,0,.45);
}
/* IMAGE */
.tour-image-box {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.tour-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PRICE BADGE */
.tour-price {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 4px 12px rgb(63, 69, 92);
    border: 2px solid #888585;
    white-space: nowrap;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tour-image-box {
        height: 140px;
    }
}

/* ================= SEARCH CONTAINER ================= */
.search-container {
  background: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  max-width: 100%;
}

/* ================= HEADING ================= */
.search-heading {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.search-heading strong {
  color: #1e3a8a;
}

/* ================= TABS ================= */
.search-tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-bottom: 12px;
}

.search-tabs .tab {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f9f9f9;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
}

.search-tabs .tab.active {
  background: #ff7a00;
  color: #fff;
  font-weight: 600;
  border-color: #ff7a00;
}

/* ================= SEARCH ROW ================= */
.search-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ================= COLUMNS ================= */
.search-col {
  flex: 1;
}

.search-col label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: -9px;
}

.search-col select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 6px 4px;
  font-size: 18px;
  font-weight: 600;
  outline: none;
}

/* ================= SEARCH BUTTON ================= */
.search-btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 18px;
  border-radius: 26px;
  cursor: pointer;
  white-space: nowrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .search-tabs {
    overflow-x: auto;
  }

  .search-row {
    /* flex-direction: column; */
    align-items: stretch;
    gap: 10px;
  }

  .search-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= SEARCH OVER SLIDER (FIX) ================= */

.slider-wrapper {
  position: relative;
}

/* IMPORTANT: overlay search */
.search-container {
  position: absolute;
  left: 50%;
  bottom: 30px;              /* moves search inside slider */
  transform: translateX(-50%);
  width: 72%;
  z-index: 20;

  background: #fff;
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

/* ensure carousel doesn't hide it */
#carouselExampleIndicators {
  position: relative;
  z-index: 1;
}

/* ===== SEARCH HEADER ===== */
.search-heading {
  font-size: 17px;
  color: #333;
  margin-bottom: 10px;
}

.search-heading strong {
  color: #0a2a66;
}

/* ===== TABS ===== */
.search-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}

.search-tabs .tab {
  padding: 10px 18px;
  border: none;
  background: #f7f7f7;
  font-size: 14px;
  cursor: pointer;
color: #000000;
}

.search-tabs .tab.active {
  background: #ff7a00;
  color: #fff;
  font-weight: 600;
}

/* ===== SEARCH ROW ===== */
.search-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-col {
  flex: 1;
}

.search-col label {
  font-size: 12px;
  color: #666;
  display: block;
}

.search-col select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  background: transparent;
}

/* ===== SEARCH BUTTON ===== */
.search-btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 18px;
  border-radius: 26px;
  cursor: pointer;
  white-space: nowrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* slider hidden already in your CSS */

  .search-container {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }

  .search-row {
    /* flex-direction: column; */
    gap: 10px;
  }

  .search-btn {
    width: 100%;
  }
}
/* Base layout */
.search-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.search-col {
  flex: 1;
}

.search-col label {
  font-size: 13px;
  display: block;
  margin-bottom: 0px;
}

.search-col select {
  width: 100%;
  padding: 8px;
}

.search-btn {
  padding: 9px 16px;
  height: fit-content;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .search-row {
    flex-wrap: wrap;
  }

  /* Start From + To City in ONE ROW */
  .search-col {
    flex: 0 0 48%;
    max-width: 48%;
  }

  /* Search button full width below */
  .search-btn {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 8px;
  }
  #icondiv {
    flex-wrap: nowrap;
  }
  #icondiv > .d-flex {
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .icon-img,
  .icon-img1 {
   max-width: 68px;
    max-height: 68px;
  }

  #icondiv {
    gap: 8px;
  }    
}

.note-wrapper {
  background: #fff5f5;
  border-left: 4px solid #ec5a5a;
  padding: 10px 14px;
  margin-top: 10px;
  border-radius: 6px;
}

.note-text {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.note-text strong {
  color: #ec5a5a;
}

.note-location {
  font-weight: 600;
  color: #000;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .note-text {
    font-size: 13px;
  }
}
/* ===============================
   SLIDER
================================ */
.slider-wrapper {
  position: relative;
  width: 100%;
  top: -32px;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 300px;
  overflow: visible !important; /* allow search box */
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   SEARCH CONTAINER (DESKTOP)
================================ */
.search-container.cloud-design {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 79%;
  background: #ffffff9c;
  border-radius: 25px;
  padding: 10px 25px 0px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 999;
  text-align: center;
}

/* ===============================
   CLOUD TOP
================================ */
.cloud-top {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 251px;
  height: 30px;
  background: #f7f3f3;
  border-radius: 40px 40px 0 0;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.search-heading {
  font-size: 14px;
  color: #666;
  font-weight: 629;
  letter-spacing: 1.2px;
}

.search-main-title {
  font-size: 20px;
  font-weight: 800;
  color: #0b2b66;
  margin-top: -15px;
}

/* ===============================
   TABS
================================ */
.search-tabs {
  display: flex;
  gap: 8px;
  margin: 0px 0;
  padding: 0px 175px;
  border: none;
}

.search-tabs .tab {
  flex: 1;
  border: 1.5px solid #ddecfa;
  background: #fff;
  border-radius: 6px 6px 0px 0px;
  padding: 6px;
  font-size: 14px;
  font-weight: 400;
}

.search-tabs .tab.active {
  background: #009cb2;
  color: #fff;
  border-color: #009cb2;
}

/* ===============================
   SEARCH ROW
================================ */
.search-row-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e1f2ff;
  border-radius: 23px;
  padding: 2px 11px;
}

.search-col {
  flex: 1;
  text-align: left;
}

.search-col label {
  font-size: 13px;
  color: #888;
}

.search-col select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

.search-divider-icon img {
  width: 30px;
  opacity: 0.6;
}

/* ===============================
   BUTTON + BOTTOM CURVE
================================ */
.cloud-bottom {
position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 137px;
  height: 26px;
  background: #fff;
  border-radius: 0px 0px 40px 40px;
}

.search-btn {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff914d;
  color: #fff;
  border: none;
  padding: 4px 34px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 8px 15px rgba(240, 236, 233, 0.4);
}

/* ===============================
   MOBILE VIEW (≤768px)
================================ */
@media (max-width: 768px) {

  .slider-img {
    height: 300px;
  }

  .search-container.cloud-design {
    position: relative;
    width: 95%;
    margin: 44px auto 30px;
    transform: none;
    left: 0;
    bottom: 0;
    padding: 15px 15px 1px;
    border-radius: 40px;
  }

  .cloud-top {
   width: 180px;
        height: 24px;
        top: -24px
  }

  .search-heading {
    font-size: 9px;
  }

  .search-tabs {
    gap: 4px;
    padding: 0px 12px;
    margin-top: 9px;
  }

  .search-tabs .tab {
    font-size: 11px;
    padding: 2px 6px;
    min-width: 68px;
  }

  .search-row-box {
    padding: 3px 27px;
  }

  .search-divider-icon {
    display: none;
  }

  .search-btn {
    font-size: 16px;
    padding: 8px 35px;
  }
  .search-btn {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff914d;
    color: #fff;
    border: none;
    padding: 3px 3px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(240, 236, 233, 0.4);
    width: 105px;
    text-align: center;
  }

  /* .cloud-bottom {
    width: 140px;
    height: 40px;
  } */
}

/* ===============================
   MOBILE ONLY SECTION
================================ */
@media (min-width: 768px) {
  .mobile-only-section {
    display: none !important;
  }
}
/* SEARCH BOX */
.search-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 60px;
  padding: 40px 30px 60px;
  z-index: 999;
  text-align: center;
}
.search-col.text-end select {
  text-align: right;
}
.search-col.text-end option {
  text-align: right;
}
.search-col.text-end label {
  margin-right: 12px;   /* adjust as needed */
  display: inline-block;
}

@media (max-width: 768px) {

  .mobile-cat-row {
    display: flex;
    gap: 12px;
  }

  /* MAIN CARD */
  .cloud-card {
    position: relative;
    flex: 1;
    background: #fff;
    border-radius: 28px;
    padding: 36px 8px 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 5px rgba(134, 129, 129, 0.57);
  }

  /* ICON CIRCLE */
  .icon-wrap {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-wrap img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  /* LABEL */
  .label-box {
    font-size: 10px;
    
    color: #666;
    line-height: 1.3;
  }
  .label-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.2;
  
    margin-top: 0;      /* remove outer gap */
    padding-top: 0;     /* remove inner gap */
  }
  
  .label-box span {
    display: block;
    margin: 0;          /* IMPORTANT: remove default spacing */
    padding: 0;
  }
  
}
.personalize-banner {
display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #d3c0f7, #f3e6fa);
  padding: 6px 18px;
  border-radius: 12px;
  max-width: 400px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  margin-bottom: 31px;
  margin-top: -10px;

}

.personalize-banner:hover {
  transform: translateY(-2px);
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-left p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

.banner-left strong {
  display: block;
  font-size: 16px;
  color: #1a1a1a;
}

.banner-icon {
  width: 40px;
  height: 40px;
}

.arrow-icon i {
  font-size: 20px;
  color: #7a4ffb;
}

.arrow-icon i {
  font-size: 16px;
  color: #fff;
  background-color: #7a4ffb;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}
  /* Card wrapper */
  .itinerary-card {
    border: 1px solid #e6eef5;
    border-radius: 4px;
    margin-bottom: 14px;     /* controlled spacing between days */
    background: #ffffff;
    overflow: hidden;        /* removes visual gap */
}

/* Header strip */
.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #eef7fb;     /* light blue (as screenshot) */
    padding: 8px 12px;

    font-size: 13px;
    color: #374151;
}

/* Header left */
.day-title {
    font-weight: 600;
}

/* Header right */
.day-actions {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #6b7280;
}

.day-actions i {
    margin-right: 4px;
}

/* Hotel link blue */
.hotel-link {
    color: #2563eb;
    text-decoration: none;
}

/* Body content */
.day-body {
    padding: 10px 12px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

/* REMOVE default p spacing if any */
.day-body p {
    margin: 0;
}
.icon-action {
    cursor: pointer;
}
.icon-action:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
.icon-img {
width: 36px;
height: 36px;
}
}
  .third_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    width: 45px;
}


.icon-img {
width: 85px;
height: 85px;
object-fit: contain;
margin-top: 13px;
}

.icon-img1 {
width: 50px;
height: 50px;
object-fit: contain;
}


/* Mobile stacking */
@media (max-width: 768px) {
#icondiv {
/* flex-direction: column; */
gap: 12px;
}
}
.left-panel {
position: fixed;
top: 120px;
right: -420px;
width: 420px;
height: calc(100vh - 120px); /* 🔥 FIX */
background: #fff;
z-index: 1050;
display: flex;
flex-direction: column;
transition: right 0.35s ease;
}

.left-panel.open {
right: 0;
}

.left-panel-header {
padding: 16px;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}

.left-panel-body {
flex: 1;
overflow-y: auto;   /* 🔥 THIS IS CRITICAL */
padding: 16px;
}

.close-btn {
background: none;
border: none;
font-size: 26px;
cursor: pointer;
}

.panel-backdrop {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
z-index: 1040;
display: none;
}

.panel-backdrop.show {
display: block;
}

/* MOBILE */
@media (max-width: 768px) {
.left-panel {
width: 100%;
right: -100%;
}

.left-panel.open {
right: 0;
}
}
@media (max-width: 768px) {
  .search-container {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;

    /* Optional UI polish */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding-top: 8px;
  }
}
@media (max-width: 768px) {

  #search-fixed {
    position: fixed;
    top: 64px; /* exact mobile header height */
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  #search-fixed.active {
    display: block;
  }
}
.slider-wrapper,
.carousel,
.carousel-inner {
  overflow: visible !important;
}
@media (max-width: 768px) {

  #arunk {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    top: 10px;
  }
  

}
/* Hide by default on mobile */
#arunm {
  display: none;
}

/* Show on desktop/laptop (min-width: 769px) */
@media (min-width: 769px) {
  #arunm {
    display: block;
  }
.slider-wrapper {
  top: -10px;
}
.search-heading {
  color: #0f0000;
}
.cloud-bottom,.cloud-top
{
background: #ffffffc4;

}
.search-col label {
  color: #fff;
}
}
.search-col {
  position: relative;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 8px 30px 8px 10px;
  font-size: 14px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
}

/* Custom arrow */
.select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #444;
}
.mmt-flag {
  width: 21px;
  height: 14px;
}
.black-dot {
  color: #000;
  
  border-radius: 50%;
  padding: 0 5px;
}


/* 4. Hover effect: Change color when mouse is over the icon or text */


/* search box */

/* Suggestion Dropdown Positioning */
.search-col {
    position: relative; /* This keeps the dropdown attached to the input */
}

.suggestion-dropdown {
    position: absolute;
    top: 100%; /* Directly below the search-row-box */
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f9f9f9;
    text-align: left;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f0f7ff;
    color: #0052cc;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    transition: 0.2s;
}

.suggestion-item span {
    font-size: 14px;
    opacity: 0.6;
}

/* Style for keyboard selection */
.suggestion-active {
    background-color: #f0f7ff !important;
    color: #0052cc !important;
    cursor: pointer;
}