/* .nav-tabs-custom {
  border: 3px solid red;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  overflow: hidden;
  padding: 5px;
}
.nav-tabs-custom > *:not(:last-child) {
  margin-right: -10px;
} */

@font-face {
  font-family: Kodaro;
  src: url('./fonts/KODARO.ttf') format('truetype');
}

:root {
  --white: #fff;
  --black: #000;
  --blue: #185ee0;
  --light-blue: #e6eef9;
  --color-primary-dark: #3446e1;
}

.nav-tabs-custom {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 30px;
  overflow: hidden;
}

.nav-tabs-custom .tab-custom + .tab-custom {
  margin-left: 5px;
}
.tab-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--black);
  height: 30px;
  padding: 5px 15px;
  border-radius: 20px;
}

.tab-custom .active {
  overflow: hidden;
  color: var(--white);
}

.tab-custom.active {
  overflow: hidden;
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}

.tab-custom:not(.active):hover {
  background: var(--light-blue);
}

/* MOBILE VIEW NAV MENU */
@media (max-width: 768px) {
  .nav-tabs-custom {
    margin-left: -15px;
    padding: 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .nav-tabs-custom::-webkit-scrollbar {
    display: none;
  }

  .tab-custom {
    flex: 0 0 auto;
    font-size: 0.75rem;
    padding: 5px 12px;
    height: 28px;
  }
}

/* .nav-menu{
  width: 100%;
  border: 3px solid red;
} */

.footer-container {
  /* -webkit-text-stroke-color: var(--grey-60); */
  width: 100%;
  max-width: 1680px;
  padding-left: 80px;
  padding-right: 80px;
}


/* =====================================================
   FIX: Centered scrolled navbar on inner pages
   ----------------------------------------------------
   Bug: inner pages use <div class="nav-menu other"> and
   the .other class adds margin-left:-5vw + margin-right:13vw
   which push the floating nav off-center when it becomes
   .fixed during scroll. Homepage uses plain <div class="nav-menu">
   so it doesn't have the bug.

   Fix: when nav-menu has BOTH .other AND .fixed (i.e. inner
   page + scrolled state), reset those margins to zero so the
   left:50% + translateX(-50%) centering rule works correctly.
   Desktop only — mobile already nulls these margins.
   Added: May 2026
   ===================================================== */
@media screen and (min-width: 991px) {
  .nav-menu.other.fixed {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
