/* ============================================================
   GLOBAL RESETS & BASE STYLES
   ============================================================ */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  appearance: none;
}

html {
  overflow-y: scroll;
}

html,
body {
  /* scroll-behavior: smooth !important; */
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;

  /* Font rendering improvements */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: always;
}

/* Links */
a,
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

/* Placeholders */
::placeholder {
  color: #6a6a6a !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #6a6a6a !important;
}

::-ms-input-placeholder {
  color: #6a6a6a !important;
}

/* Lists */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Buttons & focus states */
button {
  border: none;
  outline: none;
  box-shadow: none;
}

button:focus,
textarea:focus,
input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Selection */
::selection {
  color: white;
  background: #1d7b94;
}

::-webkit-selection {
  color: white;
  background: #ff7675;
}

::-moz-selection {
  color: white;
  background: #ff7675;
}

/* ============================================================
   CONTAINERS
   ============================================================ */

.container_box_fluid {
  /* max-width: 1660px; */
  margin: 0px auto;
  /* padding: 0px 30px; */
}


.container_box_fluid_inner {
  width: 100%;
  position: absolute;
  top: 0px;
  /* max-width: 1660px; */
  margin: 0px auto;
  /* cursor: pointer; */
}

.container_box {
  max-width: 1260px;
  margin: 0px auto;
  padding: 0px 30px;
}

/* ============================================================
   HEADER
   ============================================================ */

.header_wrapper {
  background-image: url(/images/hero_bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header_area {
  /* padding-top: 30px; */
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero_area {
  padding: 115px 0px 300px;
}

@media (min-width: 1024px) {
  .hero_area {
    padding-bottom: 325px;
  }
}

.hero_content {
  max-width: 750px;
  margin: 0px auto;
  text-align: center;
}

.hero_content h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  margin: 0px;
  padding: 0px;

}

.hero_content h1 span {
  color: #1d5fa7;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  margin: 0px;
  padding: 0px;
}

.hero_content form {
  position: relative;
  margin: 44px 0px 16px;
}

.hero_content input {
  width: 100%;
  padding: 28px;
  padding-left: 55px;
  font-size: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #ffffff;
}

.hero_content input::placeholder {
  color: #000000 !important;
}

.hero_content input:hover {
  background-color: #f9fafc;
  border-color: #d0d6e0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero_content input:focus {
  background-color: #ffffff;
  border-color: #1d7b94;
  box-shadow: 0 0 0 3px rgba(29, 95, 167, 0.12);
}

.hero_content input[type="submit"] {
  position: absolute;
  top: 9px;
  right: 9px;
  max-width: 170px;
  background: linear-gradient(90deg, #3A8AD6 0%, #1d5fa7 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 19px !important;
  cursor: pointer;
  transition: 0.24s ease-in-out;
}

.hero_content input[type="submit"]:hover {
  background: linear-gradient(90deg, #337EC3 0%, #195493 100%);
}

.hero_content svg {
  position: absolute;
  top: 32px;
  left: 25px;
  width: 18px;
}

.heroInput {
  width: 100%;
  padding: 28px;
  padding-left: 55px;
  font-size: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.heroInput:hover {
  background-color: #f9fafc;
  border-color: #d0d6e0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.heroInput:focus {
  background-color: #ffffff;
  border-color: #1d7b94;
  box-shadow: 0 0 0 3px rgba(29, 95, 167, 0.12);
  outline: none;
}

.heroSubmit {
  position: absolute;
  top: 9px;
  right: 9px;
  max-width: 170px;
  background: linear-gradient(90deg, #3A8AD6 0%, #1d5fa7 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 19px !important;
  cursor: pointer;
  transition: 0.24s ease-in-out;
  border: none;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.heroSubmit:hover {
  background: linear-gradient(90deg, #337EC3 0%, #195493 100%);
}

.satisfied_users {
  display: flex;
  align-items: center;
  justify-content: center;
}

.satisfied_users img {
  max-width: 100%;
  margin-right: 7px;
}

.satisfied_users p {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin: 0px;
}

.satisfied_users p span {
  color: #1d5fa7;
}

/* ============================================================
   CATEGORIES
   ============================================================ */

.catagory_area {
  padding: 30px 0px 30px;
}

.catagory_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catagory_box {
  position: relative;
  text-align: center;
  padding: 20px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: 0.2s ease;
}

.catagory_box:hover,
.catagory_box:focus-within {
  background-color: #eef3f7;
  transform: translateY(-1px);
}

.catagory_box .catagory_link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  border-radius: inherit;
  background: transparent;
  text-indent: -9999px;
  -webkit-tap-highlight-color: transparent;
}

.catagory_icon img {
  max-width: 40%;
  margin: 0px auto 6px;
}

.catagory_text h4 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  margin: 0px;
}

@media (min-width: 1023px) {
  .catagory_box {
    max-width: 280px;
    width: 100%;
  }
}

/* ============================================================
   CAROUSEL
   ============================================================ */

.carousel-dragable {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 1023px) {
  .carousel-dragable {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .carousel-dragable::-webkit-scrollbar {
    display: none;
  }

  .carousel-item {
    flex: 0 0 auto;
    scroll-snap-align: none !important;
  }
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  background: white;
}

.carousel-track {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel-slide {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 0 12px;
}

.slide-content {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease-in-out;
}

.slide-content h3 {
  margin: 0.5rem 0 0;
  color: #333;
}

.slide-icon {
  font-size: 3rem;
}

@media (max-width: 1023px) {
  .carousel-slide {
    flex-basis: 32%;
    padding: 0px 10px;
  }
}

@media (max-width: 767px) {
  .carousel-slide {
    flex-basis: 46%;
    padding: 0px 8px;
  }
}

@media (min-width: 1023px) {
  .carousel-dragable .carousel-item {
    width: 23.4%;
  }
}

@media (min-width: 1200px) {
  .carousel-dragable .carousel-item {
    width: 23.6%;
  }
}

/* ============================================================
   POPULAR CITIES
   ============================================================ */

.popular_city_area {
  padding: 56px 0px 110px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.popular_city_area .container_box {
  overflow: hidden;
}

.city_box {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city_img {
  position: relative;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
}

.city_img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0);
  z-index: 111;
  transition: 0.4s ease-in-out;
}

.city_img img {
  display: block;
  aspect-ratio: 138/169;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.city_img h4 {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 999;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.5s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .city_box:hover .city_img img {
    transform: scale(1.05);
  }

  .city_box:hover .city_img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
}

/* ============================================================
   FEATURES
   ============================================================ */

.feature_area {
  padding: 110px 0px;
  background-color: #f7fafb;
}

.heading_title h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 0px;
  font-family: "Plus Jakarta Sans", sans-serif
}

.feature_row {
  display: flex;
  justify-content: space-between;
  gap: 0px;
}

.feature_box {
  width: 30%;
  text-align: center;
}

.feature_icon img {
  position: relative;
  z-index: 999;
  background-color: transparent;
  margin-bottom: 10px;
  max-width: 50%;
  margin: 0px auto 40px;
  min-height: 132px;
}

.feature_box h4 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 0px;
  line-height: 1.5;
}

.feature_text p {
  font-size: 16px;
  max-width: none;
  margin: 0;
}

.wave_effect {
  width: 10%;
  position: relative;
  z-index: 111;
  top: 60px;
}

.wave_effect img {
  max-width: 100%;
  margin: 0px auto;
  transform: scale(3.5);
  position: relative;
  left: -35px;
  z-index: 111;
}

.wave_effect2 {
  width: 10%;
  position: relative;
  z-index: 111;
  top: 60px;
}

.wave_effect2 img {
  max-width: 100%;
  margin: 0px auto;
  transform: scale(3.5);
  position: relative;
  left: 50px;
  z-index: 111;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta_area {
  padding: 80px 0px;
  background-color: #292b8a;
}

.cta_content {
  max-width: 720px;
  margin: 0px auto;
  text-align: center;
  color: #ffffff;
}

.cta_content h2 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 0px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta_content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta_content .cta_btn {
  width: 230px;
  height: 70px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #ffffff;
  background: linear-gradient(90deg, #3A8AD6 0%, #1d5fa7 100%);
  color: #ffffff;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}

.cta_content .cta_btn:hover {
  background: linear-gradient(90deg, #337EC3 0%, #195493 100%);
  border-color: #1d7b94;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer_area {
  padding: 50px 0px 30px;
  background: #10141d;
}

.footer_row {
  padding-bottom: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer_logo {
  width: 25%;
}

.footer_logo a img {
  max-width: 130px;
}

.footer_menu {
  /* styles inherited from defaults */
}

.footer_menu h4 {
  color: #666e80;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin-top: 0px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
}

.footer_menu h4::after {
  content: url(/images/down-arrow.svg);
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.25s ease;
  display: inline-block;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.footer_menu ul {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
}

.footer_menu.active ul {
  max-height: 300px;
  transition: max-height 0.4s ease-in;
}

.footer_menu.active h4::after {
  transform: translateY(-50%) rotate(0deg);
}

.footer_menu ul li a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  margin-bottom: 18px;
}

.footer_menu ul li a:hover {
  color: #3dd9eb !important;
}

.footer_copyright {
  padding-top: 20px;
  border-top: 1px solid #282c34;
  text-align: left;
}

.footer_copyright p {
  font-size: 13px;
  color: #666e80;
  margin: 0;
}

@media (min-width: 1023px) {
  .footer_row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer_menu ul {
    max-height: none;
    overflow: visible;
    padding-top: 10px;
  }

  .footer_menu h4 {
    cursor: default;
    border-bottom: none;
  }

  .footer_menu h4::after {
    display: none;
  }

  .footer_logo {
    flex-shrink: 0;
  }
}

/* ================= RESPONSIVE STYLES ================= */

@media (max-width: 1023px) {

  html,
  body {
    overflow-x: hidden;
  }

  /* Containers */
  .container_box_fluid,
  .container_box {
    padding: 0px 10px;
  }

  .container_box_fluid_inner {
    padding: 0px;
    right: 0px;
  }

  /* ============================================
     HERO SECTION
     ============================================ */
  .hero_area {
    padding: 90px 0px 250px;
  }

  .hero_content {
    display: flex;
    flex-direction: column;
  }

  .satisfied_users {
    order: 1;
    margin-bottom: 8px;
  }

  .satisfied_users p {
    font-size: 14px;
  }

  .satisfied_users img {
    max-width: 100px;
  }

  .hero_content h1 {
    order: 2;
    font-size: 60px;
  }

  .hero_content form {
    order: 3;
    max-width: 700px;
    margin: 30px auto 20px !important;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px 12px 30px 30px;
  }

  .hero_content input {
    border-radius: 0px;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e2dede;
    padding-top: 18px;
    margin-top: 0px;
    padding-bottom: 20px;
    /* font-family: Arial; */
  }



  .hero_content svg {
    width: 18px;
    top: 27px;
    left: 22px;
  }

  .hero_content input[type="submit"] {
    max-width: 97%;
    position: static;
    border-radius: 50px;
    margin: 10px auto;
  }

  .logo img {
    /* max-width: 80px; */
  }

  /* Features */
  .feature_row {
    flex-direction: column;
    width: 80%;
    margin: 0px auto;
    gap: 50px;
  }

  .wave_effect,
  .wave_effect2 {
    display: none;
  }

  .feature_box {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    gap: 16px;
  }

  .feature_icon {
    width: 28%;
  }

  .feature_icon img {
    max-width: 150px;
    width: 100%;
    margin-right: 20px;
  }

  .feature_text {
    width: 72%;
  }

  /* Categories and Cities */
  .catagory_box {
    width: 280px;
  }

  .city_box h4 {
    bottom: 30px;
    font-size: 22px;
  }

  .city_box:hover h4 {
    bottom: 30px;
  }

  .city_box:hover .city_img:after {
    background: rgba(0, 0, 0, 0);
  }

  .catagory_area {
    padding: 20px 0px 10px;
  }

  .catagory_area .container_box {
    overflow: hidden;
  }

  /* Popular cities - tablet */
  .popular_city_area .city_img {
    width: 220px;
    height: auto;
  }

  /* Footer */
  .footer_row {
    flex-direction: column;
    padding-bottom: 0px;
    gap: 0px;
  }

  .footer_copyright p {
    text-align: center;
  }

  .footer_area {
    padding: 50px 0px 20px;
  }

  .footer_menu {
    width: 100%;
  }

  .footer_menu h4 {
    margin-bottom: 0px;
    width: 100%;
    border-top: 1px solid #282c34;
    padding: 20px 0px;
  }

  .footer_logo {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .footer_logo img {
    max-width: 100px !important;
  }

  /* Carousels */
  .catagory_area .container_box {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow: visible !important;
  }

  .catagory_area .carousel-dragable {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scroll-snap-type: none;
    max-width: none !important;
    gap: 15px;
  }

  .popular_city_area .container_box {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow: visible !important;
  }

  .popular_city_area .carousel-container {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scroll-snap-type: none;
    max-width: none !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: none !important;
    filter: none !important;
    background: transparent !important;
  }

  .popular_city_area .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    will-change: transform;
    max-width: none !important;
  }

  .carousel-track>*:first-child,
  .carousel-dragable .carousel-item:first-child {
    margin-left: 0 !important;
  }

  .carousel-track>*:last-child,
  .carousel-dragable .carousel-item:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .hero_area {
    padding: 70px 0px 200px;
    margin-top: 35px;
  }

  .container_box_fluid_inner {
    padding: 0px;
  }

  .header_area {
    padding-top: 20px;
  }

  .hero_content h1 {
    font-size: 35px;
    line-height: 1.3;
  }

  .satisfied_users img {
    max-width: 85px;
  }

  .satisfied_users p {
    font-size: 12px;
  }

  .hero_content input[type="submit"] {
    width: 95%;
    padding: 18px !important;
    margin: 7.5px auto;
    font-size: 17px !important;
    font-weight: 600;
    letter-spacing: 0.4px;
    -webkit-appearance: none;
    background-clip: border-box !important;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0.0001px);
    outline: none !important;
    border: none !important;
    box-shadow: 0 0 0 0 transparent !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }

  .heading_title h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .catagory_box {
    width: 260px;
    padding: 22px;
  }

  .popular_city_area .carousel-track {
    gap: 15px;
  }

  .popular_city_area .carousel-slide {
    flex: 0 0 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    padding: 0 !important;
  }

  .popular_city_area .city_img {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    height: auto !important;
  }

  .popular_city_area .city_img img {
    width: 190px !important;
    max-width: 190px !important;
    height: auto !important;
    display: block;
  }

  .city_box h4 {
    font-size: 18px;
    bottom: 24px;
  }

  .city_box:hover h4 {
    bottom: 20px;
  }

  .feature_row {
    width: 100%;
    gap: 40px;
  }

  .feature_box p {
    font-size: 14px;
    line-height: 1.5;
  }

  .feature_box h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .feature_area {
    padding: 42px 0px;
  }

  .feature_icon img {
    max-height: 90px;
    margin-bottom: 0px;
  }

  .cta_area {
    padding: 50px 0px;
  }

  .cta_content h2 {
    line-height: 1.3;
    font-size: 32px;
  }

  .cta_content p {
    line-height: 1.5;
    font-size: 13px;
    font-weight: 600;
  }

  .cta_content .cta_btn {
    font-size: 14px;
    font-weight: bold;
    width: 190px;
    height: 60px;
    padding: 0px;
  }

  .hero_content svg {
    width: 19px;
    top: 22px;
  }

  .catagory_text h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .catagory_icon img {
    max-width: 75px;
  }

  .popular_city_area {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .footer_area {
    padding-top: 36px;
  }

  .footer_logo {
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
  }

  .footer_menu ul li a {
    margin: 0px;
    padding-bottom: 18px;
  }

  .carousel-dragable {
    gap: 15px;
  }
}

/* ================= END hemory-index.css ================= */


.hero_content .geosuggest__suggests {
  border: 1px solid #e4e4e4 !important;
  border-top-width: 0 !important;
  left: 0px !important;
  right: 0px !important;
  width: 100%;
  margin-top: 10px;
  border-radius: 15px;
  padding: 10px;
}

.hero_content .geosuggest__suggests--hidden {
  border-width: 0 !important;
  display: none;
}

.suggestions-header {
  text-align: left;
}

@media (max-width: 767px) {

  .hero_content .geosuggest__suggests {
    border: none !important;

  }
}