.topbar { background: #1f6ea9; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 8px 15px; font-size: 13px; }
.top-left, .top-right { display: flex; align-items: center; gap: 20px; }
.top-left span, .top-right span { display: flex; align-items: center; gap: 6px; opacity: 0.92; }
.top-btn { border: 1px solid rgba(255,255,255,0.6); padding: 5px 13px; font-size: 12px; font-weight: 600; border-radius: 4px; cursor: pointer; letter-spacing: 0.4px; transition: background .2s, border-color .2s; }
.top-btn:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.top-right .socials { display: flex; align-items: center; gap: 14px; margin-left: 6px; }
.top-right .socials i { font-size: 13px; opacity: 0.8; cursor: pointer; transition: opacity .2s; }
.top-right .socials i:hover { opacity: 1; }
.social-icon { color: rgba(255,255,255,0.8); display: flex; align-items: center; transition: color .2s; }
.social-icon:hover { color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 75px; background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.logo img { height: 39px; }
.menu { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.menu > a, .menu > .dropdown > a { text-decoration: none; color: #333; font-weight: 600; font-size: 14px; letter-spacing: 0.3px; position: relative; transition: color .2s; }
.menu > a:hover, .menu > .dropdown > a:hover { color: #1f6ea9; }
.menu > a.active { color: #1f6ea9; }
.menu > a::after, .menu > .dropdown > a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: #1f6ea9; border-radius: 2px; transition: width .25s; }
.menu > a:hover::after, .menu > .dropdown > a:hover::after { width: 100%; }
.menu > a.active::after { background: #1f6ea9; width: 100%; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; border: 0.5px solid #e0e0e0; border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.1); display: none; padding: 6px 0; margin-top: 8px; }
.dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 16px; color: #444; font-size: 13.5px; text-decoration: none; font-weight: 500; transition: background .15s, color .15s; }
.dropdown-menu a:hover { background: #f0f6fd; color: #1f6ea9; }
.submenu { position: relative; }
.submenu-menu { position: absolute; left: 100%; top: -6px; background: #fff; min-width: 180px; border: 0.5px solid #e0e0e0; border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.1); display: none; padding: 6px 0; margin-left: 6px; }
.submenu-menu::before { content: ''; position: absolute; left: -8px; top: 0; bottom: 0; width: 8px; }
.submenu:hover .submenu-menu { display: block; }
.submenu > a { display: flex; justify-content: space-between; align-items: center; }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid #e5e5e5; cursor: pointer; gap: 5px; padding: 9px; background: none; transition: border-color .2s, background .2s; }
.hamburger:hover { background: #f5f7fa; border-color: #ccc; }
.ham-line { width: 100%; height: 1.5px; background: #333; border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 200; transition: background .35s; }
.overlay.active { display: block; background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); }
.mobile-menu { position: fixed; top: 0; right: -105%; width: 300px; max-width: 88vw; height: 100%; background: #fff; z-index: 300; display: flex; flex-direction: column; transition: right .38s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.mobile-menu.open { right: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: #1f6ea9; flex-shrink: 0; }
.mobile-menu-header .brand { font-size: 16px; font-weight: 700; color: #fff; }
.mobile-menu-header .brand span { color: #90d4ff; }
.close-btn { width: 30px; height: 30px; border-radius: 7px; background: rgba(255,255,255,.15); border: none; cursor: pointer; color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.mobile-menu-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #ddd transparent; }
.m-nav-item { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; font-size: 14px; font-weight: 600; color: #222; cursor: pointer; border-bottom: 0.5px solid #f0f0f0; transition: background .15s, color .15s; text-decoration: none; }
.m-nav-item:hover { background: #f5f8fd; color: #1f6ea9; }
.m-nav-item.active-item { color: #1f6ea9; }
.m-nav-item.active-item::before { content: ''; width: 3px; height: 100%; background: #1f6ea9; position: absolute; left: 0; border-radius: 0 3px 3px 0; }
.m-chev { font-size: 10px; color: #aaa; transition: transform .3s; flex-shrink: 0; }
.m-chev.rotated { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.acc-panel.open { max-height: 400px; }
.m-sub-item { display: flex; align-items: center; justify-content: space-between; padding: 11px 20px 11px 36px; font-size: 13.5px; font-weight: 500; color: #555; cursor: pointer; border-bottom: 0.5px solid #f5f5f5; background: #fafbfd; transition: background .15s, color .15s; }
.m-sub-item:hover { background: #eef4fb; color: #1f6ea9; }
.deep-panel { max-height: 0; overflow: hidden; transition: max-height .3s; }
.deep-panel.open { max-height: 200px; }
.m-deep-item { display: flex; align-items: center; gap: 8px; padding: 10px 20px 10px 52px; font-size: 13px; color: #777; cursor: pointer; background: #f4f7fb; border-bottom: 0.5px solid #efefef; transition: background .15s, color .15s; }
.m-deep-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #c0d0e0; flex-shrink: 0; }
.m-deep-item:hover { color: #1f6ea9; background: #eaf2fc; }
.mobile-menu-footer { flex-shrink: 0; padding: 14px 16px; border-top: 0.5px solid #eee; background: #fff; }
.footer-btns { display: flex; gap: 8px; margin-bottom: 14px; }
.f-btn { flex: 1; padding: 10px 8px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: center; letter-spacing: 0.3px; transition: opacity .2s, transform .15s; }
.f-btn.primary { background: #1f6ea9; color: #fff; border: 1.5px solid #1f6ea9; }
.f-btn.outline { background: transparent; color: #1f6ea9; border: 1.5px solid #1f6ea9; }
.footer-socials { display: flex; justify-content: center; gap: 18px; }
.fsoc-icon { color: #aaa; cursor: pointer; transition: color .2s; display: flex; align-items: center; }
.fsoc-icon:hover { color: #1f6ea9; }
@media (max-width: 900px) {
  .topbar { display: none; }
  .menu { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 12px 15px; }
}

/* ============================================================
   PAGE HERO — BREADCRUMB BANNER
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #03174a 0%, #062a6e 45%, #0a3d8c 75%, #062a6e 100%);
  overflow: hidden;
  padding: 0;
}
.page-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,116,232,.06) 0px, rgba(0,116,232,.06) 1px, transparent 1px, transparent 55px),
    repeating-linear-gradient(90deg, rgba(0,116,232,.06) 0px, rgba(0,116,232,.06) 1px, transparent 1px, transparent 55px);
  pointer-events: none;
}
.page-hero-beam {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.page-hero-beam::before {
  content: ''; position: absolute; top: 0; left: -20%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,116,232,.14), transparent);
  transform: skewX(-12deg);
  animation: heroBm 6s ease-in-out infinite;
}
@keyframes heroBm {
  0%,100% { left: -20%; opacity: 0.6; }
  50%      { left: 90%; opacity: 0.2; }
}
.page-hero-orb1 {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,116,232,.22) 0%, transparent 70%);
  top: -100px; right: 5%; pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}
.page-hero-orb2 {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.18) 0%, transparent 70%);
  bottom: -40px; left: 35%; pointer-events: none;
  animation: orbFloat 13s ease-in-out 2s infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(14px,-18px); }
}
.page-hero-accent {
  position: absolute; top: -30%; right: 18%; width: 50%; height: 160%;
  background: linear-gradient(135deg, rgba(0,116,232,.12) 0%, transparent 60%);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 48px 15px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.page-hero-left {}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 68px); font-weight: 800; line-height: .92;
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-desc {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,.65);
  max-width: 500px; line-height: 1.7;
}
