/* Process Section */
.process-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.process-list {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-list::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #333;
    z-index: 0;
}

.process-item {
    position: relative;
    z-index: 1;
    width: 18%;
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #222;
    border: 2px solid #4192E7;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #fff;
    transition: 0.3s;
}

.process-item:hover .process-icon {
    background: #4192E7;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(204,0,0,0.4);
}

.process-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.process-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-section {
        background-color: #1a1a1a;
        padding: 20px 0 0 ;
    }

    .process-list {
        flex-wrap: wrap;
        justify-content: center; margin-top: 15px;
    }
    .process-list::before { display: none; }
    .process-item {
        width: 45%;
        margin-bottom: 40px;
    }
}

