.services {
    text-align: center;
    padding: 60px 0 80px;
    background: #fdfdfd
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111
}

.services-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center
}

.service-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent
}

.service-icon {
    margin-bottom: 20px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.service-icon img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    transition: 0.3s ease
}

.service-label {
    font-size: 30px;
    color: #222;
    font-weight: 700;
    transition: 0.3s ease
}

.service-hover {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    width: 85%;
    text-align: center;
    transition: 0.3s ease;
    pointer-events: none;
    line-height: 1.4
}

.service-card:hover .service-icon {
    opacity: 0;
    transform: scale(0.8) translateY(-20px)
}

.service-card:hover .service-label {
    opacity: 0;
    transform: translateY(20px)
}

.service-card:hover .service-hover {
    opacity: 1;
    transform: translate(-50%, -50%)
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }
}

@media (max-width:600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }

    .service-card {
        padding: 20px 10px
    }

    .service-icon img {
        width: 150px;
        height: 150px
    }

    .service-label {
        font-size: 24px
    }

    .service-icon {
        margin-bottom: 10px
    }
}