﻿/* Process Steps */
.process {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1s forwards;
}

    .process-step:nth-child(1) {
        animation-delay: 0.2s;
    }

    .process-step:nth-child(2) {
        animation-delay: 0.4s;
    }

    .process-step:nth-child(3) {
        animation-delay: 0.6s;
    }

    .process-step:nth-child(4) {
        animation-delay: 0.8s;
    }

    .process-step:nth-child(5) {
        animation-delay: 1s;
    }

.process-step-circle {
    width: 50px;
    height: 50px;
    background: #54c1e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.process-step:hover .process-step-circle {
    background: #fee25f;
    transform: scale(1.2);
}

.process-step-content {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.process-step:hover .process-step-content {
    transform: translateX(10px);
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expand {
    0% {
        width: 0;
    }

    100% {
        width: 100px;
    }
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
