/* Experience */
#experience{
    display: flex;
    align-items: center;
}

/* Timeline Sections */
.timeline-section{
    margin-bottom: 120px;
}

.timeline-section:last-child{
    margin-bottom: 0;
}

.timeline-title{
    margin-bottom: 48px;
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Timeline */
.timeline{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    overflow-x: auto;
    padding: 30px 0 10px;
    scrollbar-width: none;
}

.timeline::-webkit-scrollbar{
    display: none;
}

/* Timeline Line */
.timeline-line{
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,.08);
    z-index: 0;
}

/* Timeline Item */
.timeline-item{
    position: relative;
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Timeline Dot */
.timeline-dot{
    width: 18px;
    height: 18px;
    margin-bottom: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid var(--color-bg);
    box-shadow:
        0 0 20px rgba(0,200,83,.45);
}

/* Timeline Card */
.timeline-card{
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(18px);
    transition: var(--transition);
}

.timeline-card:hover{
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 28px rgba(0,200,83,.12);
}

/* Timeline Date */
.timeline-date{
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Timeline Titles */
.timeline-card h4{
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-card h5{
    margin-bottom: 18px;
    color: var(--color-text-secondary);
    font-size: .95rem;
    font-weight: 600;
}

/* Timeline Text */
.timeline-card p{
    color: var(--color-text-secondary);
    font-size: .98rem;
    line-height: 1.8;
}

/* Alternate Cards */
.timeline-item:nth-child(even){
    margin-top: 70px;
}

/* Responsive */
@media (max-width: 1100px){
    .timeline{
        justify-content: flex-start;
        gap: 32px;
        padding-bottom: 20px;
    }

    .timeline-item{
        min-width: 300px;
    }
}

@media (max-width: 768px){
    .timeline-title{
        font-size: 1.7rem;
    }

    .timeline-item{
        min-width: 280px;
    }

    .timeline-card{
        padding: 24px;
    }
}