.service-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.06);
    transition:.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(0,0,0,.08);
}

.service-card-img{
    height:180px;
    position:relative;
    overflow:hidden;
}

.service-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.service-card:hover .service-card-img img{
    transform:scale(1.07);
}

.tag-badge{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#FFC107;
    color:#000;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    padding:7px 14px;
    border-radius:999px;
    line-height:1;
}

.service-card-body{
    padding:22px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.service-card-body h3{
    margin:0 0 14px;
    font-size:18px;
    font-weight:700;
    line-height:1.45;
    color:#111;
}

.service-card-body p{
    margin:0 0 18px;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.service-meta{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid #eee;
}

.service-rating{
    font-size:14px;
    color:#222;
}

.stars{
    color:#FFB400;
    margin-right:4px;
}

.service-delivery{
    font-size:14px;
    color:#555;
    margin-top:4px;
}

.service-price{
    font-size:18px;
    font-weight:700;
    color:#2F5D50;
    text-align:right;
}

.service-price span{
    display:block;
    font-size:13px;
    font-weight:400;
    color:#777;
}

.btn-see-details{
    margin-top:18px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#2F5D50;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    padding:14px 20px;
    transition:.3s;
}

.btn-see-details:hover{
    background:#254a40;
    color:#fff;
}

@media(max-width:767px){

    .service-card-img{
        height:170px;
    }

    .service-card-body{
        padding:18px;
    }

    .service-card-body h3{
        font-size:17px;
    }

    .service-meta{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .service-price{
        text-align:left;
    }
}