.doctors-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 2000;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .doctors-navbar.doctors-scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); }

.doctors-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  position: relative; }

.doctors-nav-category {
  display: none; }
  @media (max-width: 768px) {
    .doctors-nav-category {
      display: block;
      font-size: 1.1rem;
      color: #A3826D;
      font-weight: 500;
      letter-spacing: 1px;
      z-index: 2200;
      transition: opacity 0.3s ease; } }

.doctors-nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px; }
  @media (max-width: 768px) {
    .doctors-nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      flex-direction: column;
      justify-content: flex-start;
      padding: 100px 0 40px 0;
      z-index: 2100;
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      gap: 0; } }

@media (max-width: 768px) {
  .doctors-nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center; } }
.doctors-nav-item .doctors-nav-link {
  text-decoration: none;
  color: #333333;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .doctors-nav-item .doctors-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 50%;
    background-color: #A3826D;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%); }
  .doctors-nav-item .doctors-nav-link:hover, .doctors-nav-item .doctors-nav-link.active {
    color: #A3826D; }
    .doctors-nav-item .doctors-nav-link:hover::after, .doctors-nav-item .doctors-nav-link.active::after {
      width: 100%; }
  .doctors-nav-item .doctors-nav-link.active {
    font-weight: 600; }
.doctors-nav-item .doctors-nav-cta {
  text-decoration: none;
  background-color: #A3826D;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .doctors-nav-item .doctors-nav-cta:hover {
    background-color: #886955; }

.doctors-hamburger {
  display: none;
  cursor: pointer;
  z-index: 2200;
  position: absolute;
  right: 30px; }
  @media (max-width: 768px) {
    .doctors-hamburger {
      display: block; } }
  .doctors-hamburger .doctors-bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: #A3826D;
    transition: 0.3s; }
  .doctors-hamburger.active .doctors-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }
  .doctors-hamburger.active .doctors-bar:nth-child(2) {
    opacity: 0; }
  .doctors-hamburger.active .doctors-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }

@media only screen and (max-width: 768px) {
  .tab-container {
    width: 100% !important; } }
