.hero-section{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url(../images/bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   
}
.hero-section::after{
    content: ' ';
    width: 100%;
    height: 100%;
    min-height: 100vh;
  background: var(--black-color);
  position: absolute;
  top: 0;
  left: 0;
   opacity: 0.45;
}
 
 .hero-container{
    width: 100%;
    height: 100%;
     display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    gap: 1.8rem;
}
 .hero-container .hero-text-container{
    width: 80%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .8rem;
 
}
 .hero-text-container .hero-text{
color: var(--white-color);
font-size: 3rem;
text-align: center;
}
.hero-text-container .hero-desc{
    color: var(--white-color);
font-size: 1.5rem;
text-align: center;
}
.hero-container .search-form-container .search-form .search-input-container{
 display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  outline: none;
  border: none;
  width: 100%;
}
.hero-container .search-form-container .search-form .search-input-container label{
    font-size: .8rem;
    font-weight: 500;
}
.hero-container .search-form-container .search-form .search-input-container .search-input{
 height: 40px;
  width: 100%;
  padding: 10px;
  outline: none;
  background: var(--cardbg-color);
  border: none;
  border-radius: 5px;
  /* display: none; */
}
 
.hero-container .search-form-container{
 width: 80%;
 display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-container .search-form-container .search-form {
 display: flex;
  align-items: start;
  justify-content: center;
  gap: .8rem;
  background: var(--white-color);
  width: 100%;
  padding: 1.2rem;
  border-radius: 5px;
}
.hero-container .search-form-container .search-form .search-form-btn{
border: none;
outline: none;
width: 100%;
margin-top: 1.1rem;
border-radius: 20px;
}
.hero-container .search-form-container  .search-type-container{
   display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
}
  .search-type-container .search-type-inner{
   display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
   width: 100%;
}
  .search-type-container .search-type-inner .search-type-btn{
   border: none;
   outline: none;
   border-radius: 20px;
   transition: all 0.3s linear;
 }
 .search-type-container .search-type-inner .search-type-btn.active{
   background-color: var(--primary-color);
   color: var(--white-color);
 }
 .search-type-container .search-type-inner .search-type-btn:hover{
   background-color: var(--primary-color);
   color: var(--white-color);
 }
 .section-main{
      display: flex;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 5rem;
 }
 
 .property-search-container{
  padding: 3rem;
 }
 
  /* PROPERTY-CARDS */
    .property-listing{
      display: flex;
      align-items: stretch;
      gap: 4rem;
      flex-wrap: wrap;
      width: 100%;
    }
   .property-listing .property-card{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: calc((100% - 8rem) / 3);
    min-height: 500px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
   }
   .property-listing .property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
 
   .property-card .property-img{
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
    }
.property-card .card-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.property-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}
.property-card .locatin {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.property-card .location {
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-card .short-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.property-card .short-description i {
  margin-right: 4px;
}
.property-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: auto;
  flex-shrink: 0;
}
.property-card .price .month {
  font-weight: 400;
  color: #555;
  font-size: 0.9rem;
}
.property-card .card-body > a[href*="wa.me"] {
  flex-shrink: 0;
}
 
 
 /* FEATURED-PROPERTIES */
 /* .feature-properties-section{
    display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 5rem;
 } */
 .feature-properties-section .feature-properties-container{
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
 }
 .feature-properties-view-all {
   display: flex;
   justify-content: center;
   margin-top: 2rem;
   width: 100%;
 }
 .title-container{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
 }
 .title-container .subtitle{
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: bold;
 }
 .title-container .title{
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
 }
 .feature-properties-section .feature-properties-container .content-container{
    width: 100%;
    height: 100%;
      gap: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
 
 }
 .feature-properties-menu-container{
    display: flex;
  align-items: center;
  justify-content: center;
 }
 .feature-properties-menu-list{
    display: flex;
  align-items: center;
  justify-content: center;
    gap: 1.2rem;
 
 }
  .feature-properties-menu-list li{
   list-style: none;
 }
 .feature-properties-menu-list li button{
   border: none;
   background-color: var(--bgc-color);
   transition: all 0.3s linear;
 }
  .feature-properties-menu-list li button:hover{
   border: none;
   background-color: var(--primary-color);
   color: var(--white-color);
 }
 .feature-properties-menu-list li button.active{
background-color: var(--primary-color);
   color: var(--white-color);
}
   .feature-properties-content-container{
    display: flex;
    /* align-items: center;
    justify-content: center; */
    gap: 2rem;
 
   }
   .feature-properties-content-container .product-card{
    width: 100%;
    height: 100%;
    max-width: calc((100% - 4rem) / 3);
   
   }
   .product-card .img-container{
     width: 100%;
    height: 100%;
   }
    .product-card .img-container img{
     width: 100%;
    height: 100%;
    object-fit: cover;
   }
 
 
 
 
 
 
 
 
/* SERVICE-SECTION */
.services-section{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.services-section .services-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
justify-content: center;
gap: 1.2rem;
}
 
.services-section .services-container .services-content-container
 {
    width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.services-section .services-container .services-row{
  gap: 1.2rem;
  background-color: rgb(250, 253, 255);
    width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .services-container .services-row:nth-child(2){
  flex-direction: row-reverse;
}
.services-col {
  flex: 1;
  height: 100%;
}
 
.services-col .img-container {
  width: 100%;
  height: 100%;
  display: flex;
}
.services-col .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-col .text-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  padding: 2rem ;
}
.services-col .text-container h4{
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--secondary-color);
}
.services-col .text-container .sub-desc{
  font-size: 1rem;
  color: var(--light-text);
}
 
 
 
.feature-section{
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-card-container{
  display: flex;
  align-items: center;
}
/* SECTION-3  KEY-FEATURES*/
.key-features-container{
  display: flex;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}
.feature-card{
  flex: 1 1 0;
  min-width: 0;
  min-height: 260px;
  height: 260px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.feature-body{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.feature-body h4{
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature-body p {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  flex: 1;
  min-height: 0;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
 
#backToTop:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}
 
 
 
@media only screen and (max-width : 1120px){
  .property-listing .property-card:nth-child(3) {
  width: calc(100% - 2rem);
}
 .property-listing{
    gap: 2rem;
 }
 .property-listing .property-card{
   width: calc((100% - 4rem) / 2);
   height: 500px;
   }
 
   
 .feature-card{
  flex: 1 1 calc(50% - 1rem);
  min-height: 260px;
  height: 260px;
}
}
 
@media only screen and (max-width : 1000px){
  .services-section .services-container .services-row{
    width: 100%;
  height: 100%;
 flex-direction: column;
}
.services-section .services-container .services-row:nth-child(2){
  flex-direction: row-reverse;
  flex-direction: column;
 
}
 
 
}
 
@media only screen and (max-width : 900px){
 
 .hero-text-container .hero-text{
font-size: 2.4rem;
}
.hero-text-container .hero-desc{
font-size: 1rem;
}
.hero-container .search-form-container .search-form {
flex-direction: column;
  gap: .8rem;
  width: 100%;
 
}
 
}
 
@media only screen and (max-width : 800px){
  .property-listing .property-card:nth-child(3) {
  width:100%;
}
 
   .property-listing .property-card{
    width: 100%;
    height: 500px;
   }
 
   
 .feature-card{
  flex: 1 1 100%;
  min-height: 260px;
  height: 260px;
}
}
@media only screen and (max-width : 500px){
 
 .hero-text-container .hero-text{
font-size: 1.4rem;
}
.hero-text-container .hero-desc{
font-size: .8rem;
}
 .section-main{
  padding: 2rem;
 }
 .title-container .subtitle{
    font-size: .8rem;
 
 }
 .title-container .title{
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
 }
 
}
 
 
                                                   
 
 
 
 