
  /* ===== Global School Theme ===== */
  body {
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
  }

  /* ===== Card Styling ===== */
  .enquiry-card {
    max-width: 900px;
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: none;
  }

  /* ===== Header (Play School Friendly) ===== */
  .form-header {
    background: linear-gradient(135deg, #42a5f5, #7e57c2);
    color: #fff;
    padding: 35px 20px;
    position: relative;
  }

  .form-header h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .form-header p {
    font-size: 0.95rem;
    opacity: 0.9;
  }

  /* Decorative circles for play school feel */
  .form-header::before,
  .form-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
  }

  .form-header::before {
    width: 120px;
    height: 120px;
    background: #fff;
    top: -30px;
    left: -30px;
  }

  .form-header::after {
    width: 160px;
    height: 160px;
    background: #ffd54f;
    bottom: -50px;
    right: -50px;
  }

  /* ===== Section Headings ===== */
  h5 {
    font-weight: 600;
    color: #3949ab;
    position: relative;
    padding-left: 12px;
  }

  h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #42a5f5, #7e57c2);
    border-radius: 4px;
  }

  /* ===== Form Controls ===== */
  .form-control,
  .form-select {
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    font-size: 0.95rem;
    transition: all 0.25s ease;
  }

  .form-control:focus,
  .form-select:focus {
    border-color: #7e57c2;
    box-shadow: 0 0 0 0.15rem rgba(126, 87, 194, 0.25);
  }

  /* ===== Labels ===== */
  .form-label {
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
  }

  .required::after {
    content: ' *';
    color: #e53935;
    font-weight: 600;
  }

  /* ===== Divider ===== */
  hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #c5cae9, transparent);
  }

  /* ===== Submit Button ===== */
  .btn-primary {
    background: linear-gradient(135deg, #43a047, #1e88e5);
    border: none;
    border-radius: 30px;
    padding: 12px 45px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  }

  /* ===== Mobile Friendly ===== */
  @media (max-width: 576px) {
    .form-header h3 {
      font-size: 1.4rem;
    }

    .enquiry-card {
      margin: 20px 10px;
    }
  }