/**
 * Demo Request Page Styles
 */

/* Import shared/common styles */
@import '../shared.css';

/* Pulse Animation for Badge */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-compact {
        margin-top: 0 !important;
    }
    
    .hero-compact .fade-in-up[style*="margin-top: -130px"] {
        margin-top: 0 !important;
    }
}





