.btn-primary {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.45);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary {
  animation: pulse 2.8s ease-in-out infinite;
}
