@import url('/css/other/index.css');
/* Фон карточек*/
/* #services.services {
    width: 100%;
    min-height: 100vh; 
    background-image: url('/img/services-bg.jpg');
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
} */

/* #services.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 249, 250, 0.85);
    z-index: 0;
} */

/* анимированный фон с двумя слоями */
.services-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

/* Первый слой логотипов (быстрее, вправо) */
.services-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/img/mini_logo.png');
    background-size: 180px 100px;
    animation: scroll-right 45s infinite linear; /* В 2 раза быстрее */
}

/* Второй слой логотипов (медленнее, влево) */
.services-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/img/mini_logo.png');
    background-size: 180px 100px;
    animation: scroll-left 90s infinite linear;
    opacity: 0.6; /* Более яркие логотипы */
}

.services-logo {
    filter: invert(1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.1;
}

/* .service-card {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    position: relative;
    z-index: 1;
} */

/* .service-image { */
    /* flex: 1; */
    /* min-height: 400px; */
    /* position: relative; */
/* } */

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

/* Анимация вправо (быстрая) */
@keyframes scroll-right {
    100% {
        background-position: -3000px 0;
    }
}

/* Анимация влево (медленная) */
@keyframes scroll-left {
    100% {
        background-position: 3000px 0;
    }
}

