/* Custom Styles */
.navbar {
  z-index: 1000; /* Ensure the navbar stays on top */
}
      /* Custom Search Box Styling */
      .search-container {
        position: relative;
       
      }

      .search-container input {
        width: 100%;
        padding-right: 30px; /* Space for the icon */
      }

      .search-container i {
        position: absolute;
        right: 10px; /* Adjust as needed */
        top: 50%;
        transform: translateY(-50%);
        color: #888;
      }

      /* Responsive Design for the Search Box */
      @media (max-width: 768px) {
        .search-container input {
         
        }
      }
.hero-section {
  position: relative;
  height: 100vh;
}
.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(
    255,
    255,
    255,
    0.8
  ); /* Slightly transparent background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
}
.search-form input,
.search-form select {
  margin-right: 10px;
}

  /* Slider Style */
  .form-control-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px; /* Thin slider */
    background: #ddd; /* Light gray background */
    border-radius: 15px;
    outline: none;
    transition: background 0.3s;
  }

  /* Style for the thumb (slider pointer) */
  .form-control-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff; /* Blue color */
    cursor: pointer;
    transition: background 0.3s;
  }

  .form-control-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff; /* Blue color */
    cursor: pointer;
  }

  /* Hover effect for the slider */
  .form-control-range:hover {
    background: #aaa; /* Darker gray when hovered */
  }

.nav-link {
  background-color: white;
  border-radius: 30px;
  padding: 10px;
  margin: 10px;
  width: 130px;
  text-align: center;
  align-items: center;
  font-weight: 600;
}

.nav-link:hover {
  background-color: #06a1fa;
  color: white;
  border-radius: 30px;
  padding: 10px;
  margin: 10px;
  width: 130px;
  text-align: center;
  align-items: center;
  font-weight: 900;
}
.navbar-brand img {
  /* filter: drop-shadow(10px 10px 10px rgba(15, 10, 0, 0.3)); */
  /* Drop shadow with filter */
}
/* Adjust for spacing below the image for the navbar */

.hero-section {
  margin-top: -100px; /* Add some margin below the navbar to avoid overlap */
}

.rental-card {
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-top: 30px;
}
.rental-card:hover {
  transform: scale(1.05);
}
.rental-card img {
  height: 250px; /* Adjust height as needed */
  object-fit: cover; /* Ensures the image is cropped to fit without distortion */
  width: 100%; /* Ensures the image takes full width of the card */
}

@media (max-width: 768px) {
  .rental-card img {
    height: 200px; /* Adjust for smaller screens */
  }
}
.card-body {
  padding: 15px;
}

/* Fade In and Slide Up Animation */
@keyframes fade-in-slide-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-slide-up {
  animation: fade-in-slide-up 1s forwards;
}

/* Bounce Up Animation */
@keyframes bounce-up {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(5px);
  }
  70% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

.bounce-up {
  animation: bounce-up 1s ease-out forwards;
}

.container-x {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
}
.image-section {
  position: relative;
  height: 100%;
  overflow: hidden; /* Ensure the image doesn't overflow when scaled */
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-section:hover img {
  transform: scale(1.05); /* Scale the image itself on hover */
}

.text-section {
  background-color: #0a0f0d;
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.text-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.text-section p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.amenities {
  list-style: none;
  padding: 0;
}
.amenities li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.amenities li:before {
  content: "✔️";
  margin-right: 10px;
}

/* Ensure the section adjusts responsively */
@media (max-width: 768px) {
  .container-x {
    padding: 30px 15px;
  }
  .text-section h2 {
    font-size: 28px;
  }
  .text-section p {
    font-size: 16px;
  }
}

 
.image-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px;
}
.gallery-item {
    position: relative;
    width: 30%;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}
.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
    transition: bottom 0.3s ease-in-out;
}
.gallery-item:hover .overlay {
    bottom: 0;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.button {
    background-color: green;
    color: white;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}


footer a {
    transition: color 0.3s ease-in-out;
  }
  
  footer a:hover {
    color: #17a2b8 !important; /* Light blue on hover */
  }
  
  footer input {
    transition: box-shadow 0.3s ease-in-out;
  }
  
  footer input:focus {
    box-shadow: 0 0 8px rgba(23, 162, 184, 0.8); /* Glowing effect */
    outline: none;
  }
  
  /* Social Media Icons Hover Effect */
  footer .bi {
    font-size: 1.5rem;
    transition: transform 0.3s ease-in-out;
  }
  
  footer .bi:hover {
    transform: scale(1.2);
  }
  