/* body{
    background:#1c48e4;
} */

.vehicle-card{
    background:#fff;
    border-radius:25px;
    border:3px solid #6cc000;
    overflow:hidden;
    position:relative;
    padding:20px;
    transition:0.3s;
}

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

.vehicle-img{
    max-width:100%;
    height:220px;
    object-fit:contain;
}

.vehicle-title{
    font-weight:700;
    font-size:22px;
    margin-top:15px;
}

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

.feature-box{
    background:#7ed957;
    padding:12px 15px;
    border-radius:12px;
    font-size:14px;
    margin-top:15px;
}

.feature-box span{
    display:block;
}

.btn-book{
    background:#63c000;
    color:#fff;
    font-weight:600;
    padding:8px 25px;
    border-radius:10px;
}

.btn-view{
    background:#ff9800;
    color:#fff;
    font-weight:600;
    padding:8px 25px;
    border-radius:10px;
}

.btn-book:hover{ background:#52a800; }
.btn-view:hover{ background:#e68900; }

.card-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}