/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* ── Marquee ─────────────────────────────────────────── */
.marquee-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,102,0,0.25);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.marquee-inner {
  display: inline-block;
  animation: marqueeScroll 35s linear infinite;
  padding-left: 100%;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════════════════════
   OUR INSPIRATION
═══════════════════════════════════════════════════════ */
.insp-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,102,0,0.12);
  position: relative;
  overflow: hidden;
}
/* decorative bg accent */
.insp-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,102,0,0.06);
  pointer-events: none;
}

/* Photo column */
.insp-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.insp-photo-frame {
  width: 220px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,51,102,0.22);
  border: 4px solid var(--gold);
  flex-shrink: 0;
}
.insp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.insp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 40px;
  padding: 10px 20px;
  margin-top: -20px;
  box-shadow: 0 6px 20px rgba(0,51,102,0.28);
  position: relative;
  z-index: 1;
}
.insp-badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.insp-badge-num sup { font-size: 0.65rem; vertical-align: super; }
.insp-badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255,255,255,0.75);
}

/* Text column */
.insp-body { text-align: left; }
.insp-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0 4px;
  line-height: 1.2;
}
.insp-dates {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.insp-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 18px;
}
.insp-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.insp-desc em { color: var(--navy); font-style: italic; font-weight: 500; }

.insp-facts {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.insp-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.insp-fact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.insp-fact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 768px) {
  .insp-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
    text-align: center;
  }
  .insp-body { text-align: center; }
  .insp-divider { margin: 0 auto 18px; }
  .insp-facts { justify-content: center; }
  .insp-photo-frame { margin: 0 auto; }
}


/* ═══════════════════════════════════════════════════════
   LEADERSHIP MESSAGE CARDS
═══════════════════════════════════════════════════════ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.msg-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.msg-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 18px 18px;
}
.msg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Top row: avatar + name/role + quote icon */
.msg-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.msg-avatar-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(255,102,0,0.25);
}
.msg-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msg-meta {
  flex: 1;
}
.msg-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.2;
}
.msg-role {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.msg-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(255,102,0,0.15);
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
  margin-top: -12px;
}

/* Message text */
.msg-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  flex: 1;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-style: italic;
  margin: 0;
}

/* Signature line */
.msg-footer {
  margin-top: 20px;
  text-align: right;
}
.msg-sig {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════
   DIRECTOR / PRINCIPAL MESSAGE — FULL-WIDTH SPLIT BLOCKS
═══════════════════════════════════════════════════════ */
.leader-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.leader-image {
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}
.leader-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.leader-content .eyebrow { color: var(--gold); }
.leader-content h2 { margin-top: 12px; }
.leader-quote-icon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.leader-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 18px;
}
.leader-sig {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,51,102,0.1);
}
.leader-sig .leader-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.leader-sig .leader-role {
  display: inline-block;
  margin-top: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .leader-grid { grid-template-columns: 1fr; gap: 32px; }
  .leader-grid .leader-image { order: -1; }
}


/* ═══════════════════════════════════════════════════════
   VISION & MISSION CARDS
═══════════════════════════════════════════════════════ */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.vm-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Icon top band */
.vm-icon-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 28px 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.vm-icon-circle {
  width: 56px;
  height: 56px;
  background: rgba(255,102,0,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* Body */
.vm-body {
  padding: 28px 32px 32px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.vm-accent-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 16px;
}
.vm-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin: 0;
}
.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vm-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.vm-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
