.hero {
    background: url('../img/woman.png') center center/cover no-repeat;
    color: white;
    height: 500px;
    position: relative;
    
    
  }
  .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust for desired transparency */
  z-index: 1;
}

.hero .container {
  
  z-index: 2; /* Ensures the form appears above the dark overlay */
}
  .search-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
  }
  


.favorite-icon {
    position: relative;
    z-index: 10; /* Ensure it's above the carousel and other elements */
    cursor: pointer;
}

.property-card {
    height: 100%; /* Full height inside the column */
    display: flex;
    flex-direction: column;
  }

  .carousel-inner img,
  .card-img-top {
    height: 250px;
    object-fit: cover;
  }

  .card-body {
    flex-grow: 1; /* Push footer to the bottom if added */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
    .property-price{
    background-color: red;
}
.pagination-bg{
   background-color: red;
}

.button-search{
   background-color: red;
}