.about-section {
    min-height: auto;
    padding-top: 140px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-img img {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Timeline */
.timeline-section { padding-top: 20px; }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 20px; 
}

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

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    z-index: 10;
    transition: 0.3s;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.timeline-date {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.timeline-content {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-container { text-align: center; flex-direction: column; }
    .about-text h2 { text-align: center !important; }
    .about-stats { justify-content: center; }
    .timeline { padding-left: 10px; }
}