﻿/* ── Admissions page styles ───────────────────────────────── */

/* ─── HERO TAG ───────────────────────────────────────────── */
.adm-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

/* ─── SHARED SECTION WRAPPER ─────────────────────────────── */
.adm-section {
  padding: 72px 80px;
  background: #fff;
}
.adm-section--alt {
  background: #f6f7fc;
}
.adm-section--blue {
  background: var(--blue);
}
.adm-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ─── ADMISSION PROCESS STEPS ────────────────────────────── */
.adm-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.adm-step-num {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.adm-step-card {
  background: rgba(62, 66, 150, 0.65);
  border-radius: 10px;
  padding: 16px 22px;
  color: #fff;
}
.adm-step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.adm-step-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

/* ─── DOCUMENTS REQUIRED ─────────────────────────────────── */
.adm-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.adm-doc-card {
  background: rgba(62, 66, 150, 0.65);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: flex;
  align-items: center;
}

/* ─── WHY CHOOSE ─────────────────────────────────────────── */
.adm-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
  margin-top: 44px;
}
.adm-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: none;
  padding: 0;
}
.adm-why-card--full {
  grid-column: auto;
}
.adm-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(62, 66, 150, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.adm-why-card:hover .adm-why-icon {
  background: rgba(62, 66, 150, 0.15);
  transform: translateY(-3px);
}
.adm-why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.adm-why-label {
  font-size: 13px;
  font-weight: 700;
  color: #2a2a4a;
  line-height: 1.4;
}

/* ─── NEED ASSISTANCE ────────────────────────────────────── */
.adm-assist {
  padding: 72px 80px;
  background: var(--blue);
  text-align: center;
}
.adm-assist h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.adm-assist p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
  line-height: 1.7;
}
.adm-assist-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ENQUIRY FORM SECTION ───────────────────────────────── */
.adm-form-section {
  padding: 80px;
  background: #f6f7fc;
}
.adm-form-inner {
  max-width: 820px;
  margin: 0 auto;
}
.adm-form-intro {
  text-align: center;
  margin-bottom: 48px;
}
.adm-form-intro-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.adm-form-intro h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 12px;
}
.adm-form-intro p {
  font-size: 14px;
  color: #666;
  line-height: 1.58;
}

/* ─── FORM CARD ──────────────────────────────────────────── */
.adm-form {
  background: #fff;
  border-radius: 20px;
  padding: 52px 48px;
  box-shadow: 0 6px 36px rgba(62, 66, 150, 0.1);
}

/* Fieldset blocks */
.adm-fieldset {
  margin-bottom: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(62, 66, 150, 0.1);
}
.adm-fieldset:last-of-type {
  border-bottom: none;
  margin-bottom: 28px;
  padding-bottom: 0;
}
.adm-fieldset-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(62, 66, 150, 0.14);
}

/* Field rows */
.adm-form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
.adm-form-row:last-child {
  margin-bottom: 0;
}
.adm-form-row--2 {
  grid-template-columns: 1fr 1fr;
}
.adm-form-row--1 {
  grid-template-columns: 1fr;
}

/* Individual fields */
.adm-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #2a2a4a;
  margin-bottom: 7px;
}
.req {
  color: #e03a3a;
  margin-left: 2px;
}
.adm-form-group input,
.adm-form-group select,
.adm-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  border: 1.5px solid #d8dbee;
  border-radius: 9px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
}
.adm-form-group input:focus,
.adm-form-group select:focus,
.adm-form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62, 66, 150, 0.1);
}
.adm-form-group input::placeholder,
.adm-form-group textarea::placeholder {
  color: #b0b4cc;
}
.adm-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233e4296' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: #333;
}
.adm-form-group select option[value=""] {
  color: #b0b4cc;
}
.adm-form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* Consent */
.adm-consent {
  margin-bottom: 34px;
}
.adm-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}
.adm-consent-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* Submit button */
.adm-submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.15s;
}
.adm-submit-btn:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}
.adm-submit-btn:active {
  transform: translateY(0);
}

/* ─── SECTION LABEL (above h2, shared) ──────────────────── */
.adm-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.adm-section-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 20px;
}

/* ─── WHY CHOOSE — 5×2 ICON GRID ────────────────────────── */
.adm-why-header {
  max-width: 700px;
  margin-bottom: 12px;
}
.adm-why-header p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-top: 8px;
}
.adm-why-grid-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 16px;
  margin-top: 28px;
}
.adm-why-icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.adm-why-icon-card {
  background: rgba(62, 66, 150, 0.65);
  border-radius: 12px;
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.adm-why-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adm-why-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── HORIZONTAL TIMELINE (5 steps) ─────────────────────── */
.adm-timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 44px;
}
.adm-timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: rgba(62, 66, 150, 0.15);
  z-index: 0;
}
.adm-timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.adm-timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(62, 66, 150, 0.4);
}
.adm-timeline-step-num-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(62, 66, 150, 0.5);
  margin-bottom: 5px;
}
.adm-timeline-step-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 9px;
  line-height: 1.3;
}
.adm-timeline-step-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
}

/* ─── CAMPUS VISIT (full-width image + overlay) ──────────── */
.adm-campus-visit {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px;
}
.adm-campus-visit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.adm-campus-visit-bg .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #5a6199;
}
.adm-campus-visit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 86, 0.86);
  z-index: 1;
}
.adm-campus-visit-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.adm-campus-visit-content .adm-section-label {
  color: rgba(255, 255, 255, 0.6);
}
.adm-campus-visit-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.adm-campus-visit-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}
.adm-campus-visit-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── SCHOLARSHIPS SECTION ───────────────────────────────── */
.adm-scholarships {
  padding: 64px 80px;
  background: #f0f1f8;
  text-align: center;
}
.adm-scholarships h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.2;
}
.adm-scholarships p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── BLUE SECTION OVERRIDES ─────────────────────── */
.adm-section--blue h2,
.adm-section--blue .adm-section-label {
  color: #fff !important;
}
.adm-section--blue .adm-section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── DOCUMENTS REQUIRED — white outlined capsule cards ── */
.adm-docs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.adm-doc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  transition: background 0.2s;
}
.adm-doc-card:hover {
  background: rgba(255,255,255,0.18);
}
.adm-doc-card svg {
  flex-shrink: 0;
  opacity: 0.85;
  margin-right: 0 !important;
}
