*
body {
    overflow-x: hidden;
}

.carousel-container {
    max-width: 100%;
    overflow: hidden;
    background: white;
    padding: 40px 0;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 50s linear infinite;
    width: fit-content;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    height: 220px;
    padding: 20px;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

h2 {
    text-align:  center;
    margin-bottom:  20px;
    color: #333;
    font-size: 24px;
}

.subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size:  18px;
}

.carheading {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 30px 0 30px;
    font-size: 24px;
}