/* ============================================================
   Synethos — Top Navigation v26
   Changes from v25:
   - Nav buttons: uppercase → capitalize, tighter letter-spacing
   - Dropdown: removed min-height, auto-fits to content
   - Dropdown grid: 1 column, max 5 rows, auto height per row
   - Dropdown title: matches site body type scale
   - Dropdown font-size reduced to match site text rhythm
   ============================================================ */

#synethos-nav *,
#synethos-nav *::before,
#synethos-nav *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Nav shell ── */
#synethos-nav {
  display: flex !important;
  justify-content: center !important;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #061839;
  border-bottom: 1px solid transparent;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

#synethos-nav.is-scrolled {
  border-bottom-color: rgba(29,158,117,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ── Inner bar ── */
.syn-nav-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 32px;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Logo ── */
.syn-logo {
  display: flex !important;
  align-items: center;
  text-decoration: none;
  flex: 1 1 0% !important;
}

.syn-logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* ── Nav links ── */
.syn-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-shrink: 0;
}

/* ── Right CTA ── */
.syn-nav-right {
  flex: 1 1 0% !important;
  display: flex !important;
  justify-content: flex-end;
}

#synethos-nav .syn-logo {
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
  flex-basis: 0% !important;
}

#synethos-nav .syn-nav-right {
  flex-grow: 1 !important;
  flex-shrink: 1 !important;
  flex-basis: 0% !important;
}

/* ── CTA button ── */
.syn-btn-cta {
  padding: 10px 28px;
  border-radius: 6px;
  border: none;
  background: #0F6E56;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.16s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.syn-btn-cta:hover {
  background: #1D9E75;
  color: #fff;
}

/* ── Nav item ── */
.syn-nav-item {
  position: static;
}

/* ── Nav buttons
     Changed from v25:
     - text-transform: capitalize (was uppercase)
     - letter-spacing: 0.01em (was 0.06em)
     - font-size: 13px retained
     ── */
.syn-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #7A9490;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.16s;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.syn-nav-btn:hover,
.syn-nav-btn.is-active {
  color: #1D9E75 !important;
  background: transparent !important;
}

/* ── Chevron ── */
.syn-chevron {
  width: 11px;
  height: 11px;
  transition: transform 0.2s;
  color: #3A5954;
  flex-shrink: 0;
}

.syn-nav-btn.is-active .syn-chevron {
  transform: rotate(180deg);
  color: #1D9E75;
}

/* ─────────────────────────────────────────────────────────────
   DROPDOWN
   Changed from v25:
   - grid-template-columns: 1 column (was 2)
   - grid-template-rows: auto per row (was repeat 5 fixed)
   - min-height: removed (was 260px — forced tall empty space)
   - padding reduced: 20px (was 30px)
   - gap tightened: 0 (rows only, no column gap needed)
   ───────────────────────────────────────────────────────────── */

.syn-dropdown {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 48px rgba(8,15,28,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
  z-index: 9998;
}

.syn-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.syn-dd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
}

/* ── Dropdown grid: 4 rows per column, fills left then right ── */
.syn-dd-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto auto auto;
  grid-auto-flow: column;
  gap: 0 48px;
  list-style: none;
}

/* ── Dropdown items ── */
.syn-dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.syn-dd-item:hover {
  background: transparent !important;
}

/* Remove border from last item in each column (4th and 8th) */
.syn-dd-grid > li:nth-child(4) .syn-dd-item,
.syn-dd-grid > li:nth-child(8) .syn-dd-item,
.syn-dd-grid > li:last-child .syn-dd-item {
  border-bottom: none;
}

/* Hide empty padding cells entirely — no wasted space */
.syn-dd-empty {
  display: none !important;
}

/* ── Bullet ── */
.syn-dd-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #1D9E75;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.syn-dd-item:hover .syn-dd-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #1D9E75;
  background: #1D9E75;
  box-shadow: inset 0 0 0 3px #ffffff;
}

/* ── Dropdown title text
     Changed from v25:
     - font-size: 14px (was 17px — too large vs site body)
     - font-weight: 400 retained
     - color: #4A6360 retained (matches site muted text)
     ── */
.syn-dd-title {
  font-size: 16px;
  font-weight: 400;
  color: #4A6360;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  transition: color 0.14s;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.syn-dd-item:hover .syn-dd-title {
  color: #0A2342;
}

.syn-dd-title em {
  font-style: normal;
  font-weight: 600;
  color: #0A2342;
}

/* ── Dropdown positioning override ── */
#synethos-nav .syn-dropdown {
  left: 50% !important;
  right: auto !important;
  width: 1200px !important;
  transform: translateX(-50%) !important;
}

#synethos-nav .syn-dropdown.is-open {
  transform: translateX(-50%) !important;
}

#synethos-nav .syn-dd-inner {
  max-width: 100%;
  padding: 20px 30px !important;
}

/* ── Spacing overrides ── */
#synethos-nav .syn-nav-links {
  gap: 2px !important;
}

#synethos-nav .syn-nav-btn {
  padding: 8px 18px !important;
  font-size: 13px !important;
}

#synethos-nav .syn-btn-cta {
  padding: 10px 28px !important;
  font-size: 14px !important;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE TOGGLE
   ───────────────────────────────────────────────────────────── */

.syn-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  margin-left: auto;
}

.syn-mobile-toggle span {
  display: block;
  height: 2px;
  background: #7A9490;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.syn-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.syn-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.syn-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   MOBILE DRAWER
   ───────────────────────────────────────────────────────────── */

.syn-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0; bottom: 0;
  background: #080F1C;
  overflow-y: auto;
  padding: 16px 20px 40px;
  z-index: 9997;
  border-top: 2px solid #1D9E75;
}

.syn-mobile-menu.is-open { display: block; }

.syn-mobile-section-title {
  font-size: 10px;
  font-weight: 600;
  color: #1D9E75;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 4px 8px;
  display: block;
  font-family: 'Inter', sans-serif;
}

.syn-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 8px;
  font-size: 14px;
  color: #7A9490;
  border-bottom: 1px solid rgba(29,158,117,0.08);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.14s;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.syn-mobile-link:hover { color: #ECF0EE; }

.syn-mobile-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 2px solid #1D9E75;
  flex-shrink: 0;
}

.syn-mobile-cta {
  display: block;
  margin-top: 28px;
  padding: 14px;
  background: #0F6E56;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.16s;
}

.syn-mobile-cta:hover { background: #1D9E75; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .syn-nav-links,
  .syn-nav-right { display: none; }
  .syn-mobile-toggle { display: flex; }
  .syn-logo { flex: unset; }
}

@media (max-width: 480px) {
  .syn-nav-inner { padding: 0 16px; }
}

@media (max-width: 960px) {
  #synethos-nav .syn-btn-cta { display: none !important; }
}

@media (max-width: 960px) {
  #synethos-nav .syn-logo img {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 960px) {
  #synethos-nav .syn-nav-inner {
    padding: 0 20px !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   MOBILE ADDITIONS v26.1
   ───────────────────────────────────────────────────────────── */

/* 1. Hide the header CTA button on mobile */
@media (max-width: 960px) {
  .syn-nav-right {
    display: none !important;
  }
}

/* 2. Hamburger returns to standard colour when open
      The .is-open class is toggled by the existing JS.
      Override the greenish tint that bleeds from other rules. */
.syn-mobile-toggle.is-open span {
  background: #7A9490 !important;
}


/* ── Mobile section titles: now links ─────────────────────── */
a.syn-mobile-section-title {
  text-decoration: none;
  cursor: pointer;
}

a.syn-mobile-section-title:hover {
  color: #9FE1CB;
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   All desktop dropdowns: left menu + right recruitment CTA image
   Target used in PHP: home_url('/career/#j2')
   ───────────────────────────────────────────────────────────── */

#synethos-nav .syn-dd-with-cta-inner {
  padding: 24px 30px !important;
}

#synethos-nav .syn-dd-with-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
  gap: 34px;
}

#synethos-nav .syn-dd-grid-with-cta {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

#synethos-nav .syn-dd-grid-with-cta .syn-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 8px;
  min-height: unset;
}

#synethos-nav .syn-dd-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

#synethos-nav .syn-dd-grid-with-cta .syn-dd-title {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

#synethos-nav .syn-dd-grid-with-cta .syn-dd-desc {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  color: #7A9490;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

#synethos-nav .syn-menu-cta-card {
  display: block;
  align-self: center;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(8, 15, 28, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#synethos-nav .syn-menu-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(8, 15, 28, 0.24);
}

#synethos-nav .syn-menu-cta-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) and (min-width: 961px) {
  #synethos-nav .syn-dd-with-cta-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
  }
}

@media (max-width: 960px) {
  #synethos-nav .syn-menu-cta-card {
    display: none !important;
  }
}


/* ============================================================
   Synethos — Top Navigation v27 restructuring additions
   ============================================================ */

/* Main item label + chevron split. Keeps full item hover behaviour while
   allowing the header text to be a direct page link. */
#synethos-nav .syn-nav-item-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 6px;
}

#synethos-nav .syn-nav-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px 8px 18px;
  min-height: 32px;
  font-size: 13px;
  font-weight: 500;
  color: #7A9490;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: color 0.16s;
}

#synethos-nav .syn-nav-btn {
  padding: 8px 14px 8px 6px !important;
  min-height: 32px;
}

#synethos-nav .syn-nav-item:hover .syn-nav-label,
#synethos-nav .syn-nav-label:hover,
#synethos-nav .syn-nav-btn:hover,
#synethos-nav .syn-nav-btn.is-active {
  color: #1D9E75 !important;
  background: transparent !important;
}

/* Fits the new, longer top-level labels into the existing 1200px shell. */
#synethos-nav .syn-nav-links {
  gap: 0 !important;
}

@media (min-width: 961px) and (max-width: 1180px) {
  #synethos-nav .syn-nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #synethos-nav .syn-nav-label {
    font-size: 12px;
    padding-left: 11px;
    letter-spacing: 0.045em;
  }

  #synethos-nav .syn-nav-btn {
    padding-right: 9px !important;
  }

  #synethos-nav .syn-btn-primary {
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 13px !important;
  }
}

/* Four-column mega menus used by Solution and Assessment Framework. */
#synethos-nav .syn-dropdown-mega .syn-mega-inner {
  padding: 26px 30px 28px !important;
}

#synethos-nav .syn-mega-grid {
  display: grid;
  align-items: stretch;
  gap: 26px;
}

#synethos-nav .syn-mega-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#synethos-nav .syn-mega-column {
  min-width: 0;
  padding: 0 14px 2px 0;
  border-right: 1px solid rgba(0,0,0,0.06);
}

#synethos-nav .syn-mega-column:last-child {
  border-right: none;
  padding-right: 0;
}

#synethos-nav .syn-mega-heading {
  display: block;
  margin: 0 0 12px;
  padding: 0 0 12px;
  color: #0A2342;
  border-bottom: 1px solid rgba(29,158,117,0.22);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow-wrap: anywhere;
}

#synethos-nav .syn-mega-heading:hover {
  color: #1D9E75;
}

#synethos-nav .syn-mega-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

#synethos-nav .syn-mega-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(0,0,0,0.045);
  color: #4A6360;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow-wrap: anywhere;
  hyphens: auto;
}

#synethos-nav .syn-mega-list li:last-child .syn-mega-link {
  border-bottom: none;
}

#synethos-nav .syn-mega-link:hover {
  color: #0A2342;
  background: transparent !important;
}

#synethos-nav .syn-mega-link:hover .syn-dd-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #1D9E75;
  background: #1D9E75;
  box-shadow: inset 0 0 0 3px #ffffff;
}

@media (max-width: 1180px) and (min-width: 961px) {
  #synethos-nav .syn-dropdown {
    width: calc(100vw - 32px) !important;
  }

  #synethos-nav .syn-mega-grid {
    gap: 18px;
  }

  #synethos-nav .syn-mega-column {
    padding-right: 10px;
  }

  #synethos-nav .syn-mega-heading {
    font-size: 14px;
  }

  #synethos-nav .syn-mega-link {
    font-size: 12.5px;
  }
}

/* Long text in Home / Workforce Readiness / Career CTA layouts. */
#synethos-nav .syn-dd-grid-with-cta .syn-dd-desc {
  overflow-wrap: anywhere;
}

/* Mobile hierarchy mirrors the new information architecture. */
.syn-mobile-subsection-title {
  display: block;
  padding: 14px 4px 5px 18px;
  font-size: 12px;
  font-weight: 650;
  color: #ECF0EE;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.syn-mobile-subsection-title:hover {
  color: #9FE1CB;
}

@media (max-width: 960px) {
  #synethos-nav .syn-nav-label,
  #synethos-nav .syn-nav-btn {
    display: none !important;
  }
}

/* ============================================================
   Workforce Readiness dropdown: larger case study below menu items
   Requires PHP layout classes:
   - .syn-dd-with-case-layout
   - .syn-workforce-left-column
   - .syn-menu-use-case-card
   - .syn-menu-recruit-card
   ============================================================ */

#synethos-nav #dd-workforce-readiness .syn-dd-with-case-layout {
  display: grid !important;
  grid-template-columns: 620px 360px !important;
  justify-content: space-between !important;
  align-items: start !important;
  gap: 40px !important;
  width: 100% !important;
  min-height: 0 !important;
}

#synethos-nav #dd-workforce-readiness .syn-workforce-left-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-self: start !important;
  width: 620px !important;
  max-width: 620px !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

#synethos-nav #dd-workforce-readiness .syn-dd-grid-workforce-readiness {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  margin: 0 !important;
}

#synethos-nav #dd-workforce-readiness .syn-menu-use-case-card {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  margin: 28px 0 0 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 38px rgba(8, 15, 28, 0.16) !important;
}

#synethos-nav #dd-workforce-readiness .syn-menu-recruit-card {
  display: block !important;
  width: 360px !important;
  max-width: 360px !important;
  justify-self: end !important;
  align-self: end !important;
  margin: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

#synethos-nav #dd-workforce-readiness .syn-menu-use-case-card img,
#synethos-nav #dd-workforce-readiness .syn-menu-recruit-card img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1180px) and (min-width: 961px) {
  #synethos-nav #dd-workforce-readiness .syn-dd-with-case-layout {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    justify-content: stretch !important;
    gap: 28px !important;
  }

  #synethos-nav #dd-workforce-readiness .syn-workforce-left-column {
    width: auto !important;
    max-width: none !important;
  }

  #synethos-nav #dd-workforce-readiness .syn-menu-recruit-card {
    width: 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 960px) {
  #synethos-nav #dd-workforce-readiness .syn-dd-with-case-layout {
    display: block !important;
    min-height: 0 !important;
  }

  #synethos-nav #dd-workforce-readiness .syn-workforce-left-column {
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
  }
}


/* ============================================================
   Synethos v52 — Mega menu page-title refinement
   Applies only to Solution and Assessment Framework dropdowns.
   The column/page title is now the same size as submenu titles,
   but darker and slightly stronger to preserve hierarchy.
   ============================================================ */

#synethos-nav #dd-solution .syn-mega-heading,
#synethos-nav #dd-assessment-framework .syn-mega-heading {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #061839 !important;
  letter-spacing: 0.01em !important;
}

#synethos-nav #dd-solution .syn-mega-heading:hover,
#synethos-nav #dd-assessment-framework .syn-mega-heading:hover {
  color: #0F6E56 !important;
}

@media (max-width: 1180px) and (min-width: 961px) {
  #synethos-nav #dd-solution .syn-mega-heading,
  #synethos-nav #dd-assessment-framework .syn-mega-heading {
    font-size: 16px !important;
  }
}


/* ============================================================
   Synethos v53 — Mega heading icons
   Adds compact, meaningful SVG icons before Solution and
   Assessment Framework column/page titles.
   ============================================================ */

#synethos-nav #dd-solution .syn-mega-heading,
#synethos-nav #dd-assessment-framework .syn-mega-heading {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

#synethos-nav #dd-solution .syn-mega-heading-icon,
#synethos-nav #dd-assessment-framework .syn-mega-heading-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-radius: 6px !important;
  background: #E1F5EE !important;
  color: #0F6E56 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

#synethos-nav #dd-solution .syn-mega-heading-icon svg,
#synethos-nav #dd-assessment-framework .syn-mega-heading-icon svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
}

#synethos-nav #dd-solution .syn-mega-heading:hover .syn-mega-heading-icon,
#synethos-nav #dd-assessment-framework .syn-mega-heading:hover .syn-mega-heading-icon {
  background: #0F6E56 !important;
  color: #ffffff !important;
}

#synethos-nav #dd-solution .syn-mega-heading-text,
#synethos-nav #dd-assessment-framework .syn-mega-heading-text {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

/* ============================================================
   Synethos v55 — Mega submenu anchor hover refinement
   Keeps mega headings as in v53. Applies the light green hover
   rectangle only to the submenu links pointing to page anchors.
   ============================================================ */

#synethos-nav #dd-solution .syn-mega-list .syn-mega-link,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link {
  padding: 8px 10px 10px 10px !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  background: transparent !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}

#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:hover,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:hover,
#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:focus-visible,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:focus-visible {
  background: #E8F0EE !important;
  color: #0F6E56 !important;
}

#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:hover .syn-dd-title,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:hover .syn-dd-title,
#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:focus-visible .syn-dd-title,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:focus-visible .syn-dd-title {
  color: #0F6E56 !important;
}

#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:hover .syn-dd-desc,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:hover .syn-dd-desc,
#synethos-nav #dd-solution .syn-mega-list .syn-mega-link:focus-visible .syn-dd-desc,
#synethos-nav #dd-assessment-framework .syn-mega-list .syn-mega-link:focus-visible .syn-dd-desc {
  color: #4A6360 !important;
}
