html {
  scroll-behavior: smooth;
}
/*Navbar*/
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid #eee;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* DESKTOP MENU */
.desktop-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.desktop-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
  transition: 0.3s;
}

.desktop-menu a:hover {
  color: #000;
}

.btn {
  background: #2563eb;
  color: white !important;
  padding: 10px 16px;
  border-radius: 6px;
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;

  transform: translateY(-120%);
  transition: 0.3s ease;
  z-index: 11;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}
.modalhide{display: none}
/*Doctor Modal*/
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.modal.show {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.modal.show .modal-box {
  transform: translateY(0);
  opacity: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 24px;
}

#modalName{
  color: #0a2847;
  letter-spacing: -.025em;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: Libre Baskerville, serif;
  line-height: 2rem;
}

.modal-content h2 {
  margin-bottom: 4px;
}

.modal-content .role {
  color: #666;
  margin-bottom: 0px;
}

#modalBio p {
  margin-bottom: 12px;
  line-height: 1.6;
}
.achievement
{
    background: hsl(var(--blue));
    color: white;
    font-weight: 600;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    font-size: .75rem;
    line-height: 1rem;
    padding-top: .125rem;
    padding-bottom: .125rem;
    padding-left: .625rem;
    padding-right: .625rem;
    border-color: transparent;
    border-width: 1px;
    border-radius: 20px;
    align-items: center;
    display: inline-flex;
    margin-top: .5rem;
    margin-bottom: 20px;
}

#closeModal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    /*font-size: 30px;*/
    color: #a19898;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    border-radius:6px;
    border: 2px solid #6692fb;
    padding: 2px;
}
.w-4 {
    width: 1.2rem;
}
.h-4 {
    height: 1.2rem;
}
/* Mobile */
@media (max-width: 768px) {
  .modal {
    align-items: center;
    padding: 0 10px;
  }

  .modal-box {
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-height: 90vh;
    transform: translateY(100%);
  }

  .modal.show .modal-box {
    transform: translateY(0);
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image img {
    max-height: 300px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
/*Doctor Modal*/
/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/*Navbar*/