* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.education-page {
  height: 100vh;
  position: relative;
  padding: 60px 70px;
  overflow: hidden;
  background: #050505;
}

/* background */
.education-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 0, 92, 0.18), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
}

/* top labels */
.top-left,
.top-right {
  position: absolute;
  top: 45px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  z-index: 5;
}

.top-left { left: 70px; }
.top-right { right: 70px; }

/* LEFT SIDE (TITLE) */
.education-content {
  position: absolute;
  left: 70px;
  top: 145px;
  z-index: 4;
}

.mini-title {
  color: #ff005c;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
}

.big-title {
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.88;
  text-transform: uppercase;
}

.big-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 6px;
  margin-top: 22px;
  border-radius: 50px;
  background: #ff005c;
  box-shadow: 0 0 25px rgba(255, 0, 92, 0.75);
}

/* RIGHT SIDE (CARDS) */
.edu-container {
  position: absolute;
  right: 80px;
  top: 170px;
  width: 560px;
  display: grid;
  gap: 14px;
  z-index: 4;
}

.edu-item {
  position: relative;
  background: rgba(20, 20, 20, 0.84);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 18px 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
  transition: 0.3s ease;
}

.edu-item:hover {
  transform: translateX(-10px);
  border-color: rgba(255, 0, 92, 0.7);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.5),
    0 0 35px rgba(255, 0, 92, 0.28);
}

.edu-item::before {
  content: "+";
  position: absolute;
  left: -22px;
  top: 18px;
  color: #ff005c;
  font-size: 38px;
  font-weight: 900;
  transform: rotate(12deg);
}

.edu-item b {
  font-size: 17px;
  font-weight: 900;
}

.edu-item span {
  float: right;
  color: #ff005c;
  font-size: 13px;
  font-weight: 900;
}

.edu-item p {
  clear: both;
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.4;
}

/* remove visuals */
.visual,
.circle,
.person {
  display: none;
}

/* corner accent */
.education-page::after {
  content: "";
  position: absolute;
  right: 55px;
  bottom: 55px;
  width: 44px;
  height: 44px;
  border-right: 9px solid #fff;
  border-bottom: 9px solid #fff;
}

/* glow */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-one {
  width: 300px;
  height: 300px;
  background: #ff005c;
  top: -120px;
  left: 35%;
  opacity: 0.28;
}

.glow-two {
  width: 380px;
  height: 380px;
  background: #ff005c;
  bottom: -160px;
  right: 12%;
  opacity: 0.18;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .education-page {
    padding: 40px 28px;
  }

  .top-left { left: 28px; }
  .top-right { right: 28px; }

  .education-content {
    left: 28px;
    top: 115px;
  }

  .big-title {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .edu-container {
    position: absolute;
    left: 28px;
    right: auto;
    top: 250px;
    width: calc(100% - 56px);
  }

  .education-page::after {
    display: none;
  }
}