:root {
  --primary: #be2643;
  --primary-dark: #d11235;
  --navy: #002f65;
  --navy-dark: #111d33;
  --accent: #e74c3c;
  --light-bg: #f5f7fa;
  --border: #dee2e6;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --title-text: #01043f;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Work Sans", sans-serif;
}

/* ── TOP BAR ─────────────────────────────── */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.82rem;
}
.topbar a {
  color: var(--text-dark);
  text-decoration: none;
}
.topbar a:hover {
  color: var(--primary);
}

/* ── MAIN NAVBAR ─────────────────────────── */
.main-nav {
  background: var(--navy);
  padding: 0;
}
.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 14px 16px !important;
  transition:
    background 0.2s,
    color 0.2s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}
.main-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.main-nav .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── LOGO NAVBAR ─────────────────────────── */
.logo-bar {
  background: #e6ebf5;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.logo-bar a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.logo-bar a:hover {
  color: var(--primary);
}
.logo-bar .brand-title {
  font-family: "Merriweather", serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-bar .brand-sub {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-member {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  transition: background 0.2s;
}
.btn-member:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/banner.jpg") center/cover no-repeat;
  /* filter: brightness(.45); */
}
/* .hero-content {
  position: relative;
  z-index: 10 !important ;
  padding: 60px 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero p {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 28px;
} */
.btn-hero {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-hero:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SECTIONS ────────────────────────────── */
section {
  padding: 70px 0;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--title-text);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 40px;
}

/* ── MISSION & VISION ────────────────────── */
.mission-section {
  background: #fff;
}
.mission-section h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.mission-section p {
  font-size: 18px;
  line-height: 1.75;
  color: #000000;
}
.lab-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* ── CORE OBJECTIVES ─────────────────────── */
.objectives-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px 36px;
  margin-top: 0px;
}
.objectives-box h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.objectives-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.objectives-box li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  padding: 7px 0;

  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.objectives-box li:last-child {
  border-bottom: none;
}
.objectives-box li::before {
  content: "▶";
  color: var(--accent);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── HISTORY ─────────────────────────────── */
.history-section {
  background: var(--light-bg);
}
.history-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 18px;
}
.history-section strong {
  color: var(--navy);
}
.round-img {
  /* width: 130px; height: 130px; */
  border-radius: 50%;
  /* object-fit: cover;
      border: 4px solid #fff; */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 8px;
}

/* ── INSTITUTES ──────────────────────────── */
.institutes-section {
  background: #fff;
}
.inst-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 28px 0px;
  text-align: center;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  height: 100%;
}
.inst-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.inst-icon {
  text-align: center;
}
.inst-card h6 {
  font-family: "Work Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.other-inst-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 30px 36px;
  margin-top: 40px;
}
.other-inst-box h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.other-inst-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.other-inst-box li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.other-inst-box li:last-child {
  border-bottom: none;
}
.other-inst-box li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ── MAJOR INSTITUTES ────────────────────── */
.major-inst {
  background: var(--light-bg);
}
.major-inst ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.major-inst li {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  padding: 6px 0;
}

/* ── NEWSLETTER ──────────────────────────── */
.newsletter {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.newsletter h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.newsletter p {
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.newsletter .form-control {
  border-radius: 4px;
  font-size: 0.9rem;
  border-color: var(--border);
}
.btn-subscribe {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
}
.btn-subscribe:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 24px 0;
  font-size: 0.85rem;
  text-align: center;
}
footer a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin: 0 10px;
  font-size: 1rem;
}
footer .footer-links a:hover {
  color: #ffffffeb;
}
footer .footer-links {
  margin-bottom: 10px;
}

/* ── UTILS ───────────────────────────────── */
.divider {
  height: 3px;
  width: 50px;
  background: var(--primary);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.text-primary-custom {
  color: var(--primary) !important;
}

/* ── SCROLL ANIMATIONS ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE TWEAKS ───────────────────── */
@media (max-width: 767.98px) {
  .hero {
    min-height: 320px;
  }
  section {
    padding: 48px 0;
  }
  .objectives-box,
  .other-inst-box {
    padding: 24px 20px;
  }
  .round-img {
    width: 150px;
    height: 150px;
  }
  .logo-bar .brand-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .main-nav .nav-link {
    padding: 10px 12px !important;
  }
  .btn-member {
    font-size: 0.78rem;
    padding: 7px 13px;
  }
  .siteImg {
    width: 100%;
  }
}

/* ── TOP BAR DROPDOWN – HOVER ─────────────── */

.dropdown-menu-top {
  border-top: 3px solid var(--primary) !important;
  border-radius: 0 0 8px 8px !important;
  min-width: 220px;
  padding: 6px 0;
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.dropdown-menu-top.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu-top .dropdown-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 18px;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}

.dropdown-menu-top .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 24px;
}

.top-nav-link:hover {
  color: var(--primary) !important;
}

/* ── MAIN NAVBAR ─────────────────────────── */
.main-nav {
  background: var(--navy);
  padding: 0;
}

.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 14px 16px !important;
  transition:
    background 0.2s,
    color 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

/* ── DROPDOWN BASE ───────────────────────── */
.main-nav .dropdown-menu {
  border: none;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
  min-width: 220px;
  animation: dropFade 0.18s ease;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav .dropdown-item {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 18px;
  white-space: normal;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 24px;
}

.main-nav .dropdown-divider {
  margin: 4px 12px;
  border-color: var(--border);
}

/* ── DROPDOWN SECTION HEADER ─────────────── */
.dropdown-header-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 10px 18px 4px;
  pointer-events: none;
  margin-top: 4px;
}

/* ── NESTED (2-LEVEL) DROPDOWN ───────────── */
.main-nav .dropdown-submenu {
  position: relative;
}

.main-nav .dropdown-submenu > .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav .dropdown-submenu > .dropdown-item::after {
  content: "\F285";
  /* bi-chevron-right */
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 6px;
  flex-shrink: 0;
}

.main-nav .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -3px;
  border-radius: 0 6px 6px 6px;
  display: none;
}

.main-nav .dropdown-submenu:hover > .dropdown-menu,
.main-nav .dropdown-submenu.show > .dropdown-menu {
  display: block;
}

/* ── MOBILE NESTED DROPDOWN ──────────────── */
@media (max-width: 991.98px) {
  .main-nav .dropdown-submenu .dropdown-menu {
    left: 0;
    top: auto;
    border-radius: 0 0 6px 6px;
    border-top: none;
    border-left: 3px solid var(--primary);
    box-shadow: none;
    margin-left: 16px;
    margin-top: 0;
    background: #f0f3f8;
  }

  .main-nav .dropdown-submenu > .dropdown-item::after {
    content: "\F229";
    /* bi-chevron-down */
  }

  .main-nav .dropdown-menu {
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--primary);
    box-shadow: none;
    background: #edf0f6;
  }
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.topMenu a:hover {
  color: var(--primary) !important;
}

.abourTitleSec {
  background-color: #f5f7fa;
  padding: 40px 0;
}

.abourTitleSec h2 {
  color: var(--navy);
}

/* ── POLICIES SUBMENU FLYOUT ─────────────── */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  border-top: 3px solid var(--primary) !important;
  border-radius: 0 8px 8px 8px !important;
  box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.14);
  padding: 6px 0;
  transform: translateX(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  pointer-events: none;
  z-index: 1055;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.dropdown-submenu-menu .dropdown-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 18px;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}

.dropdown-submenu-menu .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 24px;
}

.footersticky {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.member-directory-section {
  padding: 60px 0;
  background: #ffffff;
  color: #061232;
  font-family: "Work Sans", sans-serif;
}

.container {
  /* max-width: 1200px; */
  margin: auto;
  padding: 0 20px;
}

.member-directory-section h1 {
  font-size: 34px;
  color: #003b78;
  margin-bottom: 20px;
}

.intro {
  font-size: 17px;
  margin-bottom: 15px;
}

.benefits-list {
  margin-bottom: 35px;
  padding-left: 22px;
}

.benefits-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.member-directory-section h2 {
  font-size: 26px;
  color: #003b78;
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
}

.members-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.members-table th {
  background: #003b78;
  color: #fff;
  padding: 14px;
  text-align: left;
  font-size: 15px;
}

.members-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  vertical-align: top;
}

.members-table tr:hover {
  background: #f4f8ff;
}

.members-table a {
  color: #c62846;
  text-decoration: none;
}

.members-table a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .member-directory-section h1 {
    font-size: 28px;
  }

  .members-table th,
  .members-table td {
    font-size: 14px;
    padding: 10px;
  }
}

.fade-up h2 {
  color: #003b78;
}




.gap-4 {
  gap: 1rem;
}
.list-none {
  list-style-type: none;
}

.inline-flex {
  display: inline-flex;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-underline {
  text-decoration-line: none;
}

.text-primary-900 {
  color: #002f65;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.bg-white {
  color: #002f65;
}
.rounded-full {
  border-radius: 9999px;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.w-8 {
  width: 2rem;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.flex {
  display: flex;
}

a {
  color: inherit;
  text-decoration: inherit;
}


.btn-sec {
  /* background: var(--primary); */
  color: #fff;
  border: 1px solid var(--navy);
  border-radius: 10px;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 8px 8px;
  transition: background 0.2s;
}
.btn-sec:hover {
  background: var(--navy);
  color: #fff !important;
}

/* Carousel Images Styles */

  .hc-carousel {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    isolation: isolate; /* creates a fresh stacking context so nothing from the rest of the page can sit on top */
  }
 
  .hc-slides {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
 
  .hc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
 
  .hc-slide.hc-active {
    opacity: 1;
  }
 
  .hc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,20,50,0.55) 0%, rgba(10,20,50,0.75) 100%);
    z-index: 1;
    pointer-events: none;
  }
 
  .hc-content {
    position: absolute;
    /* inset: 0; */
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    color: #fff !important;
    padding: 0 20px;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 90px;
    left: 100px;
  }
 
  .hc-content .hc-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    text-align: left;
    color: #fff !important;
  }
 
  .hc-content .hc-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 28px;
    opacity: 0.95;
    color: #fff !important;
  }
 
  .hc-btn {
    background: #c8102e;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 6px;
    transition: background 0.25s ease;
    width: 185px;
  }
 
  .hc-btn:hover {
    background: #a10d25;
  }
 
  .hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
  }
 
  .hc-arrow:hover {
    background: rgba(255,255,255,0.3);
  }
 
  .hc-prev { left: 24px; }
  .hc-next { right: 24px; }
 
  .hc-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    gap: 10px;
  }
 
  .hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
 
  .hc-dot.hc-active {
    background: #c8102e;
    transform: scale(1.2);
  }
 
  @media (max-width: 768px) {
    .hc-carousel { height: 420px; }
    .hc-content .hc-title { font-size: 20px; }
    .hc-content .hc-subtitle { font-size: 15px; margin-bottom: 10px; text-align: left; }
    .hc-arrow { width: 38px; height: 38px; font-size: 16px; }

    .hc-content {
    position: absolute;
    /* inset: 0; */
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    color: #fff !important;
    padding: 0 20px;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: 10px;
    left: 0px;
  }
  .hc-dots {
    display: none;
  }

}


  .cm-page {
    --cm-navy: #0a1e4d;
    --cm-navy-deep: #071433;
    --cm-red: #c8102e;
    --cm-gold: #b08d57;
    --cm-bg: #f6f7fa;
    --cm-ink: #1c2333;
    --cm-muted: #5b6373;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--cm-bg);
    isolation: isolate;
  }
 
  /* ---------- Banner ---------- */
  .cm-banner {
    position: relative;
    background: linear-gradient(135deg, var(--cm-navy-deep) 0%, var(--cm-navy) 55%, #142c66 100%);
    padding: 84px 24px 96px;
    text-align: center;
    overflow: hidden;
  }
 
  .cm-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    animation: cmRise 0.8s ease forwards;
  }
 
  .cm-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cm-gold);
    margin-bottom: 14px;
  }
 
  .cm-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
  }
 
  .cm-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin: 0;
  }
 
  /* decorative ring motif — nods to an optical/medallion form without being literal */
  .cm-banner-ring {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    top: -260px;
    right: -160px;
    z-index: 1;
  }
  .cm-banner-ring::before {
    content: "";
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(176,141,87,0.18);
  }
 
  @keyframes cmRise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ---------- Grid ---------- */
  .cm-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 32px;
  }
 
  .cm-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(10,30,77,0.08);
    border: 1px solid rgba(10,30,77,0.06);
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
 
    opacity: 0;
    transform: translateY(22px);
  }
 
  .cm-card.cm-in-view {
    animation: cmCardIn 0.6s cubic-bezier(.22,.61,.36,1) forwards;
  }
 
  @keyframes cmCardIn {
    to { opacity: 1; transform: translateY(0); }
  }
 
  .cm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(10,30,77,0.14);
    border-color: rgba(176,141,87,0.35);
  }
 
  .cm-photo {
    width: 112px;
    height: 112px;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cm-navy) 0%, #1d3a80 100%);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(176,141,87,0.4);
    overflow: hidden;
    transition: box-shadow 0.35s ease;
  }
 
  .cm-card:hover .cm-photo {
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--cm-gold);
  }
 
  .cm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .cm-initials {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
  }
 
  .cm-name {
    font-family: "Work Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--cm-ink);
    margin: 0 0 6px;
    line-height: 1.3;
  }
 
  .cm-affil {
    font-size: 13.5px;
    color: var(--cm-muted);
    margin: 0 0 18px;
    line-height: 1.5;
  }
 
  .cm-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cm-red);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, gap 0.25s ease;
  }
 
  .cm-link:hover {
    border-color: var(--cm-red);
    gap: 9px;
  }
 
  .cm-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
 
  /* ---------- Responsive ---------- */
  @media (max-width: 640px) {
    .cm-banner { padding: 64px 20px 76px; }
    .cm-title { font-size: 32px; }
    .cm-subtitle { font-size: 14.5px; }
    .cm-grid { gap: 24px; padding: 48px 20px 72px; }
  }
 
  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    .cm-banner-inner,
    .cm-card {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    .cm-card:hover { transform: none; }
  }
 
  /* ---------- Keyboard focus ---------- */
  .cm-link:focus-visible,
  .cm-card:focus-visible {
    outline: 2px solid var(--cm-red);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* Previous Oration Awardess */

    .oa-page {
    --oa-navy: #0a1e4d;
    --oa-navy-deep: #071433;
    --oa-red: #c8102e;
    --oa-gold: #b08d57;
    --oa-bg: #f6f7fa;
    --oa-ink: #1c2333;
    --oa-muted: #5b6373;
    --oa-rule: #dfe3ec;
    font-family: "Work Sans", sans-serif;
    background: var(--oa-bg);
    isolation: isolate;
  }
 
  /* ---------- Banner ---------- */
  .oa-banner {
    background: linear-gradient(135deg, var(--oa-navy-deep) 0%, var(--oa-navy) 55%, #142c66 100%);
    padding: 84px 24px 88px;
    text-align: center;
  }
 
  .oa-banner-inner {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    animation: oaRise 0.8s ease forwards;
  }
 
  .oa-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--oa-gold);
    margin-bottom: 14px;
  }
 
  .oa-title {
    font-family: "Work Sans", sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
  }
 
  .oa-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin: 0;
  }
 
  @keyframes oaRise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ---------- Timeline ---------- */
  .oa-timeline {
    max-width: 920px;
    margin: 0 auto;
    padding: 72px 24px 100px;
  }
 
  .oa-year-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    position: relative;
  }
 
  .oa-year-group + .oa-year-group {
    margin-top: 12px;
  }
 
  .oa-year-col {
    position: relative;
  }
 
  .oa-year {
    position: sticky;
    top: 32px;
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--oa-navy);
    padding-top: 6px;
  }
 
  /* running vertical rule, drawn per year-group */
  .oa-year-col::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: -12px;
    left: 4px;
    width: 2px;
    background: var(--oa-rule);
  }
 
  .oa-year-group:last-child .oa-year-col::before {
    display: none;
  }
 
  .oa-entries {
    display: flex;
    flex-direction: column;
  }
 
  .oa-entry {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--oa-rule);
 
    opacity: 0;
    transform: translateX(18px);
  }
 
  .oa-entry.oa-in-view {
    animation: oaEntryIn 0.55s cubic-bezier(.22,.61,.36,1) forwards;
  }
 
  @keyframes oaEntryIn {
    to { opacity: 1; transform: translateX(0); }
  }
 
  .oa-entries .oa-entry:first-child {
    padding-top: 2px;
  }
 
  .oa-entries .oa-entry:last-child {
    border-bottom: none;
  }
 
  .oa-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--oa-navy) 0%, #1d3a80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(176,141,87,0.35);
  }
 
  .oa-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .oa-initials {
    font-family: "Work Sans", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
  }
 
  .oa-oration {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--oa-red);
    margin-bottom: 6px;
  }
 
  .oa-name {
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--oa-ink);
    margin: 0 0 6px;
    line-height: 1.3;
  }
 
  .oa-affil {
    font-size: 16px;
    line-height: 1.6;
    color: var(--oa-muted);
    margin: 0 0 8px;
    max-width: 60ch;
  }
 
  .oa-email {
    font-size: 16px;
    font-weight: 600;
    color: var(--oa-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
 
  .oa-email:hover {
    color: var(--oa-red);
    border-color: var(--oa-red);
  }
 
  /* ---------- Responsive ---------- */
  @media (max-width: 700px) {
    .oa-year-group {
      grid-template-columns: 1fr;
      gap: 4px;
    }
    .oa-year-col::before { display: none; }
    .oa-year {
      position: static;
      font-size: 24px;
      padding: 0 0 8px;
    }
    .oa-entry {
      grid-template-columns: 56px 1fr;
      gap: 16px;
      padding: 20px 0;
      display: block;
    }
    .oa-photo { width: 56px; height: 56px; margin-bottom: 20px;}
    .oa-title { font-size: 32px; }
    .oa-subtitle { font-size: 14.5px; }
  }
 
  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    .oa-banner-inner,
    .oa-entry {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
 
  /* ---------- Keyboard focus ---------- */
  .oa-email:focus-visible {
    outline: 2px solid var(--oa-red);
    outline-offset: 3px;
    border-radius: 4px;
  }