.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;
  }
}


/* Enquiry Form Styling */
.admission-form-container {
    margin-top: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.form-title {
    color: #092c5c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

.enquiry-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1752a8;
    font-size: 0.95rem;
}

.form-group label i {
    color: #ffcc00;
    margin-right: 5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e3ecf7;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9fbff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #ffcc00;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.2);
}

.submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
    padding: 15px;
    background: linear-gradient(135deg, #092c5c 0%, #1752a8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(9, 44, 92, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 44, 92, 0.3);
    background: linear-gradient(135deg, #1752a8 0%, #092c5c 100%);
}

@media (max-width: 768px) {
    .enquiry-form .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .admission-form-container {
        padding: 25px 15px;
    }
}