
/* Reset for Navigation Lists */
.nav-wrapper ul,
.nav-wrapper li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-wrapper ul::before,
.nav-wrapper ul::after,
.nav-wrapper li::before,
.nav-wrapper li::after {
  content: none !important;
}
body {
  margin-bottom: 25px;
}
.nav-toggle {
  display: none; /* Hide by default */
  background: none;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

/* Hamburger Bars */
.toggle-bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #2b6cb0;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Show Hamburger on Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block; /* Show on mobile */
  }
}
/* Modern Header Styles */
.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.branding:hover {
  transform: translateX(5px);
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2b6cb0;
  gap: 1.2rem;
}

.logo-svg {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(43, 108, 176, 0.2));
}

.logo-svg:hover {
  transform: rotate(-15deg);
}

.site-title {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -2.0px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #4a5568;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-link:hover {
  background: rgba(235, 248, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.1);
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(66, 153, 225, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-icon {
  font-size: 1.2rem;
  color: #2b6cb0;
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
  transform: scale(1.1);
}

.hover-effect {
  position: absolute;
  background: rgba(66, 153, 225, 0.1);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.nav-link:hover .hover-effect {
  transform: translate(-50%, -50%) scale(1);
}

/* Breadcrumbs */
.breadcrumbs ol {
  list-style: none;
  padding: 1rem 2rem;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  background: rgba(247, 250, 252, 0.8);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  max-width: 1000px;
  padding-left: 10%;
}

.breadcrumbs a {
  color: #718096;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #2b6cb0;
}

.breadcrumbs [aria-current] {
  color: #2b6cb0;
  font-weight: 600;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    animation: slideDown 0.4s ease forwards;
  }
  .site-title {
        line-height: 23px;
    max-width: 180px;
    letter-spacing: -2.0px;
  }
  .header-top {
    padding-top: 40px;
  }
  .nav-toggle {
    display: block;
    background: rgba(235, 248, 255, 0.8);
    border-radius: 8px;
    padding: 0.8rem;
    transition: background 0.3s ease;
  }
  
  .nav-toggle:hover {
    background: rgba(66, 153, 225, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    padding: 1.2rem;
    border-radius: 8px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
nav.breadcrumbs {
    background: rgba(247, 250, 252, 0.8);
}