    .navbar {
      padding: 0.8rem 1.5rem;
      transition: background-color 0.3s ease;
    }
    /* Logo slightly bigger */
    .navbar-brand img {
      height: 40px;
      width: auto;
    }
    .nav-link {
      margin: 0 10px;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .nav-link:hover {
      color: #ff6600 !important;
    }

    /* Hamburger smaller */
    .custom-toggler {
      width: 20px;
      height: 10px;
      position: relative;
      cursor: pointer;
      display: inline-block;
      z-index: 1001;
    }
    .custom-toggler span {
      background: #333;
      position: absolute;
      height: 3px;
      width: 100%;
      left: 0;
      transition: 0.3s ease;
    }
    .custom-toggler span:nth-child(1) { top: 0; }
    .custom-toggler span:nth-child(2) { top: 7px; }
    .custom-toggler span:nth-child(3) { top: 14px; }
    .custom-toggler.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 7px;
    }
    .custom-toggler.active span:nth-child(2) {
      opacity: 0;
    }
    .custom-toggler.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 7px;
    }

    /* Dark mode */
    body.dark-mode {
      background-color: #121212;
      color: #ccc;
    }
    body.dark-mode .navbar {
      background-color: #1e1e1e !important;
    }
    body.dark-mode .nav-link {
      color: #ccc !important;
    }
    body.dark-mode .nav-link:hover {
      color: #ff6600 !important;
    }
    body.dark-mode .custom-toggler span {
      background: #fff;
    }
    body.dark-mode .dropdown-menu {
      background: #2a2a2a;
    }
    body.dark-mode .dropdown-item {
      color: #ccc;
    }
    body.dark-mode .dropdown-item:hover {
      background: #ff6600;
      color: #fff;
    }

    /* Dark mode button */
    .toggle-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      margin-left: 15px;
      color: #333;
      transition: color 0.3s ease;
    }
    body.dark-mode .toggle-btn {
      color: #fff;
    }

    /* Dropdown hover for desktop */
    @media (min-width: 892px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    /* Mobile menu spacing */
    @media (max-width: 991px) {
      .navbar-collapse.show {
        margin-top: 10px; /* slight top margin */
        margin-left: -10px; /* slight left shift */
      }
      .navbar-brand img {
      height: 60px;
      width: auto;
        }
    }