.education-section {
  width: 100vw;
  max-width: 1220px;
  margin: 70px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.education-header {
  text-align: center;
  margin-bottom: 36px;
}
.neon-line.red {
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, #ff223a 0%, #e63946 100%);
  border-radius: 5px;
  box-shadow: 0 0 22px 2px #e63946a9, 0 0 32px 6px #e6394626;
  opacity: 0.54;
  margin: 0 auto 18px auto;
}

.education-title {
  color:#FF004F;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-shadow: 0 3px 22px #e6394633;
  margin-bottom: 8px;
}

.education-desc {
  color: #ffdde2;
  font-size: 1.08rem;
  opacity: .91;
  max-width: 520px;
  margin: 0 auto 0 auto;
}

.education-card-row {
  display: flex;
  gap: 42px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

.edu-card {
  background: linear-gradient(120deg, #18191f 80%, #2c141a 100%);
  border-radius: 18px;
  box-shadow: 0 6px 32px #e6394625, 0 0 0px #e6394612;
  padding: 36px 23px 27px 23px;
  min-width: 225px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .19s, transform .15s, filter .34s, opacity .34s;
  border: 2.1px solid #e63946a8;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.edu-card:hover {
  box-shadow: 0 12px 42px #e6394655, 0 0 42px #ff223a24;
  border-color: #ff223a;
  transform: translateY(-5px) scale(1.035);
}

.edu-anim {
  margin-bottom: 14px;
  filter: drop-shadow(0 0 18px #e63946aa);
  border-radius: 50%;
}
.edu-content h3 {
  font-size: 1.14rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-shadow: 0 2px 11px #e6394630;
}
.edu-content p {
  color: #ffdbe3;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.93;
  margin: 0;
}

/* Seçili kart öne çıkma */
.edu-card.selected {
  z-index: 10;
  transform: scale(1.08) !important;
  box-shadow: 0 20px 80px #e63946aa, 0 0 80px #ff223a60;
  border-color: #ff223a;
  animation: pulse-glow 0.45s cubic-bezier(.61,1.6,.4,1) 1;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 6px 32px #e6394625, 0 0 0px #e6394612; }
  55% { box-shadow: 0 32px 88px #ff223aee, 0 0 70px #e6394699; }
  100% { box-shadow: 0 20px 80px #e63946aa, 0 0 80px #ff223a60; }
}

/* Diğerleri blur */
.edu-card.blurred {
  filter: blur(2.5px) grayscale(0.24) brightness(0.80);
  opacity: 0.52;
  pointer-events: none;
  transition: filter .42s, opacity .3s;
}

@media (max-width: 1050px) {
  .education-card-row { gap: 20px; }
  .edu-card { padding: 25px 8px; }
}
@media (max-width: 800px) {
  .education-card-row {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
