/* ============================================================
   about.css – Unique styles for about.php
   ============================================================ */

.stat-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0.1875rem;
    top: 1rem;
    width: 1px;
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
}
