/* Nyange — Health NGO design system
   Inspired by IntraHealth, EGPAF, Hospital-website baseline */

:root {
  --ny-primary: #0078a8;
  --ny-primary-dark: #005f85;
  --ny-primary-light: #e8f4fa;
  --ny-accent: #01b2de;
  --ny-secondary: #d4a012;
  --ny-dark: #1c2b39;
  --ny-dark-soft: #2e4052;
  --ny-text: #2d3748;
  --ny-muted: #5a6a7a;
  --ny-border: #e2e8f0;
  --ny-surface: #f8fafb;
  --ny-white: #ffffff;
  --ny-radius: 6px;
  --ny-radius-lg: 12px;
  --ny-shadow: 0 1px 3px rgba(28, 43, 57, 0.06), 0 8px 24px rgba(28, 43, 57, 0.06);
  --ny-shadow-hover: 0 4px 12px rgba(28, 43, 57, 0.08), 0 16px 40px rgba(28, 43, 57, 0.1);
  --ny-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ny-font: "Open Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ny-font-display: "Libre Franklin", "Open Sans", "Segoe UI", sans-serif;
  --ny-container: 1140px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Base typography ── */
body,
.main-wrapper {
  font-family: var(--ny-font) !important;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ny-text);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  background: var(--ny-white);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ny-font-display) !important;
  color: var(--ny-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p, li, a, span, label, input, textarea, select, button {
  font-family: inherit;
}

.bg-primary { background-color: var(--ny-primary) !important; }
.text-primary { color: var(--ny-primary) !important; }
a:hover, a:active { color: var(--ny-primary-dark); }

/* ── Preloader ── */
#preloader {
  background: var(--ny-dark);
}
#preloader::before,
#preloader::after {
  border-color: var(--ny-accent);
}

/* ── Top utility bar ── */
.ny-topbar {
  background: var(--ny-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 0.45rem 0;
  letter-spacing: 0.01em;
}

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

.ny-topbar a:hover {
  color: var(--ny-white);
  text-decoration: underline;
}

/* ── Modern header (IntraHealth-style single row) ── */
.ny-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--ny-white);
  border-bottom: 1px solid var(--ny-border);
}

.ny-header-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.ny-topbar {
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ny-main-header {
  background: var(--ny-white);
}

.ny-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
  min-height: 80px;
}

.ny-brand-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 52%;
}

.ny-brand-block .logo {
  height: 68px;
  width: auto;
  max-width: 56px;
  flex-shrink: 0;
  border-radius: 5px;
  object-fit: contain;
}

.ny-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  text-align: left;
}

.ny-header .site-name {
  display: block;
  font-family: var(--ny-font-display) !important;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
  font-weight: 700 !important;
  color: var(--ny-dark) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  letter-spacing: -0.02em;
}

.ny-header .site-name-accent {
  color: var(--ny-primary);
}

.ny-header .site-tagline {
  display: block;
  font-family: var(--ny-font) !important;
  font-size: clamp(0.75rem, 1vw, 0.875rem) !important;
  font-weight: 600 !important;
  color: var(--ny-primary) !important;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0 !important;
}

.ny-nav-col {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.ny-nav-col .menu_area,
.ny-nav-col nav {
  width: 100%;
}

@media (min-width: 992px) {
  .ny-nav-col .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0 !important;
  }

  .ny-nav-col .navbar-toggler {
    display: none !important;
  }
}

.ny-nav-col .navbar-nav > li {
  flex-shrink: 0;
}

.ny-header.scrollHeader {
  box-shadow: 0 4px 20px rgba(28, 43, 57, 0.08);
}

.ny-header.scrollHeader .ny-header-row {
  min-height: 60px;
  padding: 0.45rem 0;
}

.ny-header.scrollHeader .ny-brand-block .logo {
  height: 56px;
}

.ny-brand-bar,
.ny-nav-bar,
.ny-brand-inner,
.site-title-wrap {
  display: none;
}

/* ── Header (menu layout preserved) ── */
.header-style2 {
  background: var(--ny-white);
  transition: box-shadow 0.3s var(--ny-ease);
}

.header-style2.scrollHeader {
  box-shadow: 0 2px 20px rgba(28, 43, 57, 0.08);
}

#langauge-container .p-3.bg-light {
  display: none;
}

.header-style2 .nav-brand {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.header-style2 .d-flex.align-items-center {
  gap: 0.75rem;
}

.header-style2 .nav-brand img.logo {
  height: 72px !important;
  width: auto !important;
  max-width: 56px;
  border-radius: 6px;
  object-fit: contain;
}

.header-style2 .site-title-wrap {
  line-height: 1.25;
  text-align: center;
}

.header-style2 h3.notranslate {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem) !important;
  font-weight: 700 !important;
  color: var(--ny-dark) !important;
  margin-bottom: 0.2rem !important;
  letter-spacing: -0.01em;
}

.header-style2 .slogan {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--ny-primary) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.navbar-default {
  border-color: var(--ny-border) !important;
  background: var(--ny-white);
}

.header-style2 .navbar-nav > li > a {
  font-family: var(--ny-font) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ny-dark) !important;
  padding: 0.5rem 0.65rem !important;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ny-nav-col .navbar-nav > li > a {
  font-size: 0.875rem !important;
}

.ny-nav-col .navbar-nav > li > a:hover,
.ny-nav-col .navbar-nav li.current > a {
  color: var(--ny-primary) !important;
  background: transparent !important;
}

.header-style2 .navbar-nav li > ul {
  border-radius: var(--ny-radius);
  box-shadow: var(--ny-shadow-hover);
  border: 1px solid var(--ny-border);
}

.header-style2 .navbar-nav li > ul li a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Hero ── */
.ny-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.ny-hero-height {
  height: clamp(420px, 62vh, 580px);
  min-height: clamp(420px, 62vh, 580px);
}

/* Fix legacy owl carousel — restore visible slider */
.ny-hero .slider-fade1.owl-carousel {
  display: block;
}

.ny-hero .slider-fade1 .owl-stage-outer {
  height: clamp(420px, 62vh, 580px) !important;
  overflow: hidden;
}

.ny-hero .slider-fade1 .owl-stage {
  height: 100% !important;
}

.ny-hero .slider-fade1 .owl-item {
  height: clamp(420px, 62vh, 580px) !important;
  min-height: clamp(420px, 62vh, 580px) !important;
}

.ny-hero .slider-fade1 .item,
.ny-hero .slider-fade1 .ny-hero-slide {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  min-height: clamp(420px, 62vh, 580px) !important;
  height: clamp(420px, 62vh, 580px) !important;
  overflow: hidden;
  display: block;
}

.ny-hero-slide-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: nyKenBurns 16s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}

.ny-hero .owl-item.active .ny-hero-slide-bg {
  animation: nyKenBurns 16s ease-in-out infinite alternate;
}

@keyframes nyKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

.ny-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 43, 57, 0.82) 0%,
    rgba(28, 43, 57, 0.5) 55%,
    rgba(28, 43, 57, 0.2) 100%
  );
  z-index: 1;
}

.ny-hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.ny-hero-content-wrap {
  min-height: clamp(420px, 62vh, 580px);
  padding: 2rem 0;
}

.ny-hero .slider-fade1 .item::before {
  display: none;
}

/* Keep theme bg-img handler working as fallback under motion layer */
.ny-hero .slider-fade1 .item.bg-img {
  background-size: cover !important;
  background-position: center !important;
}

.ny-hero-inner {
  max-width: 640px;
  padding: 2rem 0;
}

.ny-hero-eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.ny-hero-title,
.ny-hero h1,
.ny-hero h2 {
  font-family: var(--ny-font-display) !important;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  font-weight: 700 !important;
  color: var(--ny-white) !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
  text-shadow: none;
  letter-spacing: -0.03em;
}

.ny-hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 400;
}

.ny-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ny-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--ny-radius);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.ny-btn-primary {
  background: var(--ny-primary);
  color: var(--ny-white);
  border-color: var(--ny-primary);
}

.ny-btn-primary:hover {
  background: var(--ny-primary-dark);
  border-color: var(--ny-primary-dark);
  color: var(--ny-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 120, 168, 0.35);
}

.ny-btn-outline {
  background: transparent;
  color: var(--ny-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.ny-btn-outline:hover {
  background: var(--ny-white);
  color: var(--ny-dark);
  border-color: var(--ny-white);
}

.slider-fade1.owl-theme .owl-nav [class*='owl-'] {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  transition: background 0.25s ease;
}

.slider-fade1.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--ny-primary) !important;
}

/* ── Section system ── */
.ny-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.ny-about-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.ny-section-alt {
  background: var(--ny-surface);
}

.ny-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ny-primary);
  margin-bottom: 0.75rem;
}

.ny-section-title {
  font-family: var(--ny-font-display) !important;
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  color: var(--ny-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.ny-section-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ny-muted);
}

.ny-section-lead p {
  margin-bottom: 1rem;
  color: inherit;
}

.ny-section-lead p:last-child {
  margin-bottom: 0;
}

/* ── About split — image matches text column height ── */
.ny-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.ny-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ny-about-media {
  position: relative;
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  background: var(--ny-surface);
  height: 100%;
  min-height: 100%;
}

.ny-about-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s var(--ny-ease);
}

.ny-about-media:hover img {
  transform: scale(1.03);
}

.ny-about-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0 1.25rem;
}

.ny-about-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: var(--ny-surface);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ny-about-feature:hover {
  border-color: rgba(0, 120, 168, 0.25);
  box-shadow: var(--ny-shadow);
  transform: translateX(4px);
}

.ny-about-feature .ny-value-icon {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  border-radius: 8px;
}

.ny-about-feature span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ny-dark);
  line-height: 1.4;
}

.ny-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ny-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: gap 0.2s ease;
}

.ny-link-arrow:hover {
  gap: 0.6rem;
  color: var(--ny-primary-dark);
}

/* ── Impact stats (IntraHealth) ── */
.ny-impact {
  background: var(--ny-white);
  border-top: 1px solid var(--ny-border);
  border-bottom: 1px solid var(--ny-border);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ny-impact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.ny-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ny-impact-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--ny-border);
}

.ny-impact-item:last-child {
  border-right: none;
}

.ny-impact-number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ny-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ny-impact-label {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  line-height: 1.45;
  font-weight: 400;
}

/* ── Services cards (Hospital baseline) ── */
.ny-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.ny-service-card {
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.3s var(--ny-ease), transform 0.3s var(--ny-ease), border-color 0.3s var(--ny-ease);
}

.ny-service-card:hover {
  box-shadow: var(--ny-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(0, 120, 168, 0.2);
}

.ny-service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ny-primary-light);
  border-radius: var(--ny-radius);
  margin-bottom: 1.25rem;
}

.ny-service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ny-service-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--ny-dark);
}

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

/* ── Vision / Mission ── */
.ny-vision-section {
  background: var(--ny-dark);
  color: var(--ny-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.ny-vision-section .ny-section-label {
  color: rgba(255, 255, 255, 0.65);
}

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

.ny-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.ny-vision-content,
.ny-vision-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ny-vision-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.ny-vision-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ny-vision-item--icon {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ny-vision-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ny-vision-item h4 {
  color: var(--ny-white);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.ny-vision-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* Colored value icons */
.ny-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ny-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.ny-value-icon--cyan { background: linear-gradient(135deg, #01b2de, #0099bd); }
.ny-value-icon--blue { background: linear-gradient(135deg, #0078a8, #005f85); }
.ny-value-icon--teal { background: linear-gradient(135deg, #2a9d8f, #1f7a6f); }
.ny-value-icon--green { background: linear-gradient(135deg, #3d9a5c, #2d7a47); }
.ny-value-icon--gold { background: linear-gradient(135deg, #d4a012, #b8860b); }
.ny-value-icon--emerald { background: linear-gradient(135deg, #10b981, #059669); }

.ny-core-values {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex: 1;
}

.ny-core-values-title {
  color: var(--ny-white);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.ny-core-values-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.ny-core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.ny-core-value-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ny-radius);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ny-core-value-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.ny-core-value-card .ny-value-icon {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ny-core-value-card span,
.ny-core-value-card-content {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  min-width: 0;
}

.ny-core-value-card-content p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.ny-core-value-card-content strong {
  color: var(--ny-white);
  font-weight: 700;
}

.ny-vision-aside {
  gap: 1.25rem;
}

.ny-vision-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  min-height: 0;
}

.ny-vision-media img {
  width: 100%;
  flex: 1;
  min-height: 200px;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ny-vision-caption {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ny-highlights {
  background: var(--ny-white);
  border-radius: var(--ny-radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
  box-shadow: var(--ny-shadow);
}

.ny-highlights h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ny-dark);
  margin-bottom: 1rem;
}

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

.ny-highlights li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--ny-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.ny-highlight-icon {
  color: var(--ny-primary);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ny-highlights li::before {
  display: none;
}

/* ── Partners ── */
.ny-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.ny-partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius);
  padding: 1.25rem;
  height: 96px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ny-partner-tile:hover {
  box-shadow: var(--ny-shadow);
  border-color: rgba(0, 120, 168, 0.2);
}

.ny-partner-tile img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.88;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.ny-partner-tile:hover img {
  filter: none;
  opacity: 1;
}

/* ── CTA band (EGPAF) ── */
.ny-cta {
  background: var(--ny-primary);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  text-align: center;
}

.ny-cta h2 {
  color: var(--ny-white);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  max-width: 640px;
  margin: 0 auto 1rem;
  font-weight: 700;
}

.ny-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.ny-cta .ny-btn {
  background: var(--ny-white);
  color: var(--ny-primary);
  border-color: var(--ny-white);
  font-weight: 700;
}

.ny-cta .ny-btn:hover {
  background: var(--ny-dark);
  color: var(--ny-white);
  border-color: var(--ny-dark);
}

/* ── Footer ── */
.ny-footer {
  background: var(--ny-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.ny-footer h5 {
  color: var(--ny-white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.ny-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 2;
  transition: color 0.2s ease;
}

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

.ny-footer-brand img {
  height: 64px;
  border-radius: var(--ny-radius);
  margin-bottom: 1rem;
}

.ny-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.ny-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Inner pages ── */
.ny-page-hero,
.page-title-section {
  position: relative;
  min-height: clamp(220px, 32vh, 320px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ny-page-hero::before,
.page-title-section.dark-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 43, 57, 0.82) 0%, rgba(0, 95, 133, 0.72) 100%);
  z-index: 1;
}

.ny-page-hero .container,
.page-title-section .container {
  position: relative;
  z-index: 2;
}

.ny-page-hero h1,
.page-title-section h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ny-white);
  margin-bottom: 0.75rem;
}

.ny-page-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ny-accent);
  margin-bottom: 0.5rem;
}

.ny-breadcrumb,
.pagetitle-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.ny-breadcrumb li,
.pagetitle-breadcrumb li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.ny-breadcrumb li:not(:last-child)::after,
.pagetitle-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.ny-breadcrumb a,
.pagetitle-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ny-breadcrumb a:hover,
.pagetitle-breadcrumb a:hover {
  color: var(--ny-white);
}

/* About inner page */
.ny-about-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.ny-about-detail-content {
  min-width: 0;
  padding-right: 0.5rem;
}

.ny-about-detail-aside {
  position: sticky;
  top: 96px;
}

.ny-about-prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ny-text);
  max-width: 68ch;
}

.ny-about-prose p {
  margin-bottom: 1rem;
  color: var(--ny-muted);
}

.ny-about-prose p:last-child {
  margin-bottom: 0;
}

.ny-about-prose h2,
.ny-about-prose h3 {
  font-family: var(--ny-font-display) !important;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--ny-dark);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.ny-about-prose h2:first-child,
.ny-about-prose h3:first-child {
  margin-top: 0;
}

.ny-about-prose strong,
.ny-about-prose b {
  color: var(--ny-dark);
  font-weight: 700;
}

.ny-about-prose ul,
.ny-about-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ny-muted);
}

.ny-about-prose li {
  margin-bottom: 0.4rem;
}

.ny-about-page-media {
  position: relative;
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  background: var(--ny-surface);
}

.ny-about-page-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--ny-radius-lg);
}

.ny-experience-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 120, 168, 0.94);
  color: var(--ny-white);
  padding: 0.9rem 1.15rem;
  border-radius: var(--ny-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--ny-shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ny-experience-badge i {
  margin-top: 0.15rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.ny-what-we-do-panel {
  background: linear-gradient(145deg, var(--ny-dark) 0%, var(--ny-dark-soft) 100%);
  border-radius: var(--ny-radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  color: rgba(255, 255, 255, 0.9);
}

.ny-what-we-do-header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.ny-section-label--light {
  color: var(--ny-accent);
}

.ny-what-we-do-panel h3 {
  color: var(--ny-white);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.ny-what-we-do-panel > p,
.ny-what-we-do-header p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  line-height: 1.65;
}

.ny-check-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem 1.5rem;
}

.ny-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.ny-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.ny-check-list li i {
  color: var(--ny-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Team grid */
.ny-team-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.ny-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ny-team-card {
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  transition: transform 0.3s var(--ny-ease), box-shadow 0.3s var(--ny-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ny-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ny-shadow-hover);
}

.ny-team-card-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ny-surface);
}

.ny-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ny-ease);
}

.ny-team-card:hover .ny-team-card-photo img {
  transform: scale(1.04);
}

.ny-team-card-body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ny-team-card-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.ny-team-card-role {
  font-size: 0.875rem;
  color: var(--ny-muted);
  margin-bottom: 0.75rem;
}

.ny-team-card-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ny-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ny-team-card-link:hover {
  color: var(--ny-primary-dark);
}

/* Partners */
.ny-partner-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.ny-partner-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--ny-surface);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ny-partner-highlight:hover {
  border-color: rgba(0, 120, 168, 0.25);
  box-shadow: var(--ny-shadow);
}

.ny-partner-highlight .ny-value-icon {
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.ny-partner-highlight strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--ny-dark);
  margin-bottom: 0.15rem;
}

.ny-partner-highlight span {
  font-size: 0.8125rem;
  color: var(--ny-muted);
  line-height: 1.4;
}

.ny-partner-category {
  margin-bottom: 2.5rem;
}

.ny-partner-category:last-child {
  margin-bottom: 0;
}

.ny-partner-category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--ny-border);
}

.ny-partner-category-icon {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.ny-partner-category-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.3;
}

.ny-partner-category-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ny-primary);
}

.ny-partner-category-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ny-primary-light);
  color: var(--ny-primary);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.ny-partner-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--ny-shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}

.ny-partner-card:hover {
  border-color: rgba(0, 120, 168, 0.3);
  box-shadow: var(--ny-shadow-hover);
  transform: translateY(-2px);
}

.ny-partner-card-icon {
  width: 44px;
  height: 44px;
  font-size: 1rem;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ny-partner-card-body {
  min-width: 0;
  flex: 1;
}

.ny-partner-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ny-dark);
  line-height: 1.35;
}

.ny-partner-card-desc,
.ny-partner-card p {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  margin: 0;
  line-height: 1.6;
}

.ny-partner-card-desc p {
  margin-bottom: 0.35rem;
}

.ny-partner-card-desc p:last-child {
  margin-bottom: 0;
}

.ny-partner-card-desc a {
  color: var(--ny-primary);
  font-weight: 600;
  text-decoration: none;
}

.ny-partner-card-desc a:hover {
  text-decoration: underline;
}

/* Projects */
.ny-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.ny-project-card {
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  transition: transform 0.3s var(--ny-ease), box-shadow 0.3s var(--ny-ease), border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ny-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ny-shadow-hover);
  border-color: rgba(0, 120, 168, 0.25);
}

.ny-project-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ny-primary-light), var(--ny-surface));
}

.ny-project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ny-ease);
}

.ny-project-card:hover .ny-project-card-img img {
  transform: scale(1.04);
}

.ny-project-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ny-project-card-img--placeholder i {
  font-size: 2.5rem;
  color: var(--ny-primary);
  opacity: 0.45;
}

.ny-project-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ny-project-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--ny-dark);
}

.ny-project-card-excerpt {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.ny-project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: auto;
}

.ny-project-card-actions a {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ny-project-who-link {
  color: var(--ny-muted);
}

.ny-project-who-link:hover {
  color: var(--ny-primary);
}

.ny-project-read-more {
  color: var(--ny-primary);
}

.ny-project-read-more:hover {
  color: var(--ny-primary-dark);
  gap: 0.55rem;
}

/* Project detail */
.ny-project-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.ny-project-detail-main {
  min-width: 0;
}

.ny-project-detail-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ny-project-media {
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  background: var(--ny-surface);
}

.ny-project-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ny-project-media figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--ny-muted);
  font-style: italic;
  background: var(--ny-white);
  border-top: 1px solid var(--ny-border);
  margin: 0;
}

.ny-project-map-block {
  margin-top: 2rem;
}

.ny-project-map-block h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.ny-project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.ny-project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ny-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.ny-project-back-link:hover {
  color: var(--ny-primary-dark);
}

/* Blog listing */
.ny-blog-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ny-blog-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ny-blog-highlight:hover {
  border-color: rgba(0, 120, 168, 0.25);
  box-shadow: var(--ny-shadow);
}

.ny-blog-highlight .ny-value-icon {
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.ny-blog-highlight strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--ny-dark);
  margin-bottom: 0.15rem;
}

.ny-blog-highlight span {
  font-size: 0.8125rem;
  color: var(--ny-muted);
  line-height: 1.4;
}

.ny-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.ny-blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.ny-blog-card--featured .ny-blog-card-img {
  height: 100%;
  min-height: 280px;
}

.ny-blog-card--featured .ny-blog-card-body {
  padding: 1.75rem 1.85rem;
  justify-content: center;
}

.ny-blog-card--featured h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.ny-blog-card {
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  overflow: hidden;
  box-shadow: var(--ny-shadow);
  transition: transform 0.3s var(--ny-ease), box-shadow 0.3s var(--ny-ease), border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ny-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ny-shadow-hover);
  border-color: rgba(0, 120, 168, 0.2);
}

.ny-blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ny-primary-light), var(--ny-surface));
}

.ny-blog-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ny-blog-card-img--placeholder > i {
  font-size: 3rem;
  color: var(--ny-primary);
  opacity: 0.35;
}

.ny-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ny-ease);
}

.ny-blog-card:hover .ny-blog-card-img img {
  transform: scale(1.04);
}

.ny-blog-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--ny-primary);
  color: var(--ny-white);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ny-blog-tag--cyan { background: linear-gradient(135deg, #01b2de, #0099bd); }
.ny-blog-tag--blue { background: linear-gradient(135deg, #0078a8, #005f85); }
.ny-blog-tag--teal { background: linear-gradient(135deg, #2a9d8f, #1f7a6f); }
.ny-blog-tag--green { background: linear-gradient(135deg, #3d9a5c, #2d7a47); }
.ny-blog-tag--gold { background: linear-gradient(135deg, #d4a012, #b8860b); }

.ny-blog-card-body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ny-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--ny-muted);
  margin-bottom: 0.85rem;
}

.ny-blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ny-blog-meta-icon {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
  border-radius: 7px;
  box-shadow: none;
}

.ny-blog-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.ny-blog-card-body h3 a {
  color: var(--ny-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ny-blog-card-body h3 a:hover {
  color: var(--ny-primary);
}

.ny-blog-excerpt {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.ny-blog-excerpt p {
  margin-bottom: 0.5rem;
}

.ny-blog-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: auto;
}

.ny-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ny-primary);
  text-decoration: none;
}

.ny-blog-read-more:hover {
  color: var(--ny-primary-dark);
  gap: 0.55rem;
}

.ny-blog-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ny-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  background: var(--ny-surface);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ny-blog-external-link:hover {
  color: var(--ny-primary);
  border-color: rgba(0, 120, 168, 0.3);
}

.ny-blog-external {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--ny-surface);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius);
  font-size: 0.875rem;
}

.ny-blog-external a {
  color: var(--ny-primary);
  font-weight: 600;
  text-decoration: none;
}

/* Contact page */
.ny-contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ny-contact-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ny-contact-highlight:hover {
  border-color: rgba(0, 120, 168, 0.25);
  box-shadow: var(--ny-shadow);
}

.ny-contact-highlight .ny-value-icon {
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
}

.ny-contact-highlight strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--ny-dark);
  margin-bottom: 0.15rem;
}

.ny-contact-highlight span {
  font-size: 0.8125rem;
  color: var(--ny-muted);
  line-height: 1.4;
}

.ny-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

.ny-contact-form-panel {
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--ny-shadow);
}

.ny-contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ny-border);
}

.ny-contact-form-header .ny-value-icon {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ny-contact-form-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.ny-contact-form-header p {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  margin: 0;
  line-height: 1.5;
}

.ny-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ny-dark);
  margin-bottom: 0.4rem;
}

.ny-contact-form .form-control {
  padding: 0.7rem 0.9rem;
  font-size: 0.9375rem;
}

.ny-contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.ny-captcha-input {
  max-width: 200px;
}

.ny-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ny-contact-info > h3 {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.ny-contact-info-lead {
  font-size: 0.9375rem;
  color: var(--ny-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.ny-contact-info-item,
.ny-contact-info-panel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--ny-white);
  border: 1px solid var(--ny-border);
  border-radius: var(--ny-radius-lg);
  box-shadow: var(--ny-shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ny-contact-info-item:hover,
.ny-contact-info-panel:hover {
  border-color: rgba(0, 120, 168, 0.25);
  box-shadow: var(--ny-shadow-hover);
}

.ny-contact-info-item .ny-value-icon,
.ny-contact-info-panel .ny-value-icon {
  width: 44px;
  height: 44px;
  font-size: 1rem;
  flex-shrink: 0;
}

.ny-contact-info-item strong,
.ny-contact-info-panel strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ny-primary);
  margin-bottom: 0.25rem;
}

.ny-contact-info-item a,
.ny-contact-info-item address,
.ny-contact-info-panel span {
  font-size: 0.9375rem;
  color: var(--ny-dark);
  line-height: 1.5;
  text-decoration: none;
  font-style: normal;
}

.ny-contact-info-item a:hover {
  color: var(--ny-primary);
}

.ny-contact-info-panel {
  background: linear-gradient(145deg, var(--ny-dark) 0%, var(--ny-dark-soft) 100%);
  border-color: transparent;
}

.ny-contact-info-panel strong {
  color: var(--ny-accent);
}

.ny-contact-info-panel span {
  color: rgba(255, 255, 255, 0.85);
}

.ny-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--ny-muted);
}

.ny-empty-state i {
  font-size: 3rem;
  color: var(--ny-border);
  margin-bottom: 1rem;
}

/* ── Scroll reveal ── */
.ny-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ny-ease), transform 0.55s var(--ny-ease);
}

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

.ny-reveal-delay-1 { transition-delay: 0.08s; }
.ny-reveal-delay-2 { transition-delay: 0.16s; }
.ny-reveal-delay-3 { transition-delay: 0.24s; }

/* Staggered children reveal (features, cards, list items) */
.ny-reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ny-ease), transform 0.55s var(--ny-ease);
}

.ny-reveal-stagger.ny-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.ny-reveal-stagger.ny-visible > *:nth-child(1) { transition-delay: 0.05s; }
.ny-reveal-stagger.ny-visible > *:nth-child(2) { transition-delay: 0.12s; }
.ny-reveal-stagger.ny-visible > *:nth-child(3) { transition-delay: 0.19s; }
.ny-reveal-stagger.ny-visible > *:nth-child(4) { transition-delay: 0.26s; }
.ny-reveal-stagger.ny-visible > *:nth-child(5) { transition-delay: 0.33s; }
.ny-reveal-stagger.ny-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* Hero slide text entrance */
.ny-hero-content-animate > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ny-ease), transform 0.7s var(--ny-ease);
}

.ny-hero-content-animate.ny-hero-active > * {
  opacity: 1;
  transform: translateY(0);
}

.ny-hero-content-animate > *:nth-child(1) { transition-delay: 0.08s; }
.ny-hero-content-animate > *:nth-child(2) { transition-delay: 0.2s; }
.ny-hero-content-animate > *:nth-child(3) { transition-delay: 0.32s; }
.ny-hero-content-animate > *:nth-child(4) { transition-delay: 0.44s; }

/* Page fade-in after preloader */
.main-wrapper {
  opacity: 0;
  transition: opacity 0.45s var(--ny-ease);
}

.main-wrapper.ny-page-ready {
  opacity: 1;
}

/* Hero overlay softens on slide change */
.ny-hero-slide-overlay {
  transition: opacity 0.6s ease;
}

.ny-hero .owl-item:not(.active) .ny-hero-slide-overlay {
  opacity: 0.85;
}

.ny-hero .owl-item.active .ny-hero-slide-overlay {
  opacity: 1;
}

/* Carousel controls */
.slider-fade1.owl-theme .owl-dots .owl-dot span {
  transition: width 0.3s var(--ny-ease), background 0.3s ease, opacity 0.3s ease;
}

.slider-fade1.owl-theme .owl-dots .owl-dot.active span {
  width: 28px;
}

.slider-fade1.owl-theme .owl-nav [class*='owl-'] {
  transition: background 0.25s ease, transform 0.25s var(--ny-ease), opacity 0.25s ease;
}

.slider-fade1.owl-theme .owl-nav [class*='owl-']:hover {
  transform: scale(1.06);
}

/* CTA button pulse on reveal */
.ny-cta .ny-btn {
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--ny-ease), box-shadow 0.3s var(--ny-ease);
}

.ny-cta.ny-visible .ny-btn {
  animation: nyCtaBtnIn 0.6s var(--ny-ease) 0.2s both;
}

@keyframes nyCtaBtnIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Vision media zoom on scroll-in */
.ny-vision-media img {
  transform: scale(1.04);
  transition: transform 0.7s var(--ny-ease);
}

.ny-vision-aside.ny-visible .ny-vision-media img {
  transform: scale(1);
}

.ny-highlights {
  transform: translateY(12px);
  transition: transform 0.5s var(--ny-ease), box-shadow 0.5s var(--ny-ease);
}

.ny-vision-aside.ny-visible .ny-highlights {
  transform: translateY(0);
}

/* ── Scroll to top ── */
.scroll-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: var(--ny-primary) !important;
}

/* ── Forms & buttons ── */
.butn, .btn-primary {
  font-family: var(--ny-font) !important;
  font-weight: 600 !important;
  border-radius: var(--ny-radius) !important;
}

.form-control {
  border-radius: var(--ny-radius) !important;
  border-color: var(--ny-border) !important;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--ny-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 120, 168, 0.12) !important;
}

.card-style02 {
  border-radius: var(--ny-radius-lg) !important;
  border: 1px solid var(--ny-border);
}

/* ── Legacy overrides ── */
.why-us-style01::before {
  display: none !important;
}

.slider-fade1 .owl-item {
  height: auto !important;
}

.ny-hero .slider-fade1 .owl-item {
  height: clamp(420px, 62vh, 580px) !important;
}

.screen-height {
  min-height: 0 !important;
  height: auto !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ny-header-row {
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }

  .ny-brand-block {
    max-width: calc(100% - 58px);
    flex: 1 1 auto;
  }

  .ny-nav-col {
    flex: 1 1 100%;
    justify-content: flex-start;
    position: relative;
  }

  .ny-nav-col .menu_area,
  .ny-nav-col .navbar {
    position: relative;
    width: 100%;
  }

  .ny-nav-col .navbar-toggler {
    display: block;
    position: absolute;
    top: -58px;
    right: 0;
    z-index: 1041;
  }

  .ny-nav-col .navbar-nav {
    display: none;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%;
    margin: 0 !important;
    padding: 0;
    background: var(--ny-white);
    border: 1px solid var(--ny-border);
    border-radius: var(--ny-radius-lg);
    box-shadow: var(--ny-shadow-hover);
    overflow: hidden;
  }

  .ny-nav-col .navbar-nav.open {
    display: block;
  }

  .ny-nav-col .navbar-nav > li.has-sub {
    position: relative;
  }

  .ny-nav-col .navbar-nav .submenu-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
  }

  .ny-nav-col .navbar-nav > li {
    width: 100%;
    border-top: 1px solid var(--ny-border);
  }

  .ny-nav-col .navbar-nav > li:first-child {
    border-top: 0;
  }

  .ny-nav-col .navbar-nav > li > a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem !important;
    font-size: 0.875rem !important;
    white-space: normal !important;
  }

  .ny-nav-col .navbar-nav li > ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    background: var(--ny-surface);
    padding: 0;
  }

  .ny-nav-col .navbar-nav li > ul.open,
  .ny-nav-col .navbar-nav li.has-sub.active > ul {
    display: block;
  }

  .ny-nav-col .navbar-nav li > ul li a {
    padding: 0.75rem 1rem 0.75rem 1.75rem !important;
    font-size: 0.8125rem !important;
  }

  .header-style2 .navbar-nav > li > a {
    padding: 0.9rem 1rem !important;
    font-size: 0.875rem !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ny-header-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 0;
    min-height: 0;
  }

  .ny-brand-block {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .ny-nav-col {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .ny-nav-col .navbar-nav {
    justify-content: flex-start;
    flex-wrap: wrap !important;
    row-gap: 0.15rem;
  }

  .header-style2 .navbar-nav > li > a {
    padding: 0.4rem 0.55rem !important;
    font-size: 0.8125rem !important;
  }
}

@media (max-width: 991px) {
  .ny-about-split,
  .ny-about-detail,
  .ny-about-page-split,
  .ny-vision-grid {
    grid-template-columns: 1fr;
  }

  .ny-about-detail-aside {
    position: static;
    order: -1;
    max-width: 420px;
    margin: 0 auto 1.5rem;
  }

  .ny-about-detail-content {
    padding-right: 0;
  }

  .ny-about-prose {
    max-width: none;
  }

  .ny-blog-grid {
    grid-template-columns: 1fr;
  }

  .ny-project-grid {
    grid-template-columns: 1fr;
  }

  .ny-project-detail {
    grid-template-columns: 1fr;
  }

  .ny-project-gallery {
    grid-template-columns: 1fr;
  }

  .ny-partner-highlights {
    grid-template-columns: 1fr;
  }

  .ny-blog-highlights {
    grid-template-columns: 1fr;
  }

  .ny-blog-card--featured {
    grid-template-columns: 1fr;
  }

  .ny-blog-card--featured .ny-blog-card-img {
    min-height: 220px;
  }

  .ny-contact-highlights {
    grid-template-columns: 1fr;
  }

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

  .ny-about-media {
    min-height: 280px;
    height: auto;
  }

  .ny-about-media img {
    min-height: 280px;
  }

  .ny-core-values-grid {
    grid-template-columns: 1fr;
  }

  .ny-vision-aside {
    min-height: auto;
  }

  .ny-vision-media img {
    min-height: 260px;
  }

  .ny-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .ny-impact-item {
    border-right: none;
    border-bottom: 1px solid var(--ny-border);
    padding-bottom: 1.5rem;
  }

  .ny-impact-item:nth-child(odd) {
    border-right: 1px solid var(--ny-border);
  }

  .ny-impact-item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  body { font-size: 16px; }

  .header-style2 h3.notranslate {
    font-size: 0.85rem !important;
  }

  .header-style2 .nav-brand img.logo {
    height: 56px !important;
    max-width: 44px !important;
  }

  .ny-impact-grid {
    grid-template-columns: 1fr;
  }

  .ny-impact-item,
  .ny-impact-item:nth-child(odd) {
    border-right: none;
    border-bottom: 1px solid var(--ny-border);
  }

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

/* Site search */
.ny-header-search {
  align-items: center;
  gap: 0.35rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.ny-header-search input[type="search"] {
  width: 9.5rem;
  border: 1px solid var(--ny-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  background: #fff;
  transition: width 0.2s ease, border-color 0.2s ease;
}

.ny-header-search input[type="search"]:focus {
  width: 11.5rem;
  border-color: var(--ny-primary);
  outline: none;
}

.ny-header-search button {
  border: none;
  background: var(--ny-primary);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ny-search-page {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.ny-search-hero {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.ny-site-search-form {
  margin-top: 1.5rem;
}

.ny-site-search-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ny-site-search-row input[type="search"] {
  flex: 1 1 16rem;
  min-width: 0;
  border: 1px solid var(--ny-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.ny-site-search-row input[type="search"]:focus {
  border-color: var(--ny-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.12);
}

.ny-search-meta {
  color: var(--ny-text-muted, #5c6770);
  margin-bottom: 1.5rem;
}

.ny-search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ny-search-result-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ny-border);
}

.ny-search-result-item:last-child {
  border-bottom: none;
}

.ny-search-result-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ny-primary);
  margin-bottom: 0.35rem;
}

.ny-search-result-title {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.ny-search-result-title a {
  color: inherit;
  text-decoration: none;
}

.ny-search-result-title a:hover {
  color: var(--ny-primary);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
