.service-card {
    border: 1px solid rgba(13, 110, 253, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.45);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
