/* ===========================
   IT Ways CRM — Animations
   =========================== */

/* Workflow step highlights */
@keyframes wf-activate {
  0%   { background: rgba(22,199,217,0.04); border-color: rgba(22,199,217,0.08); }
  50%  { background: rgba(22,199,217,0.12); border-color: rgba(22,199,217,0.28); }
  100% { background: rgba(22,199,217,0.04); border-color: rgba(22,199,217,0.08); }
}

/* Float badge animation for new-lead notification */
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Shimmer for loading skeleton */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Subtle drift for background glows */
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(2%, 1.5%) scale(1.02); }
  66%       { transform: translate(-1.5%, 2%) scale(0.98); }
}

/* Number counter */
@keyframes count-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
