/* Process Timeline Container */
.process-timeline-container {
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
}

.process-flex-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

/* Left Column */
.process-left-col {
    flex: 1;
    position: sticky;
    top: 100px;
}

.process-header-img {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-header-img img {
    width: 100%;
    display: block;
}

.process-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.process-description {
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
    font-family: 'Poppins';
}

.process-bottom-text {
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Poppins';
}

/* Right Column: Timeline */
.process-right-col {
    flex: 1.2;
}

.process-timeline-wrapper {
    position: relative;
    padding-left: 40px;
}

/* Vertical Dashed Line */
.process-timeline-line {
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 2px;
}

.process-timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 2px dashed #e5e7eb;
}

/* Timeline Items */
.process-items-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Connector (Dot & Arrow) */
.process-connector {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.process-dot {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 2px solid #0da2a7;
    border-radius: 50%;
    position: relative;
}

.process-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0da2a7;
    border-radius: 50%;
}

.process-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid #ffffff;
    margin-left: 10px;
}

/* Process Cards */
.process-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #0da2a733;
}

.process-icon-box {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: #e0f2f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-box i,
.process-icon-box svg {
    font-size: 28px;
    color: #0da2a7;
}

.process-card-content {
    flex: 1;
}

.process-item-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #1F2933;
    margin: 0 0 8px 0;
}
.process-item-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    font-family: 'Poppins';
}

/* Responsive */
@media (max-width: 1024px) {
    .process-flex-row {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }

    .process-left-col {
        position: static;
        width: 100%;
    }

    .process-right-col {
        width: 100%;
    }
    .custom-footer {
    padding: 0px 0px 0px 0px !important;
}

.process-bottom-text {
    font-size: 18px;
}
}

@media (max-width: 768px) {
    .process-main-title {
        font-size: 32px;
    }

    .process-card {
        padding: 20px;
        gap: 15px;
    }

    .process-icon-box {
        width: 50px;
        height: 50px;
    }

    .process-icon-box i,
    .process-icon-box svg {
        font-size: 22px;
    }

    .process-item-title {
        font-size: 18px;
    }
}