   /*Trending design starts here*/
   .custom-property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    /*box-shadow: 0 4px 8px rgb(11 12 12 / 92%);*/
    transition: 0.3s;
    padding: 5px;
}

.trending-card-image {
    position: relative;
}

.trending-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s;
}
.trending-card-image:hover img {
    transform: scale(1.1);
}

/* Badges */
.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
}

.badge {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 5px;
    margin-right: 5px;
    color: #fff;
}

.featured { background: #ff6b2c; }
.sale { background: #00bcd4; }
.rent { background: #6c63ff; }

/* Content */
.card-content {
    padding: 15px;
}

.card-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.trending-location {
    font-size: 13px;
    color: #777;
}

.trending-price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.trending-desc {
    font-size: 13px;
    color: #666;
    
}

/* Bottom Icons */
.card-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 10px;
    color: #00bcd4;
}
.card-header {
    padding: 15px 15px 5px;
}

.card-header .trending-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.card-header .trending-location {
    font-size: 13px;
    color: #888;
}

/* price row */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price span {
    font-size: 13px;
    color: #888;
}

.badge.small {
    font-size: 10px;
    padding: 4px 8px;
}
/*Trending Design Ends here*/
/* Apartment villa plot style start here */ 
    /* MAIN CARD */
.modern-apartment-card {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    text-decoration: none;
}

.modern-apartment-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.modern-apartment-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.modern-apartment-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.modern-apartment-image img:hover{
    transform: scale(1.3);
}
/* 🔥 Top Right Price */
.modern-price-top {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(135deg, #244fa0, #183b84);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0px 20px 0px 20px;
    z-index: 3;
    backdrop-filter: blur(6px);
}

/* GRADIENT OVERLAY */
.modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0) 100%);
}

/* CONTENT INSIDE IMAGE */
.modern-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

/* TITLE */
.modern-apartment-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

/* AMENITIES */
.modern-amenity {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.modern-amenity span {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* LOCATION ROW */
.modern-location {
    /*display: flex;*/
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modern-apartment-image img {
        height: 300px;
    }
}
/* Tabs container */
.custom-tabs {
    border-bottom: 1px solid #eee;
}

/* Tab button */
.custom-tabs .nav-link {
    border: none;
    background: transparent;
    text-align: center;
    color: #888;
    font-weight: 500;
    padding: 10px 25px;
    transition: 0.3s;
}

/* Icon */
.tab-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Active tab */
.custom-tabs .nav-link.active {
    color: #0d1b2a;
    position: relative;
}

/* Underline animation */
.custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: #0d1b2a;
}

/* Hover */
.custom-tabs .nav-link:hover {
    color: #000;
}

.content-subtitle{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}
/* Apartment villa plot style end here */