
    /* Client Carousel Styles */
    .clients-section {
        padding: 100px 0;
        background: white;
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
        margin: 30px;
        position: relative;
        overflow: hidden;
    }

    .clients-header {
        text-align: center;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .clients-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .clients-subtitle {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }

    .clients-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 30px 0;
    }

    .track {
        display: flex;
        width: calc(250px * 16);
        animation: scroll 40s linear infinite;
    }

    .track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-250px * 8));
        }
    }

    .client-logo {
        height: 120px;
        width: 220px;
        margin: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .client-logo:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.1);
    }

    .client-logo img {
        max-width: 100%;
        max-height: 70px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .client-logo:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

    .stats-overlay {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 40px;
        border-radius: 16px;
        margin: 60px 30px 0;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    }

    .stat-item {
        text-align: center;
        padding: 20px;
        min-width: 200px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    @media (max-width: 992px) {
        .track {
            width: calc(250px * 20);
            animation: scroll 50s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 10));
            }
        }

        .stat-item {
            min-width: 150px;
        }
    }

    @media (max-width: 768px) {
        .clients-title {
            font-size: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .stat-item {
            min-width: 120px;
        }

        .stat-number {
            font-size: 2rem;
        }
    }