.service-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100%;
    /* Ensures equal height */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f4f4f4;
    border-radius: 50%;
}

.service-card .title {
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card .description {
    font-size: 0.95rem;
}

/* Optional: Adjust padding for mobile */
@media (max-width: 575.98px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card .title {
        font-size: 1.1rem;
    }
}