body{
    background:#f4f5f8;
}

.custom-navbar{
    background:linear-gradient(
    90deg,
    #4a2ef5,
    #ff6428
    );
}

.search-box{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
}

.property-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.property-card:hover{
    transform:translateY(-5px);
}

.property-card img{
    height:220px;
    object-fit:cover;
}

.price{
    background:#ff4c60;
    color:white;
    display:inline-block;
    padding:8px 16px;
    border-radius:25px;
    font-weight:600;
}

@media(max-width:768px){

    h2{
        font-size:24px;
    }

    .search-box{
        padding:15px;
    }

    .property-card img{
        height:200px;
    }

}