.admission-section {
  max-width: 1050px;
  margin: 60px auto;
  padding: 48px 22px;
  background: linear-gradient(135deg, #f3f7fa 89%, #e3ecf7 100%);
  border-radius: 26px;
  box-shadow: 0 16px 38px rgba(9, 44, 92, 0.12);
  text-align: center;
  color: #092c5c;
  position: relative;
  overflow: hidden;
}

.admission-header {
  margin-bottom: 22px;
}

.admission-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #092c5c;
  letter-spacing: 1.5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
}

.admission-underline {
  width: 92px;
  height: 7px;
  background: linear-gradient(90deg, #ffcc00 60%, #ffd966 100%);
  margin: 14px auto 0;
  border-radius: 10px;
  box-shadow: 0 2px 14px #ffcc0090;
  animation: underlineGrow 1.1s cubic-bezier(.39,.58,.57,.99);
}

@keyframes underlineGrow {
  from { width: 0; opacity: 0.5; }
  to { width: 92px; opacity: 1; }
}

.admission-intro {
  font-size: 1.21rem;
  margin: 20px auto 38px;
  max-width: 720px;
  color: #1752a8;
  font-weight: 600;
  letter-spacing: .01em;
}

.highlight {
  color: #ffcc00;
  font-weight: 800;
  font-size: 1.13em;
  text-shadow: 0 1px 8px #fce28a88;
}

/* Cards Layout */
.admission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 26px auto 32px;
}

.admission-card {
  flex: 1 1 235px;
  min-width: 220px;
  max-width: 255px;
  background: linear-gradient(125deg, #fffbe8 40%, #fffcf9 100%);
  border-radius: 18px;
  padding: 30px 18px 22px 18px;
  box-shadow: 0 6px 22px #ffd96638;
  transition: transform 0.36s cubic-bezier(.31,.59,.51,1.18), box-shadow 0.36s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.admission-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 16px 52px #ffcc0055, 0 4px 19px #0c366d28;
}

/* Icon box for strong impact */
.admission-icon-box {
  background: linear-gradient(135deg, #ffcc00 65%, #ffd966 100%);
  box-shadow: 0 0 18px #ffcc0068;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px auto;
  animation: iconPop 0.8s cubic-bezier(.41,.6,.62,.99);
}
@keyframes iconPop {
  from { transform: scale(0.7); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}

.admission-icon {
  font-size: 2rem;
  color: #092c5c;
  transition: color 0.3s;
}

.admission-card:hover .admission-icon {
  color: #d1002c;
}

.admission-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 10px 0 10px;
  color: #092c5c;
  border-bottom: 1.5px solid #ffd966;
  display: inline-block;
  letter-spacing: .03em;
}
.admission-card p {
  font-size: 0.98rem;
  color: #22407b;
  line-height: 1.6;
}

/* Footer call to action */
.admission-footer {
  font-size: 1.14rem;
  font-weight: 600;
  margin-top: 36px;
  color: #0a224b;
  letter-spacing: .01em;
}

.admission-footer .highlight {
  color: #d1002c;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd966 60%, #fff9dd 100%);
  border-radius: 7px;
  padding: 0 4px;
  text-shadow: 0 0 10px #ffd96699;
}

@media (max-width: 900px) {
  .admission-section {
    padding: 32px 10px;
  }
  .admission-title {
    font-size: 2.1rem;
  }
  .admission-cards {
    gap: 15px;
  }
}

@media (max-width: 700px) {
  .admission-section {
    padding: 22px 4vw;
  }
  .admission-title {
    font-size: 1.43rem;
  }
  .admission-cards {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .admission-card {
    min-width: 0;
    max-width: 100vw;
    padding: 18px 10px 16px 10px;
  }
}
