

        .carousel-container {
            width: 100%;
            overflow: hidden;
            background: #000;
            padding: 40px 0;
        }

        .carousel-track {
            display: flex;
            width: calc(250px * 14); /* double the cards for smooth looping */
            animation: scroll 40s linear infinite;
        }

        .carousel-item {
            flex: 0 0 250px;
            margin: 0 10px;
            background: #fff;
            border-radius: 10px;
            text-align: center;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 6px 6px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .carousel-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5), 0 10px 10px rgba(0, 0, 0, 0.4);
        }

        .carousel-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .carousel-item h3 {
            margin: 10px 0 5px;
            font-size: 18px;
            color: #333;
        }

        .carousel-item p {
            margin: 0;
            font-size: 14px;
            color: #777;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
   