
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Slightly increase size */
        box-shadow: 0 0 10px rgba(10, 179, 156, 1); /* Greenish glow */
    }
    100% {
        transform: scale(1);
    }
}

