.pulse-button {
  position: relative;
  border: none;
  color: white;
  z-index: 1;
  overflow: visible;
}

/* Dalga efekti */
.pulse-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 100%;
  background-color: rgba(140, 147, 243, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse-ring 3s infinite;
}

/* Animasyon tanımı */
@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


@media (max-width: 992px) {
  .pulse-button {
    float: inline-start;
  }

}