/* Our Clients — modern section */
.clients-section {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 45%, #e4eaf2 100%);
}

.clients-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.clients-section__bg::before,
.clients-section__bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.clients-section__bg::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(227, 30, 36, 0.12);
}

.clients-section__bg::after {
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: rgba(15, 23, 42, 0.08);
}

.clients-section .container {
    position: relative;
    z-index: 1;
}

.clients-section__header {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.clients-section__label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e31e24;
    background: rgba(227, 30, 36, 0.08);
    border-radius: 999px;
}

.clients-section__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    text-transform: none;
    letter-spacing: -0.02em;
}

.clients-section__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.clients-section__carousel {
    position: relative;
    padding: 0;
}

.clients-section .home-client-carousel {
    position: relative;
}

.clients-section__card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 1.5rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.clients-section__card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 30, 36, 0.15);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.clients-section__card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.clients-section__card img {
    max-width: 140px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.clients-section__card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.clients-section .home-client-carousel .owl-stage-outer {
    padding: 0.5rem 0 1rem;
}

.clients-section .home-client-carousel .owl-nav {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    .clients-section {
        padding: 70px 0 80px;
    }

    .clients-section__header {
        margin-bottom: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .clients-section__card {
        min-height: 96px;
        padding: 1.25rem 1rem;
    }

    .clients-section__card img {
        max-width: 110px;
        max-height: 44px;
    }
}
