.admission-steps {
  padding: 40px 30px;
  background: #faf7ff;
  position: relative;
  border-radius: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .admission-steps {
    padding: 30px 10px;
  }
}
.admission-steps .steps-wrapper {
  max-width: 100%;
  margin: auto;
  position: relative;
  padding-left: 60px;
}
.admission-steps .steps-wrapper::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 20px;
  width: 4px;
  height: 100%;
  background: #8844B7;
}
.admission-steps .step {
  position: relative;
  margin-bottom: 21px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #8844B7;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .admission-steps .step {
    padding: 10px;
  }
}
.admission-steps .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.admission-steps .step:hover .step-number {
  transform: scale(1.1);
  background: #6c3692;
}
.admission-steps .step .step-number {
  position: absolute;
  left: -60px;
  top: 1px;
  background: #8844B7;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.admission-steps .step h3 {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  color: #8844B7 !important;
  font-weight: 700;
}
.admission-steps .step p {
  color: var(--dark) !important;
  font-size: 15px !important;
  margin-bottom: 0 !important;
}
.admission-steps .step:last-child {
  margin-bottom: 0;
}
.admission-steps .step:last-child::before {
  content: "";
  width: 5px;
  height: 110%;
  background: #faf7ff;
  position: absolute;
  left: -42px;
  top: 0;
}
.page-template-innerpages .inner-wrapper .inner-left .admission-steps .step p {
  color: var(--dark) !important;
  font-size: 15px !important;
  margin-bottom: 0 !important;
  line-height: 1.4;
}
.page-template-innerpages .inner-wrapper .inner-left h2 {
  color: #8844B7;
}
.page-template-innerpages .inner-wrapper .inner-left .admission-steps h2 {
  margin-bottom: 20px;
}
