.timeline-process {
    background: #f4f6fa;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    margin: 50px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0b3d91, #00c6ff);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

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

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0b3d91, #00c6ff);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2);
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timeline-content h5 {
    color: #0b3d91;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.wow.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.wow.fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
    }
    .timeline-item {
        padding-left: 50px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
}
