 
 
  
 
 .hero-home{

     background: url('/images/renieshomeback.png') center/cover no-repeat;
     height: 100%;
     text-align: center;
     color: #fff;
 }

 .hero-buttons-home {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-direction: column;
     padding-top: 20px;
     padding-bottom: 90px;
     height: auto;
     /* background-color: red; */
 }

 .hero-content-home {
     position: relative;
     padding: 100px 80px;
     z-index: 1;
     /* ensure text is above */
 }

 #listingbtn {

     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
 }

 .hero-content-home::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #1A1C20BF;
     /* your background color */
     opacity: 0.9;
     /* only background opacity */
     z-index: -1;
     /* place behind text */
 }

 /* .search-box-home {
    margin: 40px auto 0;
    display: grid;
 grid-template-columns: repeat(4,1fr); 
    gap: 15px;
    max-width: 900px;
} */
 #searchbox {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.searchbutton {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 6px;
}

/* selected on click */
.searchbutton.active {
    background: white;
    color: black;
}


 #search-box-home-content {
     display: flex;
     background-color: #FFFFFF;
     align-items: center;
     justify-content: space-between;
     border-radius: 24px;
     padding: 44px;
 }
@media (max-width: 1352px) {
    #search-box-home-content {
         
        display: grid;
       grid-template-columns: repeat(1,1fr);
        gap: 20px;
    }
} 
 .inputcontainer {
     display: flex;

     gap: 30px;
 }
 @media (max-width: 1070px) {
    .inputcontainer {
        display: grid; 
        grid-template-columns: repeat(1,1fr);
    }
    }

 #advsear {
     display: flex;
     gap: 30px;
     align-items:center;
 }

 .labelinput {
     display: flex;
     flex-direction: column;
     align-items: start;
     gap: 10px;
 }

 .labelinput label {
     font-family: DM Sans;
     font-weight: 500;
     font-style: Medium;
     font-size: 18px;
     line-height: 100%;
     letter-spacing: 0%;
     color: #4A4A4A;
 }

 .labelinput input {
     gap: 12px;
     padding: 10px 0px;
     border-width: 1px;
     border: none;
     outline: none;
 }
    .searchbtn-inpt {
        display:flex;
        align-items: center; 
gap: 12px;
border-radius: 8px;
border-width: 1px;
 padding: 0px 10px;
border: 1px solid #253D738C;
        }

 #search {
  display:flex;
gap: 10px;
border-radius: 12px;
padding-top: 12px;
padding-right: 24px;
padding-bottom: 12px;
padding-left: 24px;
background: #C8A648;
font-family: DM Sans;
font-weight: 600;
font-style: SemiBold;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color:#1A1A1A;
 }

 #advanced {
    display:flex;
opacity: 1;
gap: 12px;
border-radius: 12px;
border-width: 1px;
padding-top: 16px;
padding-right: 24px;
padding-bottom: 16px;
padding-left: 24px;

border: 1px solid #EDEDED;
 
    font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 16px;
 
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #1A1A1A;
 
 }

 .searchbutton {

     gap: 10px;
     border-top-left-radius: 8px;
     border-top-right-radius: 8px;
     border-top-width: 1px;
     border-right-width: 1px;
     border-left-width: 1px;
     padding-top: 12px;
     padding-right: 32px;
     padding-bottom: 12px;
     padding-left: 32px;
     background: #0B0C0E14;
     border-width: 1px, 1px, 0px, 1px;

     border-style: solid;

     border-color: #F7F7F7;
     font-family: DM Sans;
     font-weight: 500;
     font-style: Medium;
     font-size: 16px;

     line-height: 100%;
     letter-spacing: 0%;
     text-align: center;
     color: #F7F7F7;
 }

.category{
 

    display:flex;
    align-items: center;
justify-content: space-between;
 /* background-color: red; */
opacity: 1;
border-radius: 8px;
border-width: 1px;
padding-top: 10px;
padding-right: 16px;
padding-bottom: 10px;
padding-left: 16px;

}
.linesbtninp{
    display:flex;
    align-items: center;
    
   border: .1px solid #D0D0D0;
}
.dropdown-wrapper {
    width: 250px;
    font-family: "DM Sans", sans-serif;
}

.dropdown-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}

/* dropdown container */
.custom-dropdown {
    position: relative;
    width: 100%;
}

/* summary button */
.custom-dropdown summary {
    list-style: none;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
}

/* Remove default arrow */
.custom-dropdown summary::-webkit-details-marker {
    display: none;
}

/* arrow icon */
.custom-dropdown summary .arrow {
    width: 14px;
    transition: 0.2s;
}

/* rotate arrow when open */
.custom-dropdown[open] summary .arrow {
    transform: rotate(180deg);
}

/* dropdown list */
.custom-dropdown .dropdown-list {
    margin: 10px 0 0;
    padding: 10px 0;
    list-style: none;

    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
text-align: start;
    position: absolute;
    width: 100%;
    z-index: 10;
}

/* each option */
.custom-dropdown .dropdown-list li {
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    color: #1A1A1A;
}

.custom-dropdown .dropdown-list li:hover {
    background: #f5f5f5;
}

/* Close dropdown when clicking an option */
.custom-dropdown .dropdown-list li {
    user-select: none;
}
.selected-text{
    color: #000000;
}
 
/* advanced conatainer */
 

.filter-box {

    width: 100%;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    input{
        font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #1A1A1A;
    }
}
input[type="range"] {
  
    accent-color: #C8A648;
 
}

 
/* Price row */
.price-row {
    margin-bottom: 25px;
    width: 100%;
}
.price-row .price-values {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}
.price-slider {
    width: 100%;
}
.headings{
    font-weight: 600;
    margin: 20px 0px;
}
/* 2-column grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}
#filterbox{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
    /* background-color: red; */
   
}
#filter-row-grid{
    display: grid;
grid-template-columns: repeat(3,1fr);
gap: 20px   ;
    /* background-color: gold; */
}
#check-row-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    input{
        font-weight: 100;
    }
    /* background-color: aquamarine; */
}

.filter-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

  
/* Button groups */
.option-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.option-buttons button {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
}
.option-buttons button.active {
    background: #E1C56E;
    border-color: #E1C56E;
}
.furnishing-facing-grid{
    display: flex;
    gap: 30px;
}
/* Checkbox rows */
.check-row {
    margin-top: 20px;
}
.check-row input[type="checkbox"] {
    
    width: 24px;
    height: 24px;
  
    
}
.check-grid {
    
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 10px;
}
.check-grid label {
    display:flex;
    align-items:center;
    gap:10px;
    font-size: 15px;
    font-weight: 400;
}

/* Buttons */
.footer-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}
.footer-btns .clear {
    padding: 12px 25px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
}
.footer-btns .apply {
    padding: 12px 30px;
    border-radius: 10px;
    background: #C8A648;
    color: #1A1A1A;
     font-family: DM Sans;
    border: none;
    cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 900px) {
    .furnishing-facing-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .check-grid {
    
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
#filterbox{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1,1fr);
    /* background-color: red; */
   
}
#check-row-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    /* background-color: aquamarine; */
}

}

/* Mobile */
@media (max-width: 600px) {
      .furnishing-facing-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
    #filterbox{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1,1fr);
    /* background-color: red; */
   
}
    .check-grid {
    
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
    .filter-box {
        padding: 18px;
    }
    .option-buttons button {
        flex: 1 1 calc(33% - 10px);
    }
    .footer-btns {
        flex-direction: column;
    }
    .footer-btns button {
        width: 100%;
    }
    #check-row-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    /* background-color: aquamarine; */
}

}


 /* ------------------------------
PROPERTIES GRID
------------------------------ */
 .properties-grid-home {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 32px;
     width: 100%;
     margin: auto;
     padding: 20px 80px;
 }

 .property-card-home {
     background: #fff;
     box-shadow: 0 0 20px 0px #c0bfbf;
     border-radius: 30px;
     padding-bottom: 20px;
     position: relative;
     overflow: hidden;
 }
 

 .property-card-home img {
     width: 100%;
     border-radius: 30px 30px 0 0;
     transition: all .6s ease;
 }

 .textonimage {
     position: absolute;
 }

 .premium-content {
     padding: 20px;
     display: flex;
     flex-direction: column;
     align-items: start;
     justify-content: space-around;
     /* background-color: red; */
     gap: 20px;
 }

 .flatvalues {
     margin-bottom: 20px;
 }

 #premium-heading {
     padding-top: 100px;
     display: flex;
     flex-direction: column;
     /* background-color: rebeccapurple; */
     align-items: center;
     justify-content: center;
 }

 #premiumheadings p {
     font-family: DM Sans;
     font-weight: 500;
     font-style: Medium;
     font-size: 18px;

     text-align: center;
 }

 #premiumheadings h2 {
     font-family: Josefin Sans;
     font-weight: 700;
     font-style: Bold;
     font-size: 36px;
     text-align: center;
 }

 .property-card-home .image-box {
    overflow: hidden;
     position: relative;
 }

 .property-card-home .image-box img {
     width: 100%;
     display: block;
    
 }
 
 .property-card-home .image-box img:hover{
      border-radius: 30px 30px 0 0;
    transform: scale(1.05);
 }

 /* Buttons on image */
 .img-btn {
     position: absolute;
     top: 10px;
     padding: 5px 20px;
     font-size: 13px;
     /* background: red; */
     color: #fff;
     border: none;
     border-radius: 5px;
     display: flex;
 }

 /* Left button */
 .img-btn.left {

     opacity: 1;
     gap: 10px;
     padding-top: 6px;
     padding-right: 12px;
     padding-bottom: 6px;
     padding-left: 12px;
     border-radius: 8px;
     left: 10px;
     background: #0000008C;
     font-family: DM Sans;
     font-weight: 400;
     font-style: Regular;
     color: #FFFFFF;
 }

 /* Right button */
 .img-btn.right {
     right: 10px;
     gap: 4px;
     padding-top: 6px;
     padding-right: 12px;
     padding-bottom: 6px;
     padding-left: 12px;
     border-radius: 8px;
     background: #008136;
     font-family: DM Sans;
     font-weight: 400;
     font-style: Regular;
     font-size: 13px;
     color: #FFFFFF;
 }

 .img-btn.right img {
     width: 20px;
 }
 .explore-all{
    text-align: center;
border-radius: 12px;
padding-top: 12px;
padding-right: 24px;
padding-bottom: 12px;
padding-left: 24px;
background-color: #C8A648;
font-family: DM Sans;
font-weight: 600;
font-style: SemiBold;
font-size: 16px;
color: #1A1A1A;
border: none;
a{
    text-decoration: none;
    color: #1A1A1A;
}

 }

 /* ------------------------------
CATEGORY GRID
------------------------------ */
 
 .category-grid-home {
     
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      margin: auto;
 }


 .category-card-home {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
gap: 16px;
border-radius: 20px;
padding: 24px;
border-width: 1px;
     text-align:center;
     border: 1px solid #EDEDED;
     box-shadow: 0px 4px 16px 0px #00000014;
     transition: transform 0.5s ease-in-out;
      
 }
 .category-card-home:hover{
    border: 1px solid #C8A648;
  transform: translateY(-10px);
 }
 .category-section-home{
      display:flex;
    flex-direction:column;
    gap:40px;
   padding: 0px 80px;
}
 
 .category-section-home .title-home{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 36px;
line-height: 40px;
letter-spacing: 0%;
text-align: center;
    color: #1A1A1A;
 }
 .category-section-home p{
    font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
 color: #4A4A4A;
text-align: center;

 }
 

 .category-card-home img {
     width: 50px;
    margin-bottom: 20px;
 }

 .category-card-home h4 {
     font-family: DM Sans;
     font-weight: 600;
     font-style: SemiBold;
     font-size: 16px;
     color: #1A1A1A;
     text-align: center;
 }

 .category-card-home p {
     font-family: DM Sans;
     font-weight: 400;
     font-style: Regular;
     font-size: 14px;
     text-align: center;
     color: #4A4A4A;
 }



 /* .location-card */
.top-locations {
  
    /* background: #000; */
    color: rgb(243, 238, 238);
    text-align: center;
}
.container{
    /* background-color: #0000008C; */
    position: relative;
    max-width:100%;
    padding: 20px 80px;
}

.location-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0D0D0D;
    padding: 20px;
}
.location-subtitle {
    font-size: 16px;
    color: #131111;
  
    margin-bottom:100px; 
    text-align: center;

}

/* NAV BUTTONS */
 
.location-nav {
    position: absolute;
    right:   20px;
    display: flex;
    gap: 12px;
    z-index: 20;
    top:150px;
}

.location-nav div {
    width: 44px;
    height: 44px;
    background: #6E5200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

.swiper-slide{
/* background-color: RED; */
padding: 10PX;
}
.swiper-pagination{
/* background-color: red; */
padding-top: 50px;
margin:  auto;
}
 
/* CARD */
.location-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 340px;
    transition: all .5s ease;

}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     
}
.location-card:hover{
    border-radius: 32px;
   transform: scale(1.05);
}
 
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
     
}

.loc-info {
    position: absolute;
    bottom: 30px;
    left: 25px;
    text-align: left;
    bottom: -120px;
    transition: all .6s ease;
}
.loc-info h3 {
    font-size: 22px;
    font-weight: 700;
  padding: 20px 0px;
    transition: all 1s ease;
}
 .loc-info:hover{
bottom: 20px;
h3{
    padding: 10px 0px;
}
.loc-count{
     border: none;
      background: #C8A648;
      color: black;
}
 }
 

.loc-count {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #C8A648;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
}

.loc-info button{
    outline: none;
    border:none;
    background-color: transparent;
}
.loc-info h3 p{
color: #FFFFFF;
}
 

.view-text-img img{
    width: 20px;
}
.view-text-img a{
    text-align: center;
    color:#d0a200;
}


/* PAGINATION */
.swiper-pagination-bullet {
    background: #777;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #d0a200 !important;
}


 /* ------------------------------
WHY US
------------------------------ */
 .why-us-home {
      padding: 80px;
     width: 100%;
     margin: auto;
     display: flex;
     justify-content: space-between;
     text-align: start;
     gap: 50px;
     background-color: rgb(17, 17, 17);
     flex-direction: column;
 }
 #why-top{
    /* background-color: blue; */
    display: flex;
    align-items: start;
    justify-content: space-between;
    /* background-color: #C8A648; */
    gap: 20px;
    color: white;
 }
 @media (min-width: 900px) and (max-width: 1300px) {
    #why-top{
        flex-direction: column;
        .why-images img{

            width:100%;
        }
    }
    #why-bottom{
        flex-direction: column;
        .why-images img{

            width:100%;
        }
    }
 }
 .head-content{
    align-items: start;
    justify-content:start ;
    display: flex;
    gap: 10px;
     
 }
#why-top img{
    /* width:700px; */
}
.why-buttons{
    background-color: #C8A648;
    border:none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: DM Sans;
}
.postalistening{
    background-color: transparent;
    border: 1px solid #C8A648;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: DM Sans;
    color: white;}
 #why-bottom{
  
    display: flex;
     align-items:start;
    justify-content: space-between;
    text-align: start;
    color: white;
 }

.why-us-home .why-images img{
    width:100%;
}
.gradient-text{
    
font-size: 25px;
  
}
.gradient-text p{
    font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
color:#FFFFFF;
text-align: start;
}
#why-top-descrption{
    font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 16px;
 color:#FFFFFF;
 text-align: start;
}
 
 
.why-top-header button{
    background-color: transparent;
gap: 10px;
border-radius: 8px;
border-width: 1px;
padding-top: 6px;
padding-right: 12px;
padding-bottom: 6px;
padding-left: 12px;
border: 1px solid #C8A648;
margin-bottom:10px;
 a{
        text-decoration:none;
        color:white;
    }
}
.why-top-header .gradient-text{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 36px;
text-align:start;
}
#linebtpbm{
height:1px ;
border:1px solid  grey;
margin :50px 0px;
}
#why-bottom-buttons{
    
    /* background-color: red; */
    display: flex;
    margin-top: 50px;
    gap: 20px;
}
.imgtext{
    /* background-color:brown; */
    display:flex;
    align-items:start;
    flex-direction:row;
    text-align: start;
     
}
.icontext{
    display: flex;
    align-items:start;
   
    font-family: Josefin Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
 color:#C8A648;
 
}
#text-left {
    
  /* background-color:blue; */
   display:flex;
    align-items:start;
    flex-direction:column;
   justify-content:space-between;
   gap:10px;
}
#text-right{
  /* background-color:blue; */
   display:flex;
    align-items:start;
    flex-direction:column;
     justify-content:space-between;
     gap:20px;
}
.why-bottom-content {
    display: flex;
    padding:20px 0px;
    flex-direction: column;
    align-items:start;
     
}
#whychoose{
    text-align:start;
    font-size:40px;
     font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
text-align: center;
    background: linear-gradient(180deg, #E9C873 0%, #C8A648 50%, #8F6D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-bottom-content P{
    font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
color:  #F7F7F7;
}
.why-bottom-content h2{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 18px;
color:  #F7F7F7;

}
.why-bottom-text{
    display:flex;
    flex-direction:column;  
    margin: 5px 0px;
    padding-right: 20px;
}
.why-bottom-text p{
    font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 15px;
color: #FFFFFFBF;
}
.why-bottom-img-text{
    gap:10px;
    display:flex;
}
.why-bottom-img-text img{
    width:30px;
 
}
#why-bottom-button{
    background-color: #008136;
}
#why-bottom-button a{
    color:wheat;
}




.testimonials-home {
    
     padding: 80px ;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.title-home{
text-decoration: none;
text-align: center;
font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 36px;
line-height: 40px;
color: #1A1A1A;

}
.title-desc{
  text-align: center;
  font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
color: #4A4A4A;
}

.testimonials-grid-home {
    display: flex;
    gap:30px;
   
    padding: 30px;
}
.slide-btn:focus {
    outline: none !important;
}

.testimonial-card-home {
    min-width: 350px;
    padding: 20px;
    margin: 20px;
 
border-radius: 20px;
  
  background-color: #F8F8F8;
  box-shadow: 0px 8px 22px 0px #0000000F;
border: 1px solid #EDEDED;
transition: all .5s ease;
}
.testimonial-card-home img {
    width: 50px;
    height: 50px;
    border-radius: 0%;
    text-align: center;
  border-radius: 2px;
  
}
.testimonial-card-home:hover{
border: 1px solid #C8A648;

    transform: translateY(-10px);
    }
 
.testimonial-card-home div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}
.quotes{
    /* background-color: #008136; */
    padding-bottom: 30px;
}
.quotes img{
    width: 20px;
    height: 20px;
}
.star{
    /* background-color: #bfe0cd; */
    justify-content: center;
    display: flex;
    align-items: center;
     
}
.star img{
    width: 20px;
    height: 20px;
}
.testimonial-card-home p{
    font-family: DM Sans;
font-weight: 400;
font-style: Italic;
font-size: 18px;
line-height: 30px;
    text-align: center;
    color: #4A4A4A;
}
.testimonial-card-home h4{
    font-family: DM Sans;
font-weight: 700;
font-style: Bold;
font-size: 16px;
 color: #1A1A1A;

}
/* Slider Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:    #6E5200;;
    color: white;
    border: none;
    padding: 30px 10px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 10%;
    z-index: 10;
    margin: 30px;
}

.left-btn { left: -30px; }
.right-btn { right: -30px; }

.slide-btn:hover {
    background: #333;
    
}


/* Responsive */
@media (max-width: 992px) {  
    .testimonial-card-home {
        min-width: 280px;
    }
}

@media (max-width: 600px) {
    .testimonials-grid-home {
        gap: 15px;
    }
    .testimonial-card-home {
        min-width: 90%;
    }
    .left-btn { left: 5px; }
    .right-btn { right: 5px; }
}

 /* ------------------------------
BLOGS
------------------------------ */
.blogs-home{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
 .blog-grid-home {
      
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     width: 90%;
     margin: auto;
     gap: 20px;
     /* background-color: #008136; */
 }

  
 .blog-card-home {
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgb(187, 186, 186);
     overflow: hidden;
     display: flex;
     justify-content: space-between;
     flex-direction: column;
    position: relative;
    
}

.blog-card-home img {
    width: 100%;
    border-radius: 18px;
}

/* BUTTON ON TOP OF IMAGE */
.relativebutton {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #EBD28B;
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
color: #1A1A1A;
}


 .blog-card-home img {
     width: 100%;
     border-radius: 10px;
     padding-bottom: 20px;
     transition: .6s all ease;
 }
 .blog-card-home .left-align{
    text-align: end;
 }
 .blog-card-home img:hover{
   
    width: 100%;
     transform: scale(1.1);

 }
 .blog-card-home h3{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 22px;
color: #1A1A1A;
padding: 0px 10px;
 }
 .blog-card-home p{
    font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 14px;
 color: #4A4A4A;
padding: 0px 10px;
 }
 .blogreadmore{
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 10px;
    /* background-color: #008136; */
    gap: 20px;
 }
 .blogreadmore a{
    font-family: DM Sans;
font-weight: 600;
font-style: SemiBold;
font-size: 16px;
    font-size: large;
    color: #C8A648;
 }
 i{
     color: #C8A648;
 }
  

  /* company section */
 #companylogos{
    /* background-color: red; */
    display: flex;
    gap: 100px;
    padding: 50px;
 }
 .img-container{
     
    display: flex;
    align-items: center;
    justify-content: center;
background: #FFFFFF;
border: 1px solid #EDEDED;
width: 180px;
height: 90px;
opacity: 1;
border-radius: 12px;
border-width: 1px;
padding:10px 20px;
 }
#companylogos img{
  width: 148.9537353515625px;
height: 80px;
opacity: 1;
left: 15.52px;

 
}
.companies{
    padding: 100px 40px;
}
.companies p{
font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 14px;
 
text-align: center;
color: #4A4A4A;
}/* Outer dark background */
/* Section background */
.bigmove {
    background: #FFFFFF;
    padding: 90px 40px;
    display: flex;
    justify-content: center;
}

/* Main black rounded container */
.big-container {
    background: #0D0D0D;
    padding: 60px 100px;
    border-radius: 40px;
     
    position: relative;
    overflow: hidden;
}

/* ⭐ Golden circle glow behind content ⭐ */
.big-container::before {
    content: "";
    position: absolute;
    width: 40%;           /* EXACT requirement */
    aspect-ratio: 1/1;
    border-radius: 50%;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
background: linear-gradient(180deg, rgba(200, 166, 72, 0.25) 0%, rgba(11, 12, 14, 0.24) 70%);
    z-index: 0;
}

/* Content above glow */
.bigmovecontent {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Heading */
.bigmovecontent h2 {
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 36px;
text-align: center;
    background: linear-gradient(180deg, #E9C873 0%, #C8A648 50%, #8F6D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}  


/* Sub-text */
.bigmovecontent p {
    color: #8D8D8D;
    font-size: 17px;
    margin-bottom: 35px;
}

/* Buttons */
#bigmove-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.primary-btn {
    background: #D6AF59;
    padding: 12px 26px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    
}

.outline-btn {
    background: transparent;
    padding: 12px 26px;
    border-radius: 12px;
    border: 2px solid #D6AF59;
    font-size: 16px;
    font-weight: 600;
    color: #D6AF59;
    cursor: pointer;
}
#bigmove-features {
    display: flex;
    justify-content: center;
    gap: 65px; /* Equal spacing */
    align-items: center;
}

#bigmove-features .feat {
    display: flex;
    align-items: center;       /* verticle alignment */
    gap: 10px;
}

#bigmove-features .feat img {
    width: 18px;               /* force same size */
    height: 18px;              /* equal height fixes alignment */
    object-fit: contain;
    margin-top: 2px;           /* small nudge to match baseline */
}

#bigmove-features p {
    margin: 0;
    color: #D6D6D6;
    font-size: 15px;
}

 


 /* ------------------------------
}
 /* TABLET */
 @media (max-width: 900px) {
    .category-section-home{
   padding: 0px 0px;
}
 
     .hero-content-home {
     position: relative;
     padding: 20px;
     z-index: 1;
     /* ensure text is above */
 }

.button-price{
padding: 2px;
}

.button-veiw{
 background-color: transparent;
opacity: 1;
gap: 10px;
padding:2px;
border-width: 2px;
border: 2px solid #C8A648;

}
    .container{
    /* background-color: #0000008C; */
    position: relative;
    max-width:100%;
    padding: 40px;
}

 .why-us-home {
      padding: 40px;
     width: 100%;
     margin: auto;
     display: flex;
     justify-content: space-between;
     gap: 50px;
     background-color: rgb(17, 17, 17);
     flex-direction: column;
 }
          .properties-grid-home,
     .category-grid-home,
     .blog-grid-home,
     .testimonials-grid-home {
         grid-template-columns: repeat(2, 1fr);
         padding: 40px;
     }
     .why-us-home {
         flex-direction: column;
         text-align: center;
     }
      #why-top{
    /* background-color: blue; */
    display: flex;
    align-items: start;
    justify-content: space-between;
    /* background-color: #C8A648; */
    gap: 30px;
    color: white;
    flex-direction: column;
 }
 #why-bottom{
  
    display: flex;
     align-items:start;
    justify-content: space-between;
    gap: 10px;
    color: white;
    flex-direction: column;
 }
  #search-box-home-content {
     display: grid;
     background-color: #FFFFFF;
     align-items: center;
     gap: 20px;
     border-radius: 24px;
     padding: 44px;
     flex-direction: column;
 }
  .inputcontainer {
     display: flex;
     gap: 30px;
      
     flex-direction: column;
 }
 .inputcontainer input{
    width: 500px;
 }
  #advsear {
     display: flex;
     gap: 30px;
     flex-direction: column;
 }
   
.location-nav {
    position: absolute;
    right:   20px;
    display: flex;
    gap: 12px;
    z-index: 20;
    top:200px;
}
 }

 /* MOBILE */
 @media (max-width:600px) {
.category-section-home{
      display:flex;
    flex-direction:column;
    gap:40px;
    padding: 16px;
}

  
    .hero-content-home {
     position: relative;
     padding:20px;
     z-index: 1;
     /* ensure text is above */
 }

     .nav-home {
         display: none;
     }

     .search-box-home {
         grid-template-columns: 1fr;
     }

    .premium-properties-home .properties-grid-home{
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     gap: 25px;
     width: 100%;
     margin: auto;
     padding: 16px;
 }
     .category-grid-home,
     .testimonials-grid-home {
        display: grid;
         grid-template-columns: repeat(1, 1fr);
         padding: 0px;
     }

     .location-grid-home {
         display: flex;
         overflow-x: auto;
         gap: 15px;
     }

     .why-us-home {
         flex-direction: column;

     }

     .why-images-home {
         grid-template-columns: repeat(2, 1fr);
     }
      #why-top{
    /* background-color: blue; */
    display: flex;
    align-items: start;
    justify-content: space-between;
    /* background-color: #C8A648; */
    gap: 30px;
    color: white;
    flex-direction: column;
    
 }


 #why-bottom{
    display: flex;
     align-items:start;
    justify-content: space-between;
    
    color: white;
    flex-direction: column;
    padding: 10px;
 }
 
  
  


.testimonials-home {
    
     padding: 10px ;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.title-home{
text-decoration: none;
text-align: center;
font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 28px;
line-height: 40px;
color: #1A1A1A;
padding: 20px 0px;
}
.title-desc{
  text-align: center;
  font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
color: #4A4A4A;
}

.testimonials-grid-home {
    display: flex;
    
    transition: transform 0.4s ease-in-out;
     gap: 4px;
}
.slide-btn:focus {
    outline: none !important;
}

.testimonial-card-home {
width: 100px;
    padding: 10px;
    transition: all 1s ease-in;
border: 1px solid transparent;
border-radius: 20px;
  transition: margin 1s ease;
}
.testimonial-card-home img {
    width: 50px;
    height: 50px;
    border-radius: 0%;
    text-align: center;
  border-radius: 2px;
    
}
.testimonial-card-home:hover{
border: 1px solid #C8A648;
  margin-top: -10px;
}
 
.testimonial-card-home div {
    display: flex;
    align-items: center;
  
    margin-top: 15px;
}
.quotes{
    /* background-color: #008136; */
    padding-bottom: 30px;
}
.quotes img{
    width: 20px;
    height: 20px;
}
.star{
    /* background-color: #bfe0cd; */
    justify-content: center;
    display: flex;
    align-items: center;
     
}
.star img{
    width: 20px;
    height: 20px;
}
.testimonial-card-home p{
    font-family: DM Sans;
font-weight: 400;
font-style: Italic;
font-size: 18px;
line-height: 30px;
    text-align: center;
    color: #4A4A4A;
}
.testimonial-card-home h4{
    font-family: DM Sans;
font-weight: 700;
font-style: Bold;
font-size: 16px;
 color: #1A1A1A;

}
/* Slider Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:    #6E5200;;
    color: white;
    border: none;
    padding: 10px 5px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 10%;
    z-index: 10;
    margin: 5px;
}

.left-btn { left: 0; }
.right-btn { right: 0; }

.slide-btn:hover {
    background: #333;
    
}
  .blog-grid-home {
     padding: 10px;
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     width: 100%;
     margin: auto;
     gap: 20px;
     /* background-color: #008136; */
 }

      #search-box-home-content {
     display: flex;
     background-color: #FFFFFF;
     align-items: center;
     justify-content: space-between;
     border-radius: 24px;
     padding: 44px;
     flex-direction: column;
 }
  .inputcontainer {
     display: flex;
     gap: 10px;
      
     flex-direction: column;
 }
 .inputcontainer input{
    width: 90%;
 }
  #advsear {
     display: flex;
     gap: 10px;
     flex-direction: column;
 }
  
.bigmove {
    background: #FFFFFF;
    padding: 10px;
    display: flex;
    justify-content: center;
}

/* Main black rounded container */
.big-container {
    background: #0D0D0D;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* ⭐ Golden circle glow behind content ⭐ */
.big-container::before {
    content: "";
    position: absolute;
    width: 40%;           /* EXACT requirement */
    aspect-ratio: 1/1;
    border-radius: 50%;
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
background: linear-gradient(180deg, rgba(200, 166, 72, 0.25) 0%, rgba(11, 12, 14, 0.24) 70%);
    z-index: 0;
}


 
/* Content above glow */
.bigmovecontent {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Heading */
.gradient-text{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size:32px;
text-align: center;
    background: linear-gradient(180deg, #E9C873 0%, #C8A648 50%, #8F6D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}  


/* Sub-text */
.bigmovecontent p {
    color: #8D8D8D;
    font-size: 10px;
    margin-bottom: 35px;
}

/* Buttons */
#bigmove-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin-bottom:20px;
    

}

.primary-btn {
    background: #D6AF59;
    padding: 3px 6px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.outline-btn {
    background: transparent;
    padding: 3px 6px;
    border-radius: 12px;
    border: 2px solid #D6AF59;
    font-size: 16px;
    font-weight: 600;
    color: #D6AF59;
    cursor: pointer;
}
#bigmove-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px; /* Equal spacing */
    align-items: center;
}

#bigmove-features .feat {
    display: flex;
    align-items: center;       /* verticle alignment */
    gap: 5px;
}

#bigmove-features .feat img {
    width: 18px;               /* force same size */
    height: 18px;              /* equal height fixes alignment */
    object-fit: contain;
           /* small nudge to match baseline */
}

#bigmove-features p {
    margin: 0;
    color: #D6D6D6;
    font-size: 10px;
}
.why-us-home {
      padding: 16px;
     width: 100%;
     margin: auto;
     display: flex;
     justify-content: space-between;
     gap: 10px;
     background-color: rgb(17, 17, 17);
     flex-direction: column;
 }
.why-bottom-img-text img{
    width:30px;
}
.why-bottom-img-text img{
    width:30px;
 
}
.why-us-home .why-images img{
    width: 100%;
}
.container{
    /* background-color: #0000008C; */
    position: relative;
    max-width:100%;
    padding: 10px;
}
.premium-content .button-price{
opacity: 1;
gap: 10px;
padding: 4px 6px ;
border-radius: 12px;
background-color: #C8A648;

outline: none;
border: none;
}
.location-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #0D0D0D;
    padding: 20px;
}
.location-subtitle {
    font-size: 12px;
    color: #131111;
  
    margin-bottom:20px; 
    text-align: center;

}
.location-header-home{
padding: 60px 0px;
}
.location-nav {
    position: absolute;
    
    display: flex;
    gap: 12px;
    z-index: 20;
    
}

#text-left {
    
  /* background-color:blue; */
   display:flex;
    align-items:start;
    flex-direction:column;
   justify-content:space-between;
   gap:10px;
}
#text-right{
  /* background-color:blue; */
   display:flex;
    align-items:start;
    flex-direction:column;
     justify-content:space-between;
     gap:10px;
}
.bigmovecontent h2 {
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 20px;
text-align: center;
    background: linear-gradient(180deg, #E9C873 0%, #C8A648 50%, #8F6D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}  

#whychoose,.why-top-header .gradient-text,.category-section-home .title-home,#premiumheadings h2{
     font-size: 28px;
}
.button-veiw{
 background-color: transparent;
 opacity: 1;
 gap: 10px;
 padding:5px 15px;
 border-radius: 12px;
 border-width: 2px;
 border: 2px solid #C8A648;
}
 } 
 