.cab-services{
    padding:70px 0;
    background:#f8f9fa;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#d4af37;
    margin-bottom:20px;
    text-transform:uppercase;
}

.section-title p{
    max-width:900px;
    margin:0 auto 50px;
    font-size:17px;
    line-height:30px;
    color:#555;
}

.cab-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    padding:15px;
    margin-bottom:30px;
    transition:.3s;
}

.cab-card:hover{
    transform:translateY(-8px);
}

.cab-tag{
    display:inline-block;
    background:#0d1b3e;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.cab-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    display:block;
}

.book-btn{
    display:block;
    background:#d4af37;
    color:#fff;
    padding:14px;
    margin-top:20px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
}

.book-btn:hover{
    background:#b8932f;
    color:#fff;
    text-decoration:none;
}

@media (max-width:767px){

    .cab-card img{
        width:100%;
        max-width:none;
        height:auto;
    }

    .cab-card{
        padding:15px 8px;
    }

}