.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.custom-width {
  width: 60% !important;
  margin: 0 auto !important;
}
.section-heading-joinwap h1{
    font-size: 40px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .custom-width {
    width: 100% !important;
  }
}
