/* NAVBAR */
.nav-space {
    height: 90px;
}

.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

/* MENU LINKS */
.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    margin-right: 15px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0056b3 !important;
}

.nav-link.active {
    font-weight: 600;
}

/* BUTTON */
.navbar .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.navbar .btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 99999 !important;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 18px;
}



/* NAVBAR */
.nav-space {
    height: 145px;
}

/* .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 10px 0;
} */
.navbar {
  background: #ffffff !important;   /* SOLID background */
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

/* MENU LINKS */
.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    margin-right: 15px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0056b3 !important;
}

.nav-link.active {
    font-weight: 600;
}

/* BUTTON */
.navbar .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}
/* ============================= */
/* TREATMENTS DROPDOWN MENU */
/* ============================= */
.navbar {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  z-index: 9999;
}

.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dropdown-item {
  font-weight: 500;
  padding: 10px 18px;
}
.dropdown-menu {
  z-index: 99999 !important;
}
/* FIX NAVBAR CONSISTENCY */
.navbar {
  background: #fff !important;
  padding: 10px 0;
}

.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
}

.navbar .btn {
  background: #0d6efd;
  color: white !important;
  white-space: nowrap !important;
    min-width: max-content !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}
/* FORCE SAME NAVBAR EVERYWHERE */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Fix links */
.navbar .nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
}

/* Fix button */
.navbar .btn {
  background-color: #0d6efd;
  color: #fff !important;
  border-radius: 30px;
}
.navbar {
  background: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar .nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
}

.navbar .btn {
  background-color: #0d6efd;
  color: #fff !important;
  border-radius: 25px;
}
/* FORCE BOLD NAVBAR TEXT */
.navbar .nav-link {
  font-weight: 600 !important;
}
/* Keep all menu items on a single line */
.navbar-nav .nav-link {
    white-space: nowrap !important;
}

/* Optional: Slightly reduce the gap between links so everything fits perfectly on smaller laptops */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2) !important;
}
/* =========================================================
   MOBILE FIX: Keep logo and menu button on the same line
   ========================================================= */
@media (max-width: 575px) {
    /* Shrink the logo on phone screens */
    .navbar-brand img {
        height: 45px !important; 
    }
    
    /* Force the navbar to keep items on the same row */
    .navbar .container {
        display: flex;
        flex-wrap: nowrap !important; 
        justify-content: space-between;
    }
}