.work-process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.work-process-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.work-process-section .section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    /* max-width: 600px; */
    margin: 0 auto;
}

.work-process-section .timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.work-process-section .timeline-svg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.work-process-section .timeline-path-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 4;
    opacity: 0.3;
}

.work-process-section .timeline-path-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 4;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.5s ease-out;
}

.work-process-section .timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.work-process-section .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.work-process-section .timeline-item:nth-child(odd) {
    padding-right: 51%;
    text-align: right;
}

.work-process-section .timeline-item:nth-child(even) {
    padding-left: 51%;
    text-align: left;
}

.work-process-section .step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--arovan-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
       box-shadow: 0 10px 30px rgba(32, 167, 201, 0.4);
    z-index: 3;
    border: 4px solid #fff;
    transition: all 0.3s ease;
}

.work-process-section .step-number.active {
    background:var(--arovan-base);
    transform: translateX(-50%) scale(1.1);
        box-shadow: 0 10px 30px rgba(32, 167, 201, 0.4);
}

.work-process-section .step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.work-process-section .timeline-item:nth-child(odd) .step-content {
    margin-right: 40px;
}

.work-process-section .timeline-item:nth-child(even) .step-content {
    margin-left: 40px;
}

.work-process-section .timeline-item:nth-child(odd) .step-content::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.work-process-section .timeline-item:nth-child(even) .step-content::after {
    content: '';
    position: absolute;
    top: 35px;
    left: -15px;
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.work-process-section .step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.work-process-section .step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.work-process-section .timeline-item:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-process-section .timeline-item:hover .step-number {
    transform: translateX(-50%) scale(1.15);
      box-shadow: 0 10px 30px rgba(32, 167, 201, 0.4);
}

.work-process-section .timeline-item:hover .step-title {
    color: var(--arovan-base);
}

@media (max-width: 768px) {
    .work-process-section .timeline-svg {
        left: 30px;
        width: 100px;
    }

    .work-process-section .timeline-item {
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-bottom: 60px;
    }

    .work-process-section .step-number {
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .work-process-section .step-number.active {
        transform: translateX(-50%) scale(1.1);
    }

    .work-process-section .step-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 30px;
        padding: 25px;
    }

    .work-process-section .timeline-item .step-content::after {
        display: none;
    }

    .work-process-section .section-title h2 {
        font-size: 2rem;
    }
}

.work-process-section .timeline-item:nth-child(1) { transition-delay: 0.1s; }
.work-process-section .timeline-item:nth-child(2) { transition-delay: 0.2s; }
.work-process-section .timeline-item:nth-child(3) { transition-delay: 0.3s; }
.work-process-section .timeline-item:nth-child(4) { transition-delay: 0.4s; }
.work-process-section .timeline-item:nth-child(5) { transition-delay: 0.5s; }
.work-process-section .timeline-item:nth-child(6) { transition-delay: 0.6s; }
.work-process-section .timeline-item:nth-child(7) { transition-delay: 0.7s; }
.work-process-section .timeline-item:nth-child(8) { transition-delay: 0.8s; }

.work-process-section .progress-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.work-process-section .progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    margin: 8px 0;
    transition: all 0.3s ease;
}

.work-process-section .progress-dot.active {
    background: var(--arovan-base);
    transform: scale(1.3);
}
