/* ===================================
   DISABLE TEXT SCRAMBLE EFFECT
   Remove character animation from hero
   =================================== */

/* Disable all text scramble animations */
.hero-title,
.hero-subtitle,
.hero-description,
.section-title,
h1, h2, h3, h4, h5, h6 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Override perfect-animations.js text scramble */
.hero-title * {
    animation: none !important;
}

/* Ensure immediate text display */
body * {
    animation-delay: 0s !important;
}

/* Disable the text scramble class if it exists */
.text-scramble {
    display: none !important;
}