/* ══════════════════════════════════
   EDUCATION SECTION
══════════════════════════════════ */
#education { background: var(--bg2); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.edu-sec-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.edu-sec-label i { color: var(--green); }
.edu-sec-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.05); }

/* Timeline */
.tl-edu { position: relative; padding-left: 1.75rem; }
.tl-edu::before {
  content: '';
  position: absolute; left: 0; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--green), var(--cyan) 60%, transparent);
}
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -1.75rem;
  width: 11px; height: 11px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 10px rgba(0,255,136,0.6), 0 0 20px rgba(0,255,136,0.2);
}
.tl-dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,212,255,0.6), 0 0 20px rgba(0,212,255,0.2);
}
.tl-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.tl-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.tl-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.tl-desc {
  font-size: 0.81rem;
  color: var(--text-dim);
  line-height: 1.8;
  list-style: none;
}
.tl-desc li { position: relative; padding-left: 0.85rem; margin-top: 0.2rem; }
.tl-desc li::before { content: '›'; position: absolute; left: 0; color: var(--cyan); }
