


.property-toolbar{
    border:1px solid #e8e8e8;
    padding:2px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:0px;
}

.sort-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.sort-box span{
   color:var(--bs-primery-color);
    font-weight:700;
    font-size:18px;
}

.sort-box select{
    border:none;
    width:auto;
    font-size:16px;
    box-shadow:none;
}

.view-btns{
    display:flex;
}

.btn-view{
    width:50px;
    height:50px;
    border:1px solid #e5e5e5;
    background:#fff;
    color:#3557d8;
    font-size:22px;
}

.btn-view.active{
    background:#3557d8;
    color:#fff;
}

/* Card */

.property-card{
    border:1px solid #e5e5e5;
    background:#fff;
    transition:.3s;
}

.property-card:hover{
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.property_list-image{
    position:relative;
    overflow:hidden;
}

.property_list-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.property-card:hover img{
    transform:scale(1.08);
}

.property_list-image::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;
    background:linear-gradient(to top,rgba(0,0,0,.55),transparent);
}

/* Ribbon */

.featured{
    position:absolute;
    top:18px;
    left:-38px;
    width:150px;
    text-align:center;
    background:var(--bs-primery-color);
    color:var(--bs-white);
    transform:rotate(-45deg);
    font-size:16px;
    padding:6px 0;
    z-index:2;
}

.sale-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:var(--bs-primery-color);
    color:var(--bs-yellow);
    padding:8px 14px;
    font-size:16px;
    z-index:2;
}

.property-content{
    padding:15px;
}

.property-type{
    display:inline-block;
    background:var(--bs-primery-color);
    color:var(--bs-second-color);
    padding:5px 18px;
    font-size:16px;
}

.property-content h3{
    margin:10px 0 10px;
    font-size:16px;
    font-weight:700;
    color:var(--bs-primery-color);
}

.location{
    color:#555;
    font-size:14px;
}

.location i{
    color:var(--bs-primery-color);
}

.property-meta{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:15px;
}

.property-meta span{
    display:block;
    color:#666;
    margin-bottom:5px;
}

.property-meta strong{
    font-size:12px;
    color:#222;
}

.property-footer{
    border-top:1px solid #eee;
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.agent{
    display:flex;
    align-items:center;
    gap:12px;
}

.agent-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--bs-yellow);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.property-footer h4{
    font-size:20px;
    color:var(--bs-second-color);
    margin:0;
    font-weight:700;
}

@media(max-width:768px){

.property-toolbar{
    flex-direction:column;
    gap:15px;
}

.property-meta{
    grid-template-columns:repeat(2,1fr);
}

.property-content h3{
    font-size:20px;
}

.property-footer{
    flex-direction:column;
    gap:15px;
}

.property-footer h4{
    font-size:20px;
}

}



.property-gallery{
  
}

.property-image{
    position:relative;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:650px;
    object-fit:cover;
}

/* Dark overlay */

.property-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
}

/* Property Details */

.property_d-info{
    position:absolute;
    left:40px;
    bottom:40px;
    z-index:2;
    color:#fff;
}

.badge-property{
    background:var(--bs-primery-color);
    padding:6px 14px;
    font-size:15px;
    color:var(--bs-second-color);
}

.agent-img{
    width:60px;
    height:60px;
    border-radius:50%;
    border:3px solid #fff;
    object-fit:cover;
}

.property_d-info h3{
    margin:0;
    font-size:26px;
    font-weight:700;
}

.property_d-info h4{
    margin-top:5px;
    font-size:18px;
    font-weight:600;
}

/* Navigation */

.carousel-control-prev,
.carousel-control-next{
    width:8%;
    opacity:1;
}

.nav-btn{
    width:52px;
    height:52px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--bs-primery-color);
    color:var(--bs-second-color);
    font-size:24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    display:none;
}

/* Thumbnails */

.thumb{
    width:100%;
    height:140px;
    object-fit:cover;
    cursor:pointer;
    transition:.3s;
}

.thumb:hover{
    transform:scale(.97);
}

.thumb.active{
    border:4px solid #000;
}

/* Responsive */

@media(max-width:992px){

.property-image img{
    height:500px;
}

.property_d-info{
    left:25px;
    bottom:25px;
}

.property_d-info h3{
    font-size:20px;
}

.property_d-info h2{
    font-size:20px;
}

.thumb{
    height:90px;
}

}









@media(max-width:768px){

.property-image img{
    height:350px;
}

.agent-img{
    width:50px;
    height:50px;
}

.property_d-info h3{
    font-size:22px;
}

.property_d-info h2{
    font-size:17px;
}

.nav-btn{
    width:45px;
    height:45px;
}

.thumb{
    height:70px;
}

}

.property-filter{
    background:#fff;
    border:1px solid #e8e8e8;
}

.filter-header{
    padding:40px 30px;
    text-align:center;
    border-bottom:1px solid #e8e8e8;
}

.filter-header h3{
    margin:0;
    font-size:18px;
    font-weight:500;
    color:#1b1b1b;
}

.filter-body{
    padding:10px;
}


.search-btn{
    height:58px;
    background:var(--bs-yellow);
    color:var(--bs-second-color)
    font-size:20px;
    font-weight:600;
    border-radius:0;
    transition:.3s;
}

.search-btn:hover{
    background:var(--bs-second-color);
    color:#fff;
}

@media (max-width:992px){

.filter-body{
    padding:30px;
}

.filter-header{
    padding:30px 20px;
}

.filter-header h3{
    font-size:32px;
}

.custom-select{
    height:54px;
    font-size:18px;
}

}

@media (max-width:576px){

.filter-header h3{
    font-size:28px;
}

.filter-body{
    padding:20px;
}

.custom-select{
    font-size:16px;
    height:50px;
}

.search-btn{
    font-size:18px;
    height:50px;
}

}





.property-details{
    font-family:Arial, sans-serif;
    color:#1b1b1b;
}

.property-title{
    font-size:30px;
    font-weight:700;
    color:var(--bs-primery-color);
    margin-bottom:8px;
}

.property-location{
    color:#666;
    font-size:16px;
}

.property-location i{
 color:var(--bs-primery-color);
    margin-right:5px;
}

.property-price{
    font-size:26px;
 color:var(--bs-primery-color);
    font-weight:700;
}

.property-actions a{
    display:inline-flex;
    width:42px;
    height:42px;
    background:var(--bs-primery-color);
 color:var(--bs-second-color);
    justify-content:center;
    align-items:center;
    margin-left:8px;
    text-decoration:none;
    transition:.3s;
}

.property-actions a:hover{
    background:var(--bs-second-color);
     color:var(--bs-primery-color);
}

.section-title{
    font-size:18px;
    font-weight:700;
    color:var(--bs-primery-color);
    margin-bottom:15px;
}

hr{
    border-color:#ddd;
    opacity:1;
}

.property-details p{
    color:#555;
    line-height:1.9;
}

.read-more-btn{
    background:var(--bs-primery-color);
    color:var(--bs-second-color);
    border:none;
    padding:14px 50px;
    border-radius:0;
    margin-top:20px;
    font-weight:600;
}

.read-more-btn:hover{
    background:var(--bs-second-color);
    color:var(--bs-primery-color);
}

.detail-list,
.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.detail-list li{
    margin-bottom:15px;
    color:#444;
    font-size: 14px;
}

.detail-list strong{
    color:#111;
    width:140px;
    display:inline-block;
}

.feature-list li{
    margin-bottom:18px;
    font-size:14px;
}

.feature-list i{
    color:var(--bs-primery-color);
    margin-right:10px;
}

@media(max-width:768px){

.property-title,
.property-price{
    font-size:20px;
}

.section-title{
    font-size:20px;
}

.property-actions{
    margin-top:15px;
}

.property-actions a{
    margin-left:0;
    margin-right:8px;
}

}

.thumb-wrapper{
    display:flex;
    flex-direction:column;
    height:650px; /* Same height as main image */
}

.thumb-container{
    flex:1;
    overflow-y:auto;
    overflow-x:hidden;
    scroll-behavior:smooth;
    padding:5px;
}

/* Hide scrollbar */
.thumb-container::-webkit-scrollbar{
    display:none;
}

.thumb-container{
    -ms-overflow-style:none;
    scrollbar-width:none;
}

.thumb{
    width:100%;
    height:110px;
    object-fit:cover;
    cursor:pointer;
    margin-bottom:2px;
    border:3px solid transparent;
    transition:.3s;
}

.thumb.active{
    border-color:var(--bs-primery-color);
}

.thumb-arrow{
    width:96%;
    height:40px;
    background:var(--bs-primery-color);
    border:none;
    color:var(--bs-yellow);
    font-size:22px;
    cursor:pointer;
    margin: 0px 2%;
}

.thumb-arrow:hover{
   background:var(--bs-primery-color);
}

.floor_section-title{
    font-size:20px;
    font-weight:700;
    color:var(--bs-primery-color);
    margin-bottom:25px;
}

.custom-floor-plan .accordion-item{
    border:1px solid #ddd;
    border-radius:0;
    margin-bottom:2px;
    overflow:hidden;
}

.custom-floor-plan .accordion-button{

    background:#fff;
    color:#222;
    font-size:16px;
    font-weight:600;
    padding:14px 25px;
    box-shadow:none;
}

.custom-floor-plan .accordion-button:not(.collapsed){

    background:var(--bs-primery-color);
    color:#fff;
}

.custom-floor-plan .accordion-button::after{

    filter:brightness(0);
}

.custom-floor-plan .accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);
}

.floor-name{
     font-size:14px;
    margin-right:18px;
}

.floor-size{

    font-size:14px;
    background:#fff;
    color:#222;
    padding:3px 8px;
    border-radius:0px;
    font-weight:500;
}

.floor-img{

    width:100%;
    max-width:900px;
    display:block;
    margin:auto;
}

.custom-floor-plan .accordion-body{

    padding:30px;
}

.custom-floor-plan p{

    color:#555;
    line-height:1.9;
    margin-bottom:0;
    font-size: 15px;
}

@media(max-width:768px){

.section-title{
    font-size:20px;
}

.custom-floor-plan .accordion-button{

    font-size:20px;
    padding:18px;
}

.floor-size{

    font-size:14px;
}

.custom-floor-plan .accordion-body{

    padding:20px;
}

}

.video-box{
    position:relative;
    overflow:hidden;
    border:1px solid #ddd;
    padding:10px;
    background:#fff;
}

.video-box img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* Play Button */

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90px;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

.play-circle{
    width:72px;
    height:72px;
    background:#3557d8;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    position:relative;
    z-index:2;
    transition:.3s;
}

.play-circle:hover{
    background:#1d45d2;
    color:#fff;
}

/* Pulse Effect */

.pulse-circle{
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(255,255,255,.30);
    border-radius:50%;
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.4);
        opacity:0;
    }

}

/* Responsive */

@media(max-width:768px){


.play-circle{
    width:60px;
    height:60px;
    font-size:28px;
}

.pulse-circle{
    width:95px;
    height:95px;
}

}
