:root {
  --theme-color: #F77F3C;
  --theme-color-hover: #ffcaae;
  --theme-secondary-color: #3FAC30;
  --theme-white-color: #fff;
  --theme-black-color: #000;
}

.common-margin-top {
  margin-top: 100px;
}

.common-heading {
  color: #333;
  font-size: clamp(28px,3vw,36px);
  font-family: "Poppins", sans-serif;
}

.anim-btn {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  font-family: "Mulish", sans-serif;
}

.anim-btn .anim-btn__button {
  padding: 16px 32px 13px;
  border: 0px solid var(--theme-secondary-color);
  border-bottom: 3px solid var(--theme-secondary-color);
  background-color: var(--theme-color);
  letter-spacing: 0.5px;
  color: var(--theme-white-color);
  font-size: 16px;
  border-radius: 5px;
  font-weight: 500;
}

.anim-btn .anim-btn__button::after {
  content: "";
  position: absolute;
  background-color: var(--theme-secondary-color);
  height: 0%;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  border-radius: 5px;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.anim-btn .anim-btn__button:hover span {
  z-index: 2;
  position: relative;
}

.anim-btn .anim-btn__button:hover::after {
  height: 100%;
  color: #000;
}

.anim-btn .anim-btn__button:hover,
.anim-btn .anim-btn__button:focus {
  color: var(--theme-white-color);
  cursor: pointer;
}

.anim-btn .anim-btn__button:hover+.anim-btn__overlay,
.anim-btn .anim-btn__button:focus+.anim-btn__overlay {
  transform: translateY(calc(-100% + 2px));
}

.anim-btn .anim-btn__button:active {
  transform: scale(0.8);
}

.navbar-custom {
  background-color: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.51);
}

.navbar-custom.fixed-header {
  position: static;
  border-bottom: 1px solid lightgrey;
}

.navbar-custom .logo img {
  max-width: 110px;
  height: auto;
}

.navbar-custom .navbar-items {
  gap: 1rem;
}

.navbar-custom .navbar-items select.form-select-sm {
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #ced4da;
  transition: box-shadow 0.2s ease;
}

.navbar-custom .navbar-items select.form-select-sm:focus {
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.navbar-custom .navbar-items .btn-login {
  background-color: var(--theme-color);
  color: var(--theme-white-color);
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.navbar-custom .navbar-items .btn-login:hover {
  transform: scale(1.05);
  background: var(--theme-secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.36);
}

.hero-banner {
  height: 65vh;
  background-position: bottom;
  background-size: 100% 120%;
  position: relative;
}

.hero-banner::after {
  content: "";
  background-color: rgba(0, 46, 81, 0.6352941176);
  height: 100%;
  mix-blend-mode: multiply;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-banner .asdsf {
  position: absolute;
  bottom: -50px;
  z-index: 2;
  width: 100%;
}

.search-box {
  border-radius: 2rem;
  background-color: var(--theme-white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3;
}

.search-box .search-section {
  cursor: pointer;
  /* border-right: 1px solid #dee2e6; */
  padding-inline: 1rem;
  text-align: center;
  min-width: 180px;
}

.search-box .search-section:last-child {
  border-right: none;
}

.search-box .search-section .search-label {
  font-size: 0.8rem;
  display: inline-block;
  text-wrap: nowrap;
  color: #6c757d;
}

.search-box .search-section .search-value {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: #212529;
}

.search-box #guests-section {
  position: relative;
}

.search-box #guests-section .guests-dropdown {
  position: absolute;
  background: var(--theme-white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  z-index: 1000;
  display: none;
  top: 100%;
  left: 0;
  width: 300px;
}

.search-box #guests-section .guests-dropdown .counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.search-box #guests-section .guests-dropdown .counter span {
  font-weight: 500;
}

.search-box #guests-section .guests-dropdown .counter .btn {
  padding: 0.25rem 0.75rem;
}

.search-box .search-btn {
  border-radius: 2rem;
  padding: 0.8rem 1.5rem;
  /* background: linear-gradient(45deg, #ff5e57, var(--theme-color)); */
  background: var(--theme-color);
  border: none;
  color: var(--theme-white-color);
  font-weight: 600;
}

@media (max-width: 991px) {
  .common-margin-top {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .search-box {
    flex-direction: column;

    .flex-grow-1 {
      width: 100% !important;
    }

    .search-section {
      border: none !important;
      width: 100% !important;
      min-width: auto;
    }

    .ms-auto:has(.search-btn) {
      width: 100% !important;

      .search-btn {
        padding: 0.5rem 1.5rem;
      }
    }

    #guests-section .guests-dropdown {
      left: auto;
      right: 0;
    }
  }
}

/* Date Range Picker Styles */
.daterangepicker {
  border-radius: 1.5rem !important;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

  .drp-calendar {
    margin: 0 0.75rem;
    max-width: 100%;

    .calendar-table {
      th {
        font-weight: 500;
        color: #333;
        padding-bottom: 0.5rem;
        font-size: 16px;

        &:nth-child(1) {
          color: red;
        }
      }

      td {
        width: 35px;
        height: 35px;
        font-weight: 400;
        line-height: 35px;
        transition: background 0.3s;
        font-size: 16px;

        &.active,
        &.active:hover {
          background: var(--theme-color);
          color: #fff !important;
          border-radius: 8px !important;

          &.start-date.end-date {
            border-radius: 8px !important;
          }

          &.start-date {
            border-radius: 8px 0 0 8px !important;
          }

          &.end-date {
            border-radius: 0 8px 8px 0 !important;
          }
        }

        &.in-range {
          color: #000;
        }

        &:nth-child(1) {
          color: red;
        }
      }
    }
  }
  .mobile-daterangepicker-header ,.mobile-daterangepicker-footer{
    display: none;
  }
  .daterangepicker.mobile-style .drp-buttons {
    display: none !important;

    .drp-selected {
      display: none;
    }

  }
}

@media (max-width: 768px) {
  .daterangepicker.mobile-style {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    z-index: 9999 !important;
    background: white;
    display: flex;
    flex-direction: column;
    padding-top: 56px;
    overflow-y: auto;
    padding-inline: 1rem;

    .drp-calendar {
      width: 100% !important;
      margin: 0 !important;
    }

    .drp-buttons {
      display: none !important;
      .drp-selected {
        display: none;
      }
    }
  }

  .mobile-daterangepicker-header {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: var(--theme-black-color);
    background-color: var(--theme-white-color);
    font-weight: bold;
    z-index: 10000;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 2px 0px;
  }

  .mobile-daterangepicker-footer {
    display: block !important;
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid #ddd;
    background: white;
  }

  .mobile-daterangepicker-footer .apply-mobile {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: teal;
    color: white;
    border: none;
    border-radius: 8px;
  }

  .daterangepicker {
    margin-top: 0 !important;

    &:is(::before, ::after) {
      content: unset !important;
      all: unset !important;
    }
  }
}



.swiper-slide {
  background: var(--theme-white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.swiper-slide img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  color: #333;
}

.offer-slider {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
}

.offer-slider .swiper-wrapper {
  padding-bottom: 1rem;
}

.offer-slider .offer-slide {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--theme-white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 2/1;
}

.offer-slider .offer-slide img {
  width: 100%;
  /* height: auto; */
  display: block;
}

.offer-slider .offer-nav-btn {
  width: 36px;
  height: 36px;
  background-color: var(--theme-white-color);
  color: #d32f2f;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.offer-slider .offer-nav-btn::after {
  font-size: 18px;
  font-weight: bold;
}

.offer-slider .offer-nav-btn.offer-nav-prev {
  left: -18px;
}

.offer-slider .offer-nav-btn.offer-nav-next {
  right: -18px;
}

@media (max-width: 768px) {
  .offer-slider .offer-nav-btn {
    display: none;
  }
}

.promo-section {
  background-color: #fff8f0;
  border: 1px solid #ffd9b3;
  border-radius: 15px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 1200px;
  gap: 30px;

  .promo-text {
    h2 {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 10px;
    }

    p {
      color: #555;
      margin-bottom: 0;
    }
  }


  .promo-form {
    max-width: 550px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #ddd;
    display: flex;

    input {
      flex-grow: 1;
      border: none;
      padding: 12px 16px;
      font-size: 16px;
      outline: none;
      border-radius: 10px;
      width: 75%;
    }

    button {
      background: var(--theme-color);
      color: var(--theme-white-color);
      border: none;
      padding: 0 14px;
      font-size: 15px;
      font-weight: 500;
      width: auto;
      border-radius: 0px 10px 10px 0;
      flex-shrink: 0;
    }
  }
}



@media (max-width: 768px) {
  .promo-section .d-md-flex {
    flex-direction: column !important;
    text-align: center;
  }

  .promo-section .d-md-flex .promo-text {
    margin-bottom: 20px;
  }

  .promo-section .d-md-flex .promo-form {
    margin: 0 auto;
  }
}

.card {
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease;
  position: relative;
}

.card:hover {
  transform: scale(1.03);
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

.card:hover .overlay {
  opacity: 1;
}

.card .card-img-top {
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: var(--theme-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
}

.card .card-body .card-title {
  font-size: 1rem;
  font-weight: 600;
}

.book-btn {
  background-color: var(--theme-color);
  border: none;
  color: white;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  margin-top: 10px;
}

.text-primary {
  color: var(--theme-color) !important;
}

.btn-secondary {
  background-color: var(--theme-secondary-color);
  color: var(--theme-white-color);
}

.blog-card {
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background-color: var(--theme-white-color);
}

.blog-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.blog-card img.blog-image {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.blog-card .p-4 time {
  color: #6c757d;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card .p-4 h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.blog-card .p-4 p {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.blog-card .p-4 .btn-learn {
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #212529;
  color: var(--theme-white-color);
  text-decoration: none;
}

.blog-card .p-4 .btn-learn svg {
  width: 20px;
  height: 20px;
}

.blog-card .p-4 .btn-learn:hover {
  color: #000;
  background-color: var(--theme-white-color);
  border: 1px solid #000;
}

.best-deals-sec .offer-slider .offer-slide {
  aspect-ratio: unset;
}

.best-deals-sec .longstay-card {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 15px;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") no-repeat center center/cover;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-size: cover;
}

.best-deals-sec .longstay-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0));
  z-index: 1;
}

.best-deals-sec .longstay-card .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: black;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 8px;
  -webkit-clip-path: polygon(10% 0%, 90% 0%, 100% 25%, 100% 75%, 90% 100%, 10% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 25%, 100% 75%, 90% 100%, 10% 100%, 0% 75%, 0% 25%);
  z-index: 2;
}

.best-deals-sec .longstay-card .bottom-left {
  position: relative;
  z-index: 2;
  color: white;
}

.best-deals-sec .longstay-card .bottom-left .discount {
  font-size: 22px;
  font-weight: 700;
}

.best-deals-sec .longstay-card .bottom-left .title {
  font-size: 16px;
}

/*# sourceMappingURL=style.css.map */



/* footer css  */

ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  /* background: #151414; */
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  background-size: 100% 100%;
  position: relative;
}

footer.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000ee;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: var(--theme-white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: clamp(120px,14vw,200px);
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--theme-white-color);
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: var(--theme-white-color);
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: var(--theme-white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: var(--theme-white-color);
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: var(--theme-white-color);
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}



/* collection page  */

.booknow-btn {
  border: none;
  height: 40px;
  padding: 0px 20px;
  background-color: var(--theme-color);
  color: white;
  border-radius: 4px;
  font-size: 18px;

}

.sidebar h5 {
  margin-top: 1rem;
  font-weight: 600;
}

.hotel-card {
  border-bottom: 1px solid #ddd;
  /* padding: 1rem 0; */
  border-radius: 12px !important;
}

.rating-box {
  background-color: #002d63;
  color: var(--theme-white-color);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
}

.price-strip {
  background: #fff0f3;
  border-radius: 10px;
  padding: 6px 12px;
  padding-left: 0px;
  font-size: 13px;
}

.price-strip .badge {
  background-color: #000;
  color: var(--theme-white-color);
  font-size: 12px;
}

.feature-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.swiper-slide img {
  width: 100%;
  /* height: 160px; */
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.sub-options {
  display: none;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.expandable:checked~.sub-options {
  display: block;
  transition: all 0.3s ease-in-out;
}

/* Custom checkbox styles */
input[type="checkbox"] {
  accent-color: orange;
  /* orange border & check color fallback */
  width: 1.15em;
  height: 1.15em;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  accent-color: green;
}

/* Dual range slider container */
.range-slider {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0.5rem 0 1rem 0;
}

.range-slider input[type="range"] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  top: 15px;
  background: transparent;
  margin: 0;
  padding: 0;
}

/* Make thumbs clickable and colored */
.range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: orange;
  cursor: pointer;
  border: 2px solid var(--theme-white-color);
  margin-top: 2px;
  transition: background 0.3s;
}

.range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 2;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: orange;
  cursor: pointer;
  border: 2px solid var(--theme-white-color);
  transition: background 0.3s;
}

/* Track styling */
.range-slider .slider-track {
  position: absolute;
  height: 8px;
  border-radius: 10px;
  top: 19px;
  left: 0;
  right: 0;
  background: #ddd;
  z-index: 0;
}

/* Highlighted range */
.range-slider .slider-range {
  position: absolute;
  height: 8px;
  border-radius: 10px;
  top: 19px;
  background: orange;
  z-index: 1;
}

.sort-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 8px 32px 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 160px;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg fill="%23000" height="10" width="10" viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l5 6 5-6z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}

.sort-select:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3);
}


.custom-accordion .accordion-button {
  background-color: #f9f9f9;
  font-weight: 500;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--theme-white-color);
  background-color: var(--theme-color);
}

.custom-accordion .accordion-body {
  padding: 1rem;
  background-color: #fffdf6;
}

.sort-select {
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .hotel-card {
    flex-direction: column;
  }

  .hotel-card .col-md-4,
  .hotel-card .col-md-8 {
    width: 100%;
  }

  .swiper-slide img {
    height: 200px;
  }
}




/* hotel detail page  */

.gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto;
}

.left-large {
  flex: 0 0 65%;
  aspect-ratio: 3 / 2;
  background: url("https://picsum.photos/id/1015/800/500") no-repeat center/cover;
  border-radius: 10px;
  cursor: pointer;
}

.right-small {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-small div {
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.overlay-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .gallery-wrapper {
    flex-direction: column;
  }

  .left-large {
    flex: 100%;
    width: 100%;
  }

  .right-small {
    flex-direction: row;
  }

  .right-small div {
    flex: 1;
    aspect-ratio: 1 / 1;
  }
}

/* Modal Styling */
.modal-fullscreen .modal-content {
  background: var(--theme-white-color);
  height: 100vh;
  overflow-y: auto;
}

.swiper-tab-wrapper {
  padding: 1rem;
  background: #f8f8f8;
}

.swiper-tab .swiper-slide {
  white-space: nowrap;
  padding: 6px 16px;
  background: #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  width: fit-content;
}

.swiper-tab .swiper-slide.active {
  background: #007bff;
  color: white;
}

.tab-content-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 1rem;
}

.tab-content-images img {
  width: calc(33.333% - 10px);
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .tab-content-images img {
    width: 100%;
  }
}





.amenities-section {
  border-radius: 10px;
  background-color: var(--theme-white-color);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 12px;
}

.amenity-item i {
  font-size: 1.1rem;
  color: #444;
  background: #f1f1f1;
  padding: 8px;
  border-radius: 50%;
}

.amenity-divider {
  width: 1px;
  height: 30px;
  background-color: #ddd;
}

.more-link {
  color: #007a5f;
  font-weight: 500;
  text-decoration: none;
}

.about-section i {
  color: #2e7d32;
  margin-right: 8px;
}

.about-section .read-more {
  color: #007a5f;
  font-weight: 500;
  text-decoration: none;
}


.popular-destination-sec .swiper-slide img {
  height: 135px;
}



/* css fixes */
/*-------------------------------
    # navbar css start  
    ----------------------------------*/
.custom-nav {
  /* background-color: transparent; */
  background: rgb(0 0 0 / 48%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.51);

  && .mainLogo {
    height: 50px;
  }

  .navbar-nav {
    .nav-link {
      color: var(--theme-white-color);
      font-weight: 600;
      font-size: clamp(16px, 2vw, 17px);

      &:hover {
        color: var(--theme-color) !important;

      }

    }
  }

  && .custom-dropmenu {
    min-width: 220px;
    border-radius: 17px !important;
    border: none !important;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    left: -150px;
  }
}

/* bottom navbar 
-------------------------------*/
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1025;

  .navbar {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center !important;
    padding: 10px 0;
    border-top: 1px solid #dcdcdc;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);

    /* Navbar item */
    .nav-item {
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      max-width: 50px;
      height: 40px;
      color: var(--theme-black-color);
      font-weight: 600;
      font-size: clamp(16px, 2vw, 17px);
      transition: all .8s ease-in-out;

      span {
        font-size: clamp(12px, 2vw, 14px);
        font-weight: 600;
      }

      &:hover {
        color: var(--theme-color) !important;
        transform: scale(1.2);
      }
    }

    .vr {
      height: 30px;
      margin: auto 0 !important;
    }
  }
}

.custom-btn {
  --color: var(--theme-color);
  font-family: inherit;
  display: inline-block;
  line-height: 2em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: 1px solid var(--color);
  border-radius: 6px;
  position: relative;

  &&::before {
    position: absolute;
    content: "";
    background: var(--theme-secondary-color);
    width: 250px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: 0.3s all;
  }

  &&:hover {
    color: var(--theme-white-color);

    &&::before {
      top: -30px;
      left: -40px;
    }
  }
}

/* custom navs and tabs */
.custom-nav-tabs {
  margin-bottom: 3px !important;

  &&.nav-pills,
  &&.nav-tabs {
    gap: 5px;

    && .nav-item {
      && .nav-link {
        background-color: transparent !important;
        color: var(--theme-white);
        border-radius: 12px !important;

        &&.active {
          background-color: var(--theme-color) !important;
          color: var(--theme-white-color);

          &&:hover {
            color: var(--theme-white-color) !important;
          }
        }

        &&:hover {
          background-color: var(--theme-color-hover) !important;
        }
      }
    }
  }
}

.custom-list {
  && .list-group-item {
    a {
      color: var(--theme-black-color) !important;
    }

    &:hover {
      background-color: var(--theme-color-hover);
      border-radius: 4px;

      a {
        color: var(--theme-color) !important;
      }
    }
  }
}

.floatingBtn {
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-secondary-color);
  color: var(--theme-white-color);
  text-decoration: none;
  transform: translateY(-80px) translateX(-65px);
}

/* horizontal columns */
.horizontal-scroll {
  width: 100%;
  overflow-x: auto;
}

/* expanding cards section
---------------------------------- */
.cards {
  --cards-text-color: white;
  --cards-closed-size: 5rem;
  --animation-speed-normal: 0.5s;
  --animation-speed-fast: 0.25s;
  --max-width-cards: 600px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  /* max-width: var(--max-width-cards); */
  margin: 0 auto;
  flex-direction: row;

  .card {
    width: var(--cards-closed-size);
    height: 20rem;
    flex: 0 0 var(--cards-closed-size);
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    transition: all var(--animation-speed-normal) ease-in-out;
    cursor: pointer;

    &:hover {
      width: 100%;
      height: 20rem;
      flex: 0 0 calc(var(--max-width-cards) - 19rem);

      .card__image {
        filter: brightness(0.875) saturate(100%);
      }

      .card__infos {
        .card__name {
          transform: rotate(0deg) translateY(0.65rem);
        }
      }

      .card__header__infos {
        .card__name {
          transform: translateX(0rem) !important;
        }
      }

      .card__author {
        transform: translateY(0);
        opacity: 1;

        &:hover {
          opacity: 0.75;
        }
      }
    }

    .card__image {
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 1;
      filter: brightness(0.675) saturate(75%);
      transition: filter var(--animation-speed-fast) ease-in-out;
    }

    .card__infos,
    .card__header__infos {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2;
      height: var(--cards-closed-size);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0.125rem;
      width: 100%;
      padding: 0.25rem 1rem;

      &&.card__header__infos {
        top: 0;
        bottom: unset;

        .card__name {
          transform: translateX(5.65rem);
        }
      }

      .card__name {
        margin: 0;
        color: var(--cards-text-color);
        /* transform: translateY(0.65rem); */
        transform: rotate(-90deg) translate(1rem, -2.25rem);
        transition: all var(--animation-speed-normal) ease-in-out;
        font-size: 1.5rem;
        display: inline;
      }

      .card__author {
        margin: 0;
        color: var(--cards-text-color);
        text-decoration: none;
        transform: translateY(0.65rem);
        opacity: 0;
        transition:
          opacity var(--animation-speed-fast) ease-in-out,
          transform var(--animation-speed-normal) ease-in-out;
      }
    }
  }

  @media screen and (min-width: 640px) {
    justify-content: end;
  }

}

@media only screen and (min-width:556px) {
  .bottom-navbar {
    max-width: 556px;
    margin: auto !important;
  }

  .custom-nav {
    && .mainLogo {
      height: 70px !important;
    }

    && .custom-dropmenu {
      left: 0 !important;
    }
  }
}

@media (max-width: 575px) {
  .common-margin-top {
    margin-top: 45px;
  }
  #reg_login .container .user .formBx{
    width: 100% !important;
  }
}