/* ===== Blue Navigation Bar ===== */
.blue-nav {
  background: #1a3c8c;
  width: 100%;
}
.blue-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .4rem 1rem;
}
.blue-nav a, .blue-nav .bn-item > span {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: .5rem .7rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
  white-space: nowrap;
}
.blue-nav a:hover, .blue-nav .bn-item:hover > span { color: #ffd24a; }
.bn-home { color: #ffd24a !important; font-size: 1rem !important; }
.bn-item { position: relative; }
.bn-caret { font-size: .6rem; }
.bn-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  border-top: 3px solid #ffd24a;
  z-index: 300;
  flex-direction: column;
}
.bn-item:hover .bn-dropdown { display: flex; }
.bn-dropdown a {
  color: #1a3c8c;
  text-transform: none;
  font-size: .82rem;
  padding: .6rem 1rem;
  border-bottom: 1px solid #eee;
}
.bn-dropdown a:hover { background: #f0f4ff; color: #1a3c8c; }

/* ===== Hero Image Carousel ===== */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #0a1a3c;
}
.hc-track {
  display: flex;
  height: 100%;
  transition: transform .6s ease;
}
.hc-slide {
  min-width: 100%;
  height: 100%;
}
.hc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hc-slide.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a3c8c, #2d56b8);
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  flex-direction: column;
  gap: .5rem;
}
.hc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1a3c8c;
  z-index: 5;
}
.hc-prev { left: 1rem; }
.hc-next { right: 1rem; }
.hc-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 5;
}
.hc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  border: none;
}
.hc-dot.active { background: #ffd24a; }

@media(max-width:768px){
  .blue-nav-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .hc-slide, .hero-carousel { height: 100%; max-height: none; }
  .hc-slide.placeholder { height: 100%; }
}
