/* Unique Section (No Conflict) */
.service-packages-section {
    background: #fff;
}

.section-title-custom {
    font-size: 28px;
    font-weight: 700;
}

/* Card */
.service-card-custom {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    /* text-align: center; */
    padding-bottom: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    transition: transform .2s ease-in-out;
}

.service-card-custom:hover {
    transform: translateY(-5px);
}

/* Image */
.service-img-custom {
    width: 100%;
    height: 170px;
    /*object-fit: cover;*/
        object-fit: unset;
    border-bottom: 1px solid #eee;
}
@media(max-width:758px)
{
    .service-img-custom{
            height: auto ;
        
    }
}

/* Title */
.service-title-custom {
    font-size: 17px;
    font-weight: 600;
    margin: 15px 0;
}

/* Footer (Button + Price) */
.service-footer-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* Button */
.btn-custom-green {
    background: #18c5a1;
    color: #fff;
    border-radius: 25px;
    padding: 5px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: background .2s;
}

.btn-custom-green:hover {
    background: #10b38f;
}

/* Price */
.service-price-custom {
    font-size: 18px;
    color: #18c5a1;
    font-weight: 700;
}

.detail-service-anchor{
    color: #00c19a;
    background: rgba(1, 7, 6, 0.7);
    position: absolute;
    z-index: 1000;
    left: 10px;
    padding: 6px 18px;
    border-radius: 20px;
    top: 3px;
    text-decoration: none;
}
