/* ============ DESIGN TOKENS — "Ledger" system v2 ============ */
:root {
  /* Primary — near-black ink navy, the site's authority color */
  --color-primary: #0B0E17;
  --color-primary-hover: #171C2C;
  --color-primary-soft: #E9EBF0;

  /* Accent — deep antique gold, the recurring signature color */
  --color-accent: #C9A227;
  --color-accent-strong: #8A6A16;
  /* darkened from #A3801C — WCAG AA 4.5:1+ on white/cream (was 3.7:1, failing) */
  --color-accent-soft: #F6EFD9;

  /* Signature — muted brand red, drawn from the logo, used sparingly for emphasis */
  --color-signature: #A63A32;
  --color-signature-soft: #F3E3E1;

  /* Neutrals — warm, paper-like */
  --color-bg: #FAF8F3;
  --color-surface: #FFFFFF;
  --color-border: #E6E0D2;
  --color-border-strong: #D2C9B4;

  /* Text */
  --color-text: #14161F;
  --color-text-muted: #5B5F6C;
  --color-text-inverse: #FFFFFF;
  --color-text-inverse-muted: #B9BFCC;

  /* Typography */
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Signature gradient — the recurring "rule" motif under headings/hero */
  --gradient-signature: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 55%, var(--color-signature) 100%);

  /* Shape & motion */
  --radius-card: 10px;
  --shadow-card: 0 10px 28px -14px rgba(11, 14, 23, 0.28);
  --shadow-card-hover: 0 20px 40px -14px rgba(11, 14, 23, 0.32);
  --shadow-panel: 0 16px 32px -10px rgba(11, 14, 23, 0.3);
  --transition-fast: 150ms ease;
  --transition-base: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Type scale */
  --text-display: 700 clamp(34px, 5vw, 56px)/1.1 var(--font-heading);
  --text-h1: 700 clamp(28px, 4vw, 40px)/1.15 var(--font-heading);
  --text-h2: 700 clamp(22px, 3vw, 30px)/1.2 var(--font-heading);
  --text-h3: 600 clamp(19px, 2.4vw, 23px)/1.3 var(--font-heading);
  --text-eyebrow: 700 11px/1 var(--font-body);
}

/* ============ Content-area section rhythm (structural pass) ============ */
.ir-section {
  padding: var(--space-lg) 0;
}

.ir-section+.ir-section {
  border-top: 1px solid var(--color-border);
}

.ir-section:first-child {
  padding-top: 0;
}

.ir-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .ir-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

*:focus-visible {
  outline: 2px solid var(--color-accent-strong);
  /* raw --color-accent measured 2.4:1 on white, fails WCAG 1.4.11's 3:1 non-text minimum; -strong clears it at ~5:1 */
  outline-offset: 2px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 15% 0%, rgba(201, 162, 39, 0.05), transparent 45%),
    radial-gradient(circle at 100% 10%, rgba(11, 14, 23, 0.04), transparent 40%);
  background-attachment: fixed;
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  letter-spacing: -0.01em;
}

/* Prevent unwanted horizontal scroll */
html,
body {
  overflow-x: hidden;
}

/* ============ Global responsive container padding fallback ============
   Several content pages use Bootstrap's .p-5 (48px) directly on their
   outer .container-fluid without a mobile override. On narrow screens
   (390px and up) that eats too much of the viewport, so scale it down
   site-wide unless a page already defines its own override. */
@media (max-width: 576px) {
  .container-fluid.p-5 {
    padding: 20px !important;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  .container-fluid.p-5 {
    padding: 28px !important;
  }
}



/* ============ SITE HEADER (replaces sidebar) ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  height: 72px;
  background-color: var(--color-surface);
  border-bottom: none;
  box-shadow: 0 2px 6px rgba(11, 14, 23, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-signature);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 400px) {
  .site-header-inner {
    gap: 12px;
    padding: 0 14px;
  }

  .site-logo img {
    width: 100px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.site-logo:hover {
  opacity: 0.85;
}

.site-logo img {
  display: block;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background-color: var(--color-bg);
  border-color: var(--color-border-strong);
}

.mobile-nav-toggle[aria-expanded="true"] {
  background-color: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
}

.content {
  overflow-y: hidden;
}

.top-nav {
  flex: 1 1 auto;
  min-width: 0;
}

#topNav {
  /* Mobile: collapsed drawer panel below the header */
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  z-index: 1040;
  box-shadow: var(--shadow-panel);
}

#topNav.show {
  display: block;
}

#mainNav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-item-group {
  position: static;
  width: 100%;
}

.nav-link {
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 20px;
  width: 100%;
  text-align: start;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  border-radius: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent-strong);
  background-color: var(--color-bg);
}

.nav-link.active {
  background-color: var(--color-accent-soft);
  color: var(--color-primary) !important;
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.dropdown-container .active {
  color: var(--color-primary) !important;
  font-weight: 700;
  background-color: var(--color-accent-soft);
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.dropdown-btn {
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  color: var(--color-text);
  position: relative;
  border-radius: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-btn:hover {
  color: var(--color-accent-strong);
  background-color: var(--color-bg);
}

/* Leading icons: consistent size/spacing regardless of the me-2 utility
    already on the markup, so every item — link or dropdown — lines up. */
.nav-link>i:first-child,
.dropdown-btn>i:first-child {
  font-size: 14.5px;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

/* Dropdown caret: always pinned to the trailing edge of the button,
    independent of label length. */
.dropdown-caret {
  margin-left: auto;
  padding-left: 12px;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dropdown-caret.rotate {
  transform: rotate(180deg);
}

.dropdown-container {
  display: none;
  background: var(--color-surface);
  width: 100%;
  border-radius: 0;
  margin: 0;
  color: var(--color-text) !important;
}

.dropdown-container.show {
  display: block;
}

.dropdown-container a {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  padding: 10px 20px 10px 40px;
  display: flex;
  align-items: center;
  color: var(--color-text);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-container a>i:first-child {
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.dropdown-container a:hover {
  background-color: var(--color-bg);
  color: var(--color-signature);
}

@media (min-width: 992px) {

  /* Desktop: horizontal tab bar */

  #topNav {
    display: block;
    position: static;
    background: transparent;
    border-bottom: none;
    width: auto;
    max-height: none;
    overflow: visible;
    box-shadow: none;
  }

  #mainNav {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
  }

  .nav-item-group {
    position: relative;
    width: auto;
  }

  .nav-link,
  .dropdown-btn {
    width: auto;
    padding: 10px 14px;
    white-space: nowrap;
    border-radius: 6px;
    margin: 0 2px;
  }

  .nav-link:hover,
  .dropdown-btn:hover {
    background-color: var(--color-bg);
  }

  .dropdown-caret {
    padding-left: 8px;
    font-size: 11px;
  }

  /* On desktop the buttons hug their content, so give leading icons a
        touch less breathing room than the mobile drawer needs. */
  .nav-link>i:first-child,
  .dropdown-btn>i:first-child {
    margin-right: 8px;
  }

  /* Desktop top-level tabs: underline indicator instead of filled pill */
  #mainNav>.nav-link.active,
  .nav-item-group>.dropdown-btn.active {
    width: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 6px 6px 0 0;
  }

  #mainNav>.nav-link.active::after,
  .nav-item-group>.dropdown-btn.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -3px;
    height: 2px;
    background: var(--color-accent);
  }

  /* Submenus become white dropdown panels anchored under their tab */
  .nav-item-group .dropdown-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 260px;
    max-width: 360px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow-panel);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    padding: 6px 0;
    z-index: 1051;
  }

  .dropdown-container a {
    padding: 10px 18px;
  }

  .dropdown-container .active,
  .dropdown-container a {
    width: 100%;
  }
}

/* ============ PAGE HERO ============ */

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Split-panel hero: left = title block, right = decorative brand mark panel.
    Genuinely different composition from a plain centered band. */

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  padding: var(--space-lg) var(--space-md);
}

.page-hero-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-md);
}

.page-hero-main {
  position: relative;
  z-index: 1;
  animation: heroRise 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.page-breadcrumb {
  font: var(--text-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.page-hero-title {
  font: var(--text-display);
  color: var(--color-text-inverse);
  margin: 0 0 var(--space-sm);
}

.page-hero-rule {
  width: 72px;
  height: 4px;
  background: var(--gradient-signature);
  border: none;
  margin: 0;
  border-radius: 2px;
}

/* Decorative mark panel — pure CSS, no image, hidden from AT */
.page-hero-mark {
  display: none;
}

@media (min-width: 992px) {
  .page-hero {
    padding: var(--space-2xl) var(--space-xl);
  }

  .page-hero-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-xl);
  }

  .page-hero-mark {
    position: relative;
    display: block;
    justify-self: end;
    width: 220px;
    height: 220px;
  }

  .page-hero-mark::before,
  .page-hero-mark::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .page-hero-mark::before {
    inset: 0;
    border: 1px solid rgba(201, 162, 39, 0.35);
  }

  .page-hero-mark::after {
    inset: 28px;
    background: radial-gradient(circle at 35% 30%, rgba(201, 162, 39, 0.22), transparent 65%);
    border: 1px solid rgba(201, 162, 39, 0.5);
  }

  .page-hero-mark-index {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero-mark-index::before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    transform: rotate(45deg);
  }
}

/* ============ SITE FOOTER ============ */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, #050710 100%);
  color: var(--color-text-inverse-muted);
  padding: 48px 24px 24px;
  margin-top: 64px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-signature);
}

.site-footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }

  .site-footer-col+.site-footer-col {
    position: relative;
    padding-left: var(--space-lg);
  }

  .site-footer-col+.site-footer-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
}

.site-footer-col-label {
  display: block;
  font: var(--text-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.site-footer-brand img {
  display: block;
  margin-bottom: var(--space-sm);
  border-radius: 6px;
}

.site-footer-name {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-text-inverse);
}

.site-footer-office p,
.site-footer-contact p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-inverse-muted);
  max-width: 320px;
}

.site-footer-office strong,
.site-footer-contact strong {
  color: var(--color-text-inverse);
  font-weight: 600;
}

.site-footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-inverse-muted);
}

/* Prevent accidental horizontal scroll (safety) */
html,
body {
  overflow-x: hidden;
}



.DetailBox {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}



.card-img-top {
  object-fit: cover;
  height: 300px;
}

h5 {
  color: var(--color-text);
}

.subsection-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 28px;
}

.subsection-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--gradient-signature);
}

.year-heading {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  color: var(--color-text);
  padding: 12px 0;
  margin: 40px -16px 30px;
  background: var(--color-accent-soft);
  border-radius: 6px;
}

.board-img {
  width: 240px !important;
  height: 150px !important;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--color-border);
}

.board-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-accent);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.board-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.board-card .badge {
  font-size: 13px;
  font-weight: 500;
}

.namee {
  color: var(--color-text);
}

.brand-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.brand-card img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.doc-list {
  padding-left: 0;
  list-style: none;
  counter-reset: doc-index;
}

.doc-list li {
  counter-increment: doc-index;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.doc-list li:last-child {
  border-bottom: none;
}

.doc-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 8px 12px 34px;
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.doc-list a::before {
  content: counter(doc-index, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-strong);
  letter-spacing: 0.02em;
}

.doc-list a:hover {
  color: var(--color-signature);
  padding-left: 40px;
}

/* Active (open) year header background */
.accordion-button:not(.collapsed) {
  background: var(--color-accent-soft);
  color: var(--color-primary);
  box-shadow: inset 3px 0 0 var(--color-accent);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Arrow icon color when active */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}


.director-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.director-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-signature);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.director-card:hover::before {
  opacity: 1;
}

.director-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.director-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.director-card h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
}

.director-card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.modal-img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}



.linkedin-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #fff435;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-top: 8px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(11, 14, 23, .08);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.linkedin-icon:hover {
  border-color: #fff435;
  box-shadow: 0 4px 12px rgba(11, 14, 23, .12);
}

.modal-linkedin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #0a66c2;
  color: #fff;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 18px;
  text-decoration: none;
}

.info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.info-card:hover {
  background: var(--color-surface);
  border-left-color: var(--color-signature);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

.section-title i {
  color: var(--color-accent-strong);
  font-size: 16px;
}

/* Where .section-title is combined with .subsection-title (e.g. ratings.php),
   defer entirely to .subsection-title's own centered gradient-rule divider
   rather than stacking a second border under it. */
.section-title.subsection-title {
  display: block;
  border-bottom: none;
  padding-bottom: 16px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.info-card p strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

/* Lede paragraph — the first paragraph of an intro block reads larger */
.ir-lede p:first-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.ir-lede p {
  max-width: 74ch;
}

/* Visual seam between stacked card-body blocks inside the same card */
.DetailBox .card-body+.card-body {
  border-top: 1px solid var(--color-border);
}


.core-values-section {
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.value-card p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
}

/* CENTER TITLE */
.core-title {
  text-align: center;
  margin: 40px 0;
}

.core-title .ss {
  color: red;
  font-size: 48px;
  font-weight: 800;
}

.core-title .text {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-left: 10px;
}

/* COLORS */
.yellow {
  background: #FFD966;
}

.blue {
  background: #7DD3F7;
}

.orange {
  background: #F7B27A;
}

.purple {
  background: #D48BC8;
}

.brown {
  background: #B0897F;
}

.pink {
  background: #F4A4C0;
}

.green {
  background: #A7D88C;
}

.teal {
  background: #A8D0CF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-title .ss {
    font-size: 40px;
  }

  .core-title .text {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .core-title .ss {
    font-size: 34px;
  }

  .core-title .text {
    font-size: 26px;
  }
}


.rating-table-wrap {
  overflow-x: auto;
}

.rating-table {
  min-width: 900px;
  border: 1px solid #000;
}

.rating-table th {
  background: #dfdede;
  font-weight: 600;
  font-size: 14px;
  vertical-align: middle;
}

.rating-table td {
  font-size: 14px;
}

/* ============ About-page stat strip ============ */
.ir-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: var(--space-md);
}

.ir-stat-item {
  background: var(--color-surface);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
}

.ir-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-primary);
  line-height: 1.1;
}

.ir-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .ir-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rating-table th,
.rating-table td {
  border: 1px solid #000;
  padding: 10px 12px;
}

/* Mobile text handling */
@media (max-width: 576px) {

  .rating-table th,
  .rating-table td {
    font-size: 13px;
  }
}


/* Card spacing */
.pdf-list-box {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pdf-list-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-signature);
}

/* List spacing */
.pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: pdf-index;
}

/* Each row spacing */
.pdf-list li {
  counter-increment: pdf-index;
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.pdf-list li:last-child {
  border-bottom: none;
}

/* Link styling */
.pdf-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 46px !important;
  color: var(--color-text) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast), padding-left var(--transition-base);
}

.pdf-list a::before {
  content: counter(pdf-index, decimal-leading-zero);
  position: absolute;
  left: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-strong);
}

/* PDF icon */
.pdf-list a i {
  color: var(--color-signature);
  font-size: 20px;
}

.pdf-list a i.bi-download {
  color: var(--color-accent-strong);
  font-size: 15px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.pdf-list a:hover i.bi-download {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect */
.pdf-list a:hover {
  background: var(--color-bg);
  color: var(--color-signature) !important;
  padding-left: 52px !important;
}




/* Main table */
.committee-table {
  min-width: 1100px;
  border: 1px solid #000;
}

/* TOP HEADER ROW (Name sections / Tagline) */
.committee-table thead tr:first-child th {
  background: #d9d9d9 !important;
  /* darker header */
  font-weight: 700;
  text-align: center;
}

/* SECOND HEADER ROW */
.committee-table thead tr:nth-child(2) th {
  background: #efefef !important;
  /* lighter header */
  font-weight: 600;
}

/* Common cell styling */
.committee-table th,
.committee-table td {
  border: 1px solid #000;
  padding: 10px 12px;
  font-size: 14px;
  vertical-align: middle;
}

/* Mobile */
@media (max-width: 576px) {

  .committee-table th,
  .committee-table td {
    font-size: 13px;
  }
}


.sebi-table {
  min-width: 1100px;
  border: 1px solid #000;
}

.sebi-table th {
  background: #e6e6e6;
  font-weight: 600;
  font-size: 14px;
  vertical-align: middle;
}

.sebi-table td {
  font-size: 14px;
  vertical-align: top;
}

.sebi-table th,
.sebi-table td {
  border: 1px solid #000;
  padding: 10px 12px;
}

/* Mobile */
@media (max-width: 576px) {

  .sebi-table th,
  .sebi-table td {
    font-size: 13px;
  }
}

/* ============ PREMIUM DATA TABLE (added alongside existing table classes) ============ */

.ir-table-wrap {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ir-table-wrap .table-responsive {
  margin: 0;
}

table.ir-table {
  min-width: 100%;
  margin: 0;
  border-collapse: collapse;
  border: none;
}

table.ir-table thead th {
  background: var(--color-primary) !important;
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-border-strong) !important;
  border-bottom: 3px solid var(--color-accent) !important;
  padding: 14px 16px;
  vertical-align: middle;
}

table.ir-table tbody tr {
  transition: background-color var(--transition-fast);
}

table.ir-table tbody tr:hover td {
  background: var(--color-accent-soft);
}

table.ir-table tbody td {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong) !important;
  padding: 12px 16px;
  vertical-align: middle;
}

table.ir-table.table-striped tbody tr:nth-of-type(odd) td {
  background: var(--color-bg);
}

table.ir-table.table-striped tbody tr:hover td {
  background: var(--color-accent-soft);
}

table.ir-table tfoot,
table.ir-table tfoot tr {
  border: none;
}

table.ir-table tfoot td {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg);
  box-shadow: none;
  border: 1px solid var(--color-border-strong) !important;
  padding: 12px 16px;
  vertical-align: middle;
}

table.ir-table td.text-end,
table.ir-table th.text-end {
  text-align: right;
}

table.ir-table td.text-start,
table.ir-table th.text-start {
  text-align: left;
}

table.ir-table td.text-center,
table.ir-table th.text-center {
  text-align: center;
}