:root {
  --blue: #2e78b8;
  --red: #d97a45;
  --blue-mid: #3f8ccc;
  --blue-lt: #75acd8;
  --blue-dk: #235c90;
  --red-dk: #b96538;
  --white: #ffffff;
  --off: #f4f8fc;
  --cream: #fcf5ee;
  --text: #223548;
  --muted: #62778b;
  --border: #d4e0ea;
  --accent-soft: #f1c7ad;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--off);
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* Custom scrollbar aligned with the site palette */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--off), var(--cream));
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dk));
  border-radius: 999px;
  border: 2px solid var(--off);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-mid), var(--blue-dk));
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Merriweather', serif;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--blue-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-spin {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-spin::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--red);
  border-right-color: rgba(185, 101, 56, 0.34);
  animation: lspin 1s linear infinite;
}

.ld-spin::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.25);
  border-left-color: rgba(255, 255, 255, 0.12);
  animation: lspin 1.7s linear infinite reverse;
}

@keyframes lspin {
  to {
    transform: rotate(360deg);
  }
}

.ld-img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 4px;
  position: relative;
  z-index: 1;
  animation: lpulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(185, 101, 56, 0.42);
}

@keyframes lpulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(185, 101, 56, 0.34);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 46px rgba(185, 101, 56, 0.55);
  }
}

.ld-name {
  text-align: center;
  color: var(--white);
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.ld-name small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 0.3rem;
}

.ld-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.ld-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e4ad85);
  border-radius: 99px;
  animation: lfill 1.9s ease-out forwards;
}

@keyframes lfill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.topbar {
  background: var(--blue-dk);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.topbar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--white);
}

.sep {
  margin: 0 0.6rem;
  opacity: 0.3;
}

.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.14);
}

.nav-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--red);
  flex-shrink: 0;
}

.brand-title {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blue);
}

.brand-title span {
  color: var(--red);
}

.brand-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--text) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.2s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--red) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-enroll {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s;
}

.btn-enroll:hover {
  background: var(--red-dk) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link.btn-enroll:hover {
  color: var(--white) !important;
}

.btn-enroll::after {
  display: none !important;
}

.hero {
  min-height: 91vh;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(160deg, var(--red-dk), var(--red));
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--accent-soft);
  font-style: normal;
}

.hero h1 .hero-h1-join {
  color: var(--white);
  font-style: normal;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn-hw {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hw:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-ho {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 0.85rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ho:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hstat-num {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent-soft);
  display: block;
  line-height: 1;
}

.hstat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.sc {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  transition: all 0.3s;
}

.sc:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.15);
}

.sc-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sc h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sc p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.ticker {
  background: linear-gradient(90deg, var(--red-dk), var(--red));
  overflow: hidden;
  padding: 0.55rem 0;
}

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

section {
  padding: 5rem 0;
}

.sec-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.sec-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.sec-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 0.75rem 0;
}

.divider.mx-auto {
  margin: 0.75rem auto;
}

.about-sec {
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.about-mirror-row {
  align-items: stretch;
}

.about-col-visual {
  display: flex;
  flex-direction: column;
}

.about-ph {
  flex: 1 1 auto;
  min-height: 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--blue);
}

.about-ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-ph-caption {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(53, 80, 107, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  line-height: 1.3;
}

.about-pill {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(53, 80, 107, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: calc(100% - 2.5rem);
}

.pill-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.pill-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.25;
}

.pill-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.65px;
}

.val-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.val-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(214, 138, 58, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.15rem;
}

.val-text h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.val-text p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.val-text p + p {
  margin-top: 0.65rem;
}

/* Who We Are: uniform paragraph measure and alignment */
.about-sec .about-lead,
.about-sec .val-text p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  hyphens: none;
  overflow-wrap: break-word;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.8;
}

.about-sec .about-lead {
  margin-bottom: 1.5rem;
}

.prog-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.3s;
  background: var(--white);
}

.prog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(53, 80, 107, 0.12);
  border-color: var(--blue);
}

.ph {
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.ph::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--white), transparent);
}

.ph1 {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
}

.ph2 {
  background: linear-gradient(135deg, #2c6ea8, var(--blue-mid));
}

.ph3 {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
}

.ph4 {
  background: linear-gradient(135deg, #28669e, var(--blue));
}

.ph5 {
  background: linear-gradient(135deg, #a95f36, #d5834b);
}

.ph6 {
  background: linear-gradient(135deg, var(--blue-mid), #3479b3);
}

.prog-body {
  padding: 1.4rem;
}

.prog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(53, 80, 107, 0.07);
  color: var(--blue);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.6rem;
  transition: all 0.3s;
}

.prog-card:hover .prog-tag {
  background: rgba(214, 138, 58, 0.12);
  color: var(--red);
}

.prog-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.prog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.prog-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.prog-feats li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.prog-feats li i {
  color: var(--red);
  font-size: 0.72rem;
}

.btn-prog {
  display: block;
  text-align: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  border-radius: 8px;
  padding: 0.55rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-prog:hover {
  background: var(--blue);
  color: var(--white);
}

.stats-band {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid) 60%, var(--blue-lt));
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(160deg, var(--red-dk), var(--red));
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sbox {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.sbox .snum {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.sbox .slbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.4rem;
  display: block;
}

.why-sec {
  background: var(--off);
}

.why-card {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 32px rgba(185, 101, 56, 0.16);
}

.wi {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.wi-b {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
}

.wi-r {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
}

.why-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.adm-sec {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.adm-sec::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.step-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

.step-tile:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  border-radius: 20px;
  padding: 0.2rem 0.85rem;
  letter-spacing: 0.5px;
}

.step-tile h5 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0.4rem 0 0.5rem;
}

.step-tile p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.doc-list {
  list-style: none;
  padding: 0;
}

.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.doc-list li i {
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.sched-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.sched-row i {
  color: var(--accent-soft);
}

.news-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.3s;
  background: var(--white);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(53, 80, 107, 0.1);
}

.news-img {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.ni1 {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
}

.ni2 {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
}

.ni3 {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-lt));
}

.news-body {
  padding: 1.4rem;
}

.news-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.news-body h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.news-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.news-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-photo-badge {
  position: absolute;
  bottom: .55rem;
  right: .55rem;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.news-thumbs {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: var(--off, #f5f7fa);
}

.news-thumbs img {
  flex: 1;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.news-thumbs img:hover {
  opacity: .82;
  transform: scale(1.04);
}

.contact-sec {
  background: var(--cream);
}

.c-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.ci-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.ci-text label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.ci-text p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 95, 134, 0.16);
  outline: none;
}

.form-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.btn-send {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.25s;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 101, 56, 0.34);
}

.social-a {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-a:hover {
  background: var(--red);
}

footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
  border-top: 4px solid var(--red);
}

.foot-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.foot-title {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
}

.foot-title span {
  color: var(--accent-soft);
}

.foot-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.foot-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 0.9rem;
  max-width: 270px;
}

.foot-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.foot-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}

.foot-socials a:hover {
  background: var(--red);
  color: var(--white);
}

.foot-col h6 {
  font-family: 'Merriweather', serif;
  color: var(--white);
  font-size: 0.9rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.flinks {
  list-style: none;
  padding: 0;
}

.flinks li {
  margin-bottom: 0.5rem;
}

.flinks a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
}

.flinks a:hover {
  color: var(--accent-soft);
}

.flinks a i {
  font-size: 0.65rem;
  color: var(--accent-soft);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══ COUNTDOWN TIMER ═══ */
.countdown-sec {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue) 60%, var(--blue-mid));
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}

.countdown-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.countdown-sec .sec-label {
  color: var(--accent-soft);
}

.countdown-sec .sec-title,
.countdown-sec .sec-sub {
  color: var(--white);
}

.countdown-sec .sec-sub {
  color: rgba(255, 255, 255, .7);
}

.countdown-sec .divider {
  background: var(--red);
}

.cd-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.cd-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 110px;
  transition: all 0.3s;
}

.cd-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.cd-num {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-soft);
  display: block;
  line-height: 1;
}

.cd-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.35rem;
  display: block;
}

/* ═══ GALLERY ═══ */
.gallery-sec {
  background: var(--off);
}

.gal-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gal-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}

.gal-btn:hover,
.gal-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gal-item {
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  position: relative;
  cursor: pointer;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.6);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.gal-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.gal-item:hover::after {
  opacity: 1;
}

.gal-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gal-item:hover .gal-caption {
  opacity: 1;
  transform: translateY(0);
}

.gal-item-photo {
  background: var(--blue-dk);
  padding: 0;
}

.gal-item-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gal-item-photo > .gal-caption {
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .gal-item-photo .gal-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

.gal-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
}

.gal-pager-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.25s;
}

.gal-pager-btn:hover:not(:disabled) {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.gal-pager-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gal-page-info {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  min-width: 7rem;
  text-align: center;
}

.gi1 {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
}

.gi2 {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
}

.gi4 {
  background: linear-gradient(135deg, #28669e, var(--blue));
}

.gi5 {
  background: linear-gradient(135deg, #a95f36, #d5834b);
}

.gi7 {
  background: linear-gradient(135deg, var(--red), #e4ad85);
}

.gi8 {
  background: linear-gradient(135deg, var(--blue), #28669e);
}

/* ═══ ACADEMIC CALENDAR ═══ */
.cal-sec {
  background: var(--white);
}

.cal-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.cal-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--red));
  border-radius: 3px;
}

.cal-item {
  position: relative;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}

.cal-item:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(53, 80, 107, 0.1);
  transform: translateX(6px);
}

.cal-item::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.cal-month {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(214, 138, 58, 0.12);
  color: var(--red);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.4rem;
}

.cal-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.cal-item p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ═══ FACULTY ═══ */
.faculty-sec {
  background: var(--cream);
}

/* ═══ ORG CHART ═══ */
.org-tree-wrap {
  overflow-x: auto;
  padding: 1rem 0 2rem;
  text-align: center;
}

.org-tree,
.org-tree ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.org-tree {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: max-content;
}

.org-tree > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Children group (ul) ── */
.org-tree li > ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  padding-top: 30px;
}

/* Vertical line: parent card → horizontal bar */
.org-tree li > ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: var(--blue);
  opacity: 0.45;
}

/* ── Each child item (li) ── */
.org-tree li > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 30px 8px 0;
}

/* Vertical line: horizontal bar → child card */
.org-tree li > ul > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: var(--blue);
  opacity: 0.45;
}

/* Horizontal bar segment above each child */
.org-tree li > ul > li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0.45;
}

/* First child: bar starts at center → right */
.org-tree li > ul > li:first-child::after { left: 50%; }
/* Last child: bar starts at left → center */
.org-tree li > ul > li:last-child::after  { right: 50%; }
/* Only child: no horizontal bar, no vertical connector-up */
.org-tree li > ul > li:only-child::after  { display: none; }
.org-tree li > ul > li:only-child::before { left: 50%; transform: translateX(-50%); }

/* ── Node cards ── */
.org-card {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 1rem 0.9rem 0.85rem;
  text-align: center;
  width: 155px;
  transition: all 0.32s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.org-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(53, 80, 107, 0.14);
  border-color: var(--red);
}

.org-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.org-role {
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 600;
  display: block;
}

/* Root card */
.org-card-root {
  width: 210px;
  padding: 1.6rem 1.4rem 1.3rem;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 32px rgba(46, 120, 184, 0.15);
  background: linear-gradient(180deg, rgba(46,120,184,0.04) 0%, var(--white) 100%);
}

.org-card-root strong {
  font-size: 1rem;
}

/* VP-level cards */
.org-card-vp {
  width: 175px;
  padding: 1.2rem 1rem 1rem;
  border-color: rgba(46,120,184,0.4);
}

/* Avatars */
.org-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.org-card:hover .org-avatar {
  transform: scale(1.08);
}

.org-avatar-lg {
  width: 74px;
  height: 74px;
  font-size: 1.85rem;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 20px rgba(46,120,184,0.22);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .org-tree li > ul {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .org-tree li > ul::before { display: none; }
  .org-tree li > ul > li {
    padding: 12px 0 0;
  }
  .org-tree li > ul > li::before,
  .org-tree li > ul > li::after { display: none; }
  .org-card { width: 220px; }
  .org-card-root,
  .org-card-vp { width: 240px; }
}

/* ── Interactive Org Chart UI ── */
.iorg-container { position: relative; }

.iorg-tabs-wrap {
  overflow-x: auto;
  padding-bottom: .5rem;
  margin-bottom: 1.75rem;
  scrollbar-width: none;
}
.iorg-tabs-wrap::-webkit-scrollbar { display: none; }

.iorg-tabs {
  display: flex;
  gap: .45rem;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}

.iorg-tab {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.iorg-tab:hover { border-color: var(--blue); background: rgba(46,120,184,.06); }
.iorg-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

.iorg-tree-wrap {
  overflow-x: auto;
  padding: .5rem 3rem 2.5rem;
  text-align: center;
  min-height: 260px;
}

/* ── Node cards ── */
.iorg-card {
  background: var(--white);
  border-radius: 13px;
  border: 1.5px solid var(--border);
  padding: .9rem .85rem .8rem;
  text-align: center;
  width: 158px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  user-select: none;
}
.iorg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(53,80,107,.15);
  border-color: var(--red);
}
.iorg-card strong {
  display: block;
  font-size: .79rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .18rem;
}
.iorg-dtag {
  display: inline-block;
  font-size: .6rem;
  background: rgba(46,120,184,.09);
  color: var(--blue);
  border-radius: 4px;
  padding: .07rem .32rem;
  margin-top: .22rem;
  font-weight: 500;
}
.iorg-card-root {
  width: 205px;
  padding: 1.45rem 1.2rem 1.15rem;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 30px rgba(46,120,184,.14);
  background: linear-gradient(180deg,rgba(46,120,184,.05) 0%,var(--white) 100%);
}
.iorg-card-root strong { font-size: .98rem; }
.iorg-card-vp { width: 178px; border-color: rgba(46,120,184,.38); padding: 1.15rem 1rem 1rem; }
.iorg-card-vp strong { font-size: .85rem; }

.iorg-av {
  width: 50px; height: 50px;
  border-radius: 50%;
  margin: 0 auto .62rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
  transition: transform .28s;
}
.iorg-card:hover .iorg-av { transform: scale(1.08); }
.iorg-card-root .iorg-av { width: 70px; height: 70px; font-size: 1.8rem; }
.iorg-card-vp .iorg-av  { width: 56px; height: 56px; font-size: 1.45rem; }

.iorg-ini {
  width: 38px; height: 38px;
  border-radius: 50%;
  margin: 0 auto .55rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: var(--white);
  background: linear-gradient(135deg,var(--blue),var(--blue-mid,#5191c8));
}

.iorg-badge {
  position: absolute;
  top: -7px; right: -7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  pointer-events: none;
}

/* ── Workday Focus Overlay ── */
.iorg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,30,48,.48);
  z-index: 1060;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(2px);
  animation: iorgFadeIn .18s ease;
}
.iorg-overlay.active { display: flex; }

@keyframes iorgFadeIn { from { opacity: 0; } to { opacity: 1; } }

.iorg-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem 1.75rem 1.75rem;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  animation: iorgSlideUp .22s cubic-bezier(.4,0,.2,1);
}
@keyframes iorgSlideUp { from { transform: translateY(22px); opacity: 0; } to { transform: none; opacity: 1; } }

.iorg-pclose {
  position: absolute; top: 1rem; right: 1.1rem;
  background: none; border: none;
  font-size: 1.65rem; line-height: 1;
  color: var(--muted); cursor: pointer;
  transition: color .2s, transform .2s;
}
.iorg-pclose:hover { color: var(--red); transform: scale(1.15); }

.iorg-flbl {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  text-align: center;
  margin: .55rem 0 .45rem;
}
.iorg-frow { display: flex; justify-content: center; }
.iorg-vline {
  width: 2px; height: 26px;
  background: var(--blue); opacity: .35;
  margin: 0 auto;
  border-radius: 2px;
}

/* Panel card variants */
.iorg-manager {
  width: 210px;
  background: rgba(46,120,184,.04);
  border-color: var(--blue);
}
.iorg-self {
  width: 230px;
  border: 2.5px solid var(--blue);
  box-shadow: 0 6px 24px rgba(46,120,184,.18);
}
.iorg-report { width: 148px; }

.iorg-reports {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: .35rem;
}

/* ── Dept Banner ── */
.iorg-dept-banner {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--dc, #2e78b8);
  color: #fff;
  border-radius: 12px;
  padding: .85rem 1.1rem;
  margin-bottom: 1.4rem;
}
.iorg-dept-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.iorg-dept-label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .82;
}
.iorg-dept-name {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Reporting Chain ── */
.iorg-chain {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1.5px solid var(--border);
}
.iorg-chain-lbl {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: .55rem;
}
.iorg-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .2rem;
}
.iorg-crumb {
  font-size: .74rem;
  color: var(--blue);
  background: rgba(46,120,184,.08);
  border-radius: 5px;
  padding: .18rem .48rem;
  font-weight: 500;
  transition: background .18s, color .18s;
}
.iorg-crumb:hover { background: rgba(46,120,184,.18); }
.iorg-crumb-cur {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.iorg-crumb-cur:hover { background: var(--blue); }
.iorg-csep {
  color: var(--muted);
  font-size: .6rem;
  opacity: .7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .iorg-tabs { justify-content: flex-start; }
  .iorg-tree-wrap { padding: .5rem .5rem 2rem; }
}
@media (max-width: 575px) {
  .iorg-panel { padding: 1.75rem 1.1rem 1.25rem; border-radius: 14px; }
  .iorg-self { width: 100%; }
  .iorg-manager { width: 100%; }
}

/* ═══ TESTIMONIALS ═══ */
.testi-sec {
  background: var(--off);
}

.testi-card {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 36px rgba(53, 80, 107, 0.1);
  transform: translateY(-5px);
}

.testi-quote-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.testi-card blockquote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
  display: block;
}

.testi-info {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ═══ SCHOLARSHIPS ═══ */
.schol-sec {
  background: var(--white);
}

.schol-card {
  background: var(--off);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.3s;
}

.schol-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 32px rgba(185, 101, 56, 0.12);
  transform: translateY(-5px);
}

.schol-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.schol-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.schol-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.schol-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(214, 138, 58, 0.12);
  color: var(--red);
  border-radius: 20px;
  padding: 0.18rem 0.65rem;
  margin-top: 0.75rem;
}

/* ═══ FAQ ═══ */
.faq-sec {
  background: var(--cream);
}

.faq-sec .accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-sec .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-sec .accordion-button {
  font-family: 'Merriweather', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue);
  padding: 1.1rem 1.5rem;
  background: var(--white);
  box-shadow: none !important;
  border-radius: 14px !important;
}

.faq-sec .accordion-button:not(.collapsed) {
  background: rgba(214, 138, 58, 0.06);
  color: var(--red);
}

.faq-sec .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d97a45' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-sec .accordion-body {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  padding: 0 1.5rem 1.25rem;
}

/* ═══ PARTNERS ═══ */
.partner-sec {
  background: var(--off);
  padding: 3.5rem 0;
}

.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.partner-logo {
  width: 100px;
  height: 70px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.3s;
}

.partner-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(53, 80, 107, 0.1);
  transform: translateY(-3px);
}

/* ═══ MAP ═══ */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

/* ═══ NEWSLETTER ═══ */
.newsletter-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 0.5rem;
}

.newsletter-box h6 {
  font-family: 'Merriweather', serif;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.newsletter-box p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.nl-form {
  display: flex;
  gap: 0.5rem;
}

.nl-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.nl-form input:focus {
  border-color: var(--accent-soft);
}

.nl-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.nl-form button:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
}

/* ═══ BACK TO TOP ═══ */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s;
  box-shadow: 0 6px 20px rgba(185, 101, 56, 0.35);
}

.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(185, 101, 56, 0.5);
}

/* ═══ GET DIRECTION BUTTON ═══ */
.btn-direction {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(185, 101, 56, 0.25);
}

.btn-direction:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(185, 101, 56, 0.4);
  color: var(--white);
}

.btn-direction-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 0.25rem;
}

.btn-direction-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(185, 101, 56, 0.35);
  color: var(--white);
}

/* ═══ PROGRAM MODALS ═══ */
.prog-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.prog-modal-header {
  border: none;
  padding: 1.75rem 2rem;
  align-items: flex-start;
}

.prog-modal-header .modal-title {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
}

.prog-modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.prog-modal .modal-body {
  padding: 2rem;
}

.prog-modal .modal-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.prog-modal-sub {
  font-family: 'Merriweather', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.prog-modal-sub i {
  color: var(--red);
}

.prog-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  columns: 2;
}

.prog-modal-list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.prog-modal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
}

.prog-modal-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .prog-modal-list {
    columns: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.65s ease forwards;
}

.d1 {
  animation-delay: 0.12s;
  opacity: 0;
}

.d2 {
  animation-delay: 0.27s;
  opacity: 0;
}

.d3 {
  animation-delay: 0.42s;
  opacity: 0;
}

.d4 {
  animation-delay: 0.57s;
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero::before {
    width: 0;
  }

  .hero-side {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hstat-num {
    font-size: 1.5rem;
  }

  .cd-num {
    font-size: 2rem;
  }

  .cd-box {
    padding: 1rem 1.25rem;
    min-width: 80px;
  }

  .gal-grid {
    grid-template-columns: 1fr;
  }

  .cal-timeline {
    padding-left: 2rem;
  }

  .nl-form {
    flex-direction: column;
  }

  .partner-logo {
    width: 80px;
    height: 56px;
    font-size: 0.6rem;
  }
}

/* ═══ CHATBOT WIDGET ═══ */
.chatbot {
  position: fixed;
  bottom: 155px;
  right: 20px;
  width: 340px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1040;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cb-header {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-header-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cb-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cb-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.cb-status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cb-status i {
  font-size: 0.5rem;
  color: #4ade80;
}

.cb-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.8;
  transition: 0.2s;
  cursor: pointer;
}

.cb-close:hover {
  opacity: 1;
}

.cb-messages {
  height: 320px;
  padding: 1rem;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cb-msg {
  max-width: 85%;
  animation: cbFadeIn 0.3s ease;
}

.cb-bot {
  align-self: flex-start;
}

.cb-user {
  align-self: flex-end;
}

.cb-bubble {
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cb-bot .cb-bubble {
  background: #fff;
  color: var(--dark);
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
}

.cb-user .cb-bubble {
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.cb-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cb-suggestions button {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}

.cb-suggestions button:hover {
  background: var(--red);
  color: var(--white);
}

.cb-input {
  display: flex;
  padding: 0.8rem;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  gap: 0.5rem;
}

.cb-input input {
  flex-grow: 1;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
}

.cb-input input:focus {
  border-color: var(--blue);
}

.cb-input button {
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.cb-input button:hover {
  background: var(--blue-dk);
  transform: scale(1.05);
}

.cb-toggle {
  position: fixed;
  bottom: 95px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1050;
  transition: background 0.2s, box-shadow 0.2s;
}

.cb-toggle:hover {
  background: var(--blue-dk);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cb-badge {
  display: none;
}

@keyframes cbFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}