/* QUICK FIX - Force Everything Visible Immediately */

/* Loader will show for 1.5 seconds then hide automatically */
/*
#page-loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
*/

/* Show all content immediately */
body {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Disable all AOS animations */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* Make sure all sections are visible */
section {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Show hero immediately */
#hero {
  opacity: 1 !important;
  visibility: visible !important;
}

#hero * {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force all cards visible */
.service-card,
.portfolio-card,
.pricing-card,
.testimonial-card {
  opacity: 1 !important;
  transform: none !important;
}

/* Disable GSAP animations temporarily */
.gsap-animation {
  animation: none !important;
}
