.elementor-39 .elementor-element.elementor-element-894a9eb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-54178e6 *//* --- Premium Interactive Effects (Add this inside your <style> tag) --- */

/* 1. Pulse Effect on Top Badge */
.top-badge {
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
    100% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(59, 130, 246, 0.7); }
}

/* 2. Premium Shiny Effect on Logo Box */
.logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
    transform: skewX(-25deg);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    100% { left: 200%; }
}

/* 3. High-Converting Breathing Effect on Download Button */
.download-btn {
    animation: buttonBreathe 2.5s infinite ease-in-out;
}

@keyframes buttonBreathe {
    0%, 100% { transform: translateY(0); box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5); }
    50% { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(59, 130, 246, 0.7); }
}

/* 4. Hover & Touch Feedback on Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.2s ease;
    border-left: 0px solid var(--accent-gold);
}

.feature-card:hover, .feature-card:active {
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--accent-gold);
}

/* 5. Icon Pop Animation */
.feature-card:hover .feature-icon i {
    transform: scale(1.2);
    color: var(--accent-gold);
    transition: all 0.3s ease;
}/* End custom CSS */