.explore-services-section .row {
    row-gap: 30px;
}

.explore-service-card {
    height: 100%;
    padding: 40px 28px;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 45px rgba(23, 37, 84, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(23, 37, 84, 0.14);
}

.explore-service-card__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 83, 83, 0.12), rgba(52, 50, 72, 0.08));
}

.explore-service-card__icon .icon {
    color: var(--theme-color1);
    font-size: 42px;
    line-height: 1;
}

.explore-service-card__title {
    min-height: 56px;
    margin-bottom: 24px;
    color: var(--theme-color2);
}

.explore-service-card .theme-btn {
    min-width: 170px;
}

@media (max-width: 767px) {
    .explore-service-card {
        padding: 32px 24px;
    }

    .explore-service-card__title {
        min-height: auto;
    }
}
