/* ===== ADMISSION PAGE ===== */

/* ── Overview + Form ── */
.admission-overview {
  padding: 70px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.overview-text h1 {
  font-size: 26px;
  font-weight: 700;
  color: #051e30;
  margin-bottom: 20px;
}

.overview-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Apply Form Card */
.apply-form-card {
  background: #053d7a;
  border-radius: 14px;
  padding: 36px 32px;
}

.apply-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.apply-form input,
.apply-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  appearance: none;
}

.apply-form select option {
  background: #053d7a;
  color: #fff;
}

.apply-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.apply-form input:focus,
.apply-form select:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.apply-submit-btn {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  background: #fff;
  color: #053d7a;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 6px;
  font-family: inherit;
}

.apply-submit-btn:hover {
  background: #e8f0fb;
}

.apply-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 13px;
  color: #a5f3a5;
  text-align: center;
  margin: 0;
}

.form-status.error {
  color: #fca5a5;
}

/* ── Steps Timeline ── */
.steps-sec {
  padding: 20px 0 80px;
  background: #f8fafc;
}

.steps-timeline {
  position: relative;
  padding: 40px 0;
}

/* Vertical line */
.steps-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e8f0;
  transform: translateX(-50%);
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.step-row:last-child {
  margin-bottom: 0;
}

/* Dot */
.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e63946;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e63946;
  justify-self: center;
  position: relative;
  z-index: 1;
}

/* Content */
.step-content {
  padding: 0 16px;
}

.step-content.right {
  text-align: right;
}

.step-content.left {
  text-align: left;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  color: #e63946;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.headingsec {
  text-align: center;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #051e30;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Step Image */
.step-img {
  border-radius: 10px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ── Scholarships ── */
.scholarship-sec {
  padding: 70px 0;
}

.scholarship-img {
  margin: 36px 0 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.scholarship-img img {
  width: 100%;
  display: block;
}

/* ── Student Credit Card ── */
.credit-card-sec {
  padding: 20px 0 80px;
  background: #f4f7fb;
}

.credit-card-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  text-align: center;
  max-width: 860px;
  margin: 20px auto 40px;
}

.credit-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.credit-card-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: #051e30;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #051e30;
}

.credit-card-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credit-card-col li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.credit-card-col li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #053d7a;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── CTA ── */
.admission-cta {
  position: relative;
  background: url("/images/Addmission_Bottom_Bg.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* ← yeh parallax deta hai */
  padding: 90px 0;
}

.admission-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.admission-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.admission-cta-inner h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.admission-cta-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .credit-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Steps mobile */
  .steps-timeline::before {
    display: none;
  }

  .step-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: 48px;
  }

  .step-dot {
    display: none;
  }

  .step-content.right,
  .step-content.left {
    text-align: left;
    padding: 0;
  }

  .step-row.reverse .step-img {
    order: -1;
  }
  .step-row.reverse .step-content {
    order: 1;
  }
}

@media (max-width: 767px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .apply-form-card {
    padding: 24px 18px;
  }

  .admission-cta-inner h2 {
    font-size: 20px;
  }
  .admission-cta {
    background-attachment: scroll; /* mobile pe normal */
  }
}
