<style>
body {
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
.carousel {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
}
.carousel-track {
    display: flex;
    animation: scroll 57s linear infinite;
}

.carousel-item {
    min-width: 150px; /* Adjust this if needed to fit your images */
    max-width: 200px;
    margin: 10px 100px; /* 200 pixels spacing on left and right */
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.carousel-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px; /* Semi-bold */
    color: #d24de1;
    margin-top: 10px;
    word-wrap: break-word;/* Adjust margin as needed */
    text-align: center;
}

/* Keyframes for the scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
</style>
