/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f3f6fb;
  color: #222;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(to right, #4a7cf7, #6aa5ff);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

.highlight {
  margin-top: 15px;
  font-size: 17px;
  font-weight: bold;
}

/* ================= FORM AREA ================= */
.admission-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  width: 100%;
  max-width: 700px;
  background: rgba(255,255,255,0.9);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.form-container h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 15px;
  margin-bottom: 20px;
  color: #666;
}

/* Form fields */
.form-group {
  margin-bottom: 18px;
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd5e0;
  font-size: 15px;
  background: #f9fbff;
}

input:focus, select:focus, textarea:focus {
  border-color: #4a7cf7;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 13px;
  background: #4a7cf7;
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #3266e3;
}

/* ================= WHY US ================= */
.why-us {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.why-us h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}


/* ================= DOCUMENT SECTION ================= */
.documents {
  padding: 40px 20px;
  text-align: center;
}

.documents ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: auto;
}

.documents li {
  background: #fff;
  padding: 14px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #4a7cf7;
  text-align: left;
}

.feature-card {
  background: #eef3ff;
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  border-left: 4px solid #4a7cf7;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(77, 166, 255, 0.25); 
}

.card:focus {
  outline: none;
  box-shadow: 0 12px 32px rgba(77, 166, 255, 0.25);
}

/* FIX: Uniform spacing & equal width */
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;   /* spacing between Left & Right */
  row-gap: 22px;      /* spacing between rows */
}

/* Force all inputs/selects/textarea to behave perfectly */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  display: block;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .two-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 25px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
