@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158, 197, 171, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(242, 232, 213, 0); }
}

.animate-fade-in { animation: fade-in 0.6s ease-out both; }
.animate-fade-up { animation: fade-up 0.7s ease-out both; }
.animate-float { animation: float-soft 4s ease-in-out infinite; }
.animate-glow { animation: glow-pulse 2.6s ease-in-out infinite; }

@media screen and (max-width: 768px) {
.md\:flex.items-center.space-x-6 {
	display:none;
}
}