/* ------------------------------------------------------------------
   Bisquito fix — reveal/visibility safety net.
   The theme uses GSAP ScrollSmoother (transform-based smooth scroll),
   which hijacks native scrolling. As a result WOW.js and other
   scroll-triggered reveals never fire for below-the-fold elements,
   leaving their images stuck at visibility:hidden / opacity:0.
   We force content images visible. Interactive service thumbnails use
   opacity (not visibility) so their hover behaviour is preserved.
   ------------------------------------------------------------------ */
.wow { visibility: visible !important; }
img { visibility: visible !important; }

.project-items-one img,
.project-items-one .thumb img,
.des-portfolio-panel img { opacity: 1 !important; visibility: visible !important; }

/* CTA buttons: keep natural case (no forced capitalize) */
.gt-theme-btn-main, .gt-theme-btn, .theme-btn, .theme-btn-2 { text-transform: none !important; }
