.elementor-1803 .elementor-element.elementor-element-be983c0{--display:flex;--background-transition:0.3s;--margin-top:40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for pitoon-project, class: .elementor-element-39eb60c4 *//* Container styles for smooth overflow and positioning */
.projects-page .row {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
}

/* Sliding animation for each project item */
.project-one__single {
    min-width: 33.33%; /* Each item takes 1/3 of the row */
    flex: 0 0 auto; /* Prevents items from shrinking or growing */
    animation: slideIn 20s linear infinite; /* Adjust duration for speed */
}

@keyframes slideIn {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* To ensure the items loop without empty space */
.projects-page .row::after {
    content: '';
    flex: 0 0 33.33%; /* Ensure continuity by filling space */
}/* End custom CSS */