/* ==========================================================
   INNER PAGES — Supplemental Stylesheet
   Inherits variables and base from style.css
   ========================================================== */

/* =============================================
   PAGE HERO / BREADCRUMB
   ============================================= */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 15, 34, 0.88) 0%,
    rgba(9, 15, 34, 0.55) 70%,
    rgba(9, 15, 34, 0.25) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin: 10px 0 18px;
  line-height: 1.2;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--gold);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* Decorative bottom shape */
.page-hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

/* =============================================
   INTRO / OVERVIEW SECTION
   ============================================= */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images block */
.intro-images { position: relative; }

.intro-img-top {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  margin-bottom: 14px;
}
.intro-img-top img { width: 100%; height: 100%; object-fit: cover; }

.intro-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.intro-img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.intro-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.intro-floating-card {
  position: absolute;
  top: -20px;
  right: -24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.ifc-icon {
  width: 40px; height: 40px;
  background: rgba(9,15,34,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.intro-floating-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.intro-floating-card span {
  font-size: 0.72rem;
  opacity: 0.75;
}

/* Content block */
.intro-lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.intro-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.intro-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,162,39,0.12) 0%, transparent 65%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
}

/* =============================================
   VISION & MISSION
   ============================================= */
.vm-section { background: var(--cream); }
.vm-section .section-header { margin-bottom: 50px; }

.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vm-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.vision-card  .vm-accent { background: linear-gradient(to right, var(--navy), var(--navy-light)); }
.mission-card .vm-accent { background: linear-gradient(to right, var(--gold-dark), var(--gold-light)); }
.credo-card   .vm-accent { background: linear-gradient(to right, #6b7c9e, var(--navy)); }

.vm-icon-wrap {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.mission-card .vm-icon-wrap { background: var(--gold); color: var(--navy-dark); }

.vm-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.vm-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.vm-card p strong { color: var(--navy); }

/* Values Pills */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  cursor: default;
  transition: all var(--transition);
}
.value-pill i { color: var(--gold); font-size: 0.8rem; }
.value-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.value-pill:hover i { color: var(--gold-light); }

/* =============================================
   PRINCIPAL'S MESSAGE
   ============================================= */
.message-section { background: var(--white); }

.message-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.msg-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.msg-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.msg-img-frame {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

.msg-signature {
  margin-top: 20px;
  text-align: center;
}
.sig-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 12px;
}
.msg-signature strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.msg-signature span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.msg-quote-mark {
  color: var(--gold);
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 10px;
}
.msg-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.message-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.msg-info-tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.msg-info-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}
.msg-info-tags span i { color: var(--gold); }

/* =============================================
   MANAGEMENT TEAM
   ============================================= */
.team-section { background: var(--cream); }
.team-section .section-header { margin-bottom: 50px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card.featured-team {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,162,39,0.2);
}

.team-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(to top, rgba(9,15,34,0.85), transparent);
  transition: bottom var(--transition);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.team-info {
  padding: 22px 20px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.featured-team .team-info { border-top-color: var(--gold); }
.team-card:not(.featured-team):hover .team-info { border-top-color: var(--navy); }

.team-info h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.team-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline-section { background: var(--white); }
.timeline-section .section-header { margin-bottom: 60px; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.tl-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
  transform: translateX(-50%);
  z-index: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin: auto;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.12);
  z-index: 2;
  transition: all var(--transition);
}
.tl-item:hover .tl-dot {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 0 0 8px rgba(201,162,39,0.2);
  transform: scale(1.12);
}

.tl-content {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: all var(--transition);
}
.tl-item:hover .tl-content {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.tl-item.right .tl-content { text-align: left; }
.tl-item.left  .tl-content { text-align: right; }

.tl-year {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.tl-content h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.tl-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tl-empty { /* placeholder column for the other side */ }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}
.why-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left,  rgba(201,162,39,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(201,162,39,0.07) 0%, transparent 55%);
}
.why-section .container { position: relative; z-index: 1; }
.why-section .section-header { margin-bottom: 50px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.3);
}

.why-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
  user-select: none;
}

.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* =============================================
   ACCREDITATIONS
   ============================================= */
.accred-section { background: var(--cream); }
.accred-section .section-header { margin-bottom: 50px; }

.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.accred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.accred-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.accred-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.cbse-logo { background: var(--navy); color: var(--gold); letter-spacing: 0.05em; }
.noc-logo  { background: #1a4f2a; color: #68d391; font-size: 1.6rem; }
.iso-logo  { background: #1a3a6e; color: #90cdf4; letter-spacing: 0.05em; }
.sof-logo  { background: #6b2a1a; color: #fc8181; letter-spacing: 0.05em; }

.accred-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.accred-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   DETAIL / FEATURE PAGES
   ============================================= */
.detail-section { background: var(--white); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail-grid.reverse .detail-visual { order: 2; }
.detail-grid.reverse .detail-content { order: 1; }

.detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.detail-visual img { width: 100%; height: 100%; object-fit: cover; }

.detail-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.feature-list {
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =============================================
   STEPS TIMELINE (ADMISSION)
   ============================================= */
.steps-section { background: var(--cream); }

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 34px;
  top: 70px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
}

.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  z-index: 1;
}

.step-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: all var(--transition);
}
.step-item:hover .step-body {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.step-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   FORMS
   ============================================= */
.form-section { background: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-actions {
  grid-column: 1 / -1;
  margin-top: 10px;
}

/* =============================================
   DOCUMENT LIST (CBSE)
   ============================================= */
.doc-section { background: var(--cream); }

.doc-list {
  max-width: 700px;
  margin: 0 auto;
}
.doc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.doc-list li:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.doc-list li span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}
.doc-list li span i { color: var(--gold); font-size: 1.1rem; }
.doc-list li a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}
.doc-list li a:hover { color: var(--navy); }

/* =============================================
   CURRICULUM DETAIL
   ============================================= */
.curriculum-detail-section { background: var(--white); }

.curriculum-detail {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.curriculum-detail:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.curriculum-detail h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.curriculum-detail .cur-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.curriculum-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.curriculum-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.curriculum-detail ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* =============================================
   ALUMNI GRID
   ============================================= */
.alumni-section { background: var(--cream); }

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alumni-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.alumni-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.alumni-card .alumni-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.alumni-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.alumni-card .alumni-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.alumni-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.5);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* GLightbox theme tweaks */
.glightbox-clean .gslide-description {
  font-family: var(--font-body);
}
.glightbox-clean .gslide-title {
  font-family: var(--font-body);
  font-weight: 600;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(13, 27, 62, 0.75);
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: var(--gold);
}

/* Gallery lightbox toolbar — autoplay & download */
.glightbox-container .gallery-lightbox-toolbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  gap: 10px;
}

.glightbox-toolbar-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 27, 62, 0.85);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
}

.glightbox-toolbar-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.glightbox-toolbar-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

@media (max-width: 768px) {
  .glightbox-container .gallery-lightbox-toolbar {
    top: auto;
    bottom: 100px;
  }
}

/* =============================================
   VIDEO GALLERY
   ============================================= */
.video-section { background: var(--cream); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-dark);
}
.video-embed .embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-embed h4 {
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
}

/* =============================================
   CONTACT LAYOUT
   ============================================= */
.contact-section { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-block h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-info-block .contact-list {
  list-style: none;
  padding: 0;
}
.contact-info-block .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-info-block .contact-list li i {
  color: var(--gold);
  margin-top: 3px;
  width: 18px;
}
.contact-info-block .contact-list a { color: var(--navy); }
.contact-info-block .contact-list a:hover { color: var(--gold); }

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* =============================================
   INFRASTRUCTURE HUB LINKS
   ============================================= */
.infra-hub-section { background: var(--cream); }

.infra-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.infra-link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.infra-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.infra-link-card .ilc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.infra-link-card .ilc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.infra-link-card:hover .ilc-img img { transform: scale(1.06); }
.infra-link-card .ilc-body {
  padding: 22px 20px;
}
.infra-link-card .ilc-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.infra-link-card .ilc-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.infra-link-card .ilc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 10px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
  .accred-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .message-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .infra-link-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro-grid   { grid-template-columns: 1fr; gap: 50px; }
  .intro-images { order: -1; }
  .intro-floating-card { right: 0; }
  .vm-grid      { grid-template-columns: 1fr; }
  .message-grid { grid-template-columns: 1fr; gap: 36px; }
  .msg-img-wrap { max-width: 360px; }
  .tl-item      { grid-template-columns: 1fr 50px 1fr; }
  .tl-item.left .tl-content { text-align: left; }
  .detail-grid  { grid-template-columns: 1fr; gap: 36px; }
  .detail-grid.reverse .detail-visual { order: -1; }
  .detail-grid.reverse .detail-content { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .video-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero    { height: 320px; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .team-grid    { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .accred-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item    { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(5)    { border-bottom: none; grid-column: 1 / -1; }
  .timeline { max-width: 100%; }
  .tl-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }
  .tl-item.left .tl-content,
  .tl-item.right .tl-content { grid-column: 2; grid-row: 1; text-align: left; }
  .tl-dot { width: 40px; height: 40px; font-size: 0.75rem; }
  .tl-item.left .tl-dot,
  .tl-item.right .tl-dot { grid-column: 1; grid-row: 1; }
  .tl-empty { display: none; }
  .tl-line { left: 20px; }
  .intro-img-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid    { grid-template-columns: 1fr; }
  .infra-link-grid { grid-template-columns: 1fr; }
  .alumni-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .accred-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .msg-img-wrap { max-width: 100%; }
  .vm-card { padding: 28px 20px; }
  .why-card { padding: 28px 20px; }
}
