:root {
  --bg: #f3f7fc;
  --bg-soft: #eef4fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #0f172a;
  --muted: #4a5a73;
  --line: #d9e6f4;
  --blue-1: #0c4d8a;
  --blue-2: #1f7dd6;
  --blue-3: #67b7ff;
  --sky: #dff1ff;
  --shadow-sm: 0 6px 18px rgba(15, 55, 92, 0.08);
  --shadow-md: 0 20px 36px rgba(14, 43, 73, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Section Gaps */
  --section-gap: 1rem;

  /* Card Radii & Colors */
  --radius-card: 32px;
  --radius-gallery: 28px;
  --color-mission: #0f4d8a;
  --color-vision: #b45309;
  --color-mission-bg: rgba(15, 77, 138, 0.06);
  --color-vision-bg: rgba(180, 83, 9, 0.06);

  /* Responsive Font Sizes (6 Levels) */
  --font-size-1: clamp(2.5rem, 6.5vw, 4.8rem);
  /* Service and Friendship since 1941 */
  --font-size-2: 2.2rem;
  --font-size-3: 1.5rem;
  --font-size-4: 1.05rem;
  --font-size-5: 0.94rem;
  --font-size-6: 0.78rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(1200px 500px at 100% -20%, rgba(101, 177, 255, 0.35), transparent 60%),
    radial-gradient(1200px 600px at -10% 0%, rgba(164, 216, 255, 0.45), transparent 58%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 38%, #f4f8fd 100%);
}

#liquid-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.45;
  pointer-events: none;
}

.background-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image: radial-gradient(rgba(12, 77, 138, 0.35) 0.65px, transparent 0.65px);
  background-size: 3px 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: all 0.28s var(--ease);
}

.site-header.scrolled {
  background: rgba(244, 249, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(177, 206, 233, 0.45);
}

.nav-shell {
  margin-top: 14px;
  margin-bottom: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(180, 209, 235, 0.7);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-badge {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #123f6d;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #c7e8ff 52%, #83c6ff 100%);
  position: relative;
}

.brand-badge::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 2px dashed rgba(12, 77, 138, 0.7);
  animation: spin 8s linear infinite;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5d6f88;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: #4a6484;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.24s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f3f6f;
  background: linear-gradient(110deg, #e5f2ff, #f8fcff);
  box-shadow: inset 0 0 0 1px #cae2f8;
}

.menu-btn {
  display: none;
  border: 1px solid #c9ddf0;
  background: #fff;
  color: #163d66;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  padding: 42px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.glass {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(194, 219, 241, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.hero-panel {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 255, 0.84)),
    radial-gradient(circle at 92% -20%, rgba(61, 148, 236, 0.24), transparent 40%);
}

.kicker {
  margin: 0;
  color: #2b6db0;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 20px;
  color: #4b5f7b;
  max-width: 64ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition: all 0.24s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-1));
  box-shadow: 0 12px 24px rgba(28, 102, 176, 0.28);
}

.btn-ghost {
  border-color: #c5dff5;
  color: #17436f;
  background: #f8fcff;
}

.orb-wrap {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(6, 44, 81, 0.9), rgba(9, 76, 132, 0.76) 35%, rgba(2, 29, 55, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(72, 162, 255, 0.5), transparent 35%);
}

.orb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 14%, transparent 14% 22%);
}

.orb {
  position: absolute;
  width: 78%;
  height: 66%;
  right: -4%;
  top: 18%;
  border-radius: 160px;
  transform: rotate(-8deg);
  background:
    linear-gradient(120deg, rgba(255, 132, 43, 0.6), rgba(255, 52, 52, 0.3) 28%, rgba(37, 122, 217, 0.45) 58%, rgba(255, 255, 255, 0.12));
  filter: blur(18px);
  animation: streak 6s ease-in-out infinite;
}

.orb::before {
  content: "";
  position: absolute;
  inset: -20% 8% 12% -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.55), transparent 56%);
}

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

@keyframes streak {

  0%,
  100% {
    transform: translateX(0) rotate(-8deg);
  }

  50% {
    transform: translateX(-18px) rotate(-6deg);
  }
}

.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
}

.stat {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(165deg, #f9fcff, #eaf4fe);
  border: 1px solid #cbe2f6;
}

.stat h3 {
  margin: 0 0 4px;
  color: #0d477b;
  font-size: 1.35rem;
}

.stat p {
  margin: 0;
  color: #507093;
  font-size: 0.85rem;
}

.section {
  padding: 18px 0 28px;
}

.section-head {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.section h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.section p.section-lead {
  margin: 6px 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(19, 68, 114, 0.14);
  border-color: #b7d7f4;
}

.card h3,
.card h4 {
  margin: 8px 0;
}

.card p {
  margin: 0;
  color: #536782;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 10px;
  background: #e8f4ff;
  border: 1px solid #c9e4ff;
  color: #1e5f98;
  font-size: 0.75rem;
  font-weight: 700;
}

.chips {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #cde1f3;
  background: #fff;
  color: #446488;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.chip.active {
  background: linear-gradient(120deg, #e7f4ff, #d9eeff);
  color: #0f4f89;
  border-color: #92c8f5;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(#97ccfa, #2277c8);
}

.timeline-item {
  position: relative;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2b82d5;
  box-shadow: 0 0 0 3px #d8ebfb;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form {
  display: grid;
  gap: 10px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #cbdeef;
  border-radius: 12px;
  padding: 11px 12px;
  background: #fafdff;
  color: #113c66;
  font: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #7691af;
}

footer {
  margin-top: 26px;
  padding: 16px 0 30px;
}

footer .foot-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid #d5e5f4;
  background: #fff;
  color: #527090;
  padding: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.45s var(--ease);
}

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

.hide {
  display: none !important;
}

@media (max-width: 1060px) {}

@media (max-width: 760px) {

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

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orb-wrap {
    min-height: 260px;
  }

  .container {
    width: min(var(--container), 94%);
  }

  .nav-shell {
    border-radius: 16px;
  }

  .menu-btn {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 3%;
    right: 3%;
    top: 74px;
    z-index: 300;
    background: #fff;
    border: 1px solid #cde2f5;
    box-shadow: var(--shadow-md);
    border-radius: 14px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .cards,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .orb-wrap {
    min-height: 210px;
  }

  footer .foot-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Landing page layout inspired by the user's reference image. */
.landing-page {
  background:
    radial-gradient(1200px 500px at 0% -10%, rgba(127, 198, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

.landing-page #liquid-canvas,
.landing-page .background-noise {
  opacity: 0.16;
}

.rk-nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Redesigned modern header with logo on left, centered capsule navigation, and action buttons on right */
.rk-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* We only apply scrolled background to the header container on mobile */
@media (max-width: 1220px) {

  .rk-header.scrolled,
  .rk-header.is-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
  }
}

.rk-header-shell {
  position: relative;
  width: min(1320px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.3s var(--ease);
}

.rk-header.scrolled .rk-header-shell,
.rk-header.is-scrolled .rk-header-shell {
  padding: 12px 0;
}

/* Middle: Floating capsule container on desktop (expands on scroll!) */
@media (min-width: 1221px) {
  .rk-nav-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 6px 8px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    backdrop-filter: blur(8px);

    width: 100%;
    max-width: 530px;
    /* Fits desktop menu items perfectly */
    justify-content: center;
    z-index: 1;
    transition: max-width 0.4s cubic-bezier(0.25, 1, 0.25, 1),
      background 0.3s var(--ease),
      border-radius 0.3s var(--ease),
      box-shadow 0.3s var(--ease),
      border-color 0.3s var(--ease),
      padding 0.3s var(--ease);
  }

  .rk-header.scrolled .rk-nav-main,
  .rk-header.is-scrolled .rk-nav-main {
    max-width: 100%;
    /* Expands to become the header's background */
    border-radius: 20px;
    /* Morphs from pill to soft rounded rectangle */
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(14px);
    padding: 10px 14px;
  }
}

.rk-nav-item,
.rk-drop-trigger {
  list-style: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: #475569;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s var(--ease);
}

.rk-nav-item:hover,
.rk-drop-trigger:hover,
.rk-dropdown:hover .rk-drop-trigger,
.rk-dropdown:focus-within .rk-drop-trigger {
  color: #0f172a;
}

.rk-nav-item.active {
  background: #0f172a;
  color: #ffffff !important;
  font-weight: 700;
}

.rk-chevron {
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.7;
}

.rk-dropdown:hover .rk-chevron {
  transform: translateY(1px);
  opacity: 1;
}

.rk-dropdown {
  position: relative;
}

.rk-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  opacity: 0;
  pointer-events: none;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 1000;
}

.rk-dropdown:hover .rk-dropdown-menu,
.rk-dropdown:focus-within .rk-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.rk-dropdown-menu.rk-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  min-width: 580px;
  padding: 20px;
}

.rk-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rk-group h4 {
  margin: 0 0 4px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-weight: 800;
}

.rk-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 8px 12px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.rk-dropdown-menu a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* Left: Logo */
.rk-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.rk-logo img {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Right: Actions */
.rk-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.rk-globe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.rk-globe-btn:hover {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.18);
  background: #f8fafc;
}

.rk-contact-btn {
  background: #0f172a;
  color: #ffffff !important;
  border: 1px solid #0f172a;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.rk-contact-btn:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.rk-contact-btn:active {
  transform: translateY(0);
}

.rk-arrow {
  transition: transform 0.2s var(--ease);
}

.rk-contact-btn:hover .rk-arrow {
  transform: translateX(3px);
}

.rk-burger {
  display: none;
  z-index: 1000;
}

.landing-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 0 10px;
}

.landing-mini-nav,
.landing-contact-link {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
}

.landing-contact-link {
  justify-content: flex-end;
}

.landing-mini-nav a,
.landing-contact-link a {
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1f2f44;
  text-decoration: none;
}

.landing-mark {
  justify-self: center;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.landing-main {
  overflow: clip;
}

.landing-hero {
  position: relative;
  padding: 18px 0 20px;
}

.landing-hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(31, 49, 70, 0.09) 0 1px, transparent 1px 80px);
  opacity: 0.5;
  pointer-events: none;
}

.landing-title {
  position: relative;
  z-index: 2;
  margin: 24px auto 12px;
  text-align: center;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-1);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.landing-title .dot {
  position: absolute;
  display: inline-block;
  width: clamp(18px, 2.5vw, 38px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid #f8fbff;
}

.landing-title .dot-cyan {
  right: 6%;
  top: 14%;
  background: #57d6e8;
}

.landing-title .dot-yellow {
  left: 31%;
  bottom: 8%;
  background: #e6f219;
}

.landing-copy {
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin: 0 auto 18px;
  padding-left: 12px;
  border-left: 2px solid #29384a;
  color: #2f3f53;
  font-size: var(--font-size-5);
}

.landing-card-row {
  position: relative;
  z-index: 2;
  margin-top: 2.25rem !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.landing-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
}

.card-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.badge-mission {
  background: var(--color-mission-bg);
  color: var(--color-mission);
}

.badge-vision {
  background: var(--color-vision-bg);
  color: var(--color-vision);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-3);
  font-weight: 700;
  line-height: 1.1;
}

.title-mission {
  color: var(--color-mission);
}

.title-vision {
  color: var(--color-vision);
}

.card-subtitle {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: var(--font-size-4);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.card-description {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: var(--font-size-5);
  font-weight: 400;
  color: #475569;
  line-height: 1.55;
}


.metric-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.95;
}

.metric-card p {
  margin: 0;
  color: #475e79;
}

.metric-blue {
  background: linear-gradient(145deg, #7fcdff, #4ca9ed);
  color: #06253f;
  border-color: #8acaf4;
}

.metric-photo {
  background: linear-gradient(155deg, #0f4f8a, #1b6eb2 38%, #0f426f);
  border-color: #2f79b3;
  color: #dcefff;
}

.metric-photo-shape {
  min-height: 120px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 65% 25%, rgba(255, 217, 117, 0.45), transparent 24%),
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(130deg, rgba(22, 122, 215, 0.5), rgba(1, 16, 30, 0.4));
}

.metric-dark {
  background: #0f1b2b;
  border-color: #1b3955;
  color: #f1f7ff;
}

.metric-dark p {
  color: rgba(228, 238, 249, 0.84);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plan-card {
  border-radius: 26px;
  border: 1px solid #c9def2;
  box-shadow: var(--shadow-sm);
  padding: 20px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.06;
}

.plan-card p {
  margin: 0;
  color: #49627f;
}

.plan-card-soft {
  background: linear-gradient(145deg, #ecf7ff, #d4ecff);
}

.plan-card-image {
  color: #f4f8ff;
  border-color: #274a6d;
  background:
    linear-gradient(140deg, rgba(2, 23, 44, 0.88), rgba(17, 67, 111, 0.72)),
    radial-gradient(circle at 80% 16%, rgba(233, 150, 82, 0.3), transparent 24%);
}

.plan-card-image p {
  color: rgba(221, 234, 248, 0.9);
}

.plan-foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-foot strong {
  color: inherit;
}

.testimonials-wrap {
  padding-top: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.quote-card {
  border-radius: 22px;
  border: 1px solid #cfe2f4;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.quote-media {
  border-radius: 14px;
  min-height: 180px;
  margin-bottom: 12px;
  background:
    radial-gradient(circle at 18% 80%, rgba(61, 130, 255, 0.42), transparent 35%),
    linear-gradient(125deg, #66b6ff, #3582db 44%, #7ecfff);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: #21384f;
  font-weight: 600;
}

.quote-card p {
  margin: 10px 0 0;
  color: #4f6782;
}

.quote-card-alt {
  background: linear-gradient(150deg, #f2f8ff, #deefff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.quote-card-alt h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.faq-wrap {
  padding-top: 6px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.faq-visual {
  border-radius: 24px;
  min-height: 320px;
  border: 1px solid #c9def3;
  background:
    radial-gradient(circle at 56% 26%, rgba(255, 223, 146, 0.48), transparent 22%),
    radial-gradient(circle at 30% 70%, rgba(122, 200, 255, 0.45), transparent 30%),
    linear-gradient(135deg, #2f9fff, #1f70c6);
  box-shadow: var(--shadow-sm);
}

.faq-list {
  border-radius: 22px;
  border: 1px solid #cfe1f3;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
}

.faq-list details {
  border-bottom: 1px solid #ddebf8;
  padding: 10px 0;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #183e67;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 8px 0 0;
  color: #4a607a;
}

.landing-bottom-cta {
  padding-top: 10px;
}

.bottom-cta-shell {
  border-radius: 26px;
  border: 1px solid #c3dcf2;
  background: linear-gradient(130deg, #f0f8ff, #d5ecff 38%, #c2e5ff);
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 3vw, 30px);
}

.bottom-cta-shell h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.bottom-cta-shell p {
  margin: 6px 0 12px;
  color: #3f5e7b;
}

@media (max-width: 1100px) {
  .landing-title {
    /* max-width: 12ch; */
    font-size: 3rem;
  }

  .landing-card-row {
    grid-template-columns: 1fr 1fr;
    /* background-color: red; */
  }

  .landing-card-cyan {
    grid-column: 1 / -1;
  }

  .floating-cta {
    left: 45%;
    bottom: -14px;
    width: 96px;
    height: 96px;
    font-size: 2rem;
    border-width: 6px;
  }

  .metric-panel,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1220px) {
  .rk-header {
    padding-top: 8px;
  }

  .rk-header-shell {
    width: 100%;
    padding: 10px 12px;
  }

  .rk-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .rk-logo img {
    width: 8rem;
  }

  .rk-contact {
    display: none;
  }

  .rk-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 38px;
    border-radius: 10px;
    /* border: 1px solid #b7d6f1; */
    /* background: #fff; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 10010 !important;
  }

  .rk-burger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #194872;
    transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
  }

  .rk-nav-main {
    /* will be positioned full-screen when mobile-open */
    position: absolute;
    inset: auto;
    z-index: 2000;
    padding: 108px 18px 30px;
    background: linear-gradient(165deg, rgba(8, 37, 67, 0.97), rgba(16, 70, 119, 0.94));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    overflow-y: auto;
  }

  /* when mobile menu is open, make the nav full-screen and above everything */
  body.rk-mobile-open .rk-nav-main {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 108px 18px 30px;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto !important;
    background: linear-gradient(165deg, rgba(8, 37, 67, 1), rgba(16, 70, 119, 1)) !important;
  }

  body.rk-mobile-open .rk-header {
    z-index: 10020;
  }

  /* prevent background scroll while mobile menu open */
  body.rk-mobile-open {
    overflow: hidden;
  }

  .rk-nav-main>a,
  .rk-drop-trigger {
    width: min(420px, 92%);
    text-align: center;
    font-size: 1rem;
    color: #ffecec;
    border: 1px solid rgba(171, 212, 247, 0.36);
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
  }

  .rk-dropdown {
    width: min(420px, 92%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .rk-dropdown-menu,
  .rk-dropdown-grid {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    border-color: rgba(157, 204, 245, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    grid-template-columns: 1fr;
  }

  .rk-dropdown.is-open .rk-dropdown-menu,
  .rk-dropdown.is-open .rk-dropdown-grid {
    display: flex !important;
    flex-direction: column;
  }

  .rk-dropdown.is-open {
    gap: 8px;
  }

  .rk-group h4 {
    color: #c9e6ff;
  }

  .rk-dropdown-menu a {
    text-align: center;
    color: #f4f9ff;
  }

  .rk-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(2) {
    opacity: 0;
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 760px) {
  .rk-header {
    padding-top: 8px;
  }

  .rk-header-shell {
    width: 100%;
    padding: 10px 12px;
  }

  .rk-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .rk-logo img {
    width: 8rem;
  }

  .rk-contact {
    display: none;
  }

  .rk-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 38px;
    border-radius: 10px;
    /* border: 1px solid #b7d6f1; */
    /* background: #fff; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 10021;
  }

  .rk-burger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #194872;
    transition: transform 0.24s var(--ease), opacity 0.24s var(--ease);
  }

  .rk-nav-main {
    position: fixed;
    inset: 0;
    z-index: 501;
    width: 100vw;
    height: 100dvh;
    padding: 108px 18px 30px;
    background: linear-gradient(165deg, rgba(8, 37, 67, 0.97), rgba(16, 70, 119, 0.94));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    overflow-y: auto;
  }

  .rk-nav-toggle:checked+.rk-header .rk-nav-main {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .rk-nav-main>a,
  .rk-drop-trigger {
    width: min(420px, 92%);
    text-align: center;
    font-size: 1rem;
    color: #ecf6ff;
    border: 1px solid rgba(171, 212, 247, 0.36);
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
  }

  .rk-dropdown {
    width: min(420px, 92%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .rk-dropdown-menu,
  .rk-dropdown-grid {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 8px;
    border-color: rgba(157, 204, 245, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    grid-template-columns: 1fr;
  }

  .rk-dropdown.is-open .rk-dropdown-menu,
  .rk-dropdown.is-open .rk-dropdown-grid {
    display: flex !important;
    flex-direction: column;
  }

  .rk-dropdown.is-open {
    gap: 8px;
  }

  .rk-group h4 {
    color: #c9e6ff;
  }

  .rk-dropdown-menu a {
    text-align: center;
    color: #f4f9ff;
  }

  .rk-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(2) {
    opacity: 0;
  }

  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .landing-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .landing-mini-nav,
  .landing-contact-link {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .landing-mark {
    order: -1;
    font-size: 1.7rem;
  }

  .landing-title {
    text-align: center;
    font-size: 2rem;
    max-width: 100%;
    margin-top: 10px;
    line-height: 0.96;
  }

  .landing-title .dot-cyan {
    right: 6%;
    top: 4%;
  }

  body.rk-mobile-open .rk-burger span:nth-child(3),
  .rk-nav-toggle:checked+.rk-header .rk-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 760px) {
  .rk-logo img {
    height: 34px;
    width: auto;
  }

  .landing-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .landing-mini-nav,
  .landing-contact-link {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .landing-mark {
    order: -1;
    font-size: 1.7rem;
  }

  .landing-title {
    text-align: center;
    font-size: var(--font-size-1);
    max-width: 100%;
    margin-top: 10px;
    line-height: 0.96;
  }

  .landing-title .dot-cyan {
    right: 6%;
    top: 4%;
  }

  .landing-title .dot-yellow {
    left: 22%;
    bottom: -4%;
  }

  .landing-copy {
    margin: 8px 0 14px;
    max-width: 100%;
  }

  .landing-card-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .landing-card-cyan {
    flex-direction: column;
  }
}

/* Hero Gallery Grid matching mockup structure: Column 1 (large), Column 2 (stacked), Column 3 (tall) */
.landing-hero-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  margin: 0 auto 2.25rem !important;
}

.landing-hero-gallery .gallery-col {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-gallery);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.landing-hero-gallery .col-stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
  height: 100%;
  box-shadow: none;
  border-radius: 0;
}

.landing-hero-gallery .gallery-sub-row {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-gallery);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  position: relative;
}

.landing-hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-hero-gallery img:hover {
  transform: scale(1.04);
}


@media (max-width: 760px) {
  :root {
    --font-size-1: clamp(1.8rem, 7.5vw, 2.5rem);
    /* Service and Friendship since 1941 - responsive size, largest on mobile */
    --font-size-2: 1.6rem;
    --font-size-3: 1.25rem;
    --font-size-4: 0.96rem;
    --font-size-5: 0.88rem;
    --font-size-6: 0.72rem;
  }

  .landing-hero-gallery {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
    margin: 24px 0;
  }

  .landing-hero-gallery .gallery-col {
    height: 180px;
    border-radius: 20px;
  }

  .landing-hero-gallery .col-stacked {
    height: auto;
    gap: 12px;
  }

  .landing-hero-gallery .gallery-sub-row {
    height: 120px;
    border-radius: 20px;
  }
}

/* Stats Bar Section */
.landing-stats-bar-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.landing-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.landing-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.landing-stats-bar .stat-number {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-1);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.landing-stats-bar .stat-label {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #475569;
}

@media (max-width: 760px) {
  .landing-stats-bar-section {
    padding: 3rem 0;
    margin-top: 2rem;
  }

  .landing-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
  }
}

/* Club Leadership Section */
.landing-leadership-section {
  padding: 4rem 0;
}

.text-center {
  text-align: center;
}

.section-head.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.max-w-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.leader-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
}

.leader-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-avatar svg {
  width: 36%;
  height: 36%;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.leader-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.leader-role-kicker {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-mission);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.leader-name {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.leader-sub-roles {
  margin: 2px 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.35;
}

/* Mobile Responsive Leadership */
@media (max-width: 1200px) {
  .leadership-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .leader-card {
    border-radius: 20px;
    padding: 12px;
    gap: 12px;
  }

  .leader-avatar {
    border-radius: 14px;
  }

  .leader-name {
    font-size: 0.86rem;
  }

  .leader-sub-roles {
    font-size: 0.7rem;
  }
}

/* Founder Quote Section */
.landing-quote-section {
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
  padding: 4rem 0;
}

.quote-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-card);
  padding: 50px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
}

.quote-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.quote-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid rgba(15, 77, 138, 0.15);
  z-index: 1;
}

.quote-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.quote-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-deco-mark {
  position: absolute;
  top: -50px;
  left: -20px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(15, 77, 138, 0.05);
  line-height: 1;
  pointer-events: none;
}

.founder-blockquote {
  margin: 0 0 24px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: var(--font-size-4);
  font-weight: 500;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  border: none;
  padding: 0;
  background: transparent;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-line {
  width: 32px;
  height: 2px;
  background: var(--color-mission);
  margin-bottom: 8px;
}

.quote-author {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  font-style: normal;
}

.quote-context {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Mobile responsive quote section */
@media (max-width: 960px) {
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .quote-image-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Signature Projects Section */
.landing-projects-section {
  padding: 4rem 0;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-title-group h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-2);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.section-title-group p {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: var(--font-size-5);
  color: #64748b;
}

.view-all-link {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f4d8a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.view-all-link:hover {
  color: #1e3a8a;
  transform: translateX(4px);
}

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

.project-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.015);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.project-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 20px;
}

.project-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.project-card:hover .project-card-image-wrapper img {
  transform: scale(1.03);
}

.project-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f4d8a;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  z-index: 2;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.project-card-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-3);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.project-card-description {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.5;
}

.project-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding-top: 14px;
  margin-top: 4px;
}

.project-progress-label {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}

.project-card:hover .project-arrow-btn {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Mobile responsive projects */
@media (max-width: 960px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Legacy & History Section */
.landing-legacy-section {
  padding: 4rem 0;
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}

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

.legacy-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  border: 1px dashed rgba(15, 77, 138, 0.12);
  border-radius: var(--radius-card);
  aspect-ratio: 1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
}

.legacy-logo {
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.04));
  transition: transform 0.3s var(--ease);
}

.legacy-image-wrapper:hover .legacy-logo {
  transform: scale(1.04);
}

.legacy-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.legacy-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: var(--font-size-2);
  font-weight: 700;
  color: #0f172a;
  margin: 8px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legacy-description p {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 16px;
}

.legacy-description p:last-child {
  margin-bottom: 28px;
}

.legacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2.2px solid #0f4d8a;
  background: transparent;
  color: #0f4d8a;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.legacy-btn:hover {
  background: #0f4d8a;
  color: #ffffff;
}

/* Mobile responsive legacy section */
@media (max-width: 960px) {
  .legacy-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .legacy-content-wrapper {
    align-items: center;
  }

  .legacy-image-wrapper {
    max-width: 320px;
    padding: 30px;
  }
}

/* Partners Grid Section */
.landing-partners-section {
  padding: 4rem 0;
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.partner-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  text-decoration: none;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.partner-card-center {
  background: #ffffff;
  border-color: rgba(15, 77, 138, 0.15);
  box-shadow: 0 8px 24px rgba(15, 77, 138, 0.03);
}

.partner-center-img {
  max-width: 100%;
  max-height: 85%;
  object-fit: contain;
  display: block;
}

.partner-card-more {
  background: #f8fafc;
  border-style: dashed;
  border-color: rgba(15, 77, 138, 0.2);
  color: #0f4d8a;
  gap: 8px;
}

.partner-card-more:hover {
  background: #ffffff;
  border-style: solid;
  border-color: #0f4d8a;
}

.more-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.more-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s var(--ease);
}

.partner-card-more:hover .more-arrow {
  transform: translateX(4px);
}

.partner-logo-text {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e293b;
  user-select: none;
}

.font-invision { color: #ff3366; font-weight: 800; font-family: sans-serif; }
.font-zeplin { color: #f7a93b; letter-spacing: 0.05em; }
.font-slack { color: #000000; font-weight: 800; }
.font-harvest { color: #f36c21; font-weight: 700; letter-spacing: 0.08em; font-size: 1rem; }
.font-hubspot { color: #ff7a59; font-weight: 800; }
.font-wordpress-logo { color: #21759b; font-weight: 700; }
.font-shopify { color: #96bf48; font-weight: 800; }
.font-paypal { color: #003087; font-style: italic; font-weight: 800; }

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .partner-card {
    height: 80px;
    padding: 10px;
  }
  .partner-logo-text {
    font-size: 0.95rem;
  }
}

/* Milestones Timeline Styling */
.milestones-timeline {
  position: relative;
  max-width: 960px;
  margin: 4rem auto;
  padding-left: 32px;
  border-left: 2px solid rgba(15, 77, 138, 0.12);
}

.milestone-node {
  position: relative;
  margin-bottom: 4.5rem;
}

.milestone-node::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f7a81b;
  border: 2.5px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.2);
  z-index: 2;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.milestone-node:hover::before {
  transform: scale(1.2);
  background-color: #0f4d8a;
  box-shadow: 0 0 0 4px rgba(15, 77, 138, 0.2);
}

.milestone-year {
  font-family: "Sora", sans-serif;
  font-size: var(--font-size-2);
  font-weight: 800;
  color: #0f4d8a;
  margin: 0 0 8px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.milestone-title {
  font-family: "Sora", sans-serif;
  font-size: var(--font-size-4);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.35;
}

.milestone-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.milestone-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.milestone-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  aspect-ratio: 16 / 11;
  width: 100%;
}

.milestone-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

.milestone-node:hover .milestone-img-wrapper img {
  transform: scale(1.03);
}

/* Responsive Milestones */
@media (max-width: 820px) {
  .milestones-timeline {
    padding-left: 24px;
  }
  .milestone-node::before {
    left: -31px;
  }
  .milestone-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .milestone-img-wrapper {
    order: -1;
    max-width: 440px;
  }
}

/* Leadership Section Styling */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}

.leader-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.012);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.leader-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  background: #f1f5f9;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--ease);
}

.leader-card:hover .leader-img-wrapper img {
  transform: scale(1.05);
}

.leader-name {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.leader-roles-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.leader-role-kicker {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f4d8a;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* College of Presidents Styles */
.presidents-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}

.president-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.president-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.12);
}

.president-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #ffffff;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.05);
  background: #f1f5f9;
}

.president-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.president-name {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.president-year {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f4d8a;
  background: rgba(15, 77, 138, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .presidents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .presidents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .presidents-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Past Leaders Styles */
.past-leaders-table {
  max-width: 900px;
  margin: 3rem auto 5rem;
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 18px 24px;
  background: #0f4d8a;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  align-items: center;
  transition: background-color 0.2s var(--ease);
}

.table-row:hover {
  background-color: rgba(15, 77, 138, 0.02);
}

.table-row:last-child {
  border-bottom: none;
}

.row-year {
  font-weight: 700;
  color: #0f4d8a;
}

.row-names {
  color: #334155;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .table-header {
    display: none;
  }
  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
}

/* Major Donors Section */
.donors-showcase-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.donors-image-wrapper {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.donors-image-wrapper img {
  width: 100%;
  display: block;
}

.donors-info-block {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}

.donors-info-block h3 {
  font-family: "Sora", sans-serif;
  font-size: var(--font-size-3);
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 16px;
}

.donors-info-block p {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.donors-list-section {
  background: rgba(15, 77, 138, 0.02);
  padding: 4rem 0;
  border-top: 1px solid rgba(15, 77, 138, 0.06);
  border-bottom: 1px solid rgba(15, 77, 138, 0.06);
  margin-bottom: 4rem;
}

.donors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.donor-item-card {
  background: #ffffff;
  border: 1px solid rgba(15, 77, 138, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(15, 77, 138, 0.01);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.donor-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 77, 138, 0.04);
}

.donor-icon-gold {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.donor-name-text {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .donors-showcase-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .donors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .donors-grid {
    grid-template-columns: 1fr;
  }
}

/* Family Page Custom Styles */
.family-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2rem;
}

.family-gallery-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.family-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interact-schools-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin-top: 1.5rem;
}

.school-item {
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.school-item::before {
  content: "✦";
  color: #f7a81b;
  font-weight: bold;
}

.rotaract-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.rotaract-card {
  background: #ffffff;
  border: 1px solid rgba(15, 77, 138, 0.08);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 77, 138, 0.015);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rotaract-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
}

.rotaract-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.rotaract-link {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: #0f4d8a;
  font-weight: 700;
  text-decoration: none;
}

.rotaract-link:hover {
  text-decoration: underline;
}

.rcc-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.rcc-badge {
  background: rgba(247, 168, 27, 0.08);
  color: #c27d0c;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.sister-clubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.sister-club-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.sister-club-icon {
  font-size: 1.1rem;
}

.sister-club-name {
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

@media (max-width: 1024px) {
  .sister-clubs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .interact-schools-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .rotaract-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sister-clubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .interact-schools-list {
    grid-template-columns: 1fr;
  }
  .sister-clubs-grid {
    grid-template-columns: 1fr;
  }
}