/* Button Styles */
.cta-button {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    transition: all 0.3s ease;
    color: white !important;
    border-radius: 10px;
    animation: pulse2 1.5s ease-out infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.4);
}

/* Animation Keyframes */
@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}



/* Pulsing Dot Animation */
.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #dc2626;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}