.navbar {

  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  z-index: 1000;
  padding: 0rem 1.5rem;
}

.brand-logo {
  height: 45px; /* Adjust logo size */
  width: auto;
}

.navbar-nav .nav-link {
  color: #000000;
  font-weight: 600;
  margin-right: 1.2rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #1E73BE;
}

.btn-talk {
  background-color: #1E73BE;
  color: #ffffff;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-talk:hover {
  background-color: #000;
  color: #ffffff;
}

/* Mega Menu */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 25vw; /* narrower, not full width */
  max-width: 800px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 1.5rem 2rem;
  margin-top: 0.5rem;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.3rem;
}

.mega-subtitle {
  color: #777;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.mega-links {
  display: grid;

  gap: 0.5rem 1.5rem;
}

.mega-link {
  color: #444;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.mega-link:hover {
  color: #1E73BE;
}


/* Add bullets & underline only for dropdown links */
.mega-link {
  position: relative;
  padding-left: 1.2rem; /* space for bullet */
}

.mega-link::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1E73BE; /* brand red */
  font-size: 1rem;
}

/* Hover underline only for mega menu links */
.mega-link:hover {
  text-decoration: underline;
}


  @media (max-width: 768px) {
            .mega-menu{
              width: 70vw;
            }
        }


        .navbar-toggler {
  border: none; /* remove border */
  outline: none;
}

.navbar-toggler i {
  font-size: 1.8rem;
  color: #1E73BE; /* change to black if navbar is light */
}
