.services .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}

.services .card .img-wrapper {
    overflow: hidden;
}

.services .card img {
    transition: 0.5s;
    transform: scale(1);
}

.services .card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.services .card:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.services .card-body {
    padding: 30px;
}

.services .card:hover img {
    transform: scale(1.1);
}
