/*
 * nbet-fixes.css
 * Fixes horizontal overflow/scrollbar caused by:
 * 1. sliding-text-one  — marquee text wider than viewport
 * 2. services-one      — owl carousel items overflow during animation
 * 3. team-one          — wow slideIn animations push elements off-screen
 */

/* Global safety: prevent any section from creating horizontal scroll */
body {
    overflow-x: hidden;
}

/* Sliding text marquee — clip overflow so scrolling text stays contained */
.sliding-text-one,
.sliding-text-one__wrap {
    overflow: hidden;
}

/* Owl carousel — clip slide overflow during transitions */
.services-one,
.services-one .owl-carousel,
.services-one .owl-stage-outer {
    overflow: hidden;
}

/* Team section — wow animations (slideInLeft/fadeInRight) 
   temporarily move elements outside viewport */
.team-one {
    overflow: hidden;
}

/* Testimonial swiper — slides overflow on mobile width */
.testimonial-one,
.testimonial-one__inner,
.testimonial-one__main-content,
.testimonial-one__thumb-box,
#testimonial-one__carousel,
#testimonial-one__thumb {
    overflow: hidden;
}
