.elementor-8 .elementor-element.elementor-element-1a204ba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-39a7473 *//* ==================== PREMIUM ROYAL BLUE BUTTONS CSS ==================== */
.cta-btn {
    display: block;
    width: 100%;
    /* Luxury Royal Blue to Corporate Indigo Gradient */
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%) !important;
    background-size: 200% auto !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 800; /* Extra bold for visibility */
    border-radius: 12px; /* Smooth rounded shape */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    
    /* Elegant blue multi-layered shadow */
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.2), 0 8px 32px rgba(29, 78, 216, 0.1);
    
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    
    /* Ambient pulsing glow to attract attention naturally */
    animation: premium-blue-glow 3s ease-in-out infinite alternate;
}

/* Hover / Touch State */
.cta-btn:hover {
    background-position: right center !important; /* Smoothly rolls the color gradient */
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35), 0 12px 40px rgba(29, 78, 216, 0.2);
    transform: translateY(-2px);
}

/* Tactile Click / Hard Press State */
.cta-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(29, 78, 216, 0.15);
}

/* Premium Light Shimmer Sheen Reflective Effect */
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine-sweep 4s infinite linear;
}

/* Smooth Ambient Blue Pulsing Glow */
@keyframes premium-blue-glow {
    0% {
        box-shadow: 0 4px 15px rgba(29, 78, 216, 0.15), 0 8px 25px rgba(29, 78, 216, 0.08);
    }
    100% {
        box-shadow: 0 6px 22px rgba(37, 99, 235, 0.35), 0 10px 35px rgba(37, 99, 235, 0.15);
    }
}

/* Shimmer Speed Control */
@keyframes shine-sweep {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}
/* ====================================================================== *//* End custom CSS */