.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: -1;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  .overlay-content h1 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #06c167;
    padding-top: 200px;
    font-size: 400%;
    background-color: #00000066;
    min-height: 40vh;
	 margin-top: 0%;
  }


  .overlay-content .orgen {
         color: #f7931e
}
  .search-bar {
    margin: 70px auto;
    display: flex;
    justify-content: center;
    gap: 5px;
    max-width: 500px;
  }

  input, button {
    padding: 10px;
    font-size: 1rem;
  }

  #searchInput {
    background: white;
    color: black;
    max-width: 500px;
    width: 80%;
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 0px;
    margin-top: 0px;
    box-shadow: 0 2px 8px #f7931e;
    outline: none;
    transition: border 0.3s ease;
  }
  
  #searchInput:focus {
    border-color: #f7931e;
  }
  






.Sectionn01 .logo img{
  vertical-align: middle;
  width: 120px;
  margin-left: 5%;
}




  
  .property-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 320px;
    position: relative;
  }
  
  .property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }
  
  .tag {
    font-size: 0.7rem;
    padding: 4px 6px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
  }
  
  .featured { background: #06c167; }
  .rent { background: #246bfb; }
  .buy { background: #31c300; }
  .sold { background: #e91e63; }
  
  .property-info {
    padding: 15px;
  }
  
  .property-info h3 {
    font-size: 1rem;
    margin: 0 0 10px 0;
  }
  
  .features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .price {
    font-size: 1.1rem;
    color: #000000;
    font-weight: bold;
  }
  
  .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    margin-left: 10px;
  }
  




  #bedroomFilter {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    background: white;
    color: black;
    cursor: pointer;
    border-radius: 0px;
 
  }




  

/*Footer Start*/


.custom-footer {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
  margin-top: 60px;
  overflow: hidden;
  border-top: 3px solid #25D366;
}

/* Top section with icons */
.footer-top {
  background-color: #b16815;
  padding: 25px 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons a {
  color: white;
  font-size: 26px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #25D366;
  transform: scale(1.2);
}

/* Bottom section */
.footer-bottom {
  background-color: #226e40;
  padding: 0.1px 10px;
 
  font-size: 14px;
}

.footer-bottom strong {
  font-weight: bold;
}



/*Footer Start*/




.buttons {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: #fafafa;
}

.call-btn, .whatsapp-btn {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

/* Call Button Style */
.call-btn {
  background-color:  #b16815;
  color: white;
}

.call-btn:hover {
  background-color:  #f7931e;
}

/* WhatsApp Button Style */
.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #226e40;
}









