/* Service Card Image Consistency Fix */

/* Ensure all service card images have consistent height */
.card-img-top {
    height: 250px !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* Specific fix for service cards */
.card .card-img-top {
    height: 250px !important;
    object-fit: cover !important;
    border-top-left-radius: calc(0.375rem - 1px) !important;
    border-top-right-radius: calc(0.375rem - 1px) !important;
}

/* Ensure cards have equal height */
.card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.card-text {
    flex: 1 !important;
}