﻿/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 99, 71, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 99, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 99, 71, 0);
  }
}

.cta-button {
  display: inline-block;
  padding: 0.55rem 1rem;
  font-size: 1.2rem;
  border-radius: 2rem;
  background-color: tomato;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  transition: transform 0.2s;
  animation: pulse 2s infinite;
}

    .cta-button:hover {
        transform: scale(1.05);
        animation: none; /* stop pulsing on hover */
        background-color: #e5533d;
        color: #fff;
    }
@media (max-width: 780px) {
    .cta-button {
        display: inline-block;
        padding: 0.55rem 1rem;
        font-size: 1.2rem;
        border-radius: 2rem;
        background-color: tomato;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        transition: transform 0.2s;
        animation: pulse 2s infinite;
    }
        .cta-button:hover {
            transform: scale(1.05);
            animation: none; /* stop pulsing on hover */
            background-color: #e5533d;
            color: #fff;
        }
}