.s-clients {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.s-clients::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatClients 25s ease-in-out infinite;
}

.s-clients::after {
    content: "";
    position: absolute;
    bottom: -35%;
    left: -12%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 85, 170, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatClients 20s ease-in-out infinite reverse;
}

@keyframes floatClients {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(35px, -35px) scale(1.12);
    }
}

.clients {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients>h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--light-black);
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.clients>h1 span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients>h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.clients-carrousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-carrousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.client-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 102, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.client-card>img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%) border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.client-card:hover>img {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.3);
}

.client-card>h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-black);
    margin-bottom: 1rem;
}

.client-card>p {
    font-size: 1.05rem;
    line-height: 1.8rem;
    color: #555;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 85, 170, 0.3);
    font-size: 1.3rem;
    font-weight: bold;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 85, 170, 0.4);
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--orange) 100%);
}

.carousel-btn:active {
    transform: scale(1);
}

.carousel-indicators {
    display: flex;
    gap: 0.8rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
}

.carousel-indicator:hover:not(.active) {
    background: #999;
    transform: scale(1.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {
    .s-clients {
        padding: 4rem 1.5rem;
    }

    .clients>h1 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .client-card {
        padding: 2.5rem;
    }

    .client-card>img {
        width: 100px;
        height: 100px;
    }

    .client-card>h2 {
        font-size: 1.4rem;
    }

    .client-card>p {
        font-size: 1rem;
        line-height: 1.7rem;
    }
}

@media screen and (max-width: 576px) {
    .s-clients {
        padding: 3rem 1rem;
    }

    .clients>h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .client-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .client-card::before {
        font-size: 5rem;
        top: 15px;
        left: 20px;
    }

    .client-card>img {
        width: 90px;
        height: 90px;
    }

    .client-card>h2 {
        font-size: 1.3rem;
    }

    .client-card>p {
        font-size: 0.95rem;
        line-height: 1.6rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .carousel-controls {
        gap: 1rem;
        margin-top: 2rem;
    }
}