/* =====================================
   PROCESS SECTION STYLES
   ===================================== */

.process-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 123, 44, 0.05);
}

.process-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(11, 44, 132, 0.05);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    max-width: 220px;
    position: relative;
}

.step-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 38px;
    color: #fff;
    background: linear-gradient(135deg, #0b2c84, #1643b8);
    box-shadow: 0 20px 40px rgba(11, 44, 132, 0.25);
    transition: 0.3s;
}

.step-icon:hover {
    transform: translateY(-8px);
}

.step-number {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff7b2c;
}

.step-content h4 {
    color: #071a52;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.8;
}

.process-line {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 123, 44, 0.3), rgba(11, 44, 132, 0.3));
    margin-top: 55px;
}

@media (max-width: 991px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-line {
        width: 3px;
        height: 60px;
        margin: 20px 0;
    }
}