  /* Hide the default checkbox */
  .custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #00C261;
    border-radius: 0.25rem;
    background-color: white;
    cursor: pointer;
    position: relative;
  }

  .custom-checkbox:checked {
    background-color: #00C261;
  }

  .custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
.slide-up {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide-up.active {
  transform: translateY(0);
  opacity: 1;
}
.slider-container {
    overflow: hidden;
    position: relative;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    position: relative;
  }

  .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
  }

  .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
  }

  .slide-indicators {
    display: flex;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }

  .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
  }

  .indicator.active {
    background-color: white;
  }

  .property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  /* Travel Recommendations Slider Styles */
  .custom-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }

  .custom-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 0 20px;
  }

  .custom-card {
    width: calc(30% - 15px);
    flex: 0 0 calc(30% - 15px);
    border: 1px solid #e5f0ff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  @media (max-width: 1024px) {
    .custom-card {
      width: calc(33.333% - 14px);
      flex: 0 0 calc(33.333% - 14px);
    }
  }

  @media (max-width: 768px) {
    .custom-card {
      width: calc(50% - 10px);
      flex: 0 0 calc(50% - 10px);
    }
  }

  @media (max-width: 640px) {
    .custom-card {
      width: calc(100% - 40px);
      flex: 0 0 calc(100% - 40px);
    }
  }

  .slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .slider-nav-button.prev {
    left: 10px;
  }

  .slider-nav-button.next {
    right: 10px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
  }

  .slider-dot.active {
    background-color: #00c853;
  }

  /* fot foooter */
  /* Mobile Footer Navigation */
  .mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    height: 56px;
    display: flex;
    flex-direction: column;
  }

  .green-line {
    height: 3px;
    background-color: #00c853;
    width: 100%;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    height: 100%;
    position: relative;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    flex: 1;
  }

  .footer-item svg {
    margin-bottom: 4px;
  }

  .footer-label {
    font-size: 11px;
    color: black;
  }

  .search-button {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: #00c853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }