/* How It Works Section Styles */

/* Step Card Hover Effects */
.step-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(124, 92, 252, 0.1);
}

/* Number Circle Animations */
.number-circle {
    transition: all 0.3s ease;
}

.step-card:hover .number-circle {
    transform: scale(1.1);
    background-color: #6B4DF3;
}

/* Feature Tag Hover Effects */
.feature-tag {
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background-color: #7C5CFC;
    color: white;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-card {
        margin-bottom: 1.5rem;
    }
}