/* EDUCATION TIMELINE – RIGHT SIDE FOCUS */

.education-section-right {
  padding: 120px 0;
}

.education-title {
  text-align: center;
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 80px;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Timeline wrapper */
.education-timeline-right {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
.education-timeline-right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  /* left: 330px; */
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(0, 112, 243, 0.6),
    rgba(0, 112, 243, 0.1)
  );
}

/* Item */
.education-item-right {
  /* display: flex;
  align-items: flex-start; */
  margin-bottom: 60px;
  position: relative;
}

/* Dot */
.education-dot {
  position: absolute;
  left: calc(7% - 14px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #0070f3, #003f8a);
  box-shadow: 0 0 20px rgba(0, 112, 243, 0.8);
}

/* Content */
.education-content-right {
  margin-left: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.education-content-right:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.education-year {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--accent);
}

.education-content-right h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.education-content-right h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.education-content-right p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Mobile fallback */
@media (max-width: 640px) {
  .education-timeline-right {
    padding-left: 30px;
  }

  .education-timeline-right::before {
    left: 2px;
  }

  .education-dot {
    left: 0;
  }

  .education-content-right {
    margin-left: 30px;
    max-width: 30px;
  }
}
.flag-icon {
  width: 20px;
  height: auto;
  margin-left: 6px;
  vertical-align: middle;
}
@media (max-width: 340px) {
  .education-content-right {
    padding: 20px;
  }
}
/* Mobile + Tablet Fix */
@media (max-width: 768px) {
  .education-section-right {
    padding: 80px 15px;
  }

  .education-timeline-right {
    padding-left: 25px;
  }

  .education-timeline-right::before {
    left: 10px;
  }

  .education-dot {
    left: 2px;
  }

  .education-content-right {
    margin-left: 35px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .education-content-right h3 {
    font-size: 18px;
  }

  .education-content-right h4 {
    font-size: 14px;
  }

  .education-content-right p {
    font-size: 13px;
  }
}
