
  .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .dropdown-menu-custom.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-item-custom {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
    font-weight: 500;
  }

  .dropdown-item-custom:hover {
    background-color: #f1f5ff;
    color: #0102a2;
  }


  .mobile-nav .nav-link {
    display: block;
    padding: 8px 16px;
    color: #333;
  }

  .mobile-nav .nav-link.text-muted {
    font-size: 14px;
  }

  .mobile-nav li {
    list-style: none;
  }


  .header-container {
    padding: 0 15px;
  }

  /* Logo Positioning */
  .logo {
    order: 1;
    margin-left: 40px; /* Space for mobile toggle */
  }
  @media (min-width: 992px) {
    .logo {
      order: 0;
      margin-left: 0 !important;
    }
  }

  /* Navigation Links */
  .nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
    font-weight: 500;
  }

  .nav-link:hover {
    color: #d39e4d;
  }

  /* Mobile Toggle Button (Left Side) - Fixed position */
  .mobile-nav-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    left: 15px;
    z-index: 1001;
    order: 0;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #333; /* Ensures icon color stays dark */
  }

  .mobile-nav-toggle.active {
    color: #333; /* Keeps color dark when active */
  }

  .hamburger-icon {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Active state - rotates hamburger to X */
  .mobile-nav-toggle.active .hamburger-icon {
    transform: rotate(90deg);
    color: #333; /* Ensures icon stays dark */
  }

  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .mobile-nav.active {
    max-height: 500px;
  }

  .mobile-nav-inner {
    padding: 20px;
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Button Styles */
  .btn-getstarted {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    background: #d39e4d;
  }

  .btn-getstarted:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
  }

  /* Header Actions Positioning */
  .header-actions {
    order: 2;
  }
