/* Ensure smooth transitions */
[gsap-reveal] {
    opacity: 0;
    will-change: transform, opacity;
  }
  
  /* Maintain original layout */
  .hero-content, 
  .sub-heading,
  .horizontal-slide,
  .sticky-heading,
  .card,
  .playbook-heading,
  .timeline-item,
  .team-heading,
  .team-img {
    transform: translateY(0);
    opacity: 1;
    transition: none !important; /* Prevent conflicts with GSAP */
  }