.tourui-tour-area {
  padding: 60px 20px 80px;
  background-color: #e9f6f9;
  /* background-image: url(../../assets/img/bg/about_bg_1.jpg); */
  /* margin-top: 2rem; */
}

.tourui-container {
  max-width: 1200px;
  margin: auto;
}

.tourui-title-area {
  margin-bottom: 30px;
  text-align: center;
}

.tourui-sub-title {
  font-size: 18px;
  color: #555;
  display: block;
  margin-bottom: 10px;
}

.tourui-sec-title {
  font-size: 48px;
  font-weight: bold;
}

.f-zise {
  font-size: 20px !important;
}

.tourui-location-container {
  /* background: rgba(255, 255, 255, 0.438); */
  backdrop-filter: blur(1px);
  padding: 0;
  border-radius: 10px;
}

.tourui-location-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 10px 10px 0px;
  flex-direction: row-reverse;
}

.tourui-city-dropdown {
  position: relative;
  width: 180px;
  font-size: 16px;
}

.tourui-dropdown-selected {
  border: 2px solid #1ca7ca;
  cursor: pointer;
  user-select: none;
}

.custom-marq-text {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrolling-text {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
}

.custom-heading-abt {
  font-size: 42px !important;
}

.scrolling-text span {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  /* text-shadow: 0 0 8px #fff, 0 0 10px #f00; */
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .scrolling-text span {
    font-size: 26px;
  }
}

.tourui-dropdown-arrow {
  float: right;
  font-size: 14px;
  margin-left: 8px;
}

.tourui-dropdown-options {
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  width: 100%;
  display: none;
  z-index: 99;
}

.tourui-dropdown-options li {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.tourui-dropdown-options li:hover,
.tourui-dropdown-options li.active {
  background-color: #e3f2fd;
  font-weight: bold;
}

.tourui-inner-cities {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 6px;
  max-width: 100%;
}

.tourui-city-tag {
  flex: 0 0 auto;
  background-color: var(--white-color);
  border-radius: 48px;
  padding: 8px 30px;
  cursor: pointer;
  color: var(--theme-color);
  transition: all 0.4s ease;
}

.tourui-city-tag.active,
.tourui-city-tag:hover {
  color: var(--white-color);
  background-color: var(--title-color);
}

.tourui-slider-area {
  margin-top: 30px;
}

.tourui-tour-box {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tourui-tour-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourui-tour-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Glass effect & layout adjustments */
.custom-container {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
}

/* City dropdown box */
#tourui-dropdownSelected {
  cursor: pointer;
  padding: 10px 15px;
  width: 200px;
  position: relative;
  background-color: #fff;
  border-radius: 100vmax;

}

#tourui-dropdownSelected .dropdown-arrow {
  float: right;
}

/* Dropdown options list */
#tourui-dropdownOptions {
  position: absolute;
  background-color: #fff;
  /* border: 1px solid #ccc; */
  width: 200px;
  list-style: none;
  overflow-y: auto;
  z-index: 10;
  padding-left: 0px;
}

#tourui-dropdownOptions li {
  padding: 10px 15px;
  cursor: pointer;
  color: #1ca7ca;
  transition: background 0.2s;
}

#tourui-dropdownOptions li:hover,
#tourui-dropdownOptions li.active {
  border-bottom: 1px solid #1ca7ca;
}

/* Scrollable area tags (Destinations under city) */
#tourui-innerCities {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.custom-city-tag.tourui {
  flex-shrink: 0;
  padding: 8px 15px;
  background: #eaeaea;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.custom-city-tag.tourui.active {
  background-color: var(--theme-color);
  color: white;
  border-color: var(--theme-color);
  font-weight: 600;
}

/* Slider content wrapper */
#tourui-locationContent {
  margin-top: 30px;
  display: none;
}

.tourui-swiper {
  padding: 20px 0;
}

.custom-tour-box {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.custom-tour-box:hover {
  transform: translateY(-5px);
}

.custom-tour-box-img img {
  width: 100%;
  height: 230px;
  display: block;
}

.custom-tour-content {
  padding: 15px;
}

.custom-box-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.custom-tour-box-price {
  color: #555;
  /* font-weight: bold; */
}

.custom-tour-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-tour-col span {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Swiper scrollbar (optional) */
.swiper-scrollbar {
  background: #ccc;
  height: 4px;
  border-radius: 2px;
}

.swiper-scrollbar-drag {
  background: #1ca7ca;
}

@media(max-width:575px) {
  .tourui-city-dropdown {
    position: relative;
    width: 100%;
    font-size: 16px;
  }

  #tourui-dropdownSelected {
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    position: relative;
    background-color: #fff;
  }

  #tourui-dropdownOptions {
    position: absolute;
    background-color: #fff;
    /* border: 1px solid #ccc; */
    width: 100%;
    list-style: none;
    overflow-y: auto;
    z-index: 10;
    padding-left: 0px;
  }

  .tourui-sec-title {
    font-size: 28px;
    font-weight: bold;
  }

  .header-layout1 .header-top {
    display: none;
  }
}

.travelui-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1584fa0b;
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.footer-top-btn {
  background-color: var(--title-color);
  color: var(--white-color);
  box-shadow: none;
  border: none;
  border-radius: 40px;
}

.footer-top-btn:hover {
  background-color: #000;
}

.footer-top {
  min-height: 100px;
  padding: 20px;
  width: 100%;
  background-color: #1ca7ca;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-top p {
  color: #fff;
  font-size: 32px;
}

@media screen and (max-width:900px) {
  .footer-top p {
    font-size: 26px;
  }
}

@media screen and (max-width:740px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

.travelui-form-wrapper {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 600px;
  padding: 30px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: fadeInUp 0.3s ease-in-out;
}

.travelui-form-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  transition: color 0.2s ease-in-out;
}

.travelui-form-close:hover {
  color: #000;
}

.travelui-form-title {
  font-size: 26px;
  margin-bottom: 5px;
  text-align: center;
  color: #111;
  font-weight: bold;
}

.travelui-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travelui-form-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

.travelui-form-group:focus-within {
  border-color: #007bff;
}

.travelui-form-group img,
.travelui-form-group i {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.whatsapp-icon {
  position: fixed;
  bottom: 70px;
  right: 25px;
  height: 65px;
  width: 65px;
  /* border: 2px solid #fff; */
  border-radius: 12px;
  z-index: 999;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  animation: wiggle 2s linear infinite;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.travelui-form-group input,
.travelui-form-group textarea {
  flex: 1;
  border: none;
  outline: none;
  max-height: 30px;
  background: none;
  font-size: 16px;
  color: #333;
  font-family: inherit;
}

.travelui-form-group input,
.travelui-form-group textarea:focus {
  background: none !important;
}

.travelui-form-group textarea {
  resize: none;
  min-height: 100px;
}

.travelui-form-btn {
  text-align: center;
}

.travelui-form-btn button {
  background-color: var(--title-color);
  color: var(--white-color);
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.travelui-form-btn button:hover {
  background-color: #0056b3;
}

.travelui-form-btn button img {
  width: 18px;
  height: 18px;
}

.n-c-btn {
  background: none !important;
  margin-left: 20px;
  color: #fff !important;
  display: flex;
  text-align: center;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  border: 2px solid #fff !important;
}

.travelui-form-response {
  margin-top: 15px;
  font-size: 14px;
  color: #28a745;
  text-align: center;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mid {
  justify-content: center !important;
  margin-top: 30px;
}

.custom-wrap-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .travelui-form-wrapper {
    width: 95%;
    padding: 30px 20px;
  }

  .travelui-form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .travelui-form-group {
    padding: 10px 12px;
    gap: 8px;
  }

  .travelui-form-group input,
  .travelui-form-group textarea {
    font-size: 15px;
  }

  .travelui-input {

    padding: 0 !important;
  }

  .travelui-submit-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .travelui-submit-btn:hover {
    background-color: #0056b3 !important;
  }

  .travelui-form-btn button img {
    width: 16px;
    height: 16px;
  }

  .travelui-form-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .travelui-form-wrapper {
    width: 90%;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .travelui-form-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .travelui-row {
    gap: 16px;
  }

  .travelui-input,
  .travelui-textarea {
    padding: 8px;
    font-size: 15px;
  }

  .travelui-textarea {
    min-height: 50px;
  }

  .travelui-submit-btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  .travelui-form-close {
    top: 10px;
    right: 14px;
    font-size: 22px;
  }
}

.custom-trigger-btn {
  padding: 15px 45px;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  border: none;
  border-radius: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .travelui-form-wrapper {
    width: 92%;
    padding: 18px;
    max-height: 85vh;
  }

  .travelui-form-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .travelui-input,
  .travelui-textarea {
    padding: 10px;
    font-size: 14px;
  }

  .travelui-textarea {
    min-height: 80px;
  }

  .travelui-submit-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .travelui-form-close {
    font-size: 20px;
    top: 8px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .travelui-form-wrapper {
    width: 95%;
    padding: 14px;
  }

  .travelui-form-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .travelui-input,
  .travelui-textarea {
    padding: 8px;
    font-size: 13px;
  }

  .travelui-textarea {
    min-height: 70px;
  }

  .travelui-submit-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .travelui-form-close {
    font-size: 18px;
    top: 6px;
    right: 10px;
  }
}

.wiggle-animate {
  animation: wiggle 2s linear infinite;
}

/* Keyframes */
@keyframes wiggle {

  0%,
  7% {
    transform: rotateZ(0);
  }

  15% {
    transform: rotateZ(-15deg);
  }

  20% {
    transform: rotateZ(10deg);
  }

  25% {
    transform: rotateZ(-10deg);
  }

  30% {
    transform: rotateZ(6deg);
  }

  35% {
    transform: rotateZ(-4deg);
  }

  40%,
  100% {
    transform: rotateZ(0);
  }
}