/* ================================================================
   NCW NEW PORTAL — style.css
   Bootstrap 5.3 + Owl Carousel 2
   Mobile-first | Responsive | Accessible
================================================================ */

/* SECTION INDEX (mirrors index.html)
   - GLOBAL / BASE
   - TOP UTILITY BAR
   - MAIN HEADER
   - MAIN NAVIGATION
   - HERO BANNER / EVENT SECTION
   - ABOUT US SECTION
   - QUICK ACCESS TILES (3x3 Grid)
   - KEY OFFERINGS + WHAT'S NEW (2 Columns)
   - NCW CELLS + EXPLORE USER GROUPS + IMPORTANT LINKS (3 Columns)
   - STORIES / TESTIMONIALS
   - SOCIAL MEDIA SECTION
   - PARTNER LOGOS / GOVERNMENT PORTALS
   - FOOTER
   - BACK TO TOP BUTTON
   - SHARED: OWL CAROUSEL
   - RESPONSIVE BREAKPOINTS
   - PRINT STYLES
   - FOCUS STYLES (Accessibility)
================================================================ */

/* ================================================================
   GLOBAL / BASE
================================================================ */
/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --ncw-navy: #162f6a;
  --ncw-navy-dark: #122b55;
  --ncw-blue: #2563aa;
  --ncw-blue-light: #3a7bd5;
  --ncw-accent: #e85c00;
  --ncw-red: #c0392b;
  --ncw-pink: #d63384;
  --ncw-gold: #f0a500;
  --ncw-white: #ffffff;
  --ncw-gray-bg: #f6f7fb;
  --ncw-gray-light: #eef0f5;
  --ncw-text: #150202;
  --ncw-text-muted: #202124;
  --ncw-border: #dee2e6;
  --ncw-border-blue: #5279d7;
  --border-radius: 4px;
  --shadow-sm: 0 1px 4px rgba(26, 60, 115, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 60, 115, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 60, 115, 0.16);
  --transition: 0.25s ease;
  --font-family: "Noto Sans", "Segoe UI", system-ui, sans-serif;

  /* Special Campaign / Photo Detail page */
  --sc-btn-bg: rgba(0, 0, 0, 0.55);
  --sc-transition: 0.22s ease;
  --sc-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  --color-dark-blue-1: #162f6a !important;
  /* Contact page */

  /* RTI page */
}

/* ── Reset / Base ────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--ncw-text);
  background: var(--ncw-white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: var(--ncw-blue);
  transition: color var(--transition);
}

a:hover {
  color: var(--ncw-navy);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Skip Link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--ncw-navy);
  color: #fff;
  border-radius: 0 0 6px 6px;
  font-size: 0.875rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── GIGW: Multiple skip links container ─────────────────────── */
.skip-links .skip-link {
  left: auto;
}

.skip-links .skip-link:nth-child(2):focus {
  left: 160px;
}

.skip-links .skip-link:nth-child(3):focus {
  left: 300px;
}

/* ── Carousel controls (GIGW A25 / WCAG 2.2.2) ───────────────── */
.carousel-global-bar {
  background: var(--ncw-navy);
  padding: 4px 16px;
  text-align: right;
}

.carousel-global-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}

.carousel-global-btn:hover,
.carousel-global-btn:focus {
  background: rgba(255, 255, 255, 0.15);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.carousel-global-btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.1);
}

/* ── GIGW A25: Individual carousel pause buttons ─────────────── */
.carousel-pause-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
  transition:
    background var(--transition),
    outline var(--transition);
}

.carousel-pause-btn:hover,
.carousel-pause-btn:focus {
  background: rgba(255, 255, 255, 0.3);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.carousel-pause-btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.25);
}

/* Adjust colour on light backgrounds */
.partners-section .carousel-pause-btn,
.hero-banner .carousel-pause-btn {
  background: rgba(26, 60, 115, 0.12);
  border-color: var(--ncw-border);
  color: var(--ncw-navy);
}

.partners-section .carousel-pause-btn:hover,
.hero-banner .carousel-pause-btn:hover {
  background: rgba(26, 60, 115, 0.2);
  outline-color: var(--ncw-navy);
}

/* ── Announcement ticker pause button ─────────────── */
.announcement-pause-btn {
  /* background: rgba(255, 255, 255, 0.15); */
  /* border: 1px solid rgba(255, 255, 255, 0.35); */
  background: rgba(0, 0, 0, 0);
  color: var(--ncw-navy);
  width: 24px;
  height: 24px;
  /* border-radius: 50%; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  /* transition: background var(--transition), outline var(--transition); */
  border: none;
  outline: none;
}

.announcement-pause-btn:hover,
.announcement-pause-btn:focus {
  /* background: rgba(255, 255, 255, 0.3);
  outline: 2px solid #fff;
  outline-offset: 2px; */
}

.announcement-pause-btn[aria-pressed="true"] {
  /* background: rgba(255, 255, 255, 0.25); */
}

/* ── High Contrast Mode ──────────────────────────────────────── */
body.high-contrast {
  filter: contrast(1.8) grayscale(0.3);
}

/* ================================================================
   TOP UTILITY BAR
================================================================ */
.top-utility-bar {
  background: var(--ncw-navy-dark);
  color: #fff;
}

.gov-india-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.gov-india-link:hover {
  color: #fff;
  text-decoration: underline;
}

.gov-india-link img.utility-flag {
  filter: none;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  object-fit: cover;
}

.gov-india-link .utility-ext-icon {
  font-size: 0.7rem;
  opacity: 0.9;
}

.utility-skip-link {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.utility-skip-link:hover {
  color: #fff;
  text-decoration: underline;
}

.utility-divider {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
  user-select: none;
}

.utility-lang-dropdown .dropdown-toggle::after {
  display: none;
}

.utility-lang-btn {
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.15rem 0.35rem !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.utility-lang-btn:hover,
.utility-lang-btn:focus,
.utility-lang-btn.show {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  text-decoration: none;
}

.utility-lang-chevron {
  font-size: 0.65rem;
  opacity: 0.9;
}

.utility-links .dropdown-menu {
  font-size: 0.875rem;
  min-width: 8rem;
}

/* ================================================================
   MAIN HEADER
================================================================ */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--ncw-border);
}

/* Logo */
.header-logo {
  color: var(--ncw-navy);
}

.header-emblem,
.header-ncw-mark {
  flex-shrink: 0;
  display: block;
}

.header-emblem {
  width: 66px;
  height: auto;
}

.header-ncw-mark {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.logo-hindi {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ncw-navy);
  /* line-height: 1.3; */
}

.logo-english {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ncw-navy);
  /* line-height: 1.3; */
}

.accessibility-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  .logo-side-box {
    gap: 12px;
  }

  .logo-side {
    order: 2;
  }

  .search-side {
    order: 3;
  }

  .accessibility-side {
    order: 1;
  }

  section.pm-quotes {
    padding: 40px 0 !important;
  }

  .pm-img {
    margin-inline: auto;
  }

  .pm-message {
    padding: 0 !important;
  }

  .main-nav ul li {
    width: 100% !important;
    /* text-align: justify; */
  }
}

/* Header search + utilities (reference layout) */
.header-search-form {
  flex: 1 1 auto;
  min-width: 12rem;
  max-width: 22rem;
}

.search-field-wrap {
  position: relative;
  width: 100%;
}

.search-input--header {
  width: 100%;
  border: 2px solid #d8dde4 !important;
  border-bottom: 3px solid var(--ncw-navy) !important;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
  padding: 0.5rem 2.75rem 0.5rem 0.875rem;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.search-input--header:focus {
  border-color: var(--ncw-blue);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 0 0 3px rgba(37, 99, 235, 0.15);
  border-radius: 10px 10px 0 0;
}

.btn-search-inline {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #111827;
  padding: 0.35rem 0.5rem;
  /* line-height: 1; */
  border-radius: 6px;
  transition:
    color var(--transition),
    background var(--transition);
}

.btn-search-inline:hover {
  color: var(--ncw-blue);
  background: rgba(37, 99, 235, 0.08);
}

.btn-search-inline:focus-visible {
  outline: 2px solid var(--ncw-blue);
  outline-offset: 2px;
}

.header-bbbp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-rt-logo {
  width: 48px;
  height: 48px;
  /* border-radius: 50%; */
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-bbbp-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-util-icons {
  gap: 0;
}

.header-util-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ncw-navy);
  text-decoration: none;
  padding: 0.25rem 0.45rem;
  border: none;
  background: none;
  /* line-height: 1; */
  transition: color var(--transition);
}

.header-util-link:hover {
  color: var(--ncw-blue);
}

.header-util-divider {
  width: 1px;
  height: 1.35rem;
  background: #c2c0c1;
  margin: 0 0.15rem;
  flex-shrink: 0;
}

.header-lang-toggle {
  font-weight: 600;
  font-size: 1rem;
  gap: 0.2rem;
}

.header-lang-toggle::after {
  display: none;
}

.lang-dropdown-menu {
  max-height: 260px;
  overflow-y: auto;
  min-width: 200px;
}

.lang-dropdown-menu .dropdown-item {
  font-size: 1rem;
  padding: 0.45rem 1rem;
}

.header-lang-hi {
  font-family: "Noto Sans Devanagari", "Noto Sans", system-ui, sans-serif;
}

.header-lang-en {
  font-family: var(--font-family);
}

.header-lang-sep {
  display: inline-block;
  width: 1px;
  height: 1em;
  background: #c5cad6;
  margin: 0 0.2rem;
  vertical-align: middle;
}

.header-mobile-search-btn {
  border: 1.5px solid var(--ncw-border);
  border-radius: 6px;
  color: var(--ncw-navy);
  padding: 0.35rem 0.55rem;
  background: #fff;
}

.header-mobile-search-btn:hover {
  background: var(--ncw-navy);
  color: #fff;
  border-color: var(--ncw-navy);
}

/* Header icon buttons */
.icon-btn {
  background: none;
  border: 1.5px solid var(--ncw-border);
  border-radius: 6px;
  color: var(--ncw-navy);
  padding: 0.3rem 0.55rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.icon-btn:hover,
.icon-btn.active {
  background: var(--ncw-navy);
  color: #fff;
  border-color: var(--ncw-navy);
}

/* ================================================================
   MAIN NAVIGATION
================================================================ */
.main-nav {
  background: #fff;
  /* border-bottom: 1px solid #eef0f4; */
  border-bottom: 2px solid var(--ncw-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: none; */
  /* box-shadow: var(--shadow-sm); */
}

.main-nav .navbar-collapse {
  flex-grow: 1;
  justify-content: flex-start;
}

.main-nav .navbar-nav {
  /* gap: 28px; */
  align-items: stretch;
}

.main-nav .dropdown-menu .nav-link {
  font-size: 14px;
  background: transparent;
  color: #fff;
  transition: all 0.5s;
  font-weight: 500;
}

.main-nav .nav-link {
  /* display: inline-flex; */
  /* align-items: center; */
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  padding: 0.875rem 1rem 0 !important;
  position: relative;
  transition: color var(--transition);
  /* white-space: nowrap; */
  min-height: 3rem;
  box-sizing: border-box;
}

.main-nav .nav-link::after {
  /* content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--ncw-blue);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none; */
}

.main-nav .dropdown-menu li:hover {
  background: var(--ncw-blue);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  /* color: #111827 !important; */
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  opacity: 1;
  bottom: -1px;
}

.main-nav .dropdown-toggle::after {
  display: none;
}

.main-nav ul li {
  width: 160px;
  text-align: center;
}

.main-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow-lg);
  /* min-width: 220px; */
  /* width: 50%; */
  /* padding: 0.5rem; */
  margin-top: 2px;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.main-nav .dropdown-item {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  color: var(--ncw-text);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: normal;
}

.main-nav .dropdown-item:hover {
  background: var(--ncw-gray-bg);
  color: var(--ncw-navy);
}

.nav-item .bi::before,
.nav-item [class^="bi-"]::before,
.nav-item [class*=" bi-"]::before {
  font-weight: unset !important;
  vertical-align: unset !important;
  font-size: 0.7rem !important;
}

/* ================================================================
   HERO BANNER / EVENT SECTION
================================================================ */
.hero-banner {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.hero-banner__toolbar {
  position: absolute;
  bottom: 1.9rem;
  right: 3.5rem;
  z-index: 10;
}

.hero-slide {
  /* line-height: 0; */
}

.hero-banner-carousel .hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.hero-banner-carousel.owl-loaded .owl-stage-outer {
  overflow: hidden;
}

.hero-banner-carousel.owl-loaded .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0 0.5rem;
  pointer-events: none;
}

.hero-banner-carousel.owl-loaded .owl-prev,
.hero-banner-carousel.owl-loaded .owl-next {
  pointer-events: auto;
  position: static !important;
  margin: 0 !important;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  color: #fff !important;
  background: #121212 !important;
  border: 1px solid var(--ncw-border);
  /* border-radius: 50%; */
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    opacity var(--transition);
}

.hero-banner-carousel.owl-loaded .owl-prev:hover,
.hero-banner-carousel.owl-loaded .owl-next:hover {
  /* background: #fff !important; */
}

.hero-banner-carousel.owl-loaded .owl-prev.disabled,
.hero-banner-carousel.owl-loaded .owl-next.disabled {
  opacity: 0.35;
}

.hero-banner-carousel.owl-loaded .owl-dots {
  /* margin: 0 !important;
  padding: 0.65rem 0 0.75rem; */
  display: flex !important;
  justify-content: center;
  gap: 0.35rem;
  bottom: 30px !important;
  right: 123px !important;
  z-index: 9999;
  width: auto !important;
  position: absolute;
  background: #d2dfff;
  border-radius: 50px;
  height: 30px;
  line-height: 30px;
  padding: 4px;
  margin-top: 0;
}

.hero-banner-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  background: var(--ncw-navy) !important;
  opacity: 0.28;
}

.hero-banner-carousel .owl-dot.active span {
  opacity: 1;
}

/* ================================================================
   ABOUT US SECTION
================================================================ */
.about-section {
  background: #fff;
}

.about-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ncw-navy);
  /* line-height: 1.25; */
  letter-spacing: 0.01em;
}

.about-body {
  font-size: 1rem;
  color: var(--ncw-text);
  line-height: 1.75;
}

.about-actions {
  margin-top: 0.25rem;
}

.about-action-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 8.5rem;
  border: 1px solid var(--ncw-navy);
  border-radius: 4px;
  background: #fff;
  /* font-size: 0.875rem; */
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  color: #000;
  letter-spacing: 0.16px;
  width: 100%;
  max-width: 250px;
  /* height: 64px; */
  padding: 14px;
  box-shadow:
    0 1px 2px 0 rgba(35, 35, 47, 0.06),
    0 4px 8px 0 rgba(35, 35, 47, 0.08);
}

.about-action-btn:hover {
  background: var(--ncw-navy);
  color: #fff;
  border-color: var(--ncw-navy);
}

.about-action-btn__icon {
  font-size: 1.35rem;
  /* line-height: 1; */
}

.chairperson-card {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.chairperson-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  border-width: 2px 2px 6px;
  border-style: solid;
  border-color: rgb(235, 234, 234) rgb(235, 234, 234) rgb(22, 47, 106);
  border-image: initial;
  border-bottom: 6px solid rgb(22, 47, 106);
}

.chairperson-name {
  color: #000;
  text-align: center;
  font-size: 18.457px;
  font-style: normal;
  font-weight: 600;
  /* line-height: normal; */
}

.chairperson-role {
  color: #000;
  font-size: 12.304px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.headingclr {
  stroke: #162f6a;
}

/* ================================================================
   QUICK ACCESS TILES (3x3 Grid)
================================================================ */
.quick-access-section {
  background: #d2dfff;
}

.quick-tile {
  background: #f0f5ff;
  border: 1px solid #162f6a;
  border-radius: 4px;
  padding: 1rem 1.125rem;
  transition:
    border-color var(--transition),
    background var(--transition);
  min-height: 72px;
  color: var(--Grey-05, #242634);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 16px; */
  /* 100% */
}

.quick-tile:hover {
  border-color: var(--ncw-navy);
  background: #e8efff;
  color: var(--ncw-navy);
}

.quick-tile-label {
  flex: 1;
  min-width: 0;
}

.quick-tile-icon {
  flex-shrink: 0;
  width: 2.25rem;
  min-width: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ncw-navy);
  font-size: 1.5rem;
  /* line-height: 1; */
  background: transparent;
  border-radius: 0;
}

/* ================================================================
   KEY OFFERINGS + WHAT'S NEW (2 Columns)
================================================================ */
.offerings-news-section {
  background: var(--ncw-gray-bg);
}

/* ── Key Offerings column ───────────────────────────────────── */

/* Key Offerings / What's New — layout on section grey (matches reference) */
.offerings-column,
.whats-new-column {
  min-height: 0;
}

.offerings-list-panel {
  /* background: #fff; */
  /* border: 1px solid var(--ncw-navy); */
  /* border: 2px solid #fff; */
  /* border-radius: 4px; */
  /* min-height: 0; */
}

/* ── What's New column ───────────────────────────────────────── */
.news-panel {
  background: var(--ncw-navy);
  border: 1px solid var(--ncw-navy);
  border-radius: 4px;
  min-height: 0;
}

/* Heading inside card body (replaces old navy header strip) */
.offerings-card-heading {
  color: var(--ncw-navy);
  /* font-size: 32px; */
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
}

/* Offerings Tabs — two pills: active filled navy, inactive white + navy border */
.offerings-tabs {
  display: flex;
  flex-wrap: nowrap;
  /* gap: 0.5rem; */
  border: none;
  background: transparent;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.offerings-tabs .nav-item {
  flex: 0 0 auto;
}

.offerings-tabs .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ncw-navy);
  padding: 1rem 0.5rem;
  border: 1px solid var(--ncw-navy);
  /* border-radius: 999px; */
  background: #fff;
  white-space: nowrap;
  text-align: center;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.offerings-tabs .nav-link:hover:not(.active) {
  background: var(--ncw-gray-light);
  color: var(--ncw-navy);
}

.offerings-tabs .nav-link.active {
  background: var(--ncw-navy);
  color: #fff;
  border-color: var(--ncw-navy);
}

.offerings-tabs .nav-item:first-child button {
  border-radius: 4px 0 0 4px;
}

.offerings-tabs .nav-item:last-child button {
  border-radius: 0 4px 4px 0;
}

@media (min-width: 768px) {
  .offerings-tabs {
    overflow-x: visible;
    flex-wrap: wrap;
    /* gap: 0.625rem; */
    padding-bottom: 0;
  }

  .offerings-tabs .nav-item {
    flex: 1 1 calc(33.333% - 0.625rem);
    /* min-width: 0; */
  }

  .offerings-tabs .nav-link {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .offerings-tabs {
    flex-wrap: nowrap;
  }

  .offerings-tabs .nav-item {
    flex: 1 1 0;
  }
}

/* Offering list — scrollable white panel, single trailing chevron */
.offering-list {
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ncw-navy) var(--ncw-gray-light);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .offering-list {
    max-height: 280px;
  }
}

.offering-list::-webkit-scrollbar {
  width: 6px;
}

.offering-list::-webkit-scrollbar-track {
  background: var(--ncw-gray-light);
}

.offering-list::-webkit-scrollbar-thumb {
  background: var(--ncw-navy);
  border-radius: 3px;
}

.offering-list li {
  border-bottom: 1px solid var(--ncw-gray-light);
}

.offering-list li:last-child {
  border-bottom: none;
}

.offering-list li a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.875rem 0.75rem 1rem;
  /* font-size: 0.875rem; */
  text-decoration: none;
  transition: color var(--transition);
  color: #000;
  font-style: normal;
  font-weight: 500;
  /* line-height: normal; */
  letter-spacing: 0.16px;
}

.offering-list li a:hover {
  color: var(--ncw-navy);
}

.offering-chevron {
  color: var(--ncw-navy);
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.15rem;
  font-size: 0.9rem;
}

/* News list — navy panel, white dividers, light scrollbar */
.news-list {
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.85) rgba(255, 255, 255, 0.12);
}

.news-list::-webkit-scrollbar {
  width: 6px;
}

.news-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.news-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
}

.news-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.75rem 1rem;
}

.news-item:last-child {
  border-bottom: none;
}

.news-link {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: opacity var(--transition);
  /* font-size: 0.875rem; */
  font-style: normal;
  font-weight: 500;
  /* line-height: 27px; */
  /* 150% */
}

.news-link:hover {
  opacity: 0.92;
  color: #fff;
}

.news-link--featured {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 27px; */
  /* 150% */
}

/* View More button */
.btn-view-more {
  background: #fff;
  border: 1px solid var(--ncw-navy);
  color: var(--ncw-navy);
  padding: 0.375rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  /* line-height: 18px; */
  /* 128.571% */
  letter-spacing: 0.16px;
}

.btn-view-more:hover {
  background: var(--ncw-navy);
  color: #fff;
}

#scheme-filter-form .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#scheme-filter-form a.page-numbers,
#scheme-aside a.text-decoration-none {
  color: var(--ncw-navy);
  border: 1px solid var(--ncw-navy);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  background: #fff;
}

#scheme-filter-form a.page-numbers:hover,
#scheme-aside a.text-decoration-none:hover {
  background: #d2dfff;
}

/* ================================================================
   NCW CELLS + EXPLORE USER GROUPS + IMPORTANT LINKS (3 Columns)
================================================================ */
.three-col-section {
  background: #fff;
}

/* ── NCW Cells column ───────────────────────────────────────── */
.three-col-stack {
  min-height: 0;
}

.three-col-heading {
  color: var(--ncw-navy);
  margin: 0;
  /* font-size: 32px; */
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
}

.three-col-heading svg,
.offerings-card-heading svg {
  width: 48px;
  font-weight: 800;
}

@media (min-width: 768px) {
  .three-col-heading--center-md {
    text-align: center;
  }
}

/* ── NCW Cells list (boxed rows) ────────────────────────────── */
.cells-list--boxed {
  padding: 0.5rem;
  margin: 0;
}

.cells-list--boxed li {
  margin-bottom: 0.5rem;
}

.cells-list--boxed li:last-child {
  margin-bottom: 0;
}

.cell-link--boxed {
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--ncw-border);
  background: #fff;
  text-decoration: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: none;

  color: #150202;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.cell-link--boxed:hover {
  border-color: var(--ncw-navy);
  color: var(--ncw-navy);
  box-shadow: 0 1px 4px rgba(26, 60, 115, 0.08);
}

.cell-link__icon {
  flex-shrink: 0;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.25rem;
  color: var(--ncw-navy);
}

.cell-link__text {
  flex: 1;
  min-width: 0;
}

.cell-link__chev {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--ncw-navy);
  opacity: 0.85;
}

/* ── Explore User Groups column ─────────────────────────────── */
.user-groups-card.user-groups-card--plain {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.user-groups-body {
  flex: 1;
  width: 100%;
  padding: 0.25rem 0 0;
}

.ug-slide {
  text-align: center;
  padding: 0.25rem 0.5rem 0;
}

.ug-avatar-ring {
  width: min(220px, 72vw);
  height: min(220px, 72vw);
  max-width: 240px;
  max-height: 240px;
  border-radius: 50%;
  background: var(--ncw-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.ug-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ug-avatar-icon {
  font-size: clamp(4.25rem, 16vw, 6.5rem);
  /* line-height: 1; */
  color: var(--ncw-navy);
  display: block;
  width: 100%;
}

.ug-slide-label {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ncw-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* User groups carousel: prev | dots | next on one row */
.user-groups-carousel.owl-loaded {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.35rem;
}

.user-groups-carousel.owl-loaded .owl-stage-outer {
  grid-column: 1 / -1;
  grid-row: 1;
}

.user-groups-carousel.owl-loaded .owl-nav {
  display: contents;
}

.user-groups-carousel.owl-loaded .owl-prev,
.user-groups-carousel.owl-loaded .owl-next {
  grid-row: 2;
  position: static !important;
  margin: 0 !important;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem !important;
  color: var(--ncw-navy) !important;
  background: transparent !important;
  border-radius: 4px;
  transition:
    background var(--transition),
    opacity var(--transition);
}

.user-groups-carousel.owl-loaded .owl-prev {
  grid-column: 1;
  justify-self: start;
  position: relative !important;
  left: 50px;
}

.user-groups-carousel.owl-loaded .owl-next {
  grid-column: 3;
  justify-self: end;
  position: relative !important;
  right: 50px;
}

.user-groups-carousel.owl-loaded .owl-prev:hover,
.user-groups-carousel.owl-loaded .owl-next:hover {
  background: var(--ncw-gray-light) !important;
}

.user-groups-carousel.owl-loaded .owl-prev.disabled,
.user-groups-carousel.owl-loaded .owl-next.disabled {
  opacity: 0.35;
}

.user-groups-carousel.owl-loaded .owl-dots {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  margin: 0 !important;
  padding: 0.25rem 0;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.user-groups-carousel .owl-dot {
  margin: 0 !important;
}

.user-groups-carousel .owl-dot span {
  width: 9px !important;
  height: 9px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: var(--ncw-navy) !important;
  opacity: 0.28;
  transition:
    opacity var(--transition),
    border-radius var(--transition),
    transform var(--transition) !important;
}

.user-groups-carousel .owl-dot.active span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 2px !important;
  opacity: 1;
}

/* ── Important Links column ─────────────────────────────────── */
.imp-links-list--ruled {
  padding: 0;
  margin: 0;
  list-style: none;
}

.imp-links-list--ruled li:not(:last-child) {
  border-bottom: 1px solid var(--ncw-border);
  /* margin: 0; */
}

.imp-link--row {
  gap: 0.75rem;
  padding: 0.75rem 0.25rem 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ncw-navy);
  text-decoration: none;
  /* line-height: 1.45; */
  transition: color var(--transition);
}

.imp-link--row:hover {
  color: var(--ncw-blue);
}

.imp-link__ext {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--ncw-navy);
}

/* .cells-list { padding: 0.5rem; } */
/* .cells-list li { margin-bottom: 2px; } */

.cell-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0.65rem 0.875rem; */
  color: var(--Grey-05, #242634);
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
  /* height: 58px; */
  /* padding: 10px 20px; */
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
}

.cell-link:hover {
  background: rgba(255, 255, 255, 0.12);
  /* color: #fff; */
}

.cell-link i.bi-dot {
  font-size: 1.5rem;
  /* line-height: 1; */
  flex-shrink: 0;
}

.cell-link i.bi-arrow-right {
  font-size: 0.8rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.user-groups-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ncw-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.imp-links-list {
  padding: 0.5rem;
}

/* .imp-links-list li { margin-bottom: 2px; } */
.imp-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* padding: 0.6rem 0.875rem; */
  border-radius: 6px;
  /* color: var(--ncw-text);
  font-size: 0.875rem; */
  text-decoration: none;
  border: 1px solid transparent;
  /* line-height: 1.45; */
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);

  color: #150202;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.imp-link i {
  color: var(--ncw-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.imp-link:hover {
  /* background: var(--ncw-gray-bg); */
  color: var(--ncw-navy);
  /* border-color: var(--ncw-border); */
}

/* ================================================================
   STORIES / TESTIMONIALS (We have stories to inspire you)
================================================================ */
.stories-section {
  background: #d2dfff;
}

.stories-section-top {
  /* background: #f0f5ff; */
}

.stories-section-cards {
  /* background: #fff; */
  /* padding-top: 0.5rem; */
  /* background: linear-gradient(to bottom, #f0f5ff 40%, #fff 40%); */
}

.stories-heading {
  color: var(--ncw-navy);
  letter-spacing: 0.01em;
  flex: 1;
  min-width: 0;
  /* font-size: 32px; */
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stories-intro {
  font-size: 1rem;
  color: var(--ncw-text);
  line-height: 1.65;
  max-width: 100%;
}

/* ── Story cards grid ───────────────────────────────────────── */
.story-card {
  --story-accent: #7c3aed;
  --story-accent-soft: #efe7ff;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(22, 47, 106, 0.06);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 220px;
  position: relative;
}

.story-card--purple {
  --story-accent: #7c3aed;
  --story-accent-soft: #efe7ff;
}

.story-card--green {
  --story-accent: #16a34a;
  --story-accent-soft: #e8f8ee;
}

.story-card--orange {
  --story-accent: #ea580c;
  --story-accent-soft: #fff1e8;
}

.story-card-content {
  flex: 1 1 52%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.5rem 1.25rem 1.25rem;
  position: relative;
  z-index: 1;
}

.story-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.story-card-label__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--story-accent-soft);
  color: var(--story-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.story-card-label__text {
  color: var(--story-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.story-card-title {
  color: #162f6a;
  margin: 0 0 0.55rem;
  font-size: clamp(0.95rem, 1.15vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  /* line-height: 1.3; */
}

.story-card-text {
  font-size: 0.8125rem;
  color: #4b5563;
  margin: 0 0 1rem;
  font-style: normal;
  font-weight: 400;
  flex: 1;
}

.story-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  /* color: var(--story-accent); */
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.story-card-link:hover,
.story-card-link:focus {
  /* color: var(--story-accent); */
  gap: 0.55rem;
  opacity: 0.85;
  text-decoration: none;
}

.story-card-link .bi {
  font-size: 0.9rem;
  line-height: 1;
}

.story-card-visual {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  padding: 0;
  margin-top: auto;
}

.story-card-visual__img {
  width: 100%;
  height: auto;
  /* max-height: 200px; */
  object-fit: contain;
  object-position: bottom right;
  display: block;
  margin: 0;
}

@media (max-width: 991.98px) {
  .story-card {
    min-height: 0;
  }

  .story-card-title {
    font-size: 1.05rem;
  }
}

@media (max-width: 575.98px) {
  .story-card {
    flex-direction: column;
  }

  .story-card-visual {
    flex: none;
    max-width: none;
    width: 100%;
    margin-top: 0;
    order: 2;
  }

  .story-card-visual__img {
    /* max-height: 200px; */
  }

  .story-card-content {
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* Legacy thumb helpers (kept for older markup / commented blocks) */
.story-card-thumb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1.5rem;
}

.story-card-thumb--stop {
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.story-card-thumb__ribbon {
  font-size: 3.25rem;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 2px 4px rgba(157, 23, 77, 0.35));
}

.story-card-thumb__stop-text {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(157, 23, 77, 0.25);
}

.story-card-thumb__figures {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}

.story-card-thumb__icon {
  display: block;
}

.story-card-thumb__icon--adult {
  font-size: 5.5rem;
  opacity: 0.92;
}

.story-card-thumb__icon--child {
  font-size: 3.25rem;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}

.story-card-thumb__icon--woman {
  font-size: 7rem;
  opacity: 0.9;
}

.story-card-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.story-card-body a {
  text-decoration: unset;
}

.tracker-card-badge.custody {
  background: #e0f0ff;
  color: #1a5c9a;
}

.tracker-card-badge.harassment {
  background: #ffe8e8;
  color: #9b1c1c;
}

/* ================================================================
   SOCIAL MEDIA SECTION
================================================================ */
.social-media-section {
  background: var(--ncw-navy);
}

.social-media-heading {
  color: #fff;
  letter-spacing: 0.01em;
  text-align: left;
  /* font-size: 32px; */
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
}

.social-card {
  /* border: 1px solid var(--ncw-border); */
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(26, 60, 115, 0.08);
}

.social-card-header {
  padding: 0.75rem 1rem;
  /* color: #fff; */
  font-size: 1rem;
  /* font-style: normal; */
  font-weight: bold;
  /* line-height: 140%; */
  /* 21.805px */
  /* letter-spacing: -0.467px; */
}

.social-card-header--navy {
  background: #fff;
}

.social-card-header__icon {
  /* font-size: 1.25rem; */
  /* line-height: 1; */
  flex-shrink: 0;
}

.social-card-body {
  background: #fff;
  /* height: 300px; */
  height: auto;
  min-height: 300px;
  max-height: 300px;
  width: 100%;
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
  padding: 15px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .social-card-body {
    max-height: 280px;
  }
}

.fb-container,
.fb-container iframe {
  height: 100%;
}

/* ================================================================
   PARTNER LOGOS / GOVERNMENT PORTALS
================================================================ */
.partners-section {
  background: #fff;
  overflow: visible;
}

.partners-section .homeLogoSlider {
  position: relative;
  max-width: 1140px;
  padding: 0 40px;
  overflow: visible;
}

.partners-section .partners-controls {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0.35rem;
}

.partners-carousel.owl-loaded {
  position: relative;
  padding: 0;
  overflow: visible;
}

.partners-carousel .owl-stage-outer {
  overflow: hidden;
  /* vertical room for card shadow only */
  padding: 8px 0 12px;
  margin: 0;
}

/* Inset cards inside each Owl slot so edges/shadows never clip */
.partners-carousel .owl-item {
  float: left;
  box-sizing: border-box !important;
  padding: 4px 8px 8px;
}

.partners-section .owl-carousel .owl-item .partner-item,
.partner-item {
  width: 100%;
  height: 112px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
}

/* Override Owl default img { width: 100% } so logos stay centered */
.partners-carousel .owl-item .partner-logo,
.partner-logo {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  /* max-height: 68px; */
  margin: 0 auto;
  object-fit: contain;
}

.partners-carousel.owl-loaded .owl-nav {
  margin: 0;
}

.partners-carousel.owl-loaded .owl-prev,
.partners-carousel.owl-loaded .owl-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem !important;
  line-height: 1;
  color: #333 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  z-index: 3;
}

.partners-carousel.owl-loaded .owl-prev {
  left: -40px;
}

.partners-carousel.owl-loaded .owl-next {
  right: -40px;
}

.partners-carousel.owl-loaded .owl-prev:hover,
.partners-carousel.owl-loaded .owl-next:hover {
  background: transparent !important;
  color: #000 !important;
}

.partners-carousel.owl-loaded .owl-prev.disabled,
.partners-carousel.owl-loaded .owl-next.disabled {
  opacity: 0.4;
}

@media (max-width: 767.98px) {
  .partners-section .homeLogoSlider {
    padding: 0 30px;
  }

  .partners-carousel.owl-loaded .owl-prev {
    left: -30px;
  }

  .partners-carousel.owl-loaded .owl-next {
    right: -30px;
  }

  .partners-carousel .owl-item {
    padding: 4px 6px 8px;
  }

  .partners-section .owl-carousel .owl-item .partner-item,
  .partner-item {
    height: 96px;
    padding: 10px 8px;
  }

  .partners-carousel .owl-item .partner-logo,
  .partner-logo {
    max-height: 54px;
  }
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: #1a2d5e;
  color: rgba(255, 255, 255, 0.88);
  padding: 33px 60px;
}

.footer-row {
  min-height: 0;
}

.footer-col {
  padding: 0 1.25rem;
}

@media (min-width: 992px) {
  .footer-col--divided {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .footer-col {
    padding: 0 1.5rem;
  }

  .footer-col:first-child {
    padding-left: 0;
  }

  .footer-col:last-child {
    padding-right: 0;
  }
}

/* ── Useful Links / Quick Links columns ─────────────────────── */
.footer-heading {
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
  color: #ebeaea;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  /* line-height: normal; */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
  color: #ebeaea;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 20px; */
  /* 100% */
}

.footer-link:hover {
  color: #fff;
  padding-left: 0;
}

.footer-link i {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* ── Ownership / site info column ───────────────────────────── */
.footer-ownership-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-top: 2rem;
}

@media (min-width: 992px) {
  .footer-ownership-wrap {
    padding-top: 0;
    /* min-height: 12rem; */
  }
}

.footer-ownership {
  color: #ebeaea;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

/* ── Follow Us + visitor stats column ───────────────────────── */
.footer-social {
  gap: 0.65rem;
}

.footer-stat {
  gap: 0.2rem;
}

.footer-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  /* line-height: 1.35; */
}

.footer-stat-value {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  /* line-height: 1.4; */
}

/* ── Portal logos & bottom bar in footer ───────────────────── */
.footer-portal-logo {
  background: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-portal-logo img {
  height: 32px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.25) !important;
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-last-updated {
  /* color: #fff; */
  text-align: right;
  /* font-family: "Noto Sans"; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 18px; 112.5% */
  letter-spacing: 0.16px;
}

/* ================================================================
   BACK TO TOP BUTTON
================================================================ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--ncw-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ncw-blue);
}

/* ================================================================
   SHARED: OWL CAROUSEL GLOBAL OVERRIDES
================================================================ */
.owl-theme .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  /* background: var(--ncw-border) !important; */
  background: #214aab !important;
  margin: 5px 4px !important;
  transition: background var(--transition) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--ncw-navy) !important;
}

.partners-section .owl-carousel .owl-item .partner-item {
  width: 100%;
  box-sizing: border-box;
}

/* Media page style */

/* ================================================================
   PHOTOS PAGE — photos.css
================================================================ */

/* ================================================================
   INTERNAL PAGE BANNER
================================================================ */
.internal-banner {
  position: relative;
  margin-bottom: 1rem;
}

.internal-banner__main {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--ncw-navy);
  border-bottom: 30px solid var(--ncw-navy);
}

.internal-banner__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.internal-banner__main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      var(--ncw-navy) 0%,
      var(--ncw-navy) 18%,
      rgba(22, 47, 106, 0.92) 32%,
      rgba(22, 47, 106, 0.55) 48%,
      rgba(190, 196, 208, 0.45) 64%,
      rgba(235, 238, 242, 0.9) 80%,
      var(--ncw-gray-light) 100%);
  pointer-events: none;
}

.internal-banner__content {
  /* position: relative; */
  z-index: 2;
  /* padding: 2.5rem 0 3.75rem; */
  /* max-width: 36rem; */
  position: absolute;
  bottom: 10%;
  width: 85%;
}

.internal-banner__breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  --bs-breadcrumb-divider: "/";
}

.internal-banner__breadcrumb .breadcrumb-item,
.internal-banner__breadcrumb .breadcrumb-item a {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
}

.internal-banner__breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.internal-banner__breadcrumb .breadcrumb-item a.active {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.internal-banner__breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.65);
}

.internal-banner__title {
  color: #fff;
  /* font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2; */
  /* font-size: 36px; */
  font-size: clamp(1.25rem, 5vw, 2.25rem);
  font-style: normal;
  font-weight: 700;
}

.internal-banner__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 5;
  transform: translateY(50%);
}

.internal-banner__subnav {
  display: inline-block;
  background: var(--ncw-navy);
  border-radius: 0 0 12px 12px;
  padding: 0.775rem 1.5rem;
  box-shadow: 0 4px 16px rgba(22, 47, 106, 0.2);
  width: 100%;
}

.internal-banner__subnav .nav {
  flex-wrap: nowrap;
  gap: 0.25rem;
  overflow-x: scroll;
}

.internal-banner__subnav ::-webkit-scrollbar {
  /* width: 1px; */
  /* height: 0; */
  height: 3px;
}

.internal-banner__subnav ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .4);
  border-radius: 3px;
}

.internal-banner__subnav .nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  font-weight: 400;
  /* line-height: 1.3; */
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
  transition: color var(--transition);
}

.internal-banner__subnav .nav-link:hover {
  color: #fff;
}

.internal-banner__subnav .nav-link.active {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.internal-banner__subnav .nav-link.active .bi {
  font-size: 1rem;
}

.internal-banner__nav .nav-item img {
  height: 20px;
}

/* ================================================================
   GALLERY
================================================================ */
.gallery-section {
  padding-top: 0.5rem;
}

.gallery-filters {
  margin-bottom: 0.25rem;
}

.gallery-search {
  flex: 0 1 300px;
  min-width: 200px;
}

.gallery-search__wrap,
.gallery-sort__wrap {
  position: relative;
}

.gallery-search__icon,
.gallery-sort__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ncw-border-blue);
  pointer-events: none;
  z-index: 2;
}

.gallery-search__icon {
  font-size: 0.9rem;
}

.gallery-sort__icon {
  font-size: 1rem;
}

.gallery-search__input,
.gallery-sort__select {
  padding-left: 2.25rem;
  border: 1px solid var(--ncw-border-blue);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  height: 42px;
}

.gallery-search__input:focus,
.gallery-sort__select:focus {
  border-color: var(--ncw-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 170, 0.12);
}

.gallery-sort {
  flex: 0 1 220px;
  min-width: 160px;
}

.gallery-sort__select {
  cursor: pointer;
}

.gallery-card {
  background: transparent;
}

.gallery-card__img-wrap {
  border-radius: 10px;
  aspect-ratio: 16 / 10;
  background: var(--ncw-gray-light);
}

.creative-section .gallery-card__img-wrap {
  aspect-ratio: auto !important;
}

.gallery-card__img {
  transition: opacity var(--transition);
}

.gallery-card__arrow {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  /* line-height: 1; */
  /* pointer-events: none; */
  cursor: pointer;
}

.gallery-card__body {
  padding: 0.75rem 0 0;
}

.gallery-card__title {
  /* font-size: 0.9375rem; */
  /* font-weight: 500; */
  color: var(--ncw-text);
  /* line-height: 1.4; */
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 17.232px; */
  /* 142.857% */
}

.gallery-card__meta {
  gap: 0.75rem;
  /* font-size: 0.6875rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.3; */
  text-transform: uppercase;
  /* letter-spacing: 0.02em; */
  color: #3d4043;
  /* font-size: 10.339px; */
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
  letter-spacing: 0.517px;
  text-transform: uppercase;
}

/* ================================================================
   AUDIO CARD
================================================================ */
.audio-card {
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  padding: 1rem;
}

.audio-card__header {
  color: #150202;
  text-align: center;
  font-size: 17.081px;
  font-style: normal;
  font-weight: 400;
  padding: 0.75rem 1rem;
  background: #a3bbf3;
  border-radius: 4px;
}

.audio-card__body {
  /* padding: 0.875rem 1rem 1rem; */
  padding-top: 0.875rem;
}

.audio-card__date {
  color: #150202;
  font-size: 13.665px;
  font-style: normal;
  font-weight: 400;
}

.audio-card__player {
  display: block;
  width: 100%;
  height: 36px;
}

/* ================================================================
   ORG CHART (Who's Who)
================================================================ */

.org-chart-section {
  max-width: 96%;
  margin: 4rem auto 2rem;
  background: #d2dfff;
  border-radius: 18px;
}

/* Or wrap in scroll container: */
.org-chart-section {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.org-chart {
  gap: 0;
}

.org-node {
  position: relative;
}

.org-node__card {
  padding: 2.75rem 1.75rem 1.25rem;
  text-align: center;
  /* min-width: 190px; */
  /* max-width: 234px; */
  min-width: 250px;
  max-width: 250px;
  position: relative;
  margin-top: 40px;
  border-radius: 8.762px;
  border: 2px solid rgba(0, 0, 0, 0);
  background: #fff;
  box-shadow: 0 2.921px 2.921px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.org-node__card:hover {
  border: 2px solid var(--ncw-navy);
}

.org-node__photo-wrap {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 3px solid #fff; */
  border: 0.73px solid #fff;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
  /* background: #dde3f0; */
}

.org-node__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.org-node__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.org-node__role {
  color: #162f6a;
  text-align: center;
  /* font-size: 12px; */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
  letter-spacing: 0.511px;
  text-transform: uppercase;
}

.org-node__name {
  color: #150202;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.org-connector {
  width: 1px;
  height: 52px;
  background: #9aaac7;
  margin: 0 auto;
}

.org-chart-section .detailsBtn {
  background-color: #fff;
  border: 1px solid #214aab;
  border-radius: 4px;
  color: #214aab;
  font-weight: 700;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 13px; */
  letter-spacing: 0.088px;
  text-decoration: none;
  text-transform: uppercase;
}

.who-divider {
  /* border-top: 0.73px solid #150202; */
  color: #150202;
  margin-top: 4.5rem;
}

/* ================================================================
   ORG PERSON MODAL
================================================================ */
.org-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.org-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  padding: 0;
}

.org-modal__close:hover {
  color: #111;
}

.org-modal__body {
  padding: 0;
}

.org-modal__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px 28px;
  text-align: center;
}

.org-modal__photo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ncw-navy);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.org-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.org-modal__role {
  display: block;
  color: var(--ncw-navy);
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 18px;
  letter-spacing: 0.12px;
}

.org-modal__name {
  font-size: 12px;
  font-weight: 400;
  color: #150202;
  line-height: 32px;
  margin-bottom: 8px;
}

.org-modal__designation {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
  margin-bottom: 8px;
}

.org-modal__contacts-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.org-modal__contact-main-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.org-modal__contact-fax-row {
  display: flex;
  justify-content: center;
}

.org-modal__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #150202;
  line-height: 20px;
  /* text-align: left; */
}

.org-modal__profile-btn {
  display: inline-block;
  background: #d2dfff;
  color: var(--ncw-navy);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 28px;
  border-radius: 6px;
  line-height: 18px;
  letter-spacing: 0.12px;
  text-decoration: none;
  transition: background 0.2s;
}

.org-modal__profile-btn:hover {
  background: #a3bbf3;
  /* color: #fff; */
}

.org-modal__divider {
  height: 1px;
  border: 1px solid #5279d7;
  margin: 32px;
}

.org-modal__office-section {
  padding: 20px 32px 24px;
}

.org-modal__office-heading {
  font-size: 10px;
  font-weight: 600;
  color: var(--ncw-navy);
  margin-bottom: 14px;
  line-height: 18px;
  letter-spacing: 0.12px;
}

.org-modal__staff-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
}

.org-modal__staff-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.org-modal__staff-name {
  font-size: 10px;
  font-weight: 400;
}

.org-modal__staff-role {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
}

.org-modal__staff-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.org-modal__staff-contacts li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.12px;
}

.modal-dialog-scrollable {
  /* height: calc(100% - var(--bs-modal-margin) * 2); */
  height: unset;
}

.ww-dir-section {
  background: #fff;
}

.ww-dir-div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Ministry block */
.ww-block {
  /* border: 1px solid #e5e7eb; */
  /* border-radius: 6px; */
  border-bottom: 1px solid #ebeaea;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ww-block__header {
  background: #214aab;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0.65rem 1rem;
  /* line-height: normal; */
  text-transform: uppercase;
}

/* Flex rows */
.ww-row {
  display: flex;
  align-items: stretch;
}

.ww-row--labels {
  border-bottom: 1px solid #d0daff;
  border-radius: 2.921px;
  background: #d2dfff;
}

.ww-row--data {
  background: #fff;
}

/* Columns */
.ww-col {
  padding: 0.6rem 1rem;
  color: #150202;
  /* font-size: 11.683px; */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.ww-col:last-child {
  border-right: none;
}

.ww-col--name {
  flex: 0 0 35%;
  max-width: 35%;
}

.ww-col--contact {
  flex: 0 0 38%;
  max-width: 38%;
}

.ww-col--address {
  flex: 1 1 auto;
}

@media (max-width: 1099px) {
  .ww-col--name {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .ww-col--contact {
    flex: 0 0 35%;
    max-width: 35%;
  }
}

/* Label row text */
.ww-row--labels .ww-col {
  color: #214aab;
  /* font-size: 12px; */
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  /* line-height: normal; */
  letter-spacing: 0.35px;
  text-transform: uppercase;
  border-right-color: #d0daff;
}

/* Data row vertical padding */
.ww-row--data .ww-col {
  padding: 0.85rem 1rem;
}

.team-details-content h2 {
  font-size: 23px;
  font-weight: 600;
  padding-bottom: 15px;
  color: var(--ncw-navy);
  margin: 0;
  text-transform: uppercase;
}

.team-details-image img {
  width: 100%;
}

.team-details-section img.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

/* ----------------------------------------------------------------
   WHO'S WHO – responsive (below lg = < 992px)
---------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .ww-row--labels {
    display: none;
  }

  .ww-row--data {
    flex-direction: column;
  }

  .ww-row--data .ww-col {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
    /* border-bottom: 1px solid #e5e7eb; */
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.45rem;
  }

  .ww-row--data .ww-col:last-child {
    border-bottom: none;
  }

  .ww-row--data .ww-col::before {
    content: attr(data-label) ":";
    flex: 0 0 20%;
    min-width: 20%;
    font-size: 0.625rem;
    /* font-weight: 700; */
    text-transform: uppercase;
    letter-spacing: 0.06em;
    /* color: #6b7280; */
    padding-top: 0.15rem;
    /* line-height: 1.5; */
  }
}

.ww-name {
  color: #150202;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
}

.ww-designation {
  color: #150202;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.ww-contact-list li {
  color: #150202;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  /* line-height: 1.5; */
}

/* ================================================================
   FEEDBACK FORM
================================================================ */

.single-page-banner .internal-banner__main {
  border-bottom: unset;
}

.single-page-banner .internal-banner__content {
  bottom: 20%;
}

.single-page-banner .internal-banner__main::before {
  background: linear-gradient(90deg, #162f6a 20%, rgba(22, 47, 106, 0) 70%);
}

.feedback-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem 2.5rem 2.5rem;
  max-width: 560px;
}

.feedback-note {
  color: #212529;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 24px; */
  /* 150% */
}

.feedback-required-star {
  color: #dc3545;
  font-weight: 700;
}

.feedback-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #212529;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 24px; */
  /* 150% */
}

.feedback-input {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  transition: border-color 0.2s;
  color: rgba(33, 37, 41, 0.75);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
}

.feedback-input:focus {
  border-color: #5279d7;
  box-shadow: 0 0 0 3px rgba(82, 121, 215, 0.15);
  outline: none;
}

.feedback-input::placeholder {
  color: #9ca3af;
  font-size: 0.8125rem;
}

.feedback-textarea {
  resize: vertical;
  min-height: 110px;
}

/* CAPTCHA */
.feedback-captcha {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feedback-captcha__img {
  background: rgb(238, 238, 238);
  border-radius: 4px;
  overflow: hidden;
  /* line-height: 0; */
}

.feedback-captcha__img canvas {
  display: block;
}

.feedback-captcha__btn {
  width: 36px;
  height: 36px;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  /* background: #f3f4f6;
  color: #374151; */
  background: rgb(108, 117, 125);
  color: rgb(255, 255, 255);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* padding: 6px;
  background: rgb(108, 117, 125);
  color: rgb(255, 255, 255);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  border-radius: 4px;
  display: grid;
  place-items: center; */
}

/* Submit button */
.feedback-submit-btn {
  padding: 0.5rem 1.75rem;
  transition: background 0.2s;
  border-radius: 4px;
  background: #d2dfff;
  color: #162f6a;
  text-align: center;
  font-size: 11.6px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 18px; */
  /* 155.172% */
  letter-spacing: 0.12px;
}

.feedback-submit-btn:hover,
.feedback-submit-btn:focus {
  background: #a3bbf3;
  /* color: #fff; */
}

@media (max-width: 575.98px) {
  .feedback-card {
    padding: 1.25rem 1rem 1.5rem;
    max-width: 100%;
    width: 100%;
    border-radius: 6px;
  }

  .hero-banner-carousel.owl-loaded .owl-dots {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 10px !important;
  }

  .hero-banner__toolbar {
    right: 0.5rem;
    bottom: 0.75rem;
  }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 767.98px) {
  .internal-banner {
    margin-bottom: 3rem;
  }

  .internal-banner__main {
    min-height: 170px;
  }

  .internal-banner__img {
    /* width: 52%; */
    opacity: 0.9;
  }

  .internal-banner__content {
    /* padding: 1.75rem 0 3rem; */
    max-width: none;
  }

  .internal-banner__title {
    /* font-size: 1.75rem; */
  }

  .internal-banner__subnav {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .internal-banner__subnav .nav {
    overflow-x: auto;
    scrollbar-width: thin;
    gap: 0.5rem;
  }

  .internal-banner__subnav .nav-link {
    font-size: 1rem;
  }

  .gallery-search,
  .gallery-sort {
    flex: 1 1 100%;
  }

  .user-groups-carousel.owl-loaded .owl-prev {
    left: 100px;
  }

  .user-groups-carousel.owl-loaded .owl-next {
    right: 100px;
  }

  .site-footer {
    padding: 24px 16px;
  }

  .org-chart {
    flex-direction: column;
    align-items: center;
  }

  .org-node__card {
    min-width: 0;
    width: 100%;
    /* max-width: 280px; */
    max-width: 158px;
  }

  .org-connector {
    width: 1px;
    height: 32px;
  }
}

@media (max-width: 639.98px) {

  .gallery-search,
  .gallery-sort {
    flex: 1 1 100%;
    min-width: 0;
  }

  .gallery-filters {
    flex-direction: column;
  }
}

@media (min-width: 999px) and (max-width: 1299px) {
  .user-groups-carousel.owl-loaded .owl-prev {
    left: 50px;
  }

  .user-groups-carousel.owl-loaded .owl-next {
    right: 50px;
  }
}

/* @media (min-width: 1199px) and (max-width: 1499px) {
  .offerings-tabs .nav-link {
    font-size: 0.75rem;
  }
} */

/* About Us Section styles  */

.about-us-section .stickyBox {
  position: sticky;
  top: 1.5rem;
}

.about-us-section .visionbox {
  background: #ebeaea;
  border-radius: 10px;
  padding: 32px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* ── Large Desktops (≥1400px): container max-width ──────────── */
@media (min-width: 1400px) {
  .container-fluid {
    /* max-width: 1440px;
    margin: 0 auto; */
  }
}

.py-80 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-120 {
  padding-left: 120px;
  padding-right: 120px;
}

@media (min-width: 768px) and (max-width: 1536.5px) {
  .py-80 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .px-120 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}

@media (max-width: 767.5px) {
  .px-120 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .partners-section .px-120 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ── Tablets (< 992px) ───────── */
@media (max-width: 991.98px) {

  /* ── HERO BANNER / EVENT SECTION ──────────────────────────── */
  /* ── MAIN NAVIGATION ──────────────────────────────────────── */
  .main-nav .navbar-nav {
    gap: 0;
  }

  .main-nav .navbar-collapse {
    background: #fff;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid var(--ncw-border);
    max-height: 80vh;
    overflow-y: auto;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link {
    padding: 0.625rem 0.5rem !important;
    border-bottom: 1px solid var(--ncw-gray-light);
  }

  /* ── NCW CELLS + USER GROUPS + IMPORTANT LINKS (3 Columns) ─ */
  .three-col-section .col-xl-6 {
    order: -1;
  }
}

/* ── Mobile (< 768px) ─────────── */
@media (max-width: 767.98px) {

  /* ── MAIN HEADER ──────────────────────────────────────────── */
  .main-header .container {
    gap: 0.5rem;
  }

  .logo-hindi {
    font-size: 0.9375rem;
  }

  .logo-english {
    font-size: 0.8125rem;
  }

  .header-emblem {
    width: 38px;
  }

  .header-ncw-mark {
    width: 56px;
    height: 56px;
  }

  .header-search-form {
    min-width: 0;
    max-width: none;
  }

  /* ── HERO BANNER / EVENT SECTION ──────────────────────────── */
  /* ── QUICK ACCESS TILES (3x3 Grid) ────────────────────────── */
  .quick-tile {
    padding: 0.875rem;
    min-height: auto;
  }

  .quick-tile-icon {
    width: 2rem;
    min-width: 2rem;
    font-size: 1.25rem;
  }

  .quick-tile-label {
    font-size: 0.8125rem;
  }

  /* ── ABOUT US SECTION ─────────────────────────────────────── */
  .chairperson-img {
    max-width: 220px;
    max-height: 280px;
    height: auto;
  }

  /* ── FOOTER ───────────────────────────────────────────────── */
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Small Mobile (< 480px) ────── */
@media (max-width: 479.98px) {

  /* ── QUICK ACCESS TILES (3x3 Grid) ────────────────────────── */
  .quick-access-section .col-sm-6 {
    width: 50%;
  }

  .user-groups-carousel.owl-loaded .owl-prev {
    left: 0 !important;
  }

  .user-groups-carousel.owl-loaded .owl-next {
    right: 0 !important;
  }
}

/* ================================================================
   PRINT STYLES
================================================================ */
@media print {

  .top-utility-bar,
  .main-nav,
  .back-to-top,
  .hero-banner,
  .social-media-section {
    display: none !important;
  }

  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }

  .footer-link {
    color: #000 !important;
  }
}

/* ================================================================
   FOCUS STYLES (Accessibility)
================================================================ */
:focus-visible {
  outline: 3px solid var(--ncw-blue-light);
  outline-offset: 2px;
  border-radius: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--ncw-blue-light);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .main-nav.navbar {
    padding-top: 0;
    padding-bottom: 1px;
  }

  .main-nav .dropdown-menu {
    /* width: 50%; */
  }
}

/* ================================================================
   SPECIAL CAMPAIGN / PHOTO DETAIL PAGE (photos-detail.html)
================================================================ */

/* sc-date: color and letter-spacing only; display/font-weight/margin handled by Bootstrap */
.sc-date {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 54px; 337.5% */
}

/* sc-title: font-weight handled by Bootstrap fw-bold */
.sc-title {
  color: #000;
  /* font-size: 36px; */
  font-size: clamp(1.25rem, 5vw, 2.25rem);
  font-style: normal;
  font-weight: 400;
  /* line-height: 54px; 150% */
}

/* ── Individual Card ───────────────────────────────────────── */
.sc-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--sc-shadow);
  background: #f0f0f0;
}

/* sc-card-inner: position/width/overflow handled by Bootstrap */
.sc-card-inner {
  aspect-ratio: 4 / 3;
}

/* sc-img: width/height/object-fit/display handled by Bootstrap */
.sc-img {
  object-position: center top;
  transition: transform var(--sc-transition);
}

/* ── Expand / Fullscreen Button ────────────────────────────── */
/* display/flex/border/border-radius handled by Bootstrap */
.sc-expand-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--sc-btn-bg);
  color: var(--ncw-white);
  cursor: pointer;
  font-size: 0.9375rem;
  transition:
    background var(--sc-transition),
    transform var(--sc-transition);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── Modal ──────────────────────────────────────────────────── */
body.sc-modal-open {
  overflow: hidden;
}

.sc-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.65);
  animation: sc-fade-in 0.2s ease;
}

.sc-modal-backdrop[hidden] {
  display: none;
}

@keyframes sc-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sc-modal {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  animation: sc-modal-in 0.22s ease;
}

.sc-modal[hidden] {
  display: none;
}

@keyframes sc-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.sc-modal-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.sc-lightbox-img-area {
  position: relative;
  background: #000;
  height: clamp(300px, 75vh, 520px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center top; */
  display: block;
}

/* sc-lightbox-close: display/flex/bg/border/border-radius handled by Bootstrap */
.sc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  color: #150202;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--sc-transition);
  z-index: 10;
  background: var(--sc-btn-bg);
}

/* sc-lightbox-bar: display/flex/justify/flex-shrink handled by Bootstrap */
.sc-lightbox-bar {
  height: 60px;
  background: #162f6a;
  padding: 0 20px;
  gap: 12px;
}

.sc-lightbox-title {
  flex: 1;
  text-align: center;
  color: #ffffff;
  font-size: 22.972px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* sc-lightbox-nav: display/flex/bg/border/border-radius/flex-shrink handled by Bootstrap */
.sc-lightbox-nav {
  width: 38px;
  height: 38px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background var(--sc-transition),
    opacity var(--sc-transition);
}

.sc-lightbox-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 560px) {
  .sc-modal {
    padding: 16px 12px;
  }

  .sc-lightbox-img-area {
    height: clamp(200px, 52vw, 300px);
  }

  .sc-lightbox-bar {
    height: 52px;
    padding: 0 12px;
  }

  .sc-lightbox-title {
    font-size: 0.9375rem;
  }

  .sc-title {
    /* font-size: 1.375rem; */
  }
}

@media (max-width: 900px) {
  .sc-title {
    /* font-size: 1.625rem; */
  }
}

/* Video section styles (videos.html) */

.ratio-16x9 {
  --bs-aspect-ratio: 63%;
}

/* ================================================================
   RTI PAGE — rti.css
   NCW New Portal | Left sidebar accordion + right content layout
================================================================ */

/* ================================================================
   PAGE LAYOUT — sidebar + content
================================================================ */
.rti-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 72px;
  gap: 40px;
}

/* ================================================================
   LEFT SIDEBAR
================================================================ */
.rti-sidebar {
  position: sticky;
  top: 75px;
}

/* ── Accordion wrapper ─────────────────────────────────────── */
.rti-accordion {
  border: 1px solid var(--rti-sidebar-border);
  border-radius: 4px;
  overflow: hidden;
}

/* ── Accordion toggle button ───────────────────────────────── */
.rti-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--rti-acc-header-bg);
  border: none;
  border-bottom: 1px solid var(--rti-sidebar-border);
  cursor: pointer;
  font-family: var(--rti-font);
  font-size: 0.8125rem;
  /* 13px */
  font-weight: 600;
  color: var(--rti-acc-header-text);
  text-align: left;
  letter-spacing: 0.01em;
  transition: background var(--rti-transition);
  gap: 8px;
}

.rti-acc-toggle:hover {
  background: #ebebeb;
}

.rti-acc-toggle:focus-visible {
  outline: 2px solid #162f6a;
  outline-offset: -2px;
}

/* ── Chevron icon ──────────────────────────────────────────── */
.rti-acc-chevron {
  font-size: 0.8rem;
  transition: transform var(--rti-transition);
  flex-shrink: 0;
}

.rti-acc-chevron--down {
  transform: rotate(180deg);
}

/* ── Accordion panel ───────────────────────────────────────── */
.rti-acc-panel {
  overflow: hidden;
  max-height: 600px;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease;
  opacity: 1;
}

.rti-acc-panel--collapsed {
  max-height: 0;
  opacity: 0;
}

/* ── Navigation list inside panel ─────────────────────────── */
.rti-nav-list {
  display: flex;
  flex-direction: column;
}

.rti-nav-list li {
  border-bottom: 1px solid var(--rti-sidebar-border);
}

.rti-nav-list li:last-child {
  border-bottom: none;
}

.rti-nav-link {
  display: block;
  padding: 9px 14px 9px 16px;
  font-size: var(--rti-font-base);
  font-weight: 400;
  color: var(--rti-text);
  text-decoration: none;
  transition:
    background var(--rti-transition),
    color var(--rti-transition);
  border-left: 3px solid transparent;
}

.rti-nav-link:hover {
  background: var(--rti-nav-hover-bg);
  color: var(--rti-link);
  border-left-color: #162f6a;
}

.rti-nav-link:focus-visible {
  outline: 2px solid #162f6a;
  outline-offset: -2px;
}

/* Active / current page link */
.rti-nav-link--active {
  background: var(--rti-nav-active-bg);
  color: var(--rti-nav-active-bar);
  font-weight: 600;
  border-left-color: var(--rti-nav-active-bar);
}

.rti-nav-link--active:hover {
  background: var(--rti-nav-active-bg);
  color: var(--rti-nav-active-bar);
}

/* ================================================================
   RIGHT CONTENT AREA
================================================================ */
.rti-content {
  padding-top: 4px;
}

/* ── Page heading ──────────────────────────────────────────── */
.rti-page-title {
  font-size: 1.5rem;
  /* 24px */
  font-weight: 700;
  color: var(--rti-text);
  margin-bottom: 20px;
  /* line-height: 1.25; */
}

/* ── Document list ─────────────────────────────────────────── */
.rti-doc-list {
  list-style: decimal;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rti-doc-list li {
  font-size: var(--rti-font-base);
  line-height: 1.6;
  color: var(--rti-text);
}

.rti-doc-link {
  color: var(--rti-link);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  word-break: break-word;
}

.rti-doc-link:hover {
  color: var(--rti-link-hover);
  text-decoration-thickness: 2px;
}

.rti-doc-link:focus-visible {
  outline: 2px solid #162f6a;
  outline-offset: 2px;
  border-radius: 2px;
}

/* File size label */
.rti-file-size {
  font-size: var(--rti-font-base);
  color: var(--rti-text);
  margin-left: 2px;
}

/* RTI new Layout section style */

.rti-section .misc-doc-row {
  grid-template-columns: 1fr 150px 200px;
}

.rti-row {
  font-size: 13px;
  background: #d2dfff !important;
  color: var(--ncw-navy);
  text-transform: uppercase;
}

.rti-view {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.rti-publish {
  font-size: 60%;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.rti-vision-box {
  background: #d2dfff;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rti-vision-text {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  color: var(--ncw-navy);
  margin-bottom: 0;
}

.rti-card__ext-btn {
  border-radius: 4px;
  background: #d2dfff;
  color: #162f6a;
  text-decoration: none;
  transition: background 0.2s ease;
}

.rti-visit-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ncw-navy);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .rti-section .misc-doc-row {
    grid-template-columns: 1fr;
  }
}

/* RTI Responsive */
@media (max-width: 768px) {
  .rti-layout {
    /* grid-template-columns: 1fr; */
    gap: 28px;
    padding: 28px 16px 52px;
  }

  .rti-sidebar {
    position: static;
  }

  .rti-page-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .rti-layout {
    padding: 20px 12px 40px;
  }

  .rti-doc-list {
    gap: 8px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-action-btn {
    max-width: 100%;
  }
}

/* ================================================================
   TENDERS PAGE — tenders.css
================================================================ */

/* Top Bar */
.top-bar {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 1rem; */
  /* flex-wrap: wrap; */
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f83d5;
}

.search-box input {
  width: 100%;
  height: 45px;
  padding-left: 45px;
  border: 1px solid #7a8ed8;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
}

.right-options {
  display: flex;
  gap: 10px;
}

.select-box {
  position: relative;
}

.select-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f83d5;
}

.tender .select-box i {
  left: 0;
}

.select-box select {
  height: 45px;
  padding: 0 30px 0 40px;
  border: 1px solid #7a8ed8;
  border-radius: 3px;
  /* width: 230px; */
  width: 100%;
  max-width: 230px;
  cursor: pointer;
}

.small select {
  min-width: 150px;
}

/* Rows */
.tender-row {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1fr 1fr 1fr 100px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: center;
  gap: 1rem;
}

.tender-id {
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.title {
  line-height: 1.6;
  color: #333;
  font-size: 15px;
}

.date {
  font-weight: 600;
  font-size: 14px;
}

.file {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2449b7;
}

.file i {
  font-size: 16px;
  color: #2449b7;
}

/* Tenders Pagination */
.tn-pagination {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  flex-wrap: wrap;
  /* margin: 40px 0 20px 0; */
}

.tn-pagination .page-item {
  list-style: none;
}

.tn-pagination .page-link {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #34435a;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
}

.tn-pagination .page-link:hover:not(.disabled .page-link) {
  background: #f0f3f8;
  color: #34435a;
}

.tn-pagination .page-item.active .page-link {
  background: #6f83d5;
  color: white;
  border-radius: 50%;
  cursor: default;
}

.tn-pagination .page-item.active .page-link:hover {
  background: #6f83d5;
  color: white;
}

.tn-pagination .page-item.disabled .page-link {
  cursor: not-allowed;
  color: #34435a;
  opacity: 0.7;
}

.tn-pagination .tn-page-prev,
.tn-pagination .tn-page-next {
  display: flex;
  align-items: center;
}

.tn-pagination .tn-page-prev .page-link,
.tn-pagination .tn-page-next .page-link {
  min-width: 44px;
  height: 44px;
  border-radius: 4px;
  color: #34435a;
}

.tn-pagination .tn-page-prev .page-link:hover,
.tn-pagination .tn-page-next .page-link:hover {
  background: #e0e8f5;
  color: #34435a;
}

.tn-pagination .tn-ellipsis {
  cursor: default;
  border-radius: 50%;
}

/* Tenders Mobile */
@media (max-width: 1023px) {
  .table-header {
    display: none;
  }

  .tender-row {
    grid-template-columns: 1fr;
  }

  .right-options {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    /* width: 100%; */
  }

  .select-box select {
    /* width: 100%; */
  }

  section.pm-quotes {
    padding: 40px 32px;
    /* override horizontal too */
  }
}

/* ================================================================
   VACANCY PAGE — vacancy.css
================================================================ */

.vacancy-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vacancy-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 22px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.vacancy-title {
  background: #a8b9f5;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  /* line-height: 1.3; */
  margin-bottom: 15px;
}

.description {
  font-size: 15px;
  /* line-height: 1.5; */
  margin-bottom: 55px;
  color: #333;
}

.date-section {
  margin-bottom: 20px;
}

.date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: #333;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.left i {
  color: #1d418f;
  font-size: 18px;
  width: 20px;
}

.manager-link {
  font-size: 13px;
  color: #2d69ff;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 15px;
}

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

.document-btn {
  background: #d9e3ff;
  border: none;
  padding: 14px;
  width: 180px;
  margin: auto;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #1f3c7d;
}

.archive-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.archive-btn {
  border: 1px solid #163a8c;
  background: white;
  padding: 12px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #163a8c;
}

.archive-btn:hover {
  background: #f3f7ff;
}

/* Vacancy Responsive */
@media (max-width: 992px) {
  .vacancy-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vacancy-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CONTACT SECTION WRAPPER
================================================================ */
.contact-section {
  /* padding: 56px 0 72px; */
}

/* ================================================================
   TWO-COLUMN GRID
================================================================ */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* @media (max-width: 1024px) and (min-width: 901px) {
  .ct-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
} */

/* ================================================================
   LEFT COLUMN — Contact Information
================================================================ */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
}

/* ── Organisation name + address ───────────────────────────── */
.ct-org-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-org-name {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--ncw-text);
  font-size: 13.231px;
  font-style: normal;
  font-weight: 700;
}

.ct-pin-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.ct-address {
  color: var(--ncw-text);
  font-size: 13.231px;
  font-style: normal;
  font-weight: 400;
  margin-top: -10px;
}

/* ── Helpline callout ──────────────────────────────────────── */
.ct-helpline-note {
  color: var(--ncw-text);
  font-size: 13.231px;
  font-style: normal;
  font-weight: 400;
}

/* ── EPABX numbers ─────────────────────────────────────────── */
.ct-epabx {
  color: var(--ncw-text);
  font-size: 12.818px;
  font-style: normal;
  font-weight: 700;
}

/* ── Intro paragraph ───────────────────────────────────────── */
.ct-intro {
  color: var(--ncw-text);
  font-size: 13.231px;
  font-style: normal;
}

/* ================================================================
   CONTACT CHANNELS LIST
================================================================ */
.ct-channels {
  /* display: flex; */
  flex-direction: column;
  gap: 14px;
}

.ct-channel-item {
  /* display: flex; */
  align-items: flex-start;
  gap: 4px;
}

.ct-channel-num {
  font-weight: 400;
  color: var(--ncw-text);
  /* line-height: 1.5; */
  flex-shrink: 0;
  min-width: 18px;
  padding-top: 1px;
}

.ct-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ct-channel-heading {
  color: var(--ncw-text);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13.231px;
  font-style: normal;
  font-weight: 700;
}

.ct-channel-desc {
  color: var(--ncw-text);
  font-size: 13.231px;
  font-style: normal;
  margin-top: -15px;
}

.ct-org-info {
  margin-left: 18px;
}

/* ── Links ─────────────────────────────────────────────────── */
.ct-link {
  color: var(--ncw-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.ct-link:hover {
  color: var(--ncw-blue);
}

.ct-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  margin-top: 2px;
  word-break: break-all;
}

/* ================================================================
   RIGHT COLUMN — Google Map
================================================================ */
.ct-map {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  /* line-height: 0; */
  /* remove inline gap below iframe */
}

.ct-map iframe {
  width: 100%;
  height: 580px;
}

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

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* Tablet — stack columns */
@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ct-map-iframe {
    height: 400px;
  }

  .rti-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .ct-map-iframe {
    height: 300px;
  }

  .ct-intro {
    padding-top: 14px;
  }
}

/* report section style */

.report-wrapper {
  padding: 28px 16px 50px;
}

/* Top Filters */
.filter-box {
  border: 1px solid #8ea6ef;
  border-radius: 2px;
  background: #fff;
  height: 42px;
  max-width: 412px;
}

.search-input {
  border: none;
  box-shadow: none !important;
  font-size: 15px;
}

.search-icon,
.select-icon {
  color: #4c6ee6;
  font-size: 18px;
  padding-left: 12px;
}

.custom-select {
  border: none;
  box-shadow: none !important;
  color: #222;
  font-size: 15px;
}

/* Table Header */

.table-header {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1fr 1fr 1fr 100px;
  background: #9db2ff;
  color: #24345f;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  gap: 1rem;
}

.press-release-header,
.report-header {
  grid-template-columns: 3fr 1fr 1fr 100px;
}

.press-release-row,
.report-row {
  grid-template-columns: 3fr 1fr 1fr 100px;
}

.order-notice .report-header,
.order-notice .report-row {
  grid-template-columns: 3fr 1fr 100px;
}

.mom-header,
.mom-row {
  grid-template-columns: 3fr 100px;
}

/* Rows */
.report-row {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 8px;
  align-items: center;
}

.file-icon {
  font-size: 24px;
  color: #233a78;
}

.report-title {
  font-size: 16px;
  color: #222;
  margin-bottom: 0;
}

.count-badge {
  background: #a9bdf5;
  color: #233a78;
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 600;
}

.year-text {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.pdf-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #233a78;
}

.pdf-icon {
  font-size: 22px;
  color: #233a78;
}

.view-btn {
  /* background: #d8dff8; */
  min-width: 82px;
  height: 34px;
  background: #b7c7f7;
  border: none;
  border-radius: 4px;
  /* color: #233a78; */
  color: var(--ncw-navy);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.view-btn:hover {
  background: #9eb4f5;
  /* color: #233a78; */
  color: var(--ncw-navy);
}

.books-table-header,
.books-row {
  grid-template-columns: 1fr 2fr 1fr 1fr;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 50px;
}

.page-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #233a78;
  font-weight: 600;
  font-size: 14px;
}

.page-btn.active {
  background: #a9bdf5;
}

.archive-btn {
  border: 1px solid #233a78;
  color: #233a78;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.archive-btn:hover {
  background: #eef2ff;
  color: #233a78;
}

@media (max-width: 767px) {
  .table-header {
    display: none;
  }

  /* .report-row {
    gap: 15px;
    grid-template-columns: 1fr !important;
  } */

  /* .press-release-row, .mom-header, .mom-row {
    grid-template-columns: 1fr;
  } */

  .report-row,
  .press-release-row,
  .mom-header,
  .mom-row,
  .tender-row,
  .books-row {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

}

/* whats new section style */

.service-wrapper {
  max-width: 1150px;
  margin: 40px auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.count-badge {
  background: #9db2ff;
  color: #fff;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 6px;
}

.topic-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.topic-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.topic-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-size: 17px;
  flex: 1;
}

.topic-left i {
  color: #27408b;
  font-size: 16px;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  background: #9db2ff;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #24345f;
  font-size: 16px;
  transition: 0.3s ease;
}

.arrow-btn:hover {
  background: #7f99ff;
  color: #fff;
}

.year {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .topic-left {
    font-size: 14px;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
  }
}

/* ================================================================
   ACCESSIBILITY PANEL
================================================================ */
.acc-panel__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
}

.acc-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 95vw;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.acc-panel__inner {
  padding: 0 0 1.5rem;
  flex: 1;
}

.acc-panel__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8ecf4;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.acc-panel__header-icon {
  flex-shrink: 0;
}

.acc-panel__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #162f6a;
  margin: 0;
  flex: 1;
}

.acc-panel__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  /* line-height: 1; */
  color: #555;
  cursor: pointer;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.acc-panel__close:hover,
.acc-panel__close:focus-visible {
  background: #f0f2f8;
  color: #162f6a;
  outline: none;
}

.acc-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.acc-panel__reset-bar {
  padding: 0.75rem 1.25rem 0;
}

.acc-reset-btn {
  background: #fff;
  border: 1.5px solid #162f6a;
  border-radius: 6px;
  color: #162f6a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  position: relative;
}

.acc-reset-btn::after {
  content: "";
  display: block;
  height: 2px;
  /* background: #162F6A; */
  border-radius: 2px;
  margin-top: 3px;
  width: 40%;
}

.acc-reset-btn:hover,
.acc-reset-btn:focus-visible {
  /* background: #162F6A; */
  /* color: #fff; */
  /* outline: none; */
}

.acc-reset-btn:hover::after,
.acc-reset-btn:focus-visible::after {
  background: #fff;
}

.acc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem;
  border: 1.5px solid #d0d8ec;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
  min-height: 110px;
}

.acc-btn:hover {
  border-color: #162f6a;
  background: #f4f6fb;
  box-shadow: 0 2px 8px rgba(22, 47, 106, 0.08);
}

.acc-btn--active {
  border-color: #162f6a;
  background: #eef1fa;
}

.acc-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-btn__icon--text {
  font-size: 1.65rem;
  font-weight: 700;
  color: #162f6a;
  /* line-height: 1; */
}

.acc-btn__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #162f6a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  /* line-height: 1.3; */
}

/* Accessibility filter classes */
.acc--dark-contrast {
  filter: contrast(1.6) brightness(0.85);
}

.acc--invert {
  filter: invert(1) hue-rotate(180deg);
}

.acc--saturation {
  filter: saturate(0);
}

.acc--highlight-links a {
  outline: 2px solid #ff6600 !important;
  background: #fff3cd !important;
}

.acc--hide-images img {
  visibility: hidden !important;
}

.acc--default-cursor,
.acc--default-cursor * {
  cursor: default !important;
}

/* Office order section style office-order.html */

.office-order .filter-box {
  border: 1px solid var(--ncw-border-blue);
  border-radius: 4px;
  /* background: #fff;
  height: 42px; */
}

.office-order .search-input {
  border: none;
  box-shadow: none !important;
  background: transparent;
  color: #150202;
  font-size: 13.37px;
  font-style: normal;
  /* line-height: normal; */
}

.office-order .search-icon,
.office-order .select-icon {
  color: #4c6ee6;
  font-size: 18px;
  padding-left: 12px;
  flex-shrink: 0;
}

.office-order .custom-select {
  border: none;
  box-shadow: none !important;
  background: transparent;
  color: #150202;
  font-size: 13.37px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 20.055px; */
  /* 150% */
}

.office-order .table-header {
  display: flex;
  flex-wrap: wrap;
  background: #a3bbf3;
  border-radius: 4px;
  padding: 12px 20px;
  margin-top: 16px;
  margin-bottom: 12px;
  color: #162f6a;
  font-size: 9.442px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.401px;
  text-transform: uppercase;
}

.office-order .report-row {
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 6px;
  padding: 10px 20px;
  margin-bottom: 8px;
  align-items: center;
}

.office-order .file-icon {
  font-size: 22px;
  color: #233a78;
  flex-shrink: 0;
}

.office-order .report-title {
  margin-bottom: 0;
  /* line-height: 1.5; */
  color: #150202;
  font-size: 13.37px;
  font-style: normal;
  font-weight: 400;
}

.office-order .year-text {
  color: #3d4043;
  font-size: 10.027px;
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
  letter-spacing: 0.501px;
  text-transform: uppercase;
}

.office-order .pdf-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #162f6a;
  font-size: 9.86px;
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
  letter-spacing: 0.501px;
  text-transform: uppercase;
}

.office-order .pdf-icon {
  font-size: 20px;
  color: #233a78;
}

.office-order .view-btn {
  background: #d2dfff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 4px;
  width: 82px;
  height: 34px;
  padding: 5px 10px 5px 10px;
  color: #162f6a;
  font-size: 9.86px;
  font-style: normal;
  font-weight: 700;
  /* line-height: normal; */
  letter-spacing: 0.501px;
  text-transform: uppercase;
}

.office-order .view-btn:hover {
  background: #a3bbf3;
  /* color: #fff; */
}

.office-order .pagination-wrapper {
  margin-top: 40px;
}

.office-order .archive-btn-wrapper {
  position: absolute;
  right: 0;
}

.office-order .page-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #233a78;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.office-order .page-btn:hover {
  background: #e8edf8;
}

.office-order .page-btn.active {
  background: #a3bbf3;
  color: #162f6a;
}

.office-order .archive-btn {
  border: 1px solid #162f6a;
  color: #162f6a;
  font-size: 9.526px;
  font-style: normal;
  font-weight: 700;
  padding: 5px 10px 5px 10px;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
}

.office-order .archive-btn:hover {
  background: #d2dfff;
  /* color: #fff; */
}

/* Office order - responsive below lg */
@media (max-width: 991.98px) {
  .office-order .table-header {
    display: none !important;
  }

  .office-order .report-row {
    display: block;
    padding: 12px 16px;
  }

  .office-order .report-row [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 8px 0;
    text-align: left !important;
  }

  /* 2-column label | value grid for labeled cols */
  .office-order .report-row [data-label] {
    display: grid !important;
    grid-template-columns: 120px 1fr;
    align-items: start;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
  }

  .office-order .report-row [data-label]:last-child {
    border-bottom: none;
  }

  /* Show label text via pseudo-element */
  .office-order .report-row [data-label]::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #888;
    padding-top: 3px;
    /* line-height: 1.5; */
  }

  /* Hide empty col on mobile */
  .office-order .report-row .mobile-hide {
    display: none !important;
  }

  /* pdf-info hidden on mobile (shown inside TYPE/SIZE col instead) */
  .office-order .report-row .pdf-info {
    justify-content: flex-start;
  }

  .office-order .report-row .year-text {
    display: block;
    text-align: left;
  }

  .office-order .report-row .view-btn {
    width: 100%;
    justify-content: center;
  }

  /* Filters: stack full width */
  .office-order .top-filter-row [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .office-order .top-filter-row .offset-lg-2 {
    margin-left: 0;
  }

  /* Pagination: stack on mobile */
  .office-order .pagination-wrapper {
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
  }

  .office-order .archive-btn-wrapper {
    position: static;
  }
}

/* Announcement Section style */

.announcement-bar {
  position: unset !important;
  top: unset !important;
  width: 100%;
  /* background: var(--ncw-navy); */
  /* color: #fff; */
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 999;
  padding: 14px 0;
  /* font-size: 14px; */
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  flex: 1;
}

.announcement-content {
  padding: 0 40px;
}

.announcement-content a {
  text-decoration: none;
  color: #150202;
  font-weight: 500;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-btn {
  background: #22c55e;
  color: #000;
  padding: 6px 14px;
  margin-right: 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.announcement-btn:hover {
  background: #16a34a;
  color: #fff;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

.announcement-section {
  background: #c6c6c6;
  /* color: #fff; */
}

.announcement-section h3.ans {
  font-weight: bold;
  color: var(--ncw-navy);
  padding: 0px 0 0 0px;
  font-size: 1rem;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  margin: 0;
  text-align: center;
  /* width: 160px; */
  filter: brightness(1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* PM quotes section style */

section.pm-quotes {
  position: relative;
  clear: both;
  padding: 40px 100px;
  background: #ebeaea;
}

.pm-img {
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
}

.pm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-message {
  padding: 0px 0 0px 40px;
  position: relative;
}

.pm-message .fa-quote-left:before {
  color: var(--ncw-navy);
}

.pm-message .event-head {
  color: var(--ncw-navy);
  font-size: 150%;
  text-align: left;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid var(--ncw-navy);
  font-style: normal;
  font-weight: 500;
  /* line-height: 32px; */
  letter-spacing: -0.12px;
  margin-bottom: 1rem;
}

p.quote.mb-0 {
  border: 0;
  margin: 0 !important;
  padding: 0 !important;
  /* line-height: 22px; */
}

.pm-message h3,
.pm-message .event-date {
  font-size: 90%;
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--ncw-navy);
  text-align: left;
  filter: brightness(1);
  text-transform: uppercase;
}

.pm-message a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  font-size: 80%;
  text-align: center;
  transition: all 0.5s;
  text-decoration: none;
  outline: 0;
  /* padding: 8px 6px 8px 6px; */
  padding: 8px;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--ncw-navy);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  text-transform: uppercase;
  color: var(--ncw-navy);
  font-weight: normal;
  /* margin: 20px 0 0; */
  clear: both;
  float: right;
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  /* line-height: normal; */
}

/*books page css*/

.table-container {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}

.table-container thead {
  background: #aebef8;
}

.table-container thead th {
  font-size: 12px;
  text-transform: uppercase;
  color: #24366c;
  background-color: transparent !important;
  letter-spacing: 1px;
  padding: 16px !important;
}

.table-container tbody td {
  vertical-align: middle;
  padding: 16px;
}

.ct-info .table-container tbody td {
  padding: 0;
}

.table-container .book-img {
  width: 35px;
  height: 35px;
  border-radius: 4px;
}

.table-container .download-btn {
  background: #dce7ff;
  color: #24366c;
  border: none;
  font-size: 13px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Our organisation section style */

.organisation-section {
  /* background: #f9f9f9; */
}

/* 2-column grid; each extra card auto-fills */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.org-card {
  /* background: #fff; */
  /* border: 1px solid #e5e9f4; */
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

/* ---- Header: name (left) + logo (right) ---- */
.org-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  /* border-bottom: 1px solid #eef0f6; */
  margin-bottom: 16px;
}

.org-card__name {
  color: #162f6a;
  font-size: 1.1rem;
  /* font-weight: 600; */
  /* line-height: 1.5; */
  text-decoration: none;
  flex: 1;
}

.org-card__name:hover {
  /* text-decoration: underline;
  color: #0d47a1; */
}

.org-card__logo {
  flex-shrink: 0;
  max-width: 130px;
  display: flex;
  align-items: center;
}

.org-card__logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

/* ---- Description ---- */
.org-card__desc {
  color: #000;
  font-size: 14px;
  /* line-height: 1.7; */
  flex: 1;
  margin-bottom: 16px;
}

/* ---- Footer: external link button aligned bottom-right ---- */
.org-card__footer {
  display: flex;
  justify-content: flex-end;
}

.org-card__ext-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #d2dfff;
  color: #162f6a;
  text-decoration: none;
  transition: background 0.2s ease;
}

.org-card__ext-btn:hover {
  background: #a3bbf3;
  color: #0d2157;
}

/* ---- Responsive: single column below md ---- */
@media (max-width: 767.98px) {
  .org-grid {
    grid-template-columns: 1fr;
  }

  .org-card__logo {
    max-width: 100px;
  }

  section.pm-quotes {
    padding: 32px 16px;
  }

  .vacancy-card {
    min-height: 0;
    /* let content dictate height */
  }

  .document-btn {
    width: 100%;
    max-width: 240px;
  }
}

/* Accessibility styles */

.uw-widget-custom-trigger {
  display: none !important;
}

#schemes-container .tag-search {
  color: var(--ncw-navy) !important;
  border: 1px solid var(--ncw-navy) !important;
}

.copyrights-accessibility .btn-reset-all {
  background-color: #d2dfff;
}

.uwaw button:focus,
.uwaw button:hover {
  background-color: #d2dfff !important;
}

/* telephone directory section style */

.telephone-section {
  background: #fff;
}

/* ── A-Z Filter Bar ────────────────────────────── */
.tel-az-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #eef2fb;
  border-radius: 6px;
  padding: 6px 8px;
  margin-bottom: 32px;
}

.tel-az-arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #162f6a;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.tel-az-arrow:hover {
  color: #0d2157;
}

.tel-az-nav {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.tel-az-nav::-webkit-scrollbar {
  display: none;
}

.tel-az-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.tel-az-btn {
  background: none;
  border: none;
  color: #162f6a;
  font-size: 20px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.tel-az-btn:hover {
  background: #d2dfff;
}

.tel-az-btn.active {
  background: #162f6a;
  color: #fff;
}

/* ── Directory List ────────────────────────────── */
.tel-list {
  display: flex;
  flex-direction: column;
}

.tel-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 2fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--ncw-navy);
}

.tel-row:last-child {
  /* border-bottom: none; */
}

/* Left column: person info */
.tel-row__person {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tel-row__designation {
  color: #162f6a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.tel-row__name {
  color: #111;
  font-size: 15px;
  font-weight: 400;
}

.tel-row__badge {
  display: inline-block;
  background: #d2dfff;
  color: #162f6a;
  font-size: 11px;
  font-weight: 500;
  border-radius: 20px;
  padding: 4px 12px;
  margin-top: 4px;
  max-width: fit-content;
}

/* Middle column: phone + email */
.tel-row__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tel-row__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: 13px;
}

/* Right column: address */
.tel-row__address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: 13px;
}

.tel-row__icon {
  flex-shrink: 0;
  color: #162f6a;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 991.98px) {
  .tel-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tel-row__address {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .tel-row {
    grid-template-columns: 1fr;
  }

  .tel-az-btn {
    padding: 5px 8px;
    font-size: 12px;
  }
}

/* Misc Template section style */

/* ── Vision Statement Box ──────────────────────────────────── */
.misc-vision-box {
  background: #ebeaea;
  border-radius: 10px;
  padding: 32px;
  /* min-height: 260px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.misc-vision-text {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  color: var(--ncw-navy);
  /* margin: 0; */
  margin-bottom: 0;
}

.misc-vision-label {
  font-size: 0.875rem;
  /* font-weight: 700; */
  letter-spacing: 0.12em;
  /* text-transform: uppercase; */
  color: #150202;
}

/* ── Objectives Section ─────────────────────────────────────── */
.misc-objectives-title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ncw-navy);
  letter-spacing: -0.12px;
}

.misc-objectives-desc {
  font-size: 0.875rem;
  color: #150202;
  margin-bottom: 1.25rem;
}

/* ── Objective Cards ────────────────────────────────────────── */
.misc-obj-card {
  background: #d2dfff;
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.misc-obj-num {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ncw-navy);
  line-height: 72px;
}

.misc-obj-body {
  font-size: 0.875rem;
  color: #150202;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  word-break: break-word;
}

.misc-obj-body strong {
  font-weight: bold;
}

/* ── Sticky vision box on desktop ───────────────────────────── */

/* sticky only works when the flex parent uses align-items: flex-start
   (default 'stretch' makes the child fill the parent height → no room to scroll) */
.misc-about {
  align-items: flex-start;
}

.misc-about-left {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.misc-about-right {
  flex: 1 1 0;
  min-width: 0;
}

.misc-objectives-section .stickyBox {
  position: sticky;
  top: 150px;
}

@media (max-width: 991.98px) {
  .misc-vision-box {
    min-height: unset;
    padding: 24px 20px;
  }

  .misc-about {
    flex-direction: column;
  }

  .misc-about-left,
  .misc-about-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .misc-objectives-section .stickyBox {
    position: static;
  }
}

/* ── Document List ──────────────────────────────────────────── */
.misc-doc-heading {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ncw-navy);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.12px;
  margin-bottom: 10px;
}

.misc-doc-list {
  /* border: 1px solid #d8dce6; */
  /* border-radius: 12px; */
  overflow: hidden;
  margin-bottom: 16px;
}

/* Grid: [icon+title (auto)] [meta (120px)] [btn (52px)] */
.misc-doc-row {
  display: grid;
  grid-template-columns: 1fr 300px 60px;
  align-items: center;
  column-gap: 16px;
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.misc-doc-row:last-child {
  margin-bottom: 0;
}

/* Col 1: icon + title together */
.misc-doc-icon {
  display: none;
  /* hidden; title takes full col-1 width */
}

.misc-doc-title {
  font-size: 0.875rem;
  color: #150202;
  display: flex;
  align-items: center;
  gap: 10px;
}

.misc-doc-title::before {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 18px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='22' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--ncw-navy);
}

/* Col 2: PDF icon + size */
.misc-doc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  color: var(--ncw-navy);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.6px;
}

.misc-doc-pdf-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.misc-doc-pdf-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  /* color: #444; */
  margin-top: 1px;
}

.misc-doc-size {
  font-size: 10px;
  white-space: nowrap;
}

/* Col 3: action button — always right-aligned */
.misc-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 40px; */
  /* height: 40px; */
  transition: background 0.18s;
  justify-self: end;
  padding: 8px 12px;
  gap: 8px;
  border: none;
  outline: none;
  background: #d2dfff;
  border-radius: 4px;
  color: var(--ncw-navy);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.12px;
  text-decoration: none;
}

.misc-doc-btn--view {
  background: #d2dfff;
  color: var(--ncw-navy);
}

.misc-doc-btn--view:hover {
  background: #a3bbf3;
  /* color: var(--ncw-navy); */
}

/* Arrow-only row: no meta column, btn jumps to col 3 */
.misc-doc-btn--arrow {
  background: #a3bbf3;
  color: var(--ncw-navy);
  grid-column: 3;
}

.misc-doc-btn--arrow:hover {
  /* background: #6e7d9a; */
  /* color: var(--ncw-navy); */
}

/* ── External Mission Cards ─────────────────────────────────── */
.misc-ext-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 220px));
  gap: 20px;
}

.misc-ext-item {
  background: #a3bbf3;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: filter 0.18s;
}

.misc-ext-item:hover {
  filter: brightness(0.93);
}

.misc-ext-logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.misc-ext-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.misc-ext-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .misc-doc-row {
    grid-template-columns: 1fr 52px;
    row-gap: 4px;
  }

  .misc-doc-meta {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    padding-left: 28px;
  }

  .misc-doc-btn {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .misc-doc-btn--arrow {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Our Performance section style */

.performance-title {
  font-size: 1.1rem;
  color: #214aab;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

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

.performance-card {
  background: #fff;
  /* border: 1px solid #e5e9f4;
  border-radius: 10px;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column; */
  min-height: 220px;
}

.performance-card__header {
  position: relative;
}

.performance-card a.org-card__ext-btn {
  position: absolute;
  right: 12px;
  bottom: 16px;
}

.performance-card__name {
  font-size: 1rem;
  font-weight: 500;
}

.annual-report-filter {
  display: flex;
  gap: 1rem;
}

.annual-report-filter .form-select {
  width: unset;
}

/* ---- Responsive: single column below md ---- */
@media (max-width: 767.98px) {
  .performance-grid {
    grid-template-columns: 1fr;
  }

  .annual-report-filter {
    flex-direction: column;
  }
}

.main-container {
  padding: 35px 0px;
}

.dashboard-title {
  font-size: 36px;
  font-weight: bold;
  color: #150202;
}

.performance-des-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  /* color: #214aab; */
  color: #010101;
  margin-bottom: 28px;
}

.performance-des-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.performance-des-card {
  background: #fff;
  border: 1px solid #e5e9f4;
  border-radius: 10px;
  box-shadow: 0px 3px 10px #ddd;
  padding: 15px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.pdes-card__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.pdes-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 28px;
}

.pdes-card__stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdes-card__stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.9rem;
  color: #444;
}

.pdes-card__stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #313030;
  /* margin-bottom: 0;
  line-height: 20px;
  float: left;
  width: 100%;
  text-align: right; */
}

.pdes-card__stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ncw-navy);
  white-space: nowrap;
  /* text-align: right; */
}

.pdes-card__updated {
  font-size: 12px;
  color: #757575;
  /* border-top: 1px solid #e5e9f4; */
  padding-top: 10px;
}

.pdes-card__image {
  border: solid 3px #ccc;
  border-radius: 50%;
  padding: 2px;
  width: 72px;
  height: 72px;
}

.pdes-card__image img {
  border-radius: 50%;
  width: clamp(65px, 5vw, 91px);
  height: clamp(65px, 5vw, 91px);
  object-fit: cover;
}

figure .table-container,
.newcardview-card .card {
  border-radius: unset;
}

#newsclipping img.img-fluid {
  width: auto;
  max-width: 150px;
}

/* ================================================================
   PROFESSIONAL — Quick link cards (2x3 grid)
================================================================ */
.prof-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.prof-link-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #c5d4f0;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ncw-navy);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.prof-link-card:hover {
  border-color: var(--ncw-navy);
  background: #f7f9ff;
  color: var(--ncw-navy);
}

.prof-link-card__text {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: inherit;
}

.prof-link-card__text strong {
  font-weight: 700;
}

.prof-link-card__btn {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a3bbf3;
  border-radius: 6px;
  color: var(--ncw-navy);
  flex-shrink: 0;
}

.prof-link-card:hover .prof-link-card__btn {
  background: #8eabee;
}

@media (max-width: 767.98px) {
  .prof-link-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .prof-link-card {
    min-height: 84px;
    padding: 1rem 3.25rem 1rem 1.1rem;
  }

  .prof-link-card__text {
    font-size: 0.95rem;
  }
}

/* ================================================================
   SITEMAP
================================================================ */
.sitemap-section {
  background: #fff;
}

.sitemap-nav {
  /* max-width: 720px; */
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-item {
  border-top: 1px solid #e6e8ec;
}

.sitemap-list>.sitemap-item:last-child {
  border-bottom: 1px solid #e6e8ec;
}

.sitemap-list--nested {
  border-top: 0;
}

.sitemap-list--nested>.sitemap-item {
  border-top: 1px solid #e6e8ec;
}

.sitemap-list--nested>.sitemap-item:last-child {
  border-bottom: 0;
}

.sitemap-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.25rem 0.85rem 1.35rem;
  color: #1a2a4a;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.sitemap-item--home>.sitemap-link {
  padding-left: 0.15rem;
  font-weight: 600;
}

.sitemap-item--heading {
  padding: 0.9rem 0.25rem 0.9rem 0.15rem;
}

.sitemap-heading {
  display: block;
  color: #1a2a4a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.sitemap-list--nested>.sitemap-item>.sitemap-link {
  padding-left: 2.75rem;
}

.sitemap-icon,
.sitemap-chev {
  flex-shrink: 0;
  color: #1a2a4a;
  font-size: 0.95rem;
  line-height: 1;
}

.sitemap-chev {
  font-size: 0.75rem;
}

.sitemap-link:hover {
  color: var(--ncw-navy);
}

.sitemap-link:hover .sitemap-icon,
.sitemap-link:hover .sitemap-chev {
  color: var(--ncw-navy);
}

.sitemap-link:focus-visible {
  outline: 2px solid var(--ncw-navy);
  outline-offset: 2px;
}

.sitemap-section h4 {
  color: #162f6a;
  font-weight: 600;
  /* border-bottom: 1px solid #ebeaea; */
  margin-block: 16px;
  /* padding: 0 0 10px; */
}

body.dark-mode * :not(#uw-main *):not(#uw-main):not(#uw-widget-custom-trigger *):not(#uw-widget-custom-trigger):not(.owl-nav) {
  /* color: var(--color-white) !important; */
  background: black;
  fill: rgb(255, 255, 0) !important;
}


body.dark-mode .header-ncw-mark,
body.dark-mode .header-emblem {
  /* filter: brightness(25) saturate(53%) invert(15%) sepia(72%) saturate(18%) hue-rotate(235deg) brightness(103%) contrast(100%) !important; */
  filter: brightness(51) saturate(0%) invert(15%) sepia(5%) saturate(7499%) hue-rotate(3deg) brightness(125%) contrast(185%) !important;
}

body.search-results .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 1.5rem; */
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

body.search-results .pagination a {
  text-decoration: none;
  border-radius: 50%;
  cursor: default;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.search-results .pagination a:hover {
  background: #f0f3f8;
  color: #34435a;
  cursor: pointer;
}

body.search-results .pagination span.current {
  background: #6f83d5;
  color: white;
  border-radius: 50%;
  cursor: default;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}