/***

====================================================================
	Process Flow Section
====================================================================

***/

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-flow .step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 200px;
    margin: 0 10px 40px;
}

.process-flow .dotted-line {
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
}

.process-flow .dotted-line div {
    width: 100%;
    height: 100%;
    border-top: 2px dotted #B85EE6;
}

.process-flow .icon {
    width: 70px;
    height: 70px;
    background: #B85EE6;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-flow .icon i {
    color: #fff;
    font-size: 32px;
}

.process-flow h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.process-flow p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .process-flow .step {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 40px;
    }

    .process-flow .dotted-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-flow .step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .process-flow .step {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .process-flow h4 {
        font-size: 18px;
    }

    .process-flow p {
        font-size: 13px;
    }

    .text-center h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .process-section {
        padding: 80px 0;
    }
}

/* Process Section Button */
.process-section .btn-large {
    width: auto;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(270deg, #682FFF 0%, #CB38FF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.process-section .btn-large:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 47, 255, 0.3);
}

.process-section .title-box {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .subtitle {
    color: #B85EE6;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section .heading_title {
    font-size: var(--h2-size);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}