.school-form-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.school-form-card {
  background: #fff;
  width: 100%;
  max-width: 520px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.school-form-title {
  text-align: center;
  margin-bottom: 20px;
  color: #0d47a1;
}

.school-field {
  margin-bottom: 14px;
}

.school-field input,
.school-field select,
.school-field textarea {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.school-field textarea {
  resize: none;
  height: 80px;
}

.school-field input:focus,
.school-field select:focus,
.school-field textarea:focus {
  border-color: #1976d2;
}

.school-checkbox {
  display: flex;
  gap: 10px;
  font-size: 16px;
  margin-top: 10px;
}

.school-btn {
  width: 100%;
  padding: 12px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 16px;
}

.school-btn:hover {
  background: #0d47a1;
}

.error {
  color: red;
  font-size: 12px;
}

.school-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #2e7d32;
  color: #fff;
  padding: 14px 20px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
}

@media (max-width: 480px) {
  .school-form-card {
    padding: 18px;
  }
}


.admission-heading {
    text-align: left;
    margin-bottom: 25px;
}

.admission-heading h1 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.admission-heading p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
}
.admission-heading {
    text-align: left;
    margin: 30px 40px 25px 40px;   
    padding: 20px 25px 20px 25px; 
    background: #f5f9ff;   /* optional light background */
    border-left: 5px solid #007bff; /* optional highlight */
    border-radius: 6px;
}

.note-box {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    border-left: 6px solid #2c7be5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
}

.note-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c7be5;
}

.note-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.hindi {
    margin-top: 15px;
    font-size: 17px;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .note-box {
        padding: 15px;
    }

    .note-title {
        font-size: 18px;
    }

    .note-text, .hindi {
        font-size: 15px;
    }
}