/* Navbar Styles with animations */
._navbar_f8ghy_2 {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  /* light gray border */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  animation: _slideDown_f8ghy_1 0.3s ease-out;
  width: 100%;
}

._container_f8ghy_15 {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

._logo_f8ghy_25 {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1c449c;
  /* primary */
  letter-spacing: -0.025em;
  transition: color 0.2s ease;
}

._logo_f8ghy_25:hover {
  color: #16367a;
}

._logoImg_f8ghy_41 {
  width: 99px;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

._navItems_f8ghy_48 {
  display: flex;
  align-items: center;
  gap: 2rem;
}

._navItem_f8ghy_48 {
  color: #111827;
  /* near-black text */
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

._navItem_f8ghy_48:hover {
  color: #1c449c;
  background-color: rgba(28, 68, 156, 0.1);
  /* light blue background */
}

._navItem_f8ghy_48::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #1c449c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

._navItem_f8ghy_48:hover::after,
._navItem_f8ghy_48._active_f8ghy_84::after {
  width: 80%;
}

._navItem_f8ghy_48._active_f8ghy_84 {
  color: #1c449c;
}

._profileContainer_f8ghy_92 {
  position: relative;
}

._profileButton_f8ghy_96 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #1c449c;
  color: #fff;
  border: 1px solid rgba(28, 68, 156, 0.2);
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

._profileButton_f8ghy_96:hover {
  background-color: #16367a;
  /* darker hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

._chevron_f8ghy_115 {
  transition: transform 0.2s ease;
}

._chevronRotated_f8ghy_119 {
  transform: rotate(180deg);
}

._dropdown_f8ghy_123 {
  position: absolute;
  right: 0;
  margin-top: 0.5rem;
  width: 12rem;
  padding: 0.5rem 0;
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  animation: _fadeInScale_f8ghy_1 0.2s ease-out;
}

._dropdownItem_f8ghy_136 {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #111827;
  transition: background-color 0.15s ease, color 0.15s ease;
}

._dropdownItem_f8ghy_136:hover {
  background-color: rgba(28, 68, 156, 0.1);
  color: #1c449c;
}

/* Animations */
@keyframes _slideDown_f8ghy_1 {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes _fadeInScale_f8ghy_1 {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  ._navItems_f8ghy_48 {
    display: none;
  }

  ._logo_f8ghy_25 {
    font-size: 1.25rem;
  }
}/* Base */
._footer_lpw3l_2 {
  background: #2147a4; /* deep royal blue */
  color: rgba(255,255,255,0.95);
  padding: 56px 0 28px;
}
._max_lpw3l_7 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top grid */
._topGrid_lpw3l_14 {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 48px;
}

/* Brand column */
._logo_lpw3l_21 {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
._tagline_lpw3l_28 {
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  max-width: 360px;
}

._badges_lpw3l_34 {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
}
._badges_lpw3l_34 li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: rgba(255,255,255,0.95);
}
._badgeDot_lpw3l_46 {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f5c659; /* gold */
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(245,198,89,0.25);
}

._socials_lpw3l_55 {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
._socials_lpw3l_55 a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
._socials_lpw3l_55 a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.28);
}

/* Lists */
._heading_lpw3l_78 {
  color: #f5c659;
  font-size: 20px;
  font-weight: 800;
  margin: 2px 0 12px;
  letter-spacing: 0.2px;
}
._linkList_lpw3l_85 {
  list-style: none;
  padding: 0;
  margin: 0;
}
._linkList_lpw3l_85 li {
  position: relative;
  padding-left: 18px;
  margin: 12px 0;
}
._linkList_lpw3l_85 li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c659;
}

/* Contact */
._contactItem_lpw3l_104 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px 0;
}
._contactIcon_lpw3l_110 {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
}
._contactText_lpw3l_119 a,
._contactText_lpw3l_119 div {
  color: #fff;
  text-decoration: none;
}
._kicker_lpw3l_124 {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}

/* Availability card */
._infoCard_lpw3l_131 {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.24);
  margin-top: 14px;
}
._infoIcon_lpw3l_141 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  color: #fff;
}
._infoTitle_lpw3l_150 {
  font-weight: 600;
}

/* Divider & bottom */
._hr_lpw3l_155 {
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin: 36px 0 18px;
}
._bottomBar_lpw3l_160 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
._copyWrap_lpw3l_167 {
  color: rgba(255,255,255,0.95);
}
._subcopy_lpw3l_170 {
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-size: 14px;
}
._legalLinks_lpw3l_175 {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
._legalLinks_lpw3l_175 a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
._legalLinks_lpw3l_175 a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  ._topGrid_lpw3l_14 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  ._topGrid_lpw3l_14 { grid-template-columns: 1fr; gap: 32px; }
  ._logo_lpw3l_21 { font-size: 42px; }
  ._footer_lpw3l_2 { padding: 44px 0 24px; }
}
:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #ffffff;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* minimal reset */
html, body, #root { height: 100%; }
* { box-sizing: border-box; }

body { margin: 0; color:#000000}
