/* ---- HAKKIMIZDA CSS ---- */
.gradient-primary { background: linear-gradient(135deg, #059669 0%, #7C3AED 100%); }

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

/* Dikey Çizgi */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; /* Mobilde solda */
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .timeline-container::before {
        left: 50%; /* Masaüstünde ortada */
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

/* Nokta */
.timeline-dot {
    position: absolute;
    left: 11px; /* Mobilde */
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #059669;
    border: 4px solid #0F172A;
    z-index: 10;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-left: 3rem; /* Mobilde */
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .timeline-content {
        width: 45%;
        margin-left: 0;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto; /* Sağda */
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto; /* Solda */
    }
}