/* ============================================================
   Raaj Travel & Tourism — Animations
   ============================================================ */

@keyframes bounce{
    0%,100%{ transform:translateX(-50%) translateY(0); }
    50%{ transform:translateX(-50%) translateY(-10px); }
}

@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(37,211,102,.55); }
    70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
    100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

@keyframes fadeInUp{
    from{ opacity:0; transform:translateY(30px); }
    to{ opacity:1; transform:translateY(0); }
}

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .8s ease, transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.hero-content span,
.hero-content h1,
.hero-content p,
.hero-btns{
    animation:fadeInUp .9s ease both;
}

.hero-content h1{ animation-delay:.15s; }
.hero-content p{ animation-delay:.3s; }
.hero-btns{ animation-delay:.45s; }
