/* ============================================================
   ABS EXECUTIVE — ANIMATIONS
   ============================================================ */

@keyframes scrollDot {
	0% { opacity: 1; top: 6px; }
	70% { opacity: 0; top: 20px; }
	100% { opacity: 0; top: 6px; }
}

@keyframes whatsappPulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.pillar, .stat-card, .principle-card, .gallery-item, .connectivity-stat {
	animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
