  :root {
      --primary-color: #003d99;
      --primary-light: #0F78ED;
  }

  /* ====== NAVBAR BASE ====== */
  .navbar-custom {
      background: linear-gradient(90deg, #003d99, #0F78ED);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
      padding: 0.75rem 0;
      transition: all 0.3s ease;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
  }

  .navbar-custom.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  }

  .navbar-brand-custom {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 1.5rem;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .navbar-brand-custom:hover {
      color: #f5f7ff;
      transform: scale(1.05);
  }

  .navbar-brand-custom img {
      height: 45px;
      margin-right: 0.75rem;
      transition: all 0.3s ease;
  }

  .navbar-custom.scrolled .navbar-brand-custom img {
      height: 40px;
  }

  /* ====== DESKTOP NAV ====== */
  .nav-links {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .nav-link-item {
      position: relative;
  }

  .nav-link-button {
      background: none;
      border: 0;
      padding: 0.75rem 1.25rem;
      color: inherit;
      cursor: pointer;
  }

  .nav-link-custom {
      color: #f5f7ff;
      text-decoration: none;
      padding: 0.75rem 1.25rem;
      font-weight: 500;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      cursor: pointer;
  }

  .nav-link-custom:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.12);
  }

  .nav-link-custom.active {
      color: #ffffff;
      background: rgba(0, 0, 0, 0.15);
  }

  .dropdown-menu-custom {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      border-radius: 12px;
      padding: 0.5rem;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      margin-top: 0.5rem;
      z-index: 1001;
  }

  @media (min-width: 992px) {
      .nav-link-item.has-dropdown:hover>.dropdown-menu-custom {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }
  }

  .dropdown-item-custom {
      color: #2c3e50;
      text-decoration: none;
      padding: 0.65rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-radius: 8px;
      transition: all 0.2s ease;
      font-size: 0.9rem;
  }

  .dropdown-item-custom:hover {
      background: rgba(0, 61, 153, 0.08);
      color: #003d99;
      padding-left: 1.25rem;
  }

  .btn-nav-cta {
      background: #FFD700;
      color: #003d99;
      padding: 0.65rem 1.5rem;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
  }

  .btn-nav-cta:hover {
      background: #ffcc33;
      color: #002a66;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .sidebar-menu .has-submenu>a::after {
      content: none !important;
  }

  .menu-toggle::after {
      content: none !important;
  }

  /* ====== MOBILE TOGGLE ====== */
  .mobile-menu-toggle {
      background: none;
      border: 2px solid #ffffff;
      padding: 0.5rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .sidebar-menu .has-submenu>a::after {
      content: none !important;
  }

  .mobile-menu-toggle:hover {
      background: rgba(255, 255, 255, 0.15);
  }

  .mobile-menu-toggle span {
      display: block;
      width: 25px;
      height: 3px;
      background: #ffffff;
      margin: 4px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ====== MOBILE SIDEBAR ====== */
  .mobile-sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1100;
      pointer-events: none;
  }

  .mobile-sidebar.active {
      pointer-events: all;
  }

  .sidebar-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .mobile-sidebar.active .sidebar-overlay {
      opacity: 1;
  }

  .sidebar-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 280px;
      height: 100%;
      background: #ffffff;
      box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      overflow-y: auto;
  }

  .mobile-sidebar.active .sidebar-content {
      transform: translateX(0);
  }

  .sidebar-header {
      background: linear-gradient(135deg, #003d99, #0F78ED);
      padding: 1.5rem 1rem;
      color: #ffffff;
      position: relative;
      text-align: center;
  }

  .sidebar-header img {
      height: 50px;
      margin-bottom: 0.5rem;
  }

  .sidebar-header h5 {
      font-size: 1rem;
      font-weight: 600;
  }

  .sidebar-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: #ffffff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .sidebar-close:hover {
      background: rgba(255, 255, 255, 0.3);
  }

  .sidebar-menu {
      list-style: none;
      padding: 1rem 0;
      margin: 0;
  }

  .sidebar-menu li a {
      display: flex;
      align-items: center;
      padding: 0.85rem 1.5rem;
      color: #2c3e50;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      position: relative;
  }

  .sidebar-menu li a i:first-child {
      margin-right: 0.75rem;
      font-size: 1.2rem;
      flex-shrink: 0;
  }

  .sidebar-menu li a span:not(.arrow-icon) {
      flex: 1;
  }

  .sidebar-menu li a:hover {
      background: rgba(0, 61, 153, 0.08);
      color: #003d99;
  }

  .sidebar-menu li a.active {
      background: rgba(0, 61, 153, 0.12);
      color: #003d99;
      font-weight: 600;
  }

  .sidebar-menu .has-submenu .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0.85rem 1.5rem;
      background: none;
      border: 0;
      text-align: left;
      color: #2c3e50;
      font-size: 0.95rem;
      cursor: pointer;
  }

  .sidebar-menu .has-submenu .arrow-icon {
      margin-left: auto;
      font-size: 1rem;
      font-weight: 400;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      color: #6c757d;
      line-height: 1;
  }

  .sidebar-menu .has-submenu.open .arrow-icon {
      transform: rotate(90deg);
  }

  .sidebar-menu .has-submenu.open .menu-toggle {
      background: rgba(0, 61, 153, 0.08);
      color: #003d99;
  }

  .sidebar-menu .submenu {
      list-style: none;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #f8f9fa;
  }

  .sidebar-menu .has-submenu.open .submenu {
      max-height: 600px;
  }

  .sidebar-menu .submenu li a {
      padding-left: 3.5rem;
      font-size: 0.9rem;
      color: #5a6c7d;
  }

  .sidebar-menu .submenu li a:hover {
      background: rgba(0, 61, 153, 0.06);
      color: #003d99;
  }

  .btn-cta-mobile {
      background: #FFD700 !important;
      color: #003d99 !important;
      font-weight: 600;
      border-radius: 8px;
      margin: 1rem 1.5rem;
      padding: 0.85rem 1.5rem !important;
      justify-content: center;
  }

  .btn-cta-mobile:hover {
      background: #ffcc33 !important;
  }

  /* Body offset */
  body {
      padding-top: 70px;
  }

  @media (max-width: 991px) {
      body {
          padding-top: 70px;
      }
  }
