/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about .section-divider {
    background: linear-gradient(90deg, transparent 0%, var(--cyber-neon) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* About Image */
.about-image {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    position: relative;
}

.image-bg {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--cyber-neon) 0%, var(--golden) 100%);
    border-radius: 20px;
    opacity: 0.15;
    filter: blur(30px);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* About Text */
.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--cyber-neon);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Timeline */
.about-timeline {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--cyber-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.6rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--cyber-neon);
    transition: var(--transition-normal);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.timeline-item.active .timeline-dot,
.timeline-item:hover .timeline-dot {
    background: var(--cyber-neon);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyber-neon);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-family: var(--font-mono);
}

.timeline-content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}