/* Keep homepage sections stable when WOW reveals them during scrolling. */
.fadeinup.wow {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
}

.fadeinup.wow.animated {
    animation: lkhamal-home-fade 0.35s ease-out both !important;
    animation-delay: 0s !important;
}

@keyframes lkhamal-home-fade {
    from { opacity: 0.72; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .fadeinup.wow,
    .fadeinup.wow.animated {
        animation: none !important;
        opacity: 1;
    }
}
