#services {
    background-image: linear-gradient(#1C1E31 .1rem, transparent .1rem), linear-gradient(90deg, #1C1E31 .1rem, transparent .1rem);
    background-size: 4rem 4rem;
    background-position: center center;
}

#services .container * {
    z-index: 1;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--color-dark) 0%, rgba(255, 255, 255, 0) 15%);
    z-index: 0;
}

#services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, var(--color-dark) 0%, rgba(255, 255, 255, 0) 15%);
    z-index: 0;
}


.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card .service-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card .service-name span {
    color: var(--color-primary);
    font-weight: 600;
}

.service-card .service-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    /* background: #4b4b4b; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}