﻿/* =========================
   CLIENTS / INDUSTRIES
========================= */

.clients {
    padding: 15px 0 110px;
}
    .clients .row {
        --bs-gutter-x: 0;
        margin-right: 0;
        margin-left: 0;
    }
    .clients h2 {
        text-align: center;
    }
/* Intro text */
.clients__intro {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 14px;
}

/* Carousel container */
.clients__carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Individual item */
.clients__item {
    background: linear-gradient(135deg, #3190E7, #28CB75);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(40px);
    animation: clientsFadeUp 0.8s ease forwards;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

    /* Text */
    .clients__item p {
        margin: 0;
        font-size: 13px;
        text-transform: capitalize;
    }

    /* Hover */
    .clients__item:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 12px rgba(0,0,0,0.25);
        background: linear-gradient(135deg, #28CB75, #3190E7);
    }

    /* Stagger animation */
    .clients__item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .clients__item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .clients__item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .clients__item:nth-child(4) {
        animation-delay: 0.8s;
    }

    .clients__item:nth-child(5) {
        animation-delay: 1s;
    }

    .clients__item:nth-child(6) {
        animation-delay: 1.2s;
    }

    .clients__item:nth-child(7) {
        animation-delay: 1.4s;
    }

/* Keyframes (Scoped) */
@keyframes clientsFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
