/* Pulse animation for header deployment button */
@keyframes rocket-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 123, 255, 0);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
        color: #0069d9;
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 123, 255, 0);
    }
}

.btn-animate-rocket {
    animation: rocket-pulse 2s infinite ease-in-out;
}

.btn-animate-rocket:hover {
    animation-duration: 1s;
    /* Faster when hovered */
}