.elementor .moving-icon-box{.moving-icon-box {
overflow: hidden;
position: relative;
}

/* Inner container (Elementor structure fix) */
.moving-icon-box .elementor-container {
display: flex;
width: max-content;
animation: moveLeft 25s linear infinite;
}

/* each icon box spacing */
.moving-icon-box .elementor-icon-box {
flex: 0 0 auto;
display: flex;
align-items: center;
gap: 20px;
margin-right: 0px;
}

@keyframes moveLeft {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-50%);
}
}\n}