/* Thermal Gradient Animation */
@keyframes thermalGradient {
    0% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.7;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
}

/* Smart Pulse Effect */
@keyframes smartPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(92, 184, 92, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
    }
}

/* Apply to body for full-page effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        45deg, 
        rgba(156, 230, 63, 0.03), 
        rgba(0, 104, 56, 0.03), 
        rgba(85, 131, 61, 0.03), 
        rgba(156, 230, 63, 0.03)
    );
    background-size: 400% 400%;
    animation: thermalGradient 15s ease infinite;
    pointer-events: none;
}

/* Add subtle pulse to CTA buttons */
.cta-button, .btn-primary {
    animation: smartPulse 4s infinite;
    transition: all 0.3s ease;
}

/* Add hover effect to cards */
.card, .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Subtle animation for icons */
.icon-animate {
    transition: transform 0.3s ease;
}

.icon-animate:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Loading animation for async content */
@keyframes loadingPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}
