
/* MAIN CARD */
.admission-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* TITLE */
.admission-content h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.admission-content h3 {
  color: var(--accent-red);
  margin-bottom: 25px;
}

/* TEXT */
.admission-content p {
  color: #444;
  line-height: 1.8;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
}

/* VERTICAL LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-blue);
}

/* STEP */
.timeline-step {
  position: relative;
  margin-bottom: 25px;
}

/* NUMBER CIRCLE */
.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
}

/* CARD */
.timeline-content {
  background: #f9fbff;
  padding: 15px 18px;
  border-radius: 10px;
  transition: 0.3s;
}

/* HOVER */
.timeline-step:hover .timeline-content {
  background: #f3f6ff;
  transform: translateX(6px);
}

.timeline-step:hover::before {
  background: var(--accent-red);
}

/* IMAGE */
.admission-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
}

.admission-img img {
  width: 100%;
  transition: 0.4s;
}

.admission-img:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){

  .about {
    padding: 60px 0;
  }

  .admission-wrapper {
    padding: 20px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-step::before {
    left: -30px;
  }

}