    /* partner section */
    /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

    .client-section {
        font-family: 'Futura PT', sans-serif;
        padding: 80px 20px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        overflow: hidden;
        position: relative;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        font-size: 3rem;
        font-weight: 700;
        color: #000000;
        /* margin-bottom: 60px; */
        /* font-family: 'Arial', sans-serif; */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .slider-container {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 40px 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .logo-slider {
        display: flex;
        animation: slide 20s linear infinite;
        width: calc(200% + 40px);
    }

    .logo-slide {
        display: flex;
        align-items: center;
        justify-content: space-around;
        min-width: 100%;
        gap: 60px;
        padding: 0 30px;
    }

    .logo-item {
        flex-shrink: 0;
        background: white;
        padding: 25px 35px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 120px;
        min-width: 180px;
    }

    .logo-item:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .logo-item img {
        max-width: 150px;
        max-height: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(0.3);
        transition: filter 0.3s ease;
    }

    .logo-item:hover img {
        filter: grayscale(0);
    }

    /* Image loading and error handling */
    .logo-item img {
        transition: all 0.3s ease;
        opacity: 1;
    }

    .logo-item img[src=""] {
        display: none;
    }

    /* Fallback for broken images */
    .logo-item img:not([src]),
    .logo-item img[src=""] {
        display: none;
    }

    /* Loading state */
    .logo-item {
        position: relative;
    }

    .logo-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 3px solid #e2e8f0;
        border-top: 3px solid #1e40af;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .logo-item.loading::before {
        opacity: 1;
    }

    @keyframes spin {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

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

        100% {
            transform: translateX(-50%);
        }
    }

    .slider-container:hover .logo-slider {
        animation-play-state: paused;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2.2rem;
            /* margin-bottom: 40px; */
            padding: 15px 0px;
        }

        .client-section {
            padding: 60px 0px;
        }

        .logo-slide {
            gap: 40px;
            padding: 0 20px;
        }

        .logo-item {
            min-width: 140px;
            min-height: 100px;
            padding: 20px 25px;
        }

        .logo-item img {
            max-width: 100px;
            max-height: 60px;
        }

        .logo-slider {
            animation-duration: 15s;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }

        .logo-slide {
            gap: 30px;
            padding: 0 0px;
        }

        .logo-item {
            min-width: 120px;
            min-height: 80px;
            padding: 15px 20px;
        }

        .logo-mayfair {
            font-size: 16px;
        }

        .logo-maia {
            font-size: 18px;
            letter-spacing: 2px;
        }

        .logo-jpinfra {
            font-size: 14px;
        }
    }

    /* Additional styling for smooth integration */
    .client-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
    }

    .client-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
    }
