:root { --edu-accent: #ff8a00; }

.section-education {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,138,0,.08), transparent 60%),
    radial-gradient(1200px 600px at 90% 110%, rgba(0,200,180,.08), transparent 60%),
    #f7f8fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-education .edu-title {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: .5px;
}

.section-education .chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  color: #111;
}

.section-education .chip .dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--edu-accent);
  box-shadow: 0 0 0 .15rem rgba(255,138,0,.15);
}

.section-education .chip .dot-green {
  background: #00d3a7;
  box-shadow: 0 0 0 .15rem rgba(0,211,167,.15);
}

.section-education .chip .dot-muted {
  background: #6c757d;
  box-shadow: 0 0 0 .15rem rgba(108,117,125,.15);
}

.section-education .edu-card.card {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
}

.section-education .edu-card.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}

.section-education .program-icon {
  width: 40px;
  height: 40px;
  border-radius: .9rem;
  display: inline-grid;
  place-items: center;
  background: rgba(255,138,0,.12);
  color: var(--edu-accent);
}

.section-education .check {
  display: inline-block;
  width: 1rem;
  text-align: center;
  color: var(--edu-accent);
  margin-right: .4rem;
}
