
.introduction-section {
    background-color: #fff;
}


.about-us-cta-section .section-title {
    padding-bottom: 20px;
}

.about-us-cta-section .more-container {
    padding-top: 20px;
}


.materials-item-wrapper {
    display: flex;
    align-items: center;
}

.materials-item-icon figure {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efefef;
    border-radius: 50%;
}

.materials-item-icon .document-icon {
    font-size: 40px;
    color: #929090;
}


.materials-item-detail {
    padding: 20px
}

.materials-item-header {
    padding-bottom: 10px;
}

.materials-item-files {
    display: flex;
    flex-direction: column;
}

.materials-item-files > a {
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
/* .is-index section:nth-child(odd ) {
    background-color: unset !important;
} */
.timeline-section {
    background-color: rgb(15, 55, 76) !important;
}

.timeline-section-heading {
    color: #fff;
}

.timeline-header .tag {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* ── MISSION & VISION SECTION ── */
.mv-section {
  padding: 3.5rem 0;
  background: #fff;
}

/* ── HEADER ── */
.mv-header {
  margin-bottom: 2.5rem;
}

.mv-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mv-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* ── STACK ── */
.mv-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

/* ── CARD ── */
.mv-card {
  background: #fff;
  border: 1px solid #eee;
  border-left-width: 4px;
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}

.mv-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* mission — primary colour accent */
.mv-mission {
  border-left-color: var(--primary-color);
}

/* vision — lighter shade of primary */
.mv-vision {
  border-left-color: color-mix(in srgb, var(--primary-color) 75%, transparent) 55%;
}

/* ── ICON ── */
.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mv-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

/* ── CONTENT ── */
.mv-content {
  flex: 1;
  min-width: 0;
}

.mv-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.mv-mission .mv-label {
  color: var(--primary-color);
}

.mv-vision .mv-label {
  color: #2d7fc4;
}

.mv-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mv-section { padding: 2.5rem 0; }

  .mv-card {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .mv-icon {
    width: 38px;
    height: 38px;
  }

  .mv-icon svg {
    width: 18px;
    height: 18px;
  }

  .mv-body { font-size: 14px; }
  .mv-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .mv-card { gap: 0.75rem; }
  .mv-body { font-size: 13px; }
}

/* ── ORG STRUCTURE SECTION ── */
.org-section {
  padding: 3.5rem 0;
  background: #fff;
}

/* ── IMAGE COLUMN ── */
.org-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-figure {
  width: 100%;
  margin: 0;
  background: #f8f9fb;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-figure img,
.org-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  display: block;
  border-radius: var(--border-radius);
}

/* SVG fills figure naturally */
.org-figure svg {
  width: 100%;
  height: auto;
  max-height: 460px;
}

/* ── TEXT COLUMN ── */
.org-text-col {
  padding-left: 2rem;
}

/* accent bar */
.org-accent {
  width: 40px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.org-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.org-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.org-body {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.org-body p { margin-bottom: 0.75rem; }
.org-body p:last-child { margin-bottom: 0; }
.org-body strong { color: #1a1a1a; }
.org-body a { color: var(--primary-color); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .org-text-col { padding-left: 1.5rem; }
  .org-title { font-size: 20px; }
}

@media (max-width: 768px) {
  .org-section { padding: 2.5rem 0; }

  /* stack — image top, text below on mobile */
  .org-image-col { margin-bottom: 1.5rem; }
  .org-text-col  { padding-left: 0; }

  .org-figure { padding: 1rem; }

  .org-figure img,
  .org-img { max-height: 280px; }

  .org-figure svg { max-height: 280px; }

  .org-title { font-size: 18px; }
  .org-body  { font-size: 13px; }
}

@media (max-width: 480px) {
  .org-figure { padding: 0.75rem; }
  .org-title  { font-size: 16px; }
  .org-accent { width: 32px; height: 3px; }
}

/* ── TIMELINE SECTION ── */
.tl-section {
  background: var(--primary-color) !important;
  padding: 4rem 0 3rem;
}

/* ── HEADER ── */
.tl-header {
  margin-bottom: 3rem;
}

.tl-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ── BODY WRAPPER ── */
.tl-body {
  position: relative;
  margin: 0 auto;
}

/* ── CENTRE VERTICAL LINE ── */
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

/* ── YEAR ROW ── */
.tl-year-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.tl-year-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.04em;
}

/* ── TIMELINE ITEM ── */
.tl-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ── NODE (dot) ── */
.tl-node {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--background-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 2px var(--background-color);
  flex-shrink: 0;
}

/* ── CONTENT ── */
.tl-content {
  padding-top: 2px;
}

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

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

.tl-spacer {
  /* empty column to push content to correct side */
}

.tl-period {
  font-size: 11px;
  font-weight: 700;
  color: var(--background-color);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.tl-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .tl-section { padding: 3rem 0 2rem; }

  /* collapse to single left-rail on mobile */
  .tl-line {
    left: 16px;
    transform: none;
  }

  .tl-year-row { justify-content: flex-start; padding-left: 40px; }

  .tl-item,
  .tl-item--left,
  .tl-item--right {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }

  /* always: dot left, content right */
  .tl-item--left .tl-spacer,
  .tl-item--right .tl-spacer {
    display: none;
  }

  .tl-item--left {
    grid-template-columns: 40px 1fr;
  }

  .tl-item--left .tl-content {
    order: 2;
    text-align: left;
    padding-right: 0;
    padding-left: 0.5rem;
  }

  .tl-item--left .tl-node {
    order: 1;
    justify-content: center;
  }

  .tl-item--right {
    grid-template-columns: 40px 1fr;
  }

  .tl-item--right .tl-content {
    order: 2;
    padding-left: 0.5rem;
  }

  .tl-item--right .tl-node {
    order: 1;
    justify-content: center;
  }

  .tl-title { font-size: 20px; }
  .tl-desc  { font-size: 12px; }
}

@media (max-width: 480px) {
  .tl-title { font-size: 18px; }
  .tl-year-tag { font-size: 13px; padding: 4px 16px; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 3rem 0 4rem;
}

/* ── CARD ── */
.cta-card {
  background: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow top-right */
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(74, 144, 196, 0.12);
  pointer-events: none;
}

/* subtle radial glow bottom-left */
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(74, 144, 196, 0.08);
  pointer-events: none;
}

/* ── EYEBROW ── */
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* ── TITLE ── */
.cta-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* ── DESCRIPTION ── */
.cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

/* ── ACTIONS ── */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── PRIMARY BUTTON — solid white ── */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta-btn-primary:hover {
  opacity: 0.92;
  color: #0a1f3c;
}

.cta-btn-primary .btn-icon svg {
  width: 14px;
  height: 14px;
  fill: #0a1f3c;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cta-section { padding: 2rem 0 3rem; }

  .cta-card {
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius);
  }

  .cta-title { font-size: 24px; }
  .cta-desc  { font-size: 14px; }
}

@media (max-width: 480px) {
  .cta-card  { padding: 2.5rem 1.25rem; }
  .cta-title { font-size: 20px; }
  .cta-desc  { font-size: 13px; }

  .cta-btn-primary {
    width: 100%;
    justify-content: center;
  }
}