/* Tam calisir vaziyette timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 30px; 
}


.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(99, 102, 241, 0.2); 
    border-radius: 4px;
}


.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.5s ease forwards;
}


.timeline-dot {
    position: absolute;
    top: 0;
    left: -36px; 
    width: 16px;
    height: 16px;
    background: #4f46e5;
    border: 3px solid #fff; 
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3); 
    transition: all 0.3s ease;
}


.timeline-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: #f4a261; 
    transform: scale(1.2);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px); 
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}
