/* ══════════════════════════════════
       NAV — BASE
    ══════════════════════════════════ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 68px; background: #fff;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center;
      transition: box-shadow .3s;
    }
    #nav.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.09); }
.cursor{ cursor: default}
    .nav-inner {
      width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px;
      display: flex; align-items: center; justify-content: space-between;
    }

    /* Logo */
    .nav-logo img { height: 62px; width: auto; display: block; }
    .nav-logo-fb {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 24px;
      color: var(--blue); display: none; letter-spacing: 1px;
    }
    .nav-logo-fb span { color: var(--orange); }

    /* ══════════════════════════════════
       DESKTOP NAV LIST
    ══════════════════════════════════ */
    .nav-list { display: flex; align-items: center;  list-style-type: none}
    .nav-list > li { position: relative; }
    .nav-list > li > a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: 13px;
      letter-spacing: .8px; text-transform: uppercase;
      color: #333; padding: 0 13px;
      height: 68px; display: flex; align-items: center; gap: 4px;
      transition: color .15s; white-space: nowrap;
    }
    .nav-list > li > a:hover,
    .nav-list > li.active > a { color: var(--orange); }
    .nav-caret { font-size: 9px;}

    /* CTA button */
    .nav-cta {
      background: var(--orange) !important;
      color: #fff !important;
      padding: 0 18px !important;
      height: 36px !important;
      display: flex !important;
      align-items: center !important;
      font-weight: 700 !important;
      letter-spacing: 1px !important;
      transition: background .18s !important;
    }
    .nav-cta:hover { background: #d96a10 !important; }

    /* ══════════════════════════════════
       MEGA MENU – DESKTOP
    ══════════════════════════════════ */
    .nav-dd {
      position: fixed; top: 68px; left: 0; right: 0;
      background: #fff;
      border-top: 3px solid var(--orange);
      box-shadow: 0 16px 48px rgba(0,0,0,.13);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .25s ease, transform .25s ease, visibility .25s;
      z-index: 999;
    }
    .nav-list > li:hover .nav-dd {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .mega-inner {
      max-width: 1200px; margin: 0 auto; padding: 40px 48px;
      display: grid; gap: 0;
    }
    .mega-col { padding: 0 36px 0 0; border-right: 1px solid var(--border); }
    .mega-col:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
    .mega-col-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 9.5px;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 18px; display: block;
    }
    .mega-link {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 0; border-bottom: 1px solid var(--border);
      transition: all .18s; cursor: pointer;
    }
    .mega-link:last-of-type { border-bottom: none; }
    .mega-link:hover .mega-link-icon { background: var(--orange); }
    .mega-link:hover .mega-link-icon span { filter: brightness(0) invert(1); }
    .mega-link:hover .mega-link-icon.mlicon-orange span { filter: brightness(0); }
    .mega-link:hover .mega-link-title { color: var(--orange); }
    .mega-link-icon {
      width: 40px; height: 40px; background: var(--light);
      flex-shrink: 0; display: flex; align-items: center;
      justify-content: center; transition: background .2s;
    }
    .mega-link-icon span { font-size: 18px; transition: filter .2s; }
    .mega-link-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 14px;
      text-transform: uppercase; letter-spacing: .5px;
      color: #111; margin-bottom: 3px; transition: color .18s; display: block;
    }
    .mega-link-desc { font-size: 12px; color: var(--gray); line-height: 1.4; }

    /* Featured card in solutions mega */
    .mega-featured {
      background: var(--blue); padding: 24px; height: 100%;
      display: flex; flex-direction: column; justify-content: space-between;
      transition:transform .25s ease,box-shadow .25s ease;cursor:default
    }
    .mega-featured-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 9px;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: rgba(255,255,255,.45); margin-bottom: 10px; display: block;
    }
    .mega-featured h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 22px;
      text-transform: uppercase; color: #fff;
      line-height: .95; margin-bottom: 10px;
    }
    .mega-featured p {
      font-size: 12px; color: rgba(255,255,255,.55);
      line-height: 1.55; margin-bottom: 18px;
    }
    .mega-featured .arr-link { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: .5px; transition:gap .2s,color .2s,letter-spacing .2s ; -webkit-transition:gap .2s,color .2s,letter-spacing .2s ; -moz-transition:gap .2s,color .2s,letter-spacing .2s ; -ms-transition:gap .2s,color .2s,letter-spacing .2s ; -o-transition:gap .2s,color .2s,letter-spacing .2s ; }
    .mega-featured:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(27,43,143,.25)}

    /* Capabilities – icon variant */
    .mlicon { border-radius: 0; }
    .mlicon-orange { background: #FFF2E6 !important; }

    /* ══════════════════════════════════
       HAMBURGER BUTTON
    ══════════════════════════════════ */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      width: 0px; height: 40px; cursor: pointer; gap: 5px;
      background: none; border: none; padding: 0;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: #333; transition: all .3s ease; transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ══════════════════════════════════
       MOBILE DRAWER
    ══════════════════════════════════ */
    .nav-mobile-drawer {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: #fff; z-index: 998;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .32s ease;
    }
    .nav-mobile-drawer.open { transform: translateX(0); }

    /* Mobile overlay bg */
    .nav-mob-overlay {
      display: none !important;
      position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,.35); z-index: 1;
      opacity: 0; transition: opacity .32s;
    }
    .nav-mob-overlay.open { opacity: 1; }

    /* Mobile list items */
    .nav-mob-item { border-bottom: 1px solid var(--border); }
    .nav-mob-item > a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 16px;
      letter-spacing: 1px; text-transform: uppercase;
      color: #111; padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .mob-caret {
      font-size: 11px; color: var(--orange);
      transition: transform .22s; display: inline-block;
    }
    .nav-mob-item.open > a .mob-caret { transform: rotate(180deg); -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); }

    /* Mobile sub menu */
    .nav-mob-sub { display: none; background: var(--light); border-top: 1px solid var(--border); }
    .nav-mob-item.open .nav-mob-sub { display: block; }

    .mob-sub-label {
      font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--orange); font-weight: 700;
      padding: 12px 24px 4px; display: block;
    }
    .nav-mob-sub a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: 13px;
      letter-spacing: .5px; text-transform: uppercase;
      color: var(--gray); padding: 11px 24px 11px 36px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid rgba(0,0,0,.04);
      transition: color .15s;
    }
    .nav-mob-sub a:last-child { border-bottom: none; }
    .nav-mob-sub a:hover { color: var(--orange); }
    .nav-mob-sub a span.msub-icon { font-size: 15px; }

    /* Mobile CTA */
    .nav-mob-cta {
      margin: 20px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase;
      background: var(--orange); color: #fff;
      padding: 14px 24px; display: block; text-align: center;
    }

    /* ══════════════════════════════════
       RESPONSIVE BREAKPOINT
    ══════════════════════════════════ */
    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; }
      .nav-list  { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile-drawer { display: block; }
      .nav-mob-overlay   { display: block; }
    }

    /* ══════════════════════════════════
       DEMO PAGE BODY (remove in production)
    ══════════════════════════════════ */
    body { padding-top: 68px; background: #f3f3f3; }
    .demo-hero {
      max-width: 1200px; margin: 60px auto; padding: 0 48px;
      text-align: center;
    }
    .demo-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 52px;
      color: var(--blue); text-transform: uppercase; margin-bottom: 12px;
    }
    .demo-hero h1 span { color: var(--orange); }
    .demo-hero p { font-size: 16px; color: var(--gray); line-height: 1.6; }
    @media (max-width: 768px) {
      .demo-hero { padding: 0 20px; margin: 40px auto; }
      .demo-hero h1 { font-size: 36px; }
    }
