/* Process Timeline Styling */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
}

/* Vertical line */
.process-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #4e73df 0%, #2e59d9 100%);
    top: 0;
    bottom: 0;
    left: 25px;
    margin-left: -2px;
    border-radius: 4px;
}

.process-item {
    padding: 15px 40px;
    position: relative;
    margin-bottom: 35px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    left: -25px;
    background-color: #4e73df;
    border: 5px solid #fff;
    border-radius: 50%;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 0 0 4px rgba(78, 115, 223, 0.2);
}

.process-content {
    padding: 10px 0 10px 30px;
}

.process-content h4 {
    margin-bottom: 10px;
    color: #3a3a3a;
}

.process-content p {
    color: #6c757d;
}

/* Animation for larger screens */
@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
    }
    
    .process-item {
        width: 45%;
        margin-bottom: 50px;
    }
    
    .process-item:nth-child(odd) {
        float: left;
        clear: right;
        margin-right: 5%;
    }
    
    .process-item:nth-child(even) {
        float: right;
        clear: left;
        margin-left: 5%;
    }
    
    .process-item:nth-child(odd) .process-circle {
        right: -25px;
        left: auto;
    }
    
    .process-item:nth-child(even) .process-circle {
        left: -25px;
    }
    
    .process-item:nth-child(odd) .process-content {
        text-align: right;
        padding: 10px 30px 10px 0;
    }
    
    .process-timeline::after {
        content: '';
        display: table;
        clear: both;
    }
} 