.home-compliance {
  position: relative;
  padding: clamp(34px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(31, 121, 159, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
}

.home-compliance__header {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.home-compliance.home-entrance-ready .home-compliance__header,
.home-compliance.home-entrance-ready .home-logo-card,
.home-core.home-entrance-ready .home-core__header,
.home-core.home-entrance-ready .home-core-item,
.home-core.home-entrance-ready .home-pledge-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.78, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.78, 0.2, 1);
  transition-delay: var(--home-entrance-delay, 0ms);
  will-change: opacity, transform;
}

.home-compliance.home-entrance-ready .home-compliance__header.is-visible,
.home-compliance.home-entrance-ready .home-logo-card.is-visible,
.home-core.home-entrance-ready .home-core__header.is-visible,
.home-core.home-entrance-ready .home-core-item.is-visible,
.home-core.home-entrance-ready .home-pledge-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-compliance.home-entrance-ready .home-logo-card:nth-child(2),
.home-core.home-entrance-ready .home-core-item:nth-child(2) {
  --home-entrance-delay: 70ms;
}

.home-compliance.home-entrance-ready .home-logo-card:nth-child(3),
.home-core.home-entrance-ready .home-core-item:nth-child(3) {
  --home-entrance-delay: 140ms;
}

.home-compliance.home-entrance-ready .home-logo-card:nth-child(4),
.home-core.home-entrance-ready .home-core-item:nth-child(4) {
  --home-entrance-delay: 210ms;
}

.home-compliance.home-entrance-ready .home-logo-card:nth-child(5),
.home-core.home-entrance-ready .home-core-item:nth-child(5) {
  --home-entrance-delay: 280ms;
}

.home-compliance.home-entrance-ready .home-logo-card:nth-child(n + 6),
.home-core.home-entrance-ready .home-core-item:nth-child(n + 6) {
  --home-entrance-delay: 350ms;
}

.home-core.home-entrance-ready .home-pledge-card {
  --home-entrance-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  .home-compliance.home-entrance-ready .home-compliance__header,
  .home-compliance.home-entrance-ready .home-logo-card,
  .home-core.home-entrance-ready .home-core__header,
  .home-core.home-entrance-ready .home-core-item,
  .home-core.home-entrance-ready .home-pledge-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-compliance__header h2,
.home-core__header h2,
.home-showcase__header h2 {
  margin: 0;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  text-align: center;
}

.home-showcase__header p {
  text-align: center;
}

.home-section-4-heading{
  font-size: clamp(1.4rem, 2.4vw, 2.7rem) !important;
}

.home-about__header p,
.home-compliance__header p,
.home-core__header p {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--ndc-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-showcase__header p {
  margin: 0;
  max-width: 720px;
  color: var(--ndc-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 14px;
}

.home-logo-grid--services {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  align-items: end;
  gap: clamp(18px, 2vw, 28px);
  max-width: 1040px;
  margin: 0 auto;
}

.home-logo-card {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(16, 67, 101, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 3px 10px rgba(3, 39, 66, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-logo-grid--services .home-logo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: clamp(220px, 24vw, 300px);
  padding: clamp(18px, 2vw, 26px) clamp(14px, 2vw, 24px) clamp(20px, 2.5vw, 32px);
  border: 2px solid transparent;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: pointer;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  /* Longer durations cover the scroll-entrance animation; hover overrides below snap them back */
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 640ms cubic-bezier(0.2, 0.78, 0.2, 1),
    box-shadow 260ms ease,
    opacity 640ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.home-logo-grid--services .home-logo-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: clamp(120px, 38%, 180px);
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.18), transparent 72%);
  filter: blur(14px);
  opacity: 0.42;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 260ms ease;
}

.home-logo-grid--services .home-logo-card:hover,
.home-logo-grid--services .home-logo-card:focus-visible,
.home-logo-grid--services .home-logo-card.is-active {
  /* Snap interactive transitions back to fast after entrance completes */
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 240ms ease,
    box-shadow 260ms ease;
}

.home-logo-grid--services .home-logo-card:hover,
.home-logo-grid--services .home-logo-card:focus-visible {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 48px rgba(3, 39, 66, 0.12);
  border-color: rgba(15, 76, 129, 0.18);
}

.home-logo-grid--services .home-logo-card:hover::before,
.home-logo-grid--services .home-logo-card:focus-visible::before {
  opacity: 0.7;
}

.home-logo-grid--services .home-logo-card.is-active {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--ndc-blue-deep, #0f4c81);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.12), 0 16px 48px rgba(3, 39, 66, 0.14);
  transform: translateY(-6px);
}

.home-logo-grid--services .home-logo-card img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 240px);
  max-height: 138px;
  animation: homeServiceLogoFloat 5.8s ease-in-out infinite;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 300ms ease;
}

.home-logo-grid--services .home-logo-card--feature {
  transform: translateY(-18px);
}

.home-logo-grid--services .home-logo-card--feature.is-active {
  transform: translateY(-14px);
}

.home-logo-grid--services .home-logo-card--feature img {
  max-width: min(100%, 260px);
  max-height: 150px;
  animation-delay: -1.2s;
}

.home-logo-grid--services .home-logo-card:nth-child(1) img {
  animation-delay: 0s;
}

.home-logo-grid--services .home-logo-card:nth-child(3) img {
  animation-delay: -2.4s;
}

.home-logo-grid--services .home-logo-card:hover img,
.home-logo-grid--services .home-logo-card:focus-visible img {
  transform: scale(1.07);
  filter: drop-shadow(0 8px 18px rgba(15, 76, 129, 0.22));
}

.home-logo-grid--services .home-logo-card.is-active img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 14px rgba(15, 76, 129, 0.2));
}

/* Card name label */
.home-logo-card__name {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ndc-blue-deep, #0f4c81);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
  line-height: 1.3;
  max-width: 160px;
}

.home-logo-grid--services .home-logo-card:hover .home-logo-card__name,
.home-logo-grid--services .home-logo-card:focus-visible .home-logo-card__name,
.home-logo-grid--services .home-logo-card.is-active .home-logo-card__name {
  opacity: 1;
  transform: translateY(0);
}

/* Active indicator chevron */
.home-logo-grid--services .home-logo-card.is-active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--ndc-blue-deep, #0f4c81);
  z-index: 5;
  pointer-events: none;
}

/* Compliance panel */
.home-compliance__panel {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 8px;
  transition: grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 320ms ease;
  opacity: 0;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.home-compliance__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.home-compliance__panel-inner {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid rgba(15, 76, 129, 0.18);
  box-shadow: 0 8px 32px rgba(3, 39, 66, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 36px);
  position: relative;
}

.home-compliance__panel-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: clamp(16px, 2vw, 32px);
  flex: 1;
  flex-wrap: wrap;
}

.home-compliance__panel-text {
  flex: 1;
  min-width: 0;
}

.home-compliance__panel-title {
  display: block;
  font-family: var(--ndc-font-head, inherit);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: var(--ndc-blue-deep, #0f4c81);
  line-height: 1.2;
  margin-bottom: 8px;
}

.home-compliance__panel-intro {
  margin: 0;
  color: var(--ndc-ink, #333);
  font-size: 0.93rem;
  line-height: 1.65;
}

.home-compliance__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--ndc-blue-deep, #0f4c81);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 200ms ease, box-shadow 200ms ease, transform 180ms ease;
  box-shadow: 0 4px 14px rgba(15, 76, 129, 0.28);
}

.home-compliance__panel-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.home-compliance__panel-cta:hover {
  background: #0a3566;
  box-shadow: 0 6px 20px rgba(15, 76, 129, 0.36);
  transform: translateX(2px);
}

.home-compliance__panel-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(15, 76, 129, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--ndc-blue-deep, #0f4c81);
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  align-self: flex-start;
}

.home-compliance__panel-close svg {
  width: 16px;
  height: 16px;
}

.home-compliance__panel-close:hover {
  background: rgba(15, 76, 129, 0.08);
  border-color: var(--ndc-blue-deep, #0f4c81);
  transform: rotate(90deg);
}

.home-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(58, 154, 92, 0.32);
  box-shadow: 0 24px 65px rgba(3, 39, 66, 0.13);
}

.home-logo-card img {
  display: block;
  width: 100%;
  max-width: 112px;
  max-height: 82px;
  object-fit: contain;
}

.home-logo-card span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@keyframes homeServiceLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

/* ── About Us Section ──────────────────────────────────── */
.home-about {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
  /* Parallax background — fixed so it doesn't scroll with content */
   background:
    radial-gradient(ellipse at 10% 40%, rgba(15, 76, 129, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 18%, rgba(15, 118, 110, 0.09) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(67, 56, 202, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(180, 83, 9, 0.04) 0%, transparent 60%),
    url('https://ndc-mockup1.transcend-enterprise.com/wp-content/uploads/2026/06/about-us.png');
  background-attachment: fixed;
  background-size: cover;
}

.home-about__header {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 52px);
  text-align: center;
}

.home-about__header p:last-child {
  margin: 12px auto 0;
  color: var(--ndc-muted, #64748b);
  font-size: 1rem;
  line-height: 1.65;
}

/* Bento grid: 3 equal columns */
.home-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

/* Card 1 (Corporate Profile) — spans cols 1-2 */
.home-about-card:nth-child(1) { grid-column: 1 / 3; }

/* Card 4 (Corporate Governance) — spans cols 2-3 */
.home-about-card:nth-child(4) { grid-column: 2 / 4; }

/* Per-card accent colours */
.home-about-card:nth-child(1) { --card-accent: #0f4c81; --card-accent-bg: rgba(15, 76, 129, 0.07); }
.home-about-card:nth-child(2) { --card-accent: #b45309; --card-accent-bg: rgba(180, 83, 9, 0.08);  }
.home-about-card:nth-child(3) { --card-accent: #0f766e; --card-accent-bg: rgba(15, 118, 110, 0.07); }
.home-about-card:nth-child(4) { --card-accent: #4338ca; --card-accent-bg: rgba(67, 56, 202, 0.07);  }

/* ── Base card ── */
.home-about-card {
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid rgba(15, 76, 129, 0.1);
  box-shadow: 0 2px 16px rgba(3, 39, 66, 0.08);
  text-decoration: none !important;
  /* No overflow:hidden here — causes body to be clipped in row layout */
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  /* Tall cards: column stack */
  display: flex;
  flex-direction: column;
}

.home-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(3, 39, 66, 0.14);
  border-color: var(--card-accent);
}

/* ── Wide cards: full-bleed image background ── */
.home-about-card--wide {
  position: relative;
  overflow: hidden;
  flex-direction: column;
  min-height: clamp(340px, 32vw, 420px);
}

/* Visual panel fills the entire wide card */
.home-about-card--wide .home-about-card__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  flex-shrink: 0;
}

/* Body pinned to the bottom of the card, over the full-bleed image */
.home-about-card--wide .home-about-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  flex: none;
  margin-top: 0;
  background: linear-gradient(to top, rgb(255 255 255) 0%, transparent 100%);
  justify-content: flex-start;
}

.home-about-card--wide .home-about-card__body.dark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  flex: none;
  margin-top: 0;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, transparent 100%);
  justify-content: flex-start;
}

.home-about-card__body.dark .eyebrow {
  color: rgb(127, 251, 255) !important;
}

.home-about-card__body.dark .home-about-card__cta,
.home-about-card__body.dark h3{
  color: white !important;
}

.home-about-card__body.dark > p{
  color: rgb(243, 243, 243) !important;
}

/* Dark theme text on wide cards (same as tall cards) */
.home-about-card--wide .home-about-card__body .eyebrow {
  color: var(--card-accent);
}
.home-about-card--wide .home-about-card__body h3 {
  color: #0d2e4e;
}
.home-about-card--wide .home-about-card__body > p {
  color: #475569;
}
.home-about-card--wide .home-about-card__cta {
  color: var(--card-accent) !important;
}

/* ── Tall cards: image as top strip ── */
.home-about-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--card-accent-bg);
  overflow: hidden;
}

.home-about-card--tall .home-about-card__visual {
  height: clamp(220px, 26vw, 300px);
  width: 100%;
  border-radius: 18px 18px 0 0;
}

/* Card image */
.home-about-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about-card:hover .home-about-card__img {
  transform: scale(1.06);
}

/* No overlay needed on wide cards — white body panel handles contrast */
.home-about-card--wide .home-about-card__visual::after {
  display: none;
}

/* Subtle overlay on tall cards */
.home-about-card--tall .home-about-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 18, 45, 0) 0%,
    rgba(5, 18, 45, 0.068) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Transparency Seal: contain so the circular badge shows fully */
.home-about-card:nth-child(2) .home-about-card__img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

/* Key Officials: show face at top */
.home-about-card:nth-child(3) .home-about-card__img {
  object-position: top center;
}

/* ── Text body ── */
.home-about-card__body {
  flex: 1 1 0;     /* flex-grow:1 flex-shrink:1 flex-basis:0 — forces body to take remaining space */
  min-width: 0;    /* prevents overflow in flex-row */
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.2vw, 32px);
}


.home-about-card__body .eyebrow {
  color: var(--card-accent) !important;
  margin-bottom: 6px;
}

.home-about-card__body h3 {
  font-family: var(--ndc-font-head, inherit);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  color: #0d2e4e;
  margin: 0 0 10px;
  line-height: 1.15;
}

.home-about-card__body > p {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.68;
  margin: 0 0 20px;
  flex: 1;
}

/* Read More CTA */
.home-about-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--card-accent) !important;
  text-decoration: none !important;
  transition: gap 200ms ease;
}

.home-about-card__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.home-about-card:hover .home-about-card__cta { gap: 10px; }
.home-about-card:hover .home-about-card__cta svg { transform: translateX(3px); }

/* ── Entrance animation ── */
.home-about.home-entrance-ready .home-about__header,
.home-about.home-entrance-ready .home-about-card {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.78, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.78, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
  transition-delay: var(--home-entrance-delay, 0ms);
  will-change: opacity, transform;
}

.home-about.home-entrance-ready .home-about__header.is-visible,
.home-about.home-entrance-ready .home-about-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-about.home-entrance-ready .home-about-card.is-visible:hover {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.home-about.home-entrance-ready .home-about-card:nth-child(1) { --home-entrance-delay: 60ms; }
.home-about.home-entrance-ready .home-about-card:nth-child(2) { --home-entrance-delay: 140ms; }
.home-about.home-entrance-ready .home-about-card:nth-child(3) { --home-entrance-delay: 220ms; }
.home-about.home-entrance-ready .home-about-card:nth-child(4) { --home-entrance-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .home-about {
    background-attachment: scroll; /* no parallax for reduced-motion users */
  }
  .home-about.home-entrance-ready .home-about__header,
  .home-about.home-entrance-ready .home-about-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-shell.latest-updates{
  padding-top: 80px;
}

.home-core {
  padding: clamp(36px, 6vw, 82px) 0;
  background: #fff;
}

.home-core__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.68fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.home-core__header {
  margin-bottom: 26px;
}

.home-core-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}

.home-core-list::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 6px;
  width: 1px;
  background: linear-gradient(180deg, rgba(58, 154, 92, 0), rgba(58, 154, 92, 0.75), rgba(58, 154, 92, 0));
}

.home-core-item {
  position: relative;
  padding: 18px 20px;
  border: 1px solid rgba(16, 67, 101, 0.1);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 253, 0.82));
}

.home-core-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 26px;
  width: 13px;
  height: 13px;
  border: 2px solid #58a75d;
  border-radius: 999px;
  background: #fff;
}

.home-core-item h3 {
  margin: 0;
  color: #0b5c92;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.home-core-item p {
  margin: 8px 0 0;
  color: var(--ndc-text);
  line-height: 1.65;
}

.home-core-item a {
  color: inherit;
  text-decoration: none;
}

.home-pledge-card {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1px solid rgba(16, 67, 101, 0.14);
  border-radius: 30px;
  background: #f8fbfd;
  box-shadow: 0 24px 70px rgba(3, 39, 66, 0.12);
}

.home-pledge-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.home-pledge-card__preview {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.home-pledge-card__preview::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(3, 39, 66, 0.82);
  color: #fff;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-pledge-card__preview:hover::after,
.home-pledge-card__preview:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.home-pledge-card__body {
  padding: 20px;
}

.home-pledge-card__body h3 {
  margin: 0;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: 1.35rem;
}

.home-pledge-card__body a {
  display: inline-flex;
  margin-top: 12px;
  color: #0b6d8d;
  font-weight: 800;
  text-decoration: none;
}

.home-pledge-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.home-pledge-lightbox:target {
  pointer-events: auto;
  opacity: 1;
}

.home-pledge-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 41, 0.82);
  backdrop-filter: blur(8px);
}

.home-pledge-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: 90vh;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.home-pledge-lightbox:target .home-pledge-lightbox__panel {
  transform: translateY(0) scale(1);
}

.home-pledge-lightbox__panel img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 72px);
  object-fit: contain;
  background: #f4f7f9;
}

.home-pledge-lightbox__panel figcaption {
  padding: 16px 22px;
  color: var(--ndc-navy);
  font-weight: 900;
}

.home-pledge-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ndc-navy);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(3, 24, 41, 0.2);
}

.home-showcase {
  padding: clamp(44px, 7vw, 92px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%),
    radial-gradient(circle at 75% 8%, rgba(58, 154, 92, 0.16), transparent 28%);
}

.home-showcase__header {
  margin-bottom: 28px;
}


.action-btn,
.home-section-view-all {
  margin-top: 18px;
  background: #DD9425 !important;
  color: white;
}

.action-btn:hover,
.home-section-view-all:hover{
  color: white;
  background: #2d806d !important;
  transition: all;
}

.home-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.home-event-carousel {
  min-width: 0;
  position: relative;
}

.home-event-carousel__viewport {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-event-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.home-property-panel {
  overflow: hidden;
}

.home-event-card {
  border: 1px solid rgba(16, 67, 101, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(3, 39, 66, 0.1);
  overflow: hidden;
}

.home-event-carousel .home-event-card {
  flex: 0 0 100%;
  height: 600px;
  scroll-snap-align: start;
}

.home-event-card__media {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3f65, #2d806d);
}

.home-event-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-event-card:hover .home-event-card__media img {
  transform: scale(1.035);
}

.home-event-card__body {
  padding: clamp(20px, 3vw, 32px);
}

.home-event-card__body h3 {
  margin: 8px 0 10px;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.home-event-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.home-event-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
  padding-right: 4px;
}

.home-event-carousel__button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d5f91, #2f8a68);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(5, 49, 79, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.home-event-carousel__button:hover,
.home-event-carousel__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(5, 49, 79, 0.24);
}

.home-event-carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
}

.home-property-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(20px, 3vw, 30px);
}

.home-property-panel h3 {
  margin: 0 0 18px;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.home-property-list {
  display: grid;
  gap: 16px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: rgba(13, 95, 145, 0.42) rgba(8, 54, 95, 0.08);
  scrollbar-width: thin;
}

.home-property-list::-webkit-scrollbar {
  width: 8px;
}

.home-property-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(8, 54, 95, 0.08);
}

.home-property-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #0d5f91, #2f8a68);
}

.home-property-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(16, 67, 101, 0.1);
  border-radius: 20px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-property-item:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(3, 39, 66, 0.1);
}

.home-property-item img {
  width: 116px;
  height: 92px;
  object-fit: cover;
  background: #edf4f7;
}

.home-property-item h4 {
  margin: 0;
  color: var(--ndc-navy);
  font-size: 1rem;
  line-height: 1.25;
}

.home-property-item p {
  margin: 5px 0 0;
  color: var(--ndc-muted);
  font-size: 0.92rem;
}

.home-property-item a {
  display: inline-flex;
  margin-top: 8px;
  color: #0b6d8d;
  font-weight: 800;
  text-decoration: none;
}

.home-showcase__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 67, 101, 0.12);
}

.home-showcase__cta::before {
  content: "Interested with any of the properties?";
  color: var(--ndc-muted);
  font-size: 0.94rem;
}

.home-showcase .home-event-carousel {
  --event-card-gap: clamp(14px, 2vw, 24px);
  --event-focus-width: 50%;
  --event-side-width: calc((100% - var(--event-focus-width) - (var(--event-card-gap) * 2)) / 2);
  width: 100%;
}

.home-showcase .home-event-carousel__viewport {
  align-items: stretch;
  gap: var(--event-card-gap);
  overflow-x: hidden;
  padding: 8px 4px 20px;
}

.home-showcase .home-event-carousel .home-event-card {
  flex: 0 0 var(--event-side-width);
  opacity: 0.66;
  transform: scale(0.92);
  transform-origin: center;
  transition: flex-basis 260ms ease, opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home-showcase .home-event-carousel .home-event-card.is-active {
  flex-basis: var(--event-focus-width);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 5px 10px rgba(3, 39, 66, 0.18);
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) .home-event-card__body {
  padding: 18px;
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) .home-event-card__body > p:not(.eyebrow) {
  display: none;
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) .ndc-card-actions {
  padding-top: 10px;
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) .ndc-share {
  display: none;
}

.corporate-events .ndc-share{
  height: fit-content;
}

.home-showcase .home-event-carousel__controls {
  justify-content: center;
  margin-top: 8px;
}

.home-properties {
  padding: clamp(42px, 6vw, 86px) 0;
  background: white;
}

.home-properties__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.home-properties__intro {
  position: sticky;
  top: 110px;
}

.home-about__header h2,
.home-properties__intro h2 {
  margin: 0;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.home-properties__intro p:not(.eyebrow) {
  margin: 16px 0 24px;
  max-width: 440px;
  color: var(--ndc-muted);
  line-height: 1.75;
}

.home-properties__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-properties .home-property-panel {
  max-height: min(720px, 82vh);
  padding: clamp(18px, 3vw, 28px);
}

.home-properties .home-property-carousel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.home-properties .home-property-carousel__controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 70px;
}

.home-properties .home-property-carousel__button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  background: var(--ndc-gold);
  color: var(--ndc-blue-deep);
  color:  white;
  box-shadow: 0 12px 26px rgba(8, 38, 63, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.home-properties .home-property-carousel__button:hover,
.home-properties .home-property-carousel__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(8, 38, 63, 0.12);
}

.home-properties .home-property-list {
  position: relative;
  min-height: 620px;
  max-height: none;
  overflow: visible;
}

.home-properties .home-property-item {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  gap:12px;
  align-items: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 320ms cubic-bezier(0.22, 0.8, 0.24, 1),
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.home-properties .home-property-item.is-active,
.home-properties .home-property-item.is-next,
.home-properties .home-property-item.is-third {
  opacity: 1;
  pointer-events: auto;
}

.home-properties .home-property-item.is-active {
  top: 0;
  border: 1px solid var(--ndc-gold);
  border-left: 3px solid var(--ndc-gold);
  transform: translateY(0) scale(1);
  z-index: 3;
  box-shadow: 0 18px 38px rgba(3, 39, 66, 0.12);
}

.home-properties .home-property-item.is-next {
  top: 246px;
  transform: translateY(0) scale(0.965);
  opacity: 0.62;
  z-index: 2;
}

.home-properties .home-property-item.is-third {
  top: 482px;
  transform: translateY(0) scale(0.93);
  opacity: 0.34;
  z-index: 1;
}

.home-properties .home-property-item img {
  width: 300px;
  height: 236px;
}

.home-properties .home-property-item__excerpt {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--ndc-muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 980px) {
  /* About Us — collapse to 2 columns, wide cards go full-width */
  .home-about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-event-carousel__viewport {
    justify-content: center;
  }

  .home-about-card:nth-child(1),
  .home-about-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  /* Revert wide cards to normal column layout on tablet */
  .home-about-card--wide {
    flex-direction: column;
    min-height: 0;
  }

  .home-about-card--wide .home-about-card__visual {
    position: relative;   /* back to normal flow */
    inset: auto;
    width: 100%;
    height: clamp(180px, 22vw, 220px);
    border-radius: 18px 18px 0 0;
  }

  .home-about-card--wide .home-about-card__body {
    position: relative;   /* back to normal flow */
    bottom: auto;
    left: auto;
    right: auto;
    flex: 1 1 0;
    margin-top: 0;
    justify-content: flex-start;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 3px solid var(--card-accent);
  }

  .home-logo-grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .home-logo-grid--services {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .home-logo-grid--services .home-logo-card--feature {
    transform: translateY(0);
  }

  .home-logo-grid--services .home-logo-card {
    min-height: 240px;
  }

  .home-core__layout,
  .home-showcase__grid,
  .home-properties__layout {
    grid-template-columns: 1fr;
  }

  .home-pledge-card {
    position: relative;
    top: auto;
  }

  .home-properties__intro {
    position: relative;
    top: auto;
  }

  .home-properties .home-property-carousel {
    grid-template-columns: 1fr;
  }

  .home-properties .home-property-carousel__controls {
    order: 2;
    flex-direction: row;
    justify-content: center;
    padding-top: 0;
  }

  .home-properties .home-property-list {
    min-height: auto;
  }

  .home-properties .home-property-item,
  .home-properties .home-property-item.is-active,
  .home-properties .home-property-item.is-next,
  .home-properties .home-property-item.is-third {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .home-properties .home-property-item:not(.is-active) {
    display: none;
  }

  .home-showcase .home-event-carousel .home-event-card,
  .home-showcase .home-event-carousel .home-event-card.is-active {
    flex-basis: min(82vw, 520px);
    opacity: 1;
    transform: none;
  }

  .home-showcase .home-event-carousel .home-event-card:not(.is-active) .home-event-card__body > p:not(.eyebrow),
  .home-showcase .home-event-carousel .home-event-card:not(.is-active) .ndc-share {
    display: revert;
  }
}

@media (max-width: 620px) {
  /* About Us — single column on mobile */
  .home-about__grid {
    grid-template-columns: 1fr;
  }

  .home-about-card:nth-child(1),
  .home-about-card:nth-child(4) {
    grid-column: 1;
  }

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

  .home-logo-grid--services {
    grid-template-columns: 1fr;
  }

  .home-logo-grid--services .home-logo-card {
    min-height: 220px;
    padding: 16px;
  }

  .home-logo-grid--services .home-logo-card img,
  .home-logo-grid--services .home-logo-card--feature img {
    max-width: min(100%, 220px);
    max-height: 120px;
  }

  .home-compliance__panel-inner {
    flex-direction: column;
  }

  .home-compliance__panel-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-compliance__panel-cta {
    align-self: flex-start;
  }

  .home-logo-card {
    min-height: 112px;
  }

  .home-property-item {
    grid-template-columns: 86px 1fr;
  }

  .home-property-item img {
    width: 86px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo-grid--services .home-logo-card img {
    animation: none;
  }

  .home-logo-grid--services .home-logo-card,
  .home-logo-grid--services .home-logo-card:hover,
  .home-logo-grid--services .home-logo-card:focus-visible,
  .home-logo-grid--services .home-logo-card--feature {
    transform: none;
  }

  .home-logo-grid--services .home-logo-card:hover img,
  .home-logo-grid--services .home-logo-card:focus-visible img,
  .home-logo-grid--services .home-logo-card.is-active img {
    transform: none;
    filter: none;
  }

  .home-compliance__panel {
    transition: none;
  }

  .home-logo-card__name {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.home-showcase {
  padding: clamp(28px, 4vw, 54px) 0;
}

.home-showcase__header {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-showcase .ndc-share__menu{
  bottom: calc(100% + 8px) !important;
  top: unset !important;
}

.home-showcase .home-event-card {
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.home-showcase .home-event-card__media img {
  aspect-ratio: 2.35;
  height: clamp(180px, 18vw, 230px);
  max-height: none;
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) .home-event-card__media img {
  height: clamp(180px, 18vw, 230px);
  max-height: none;
}

.home-showcase .home-event-carousel .home-event-card:not(.is-active) {
  transform: none;
}

.home-showcase .home-event-carousel .home-event-card:has(.ndc-share.is-open) {
  z-index: 30;
}

.home-showcase .home-event-card__media {
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.home-showcase .home-event-card__body {
  padding: clamp(14px, 2vw, 20px);
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-showcase .home-event-card__body h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.home-showcase .home-event-card__body > p:not(.eyebrow) {
  display: -webkit-box;
  line-height: 1.55;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-showcase .home-event-card .ndc-card-actions {
  margin-top: auto;
  padding-top: 10px;
}

.home-showcase .home-event-carousel__controls {
  margin-top: 20px;
}

.home-showcase .home-event-carousel__button {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.home-showcase.corporate-events {
  padding: clamp(42px, 6vw, 84px) 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(15, 76, 129, 0.1), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(47, 138, 104, 0.1), transparent 26%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.home-showcase.corporate-events .home-showcase__header {
  max-width: 1560px;
  margin: 0 auto 28px;
  gap: 10px;
}

.home-showcase.corporate-events .home-showcase__heading-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.home-showcase.corporate-events .home-showcase__heading-bar > div:first-child {
  max-width: 1300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-showcase.corporate-events .home-showcase__header p:not(.eyebrow) {
  max-width: 760px;
  text-align: center;
}

.home-showcase.corporate-events .home-event-carousel__viewport {
  position: relative;
  min-height: clamp(440px, 40vw, 600px);
  padding: 18px 0 10px;
  overflow: visible;
}

.home-showcase.corporate-events .home-event-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(40%, 520px);
  height: 100%;
  border: 1px solid rgba(12, 74, 110, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.98));
  box-shadow: 0 18px 38px rgba(8, 38, 63, 0.08);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.88);
  transform-origin: center;
  transition:
    transform 320ms cubic-bezier(0.22, 0.8, 0.24, 1),
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.home-showcase.corporate-events .home-event-card.is-prev,
.home-showcase.corporate-events .home-event-card.is-next,
.home-showcase.corporate-events .home-event-carousel .home-event-card.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-showcase.corporate-events .home-event-carousel .home-event-card.is-active {
  z-index: 3;
  transform: translateX(-50%) scale(1);
  box-shadow: 0 22px 48px rgba(8, 38, 63, 0.14);
}

.home-showcase.corporate-events .home-event-card.is-prev {
  z-index: 1;
  opacity: 0.42;
  transform: translateX(calc(-50% - min(31vw, 380px))) scale(0.84);
}

.home-showcase.corporate-events .home-event-card.is-next {
  z-index: 1;
  opacity: 0.42;
  transform: translateX(calc(-50% + min(31vw, 380px))) scale(0.84);
}

.home-showcase.corporate-events .home-event-card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.home-showcase.corporate-events .home-event-card__media {
  position: relative;
}

.home-showcase.corporate-events .home-event-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(8, 38, 63, 0), rgba(8, 38, 63, 0.22));
  pointer-events: none;
}

.home-showcase.corporate-events .home-event-card__body {
  padding: clamp(18px, 2.1vw, 24px);
}

.home-showcase.corporate-events .home-event-card__body .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--ndc-blue-deep);
  letter-spacing: 0.08em;
}

.home-showcase.corporate-events .home-event-card__date {
  display: block;
  margin-bottom: 8px;
  color: var(--ndc-muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-showcase.corporate-events .home-event-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.15;
}

.home-showcase.corporate-events .home-event-card__body > p:not(.eyebrow) {
  -webkit-line-clamp: 3;
  color: var(--ndc-muted);
}

.home-showcase.corporate-events .home-event-card.is-prev .home-event-card__body > p:not(.eyebrow),
.home-showcase.corporate-events .home-event-card.is-next .home-event-card__body > p:not(.eyebrow) {
  display: none;
}

.home-showcase.corporate-events .home-event-card.is-prev .ndc-share,
.home-showcase.corporate-events .home-event-card.is-next .ndc-share {
  display: none;
}

.home-showcase.corporate-events .home-event-card .ndc-card-actions {
  padding-top: 14px;
}

.home-showcase.corporate-events .home-event-carousel__controls {
  margin: 0 0 18px;
  justify-content: center;
  flex-shrink: 0;
}

.home-showcase.corporate-events .home-event-carousel__button {
  border-color: rgba(15, 76, 129, 0.16);
  background: #DD9425;
  box-shadow: 0 10px 22px rgba(8, 38, 63, 0.08);
}

@media (max-width: 980px) {
  .home-showcase .home-event-card__media img {
    height: clamp(170px, 28vw, 210px);
  }

  .home-showcase.corporate-events .home-showcase__header {
    margin-bottom: 22px;
  }

  .home-showcase.corporate-events .home-showcase__heading-bar {
    flex-direction: column;
    align-items: center;
  }

  .home-showcase.corporate-events .home-event-carousel__controls {
    justify-content: center;
    margin-bottom: 14px;
  }

  .home-showcase.corporate-events .home-event-carousel__viewport {
    min-height: auto;
    padding: 8px 0 0;
  }

  .home-showcase.corporate-events .home-event-card,
  .home-showcase.corporate-events .home-event-card.is-prev,
  .home-showcase.corporate-events .home-event-card.is-next,
  .home-showcase.corporate-events .home-event-carousel .home-event-card.is-active {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .home-showcase.corporate-events .home-event-card.is-prev,
  .home-showcase.corporate-events .home-event-card.is-next,
  .home-showcase.corporate-events .home-event-card.is-hidden {
    display: none;
  }
}

.home-logo-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 253, 0.88)),
    url('https://ndc-mockup1.transcend-enterprise.com/wp-content/uploads/2026/06/update-BG.jpg') center center / cover fixed no-repeat;
}

.home-logo-strip__header {
  margin: 0 auto 22px;
  max-width: 760px;
  text-align: center;
}

.home-logo-strip__header h2 {
  margin: 0;
  color: var(--ndc-navy);
  font-family: var(--ndc-serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1;
}

.home-logo-strip__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.home-logo-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(16, 67, 101, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ndc-blue-deep);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 38, 63, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-width: 200px;
}

.home-logo-strip__item:hover,
.home-logo-strip__item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 76, 129, 0.22);
  box-shadow: 0 18px 34px rgba(8, 38, 63, 0.1);
}

.home-logo-strip__item span {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.home-logo-strip__item img {
  display: block;
  width: 100%;
  max-width: 150px;
  object-fit: contain;
}
