  /* Container styling */
        .scrolling-container {
            display: flex;
            overflow: hidden; /* Hide overflowing content */
            white-space: nowrap;
            width: 100%;
            padding: 10px;
            background-color: #f0f0f0;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* Image styling */
        .scrolling-container a img {
            width: 100px; /* Adjust size */
            height: auto;
            margin: 0 10px;
            border-radius: 5px; /* Rounded corners */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .scrolling-container a img:hover {
            transform: scale(1.1); /* Zoom on hover */
        }

        /* Smooth scrolling */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100%));
            }
        }

        .scrolling-wrapper {
            display: flex;
            animation: scroll 15s linear infinite; /* Adjust duration for scrolling speed */
        }