.navbar {
    position: relative;
    min-height: 70px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
}
}

.navbar .dropdown-menu {
      border: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 2rem;
      max-width: 1400px; /* 🔥 Optional max width */
      left: 50%;
      transform: translateX(-50%); /* 🔥 Center the menu */
      background: #fff;
      }
      .mega-menu-content {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      }
      .mega-menu-column {
      flex: 1;
      min-width: 200px;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      }
      .mega-menu-column h5 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #223d61;
      border-bottom: 2px solid #FFCB93;
      padding-bottom: 8px;
      margin-bottom: 12px;
      }
      .mega-menu-column:hover {
      background: #eef5ff;
      transform: translateY(-3px);
      }
      .mega-menu-column.selected {
      background: #e0ecff;
      border: 2px solid #007BFF;
      transform: scale(1.02);
      }
      /* ==== Detail Content Card ==== */
      #menu-detail {
      background: #fff;
      padding: 1.5rem;
      margin-top: 20px;
      border-radius: 12px;
      border: 1px solid #ddd;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      animation: fadeIn 0.3s ease-in-out;
      }
      #menu-detail ul {
      padding: 0;
      margin: 0;
      list-style: none;
      }
      #menu-detail li {
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
      }
      #menu-detail li:last-child {
      border-bottom: none;
      }
      #menu-detail a {
      color: #007BFF;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
      }
      #menu-detail a:hover {
      color: #0056b3;
      }
      /* ==== Responsive ==== */
      @media (max-width: 991px) {
      .mega-menu .dropdown-menu {
      position: static;
      width: auto;
      padding: 1rem;
      }
      }
      @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
      }