/* Navigation Container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

/* Login Button */
.login-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border-radius: 2.8125rem;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #1E1E1E;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.login-btn:hover {
  color: #0062FF;
  text-decoration: none;
}

.login-btn:focus-visible {
  outline: 0.125rem solid #0062FF;
  outline-offset: 0.125rem;
  color: #0062FF;
}

/* Get in Touch Button */
.get-btn {
  padding: 0.375rem 1.125rem;
  background: #ffffff;
  border-radius: 2.8125rem;
  font-style: normal;
  font-weight: 500;
  border: 0.0625rem solid #D7DBDF;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.get-btn:hover {
  background: #0062FF;
  border: 0.0625rem solid #0062FF;
  color: #FFFFFF;
  text-decoration: none;
}

.get-btn:focus-visible {
  outline: 0.125rem solid #0062FF;
  outline-offset: 0.125rem;
}

.get-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.get-btn:hover svg path {
  fill: #FFFFFF;
}
@keyframes slideLeft { 0% {opacity: 0;transform: translateX(100%);} 100% {opacity: 1;transform: translateX(0%);} }
@keyframes slideRight { 0% {opacity: 1;transform: translateX(0%);} 100% {opacity: 0;transform: translateX(100%);} }
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  z-index: 100;
  margin: 0 auto;
  background-color: transparent;
  transition: background-color 0.3s ease;
  /* Performance optimizations to prevent video flickering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: background-color, box-shadow;
  /* contain: layout style paint; */
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
} 
.navbar-left { 
  display: flex; 
  align-items: center; 
  flex: 0 0 auto;
}

.navbar-center { 
  display: flex;
  flex: 1;
  justify-content: center;
}

.navbar-center .menu {
  display: flex;
}

.navbar-center .menu ul.menu-inner {
  display: flex; 
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-right { 
  display: flex; 
  align-items: center; 
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-link {
  color: #261C3F;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "TASA Orbiter", sans-serif;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #261C3F;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "TASA Orbiter", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-shadow: 0 0.25rem 1.125rem rgba(0, 0, 0, 0.4);
}

.btn-secondary {

    background: linear-gradient(180deg, rgba(29, 130, 112, 0.1) 7.29%, rgba(36, 163, 140, 0) 65.62%), #FFFFFF;
border: 0.0625rem solid rgba(16, 41, 32, 0.1);
box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1), 0 0 0 0.125rem rgba(252, 252, 252, 0.4);
border-radius: 0.5rem;
  color: #3C3C3C;
  
}

.btn-secondary:hover {
  background: #f9fafb;
  color: #3C3C3C;
  text-decoration: none;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1), 0 0 0 0.125rem rgba(252, 252, 252, 0.4);}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(29, 130, 112, 0.3) 7.29%, rgba(36, 163, 140, 0) 65.62%), #061C18;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1), 0 0 0 0.125rem rgba(21, 98, 84, 0.4);
    border-radius: 0.5rem;
}

.btn-primary:hover {
  background: #013d32;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0.125rem 0.5rem rgba(1, 82, 68, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: #1E1E1E;
  border-radius: 0.0625rem;
  transition: all 0.3s ease;
}

.menu-toggle.active span[aria-hidden="true"]:nth-child(2) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.menu-toggle.active span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.menu-toggle.active span[aria-hidden="true"]:nth-child(4) {
  transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

/* Desktop - Hide Menu Toggle */
@media only screen and (min-width: 993px) {
  .menu-toggle {
    display: none !important;
  }
}
/* Screen Reader Text - WordPress Accessibility Standard */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 0.1875rem;
  box-shadow: 0 0 0.125rem 0.125rem rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 0.3125rem;
  line-height: normal;
  padding: 0.9375rem 1.4375rem 0.875rem;
  text-decoration: none;
  top: 0.3125rem;
  width: auto;
  z-index: 100000;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 3.7rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0.25rem 0 0.5rem rgba(0, 0, 0, 0.1);
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 50%;
}

.mobile-menu-wrapper {
  flex: 1;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list > li {
  border-bottom: 0.0625rem solid #e5e7eb;
}

.mobile-menu-list > li:last-child {
  border-bottom: none;
}

.mobile-menu-list a {
  color: #261C3F;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "TASA Orbiter", sans-serif;
  padding: 0.75rem 0;
  display: block;
  transition: color 0.2s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus {
  color: #0062FF;
  outline: none;
  text-decoration: none;
}

.mobile-menu-list a:focus-visible {
  outline: 0.125rem solid #0062FF;
  outline-offset: 0.125rem;
}

/* Mobile Menu Actions */
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #e5e7eb;
}

.mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 2.8125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: "TASA Orbiter", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  width: 100%;
  border: 0.0625rem solid transparent;
}

.mobile-btn:focus-visible {
  outline: 0.125rem solid #0062FF;
  outline-offset: 0.125rem;
}

.mobile-btn-secondary {
  background: transparent;
  border: 0.0625rem solid #D7DBDF;
  color: #1E1E1E;
}

.mobile-btn-secondary:hover,
.mobile-btn-secondary:focus {
  background: #f9fafb;
  color: #0062FF;
  border-color: #0062FF;
  text-decoration: none;
}

.mobile-btn-primary {
  color: #000000;
  background: #ffffff;
  border: 0.0625rem solid #D7DBDF;
}

.mobile-btn-primary:hover,
.mobile-btn-primary:focus {
  background: #0062FF;
  color: #ffffff;
  border-color: #0062FF;
  text-decoration: none;
}

.mobile-btn-primary svg {
  transition: transform 0.3s ease;
}

.mobile-btn-primary:hover svg path {
  fill: #ffffff;
}
.menu-header {
  display: none;
  box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1), 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.06);
} 

.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding: 0;
  margin: 0 0.5rem;
}

.menu-item:first-child {
  margin-left: 0;
}

.menu-item:last-child {
  margin-right: 0;
}

.menu-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  color: #1E1E1E;
  text-transform: capitalize;
  transition: all 0.25s ease;
}

.menu-link > i.bx {
  font-size: 1.35rem;
  margin-left: 0.25rem;
  transform: rotate(90deg);
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.375rem;
  font-size: 1.45rem;
  color: #1E1E1E;
  transition: all 0.25s ease;
}

.menu-link svg { 
  position: relative; 
  top: 0.0625rem; 
  left: 0.125rem;
}

.menu-link:hover {
  color: #111827; 
  text-decoration: none;
}

.menu-link:focus {
  outline: 0.125rem solid #0062FF; 
  outline-offset: 0.125rem;
}
@media only screen and (min-width: 993px) { .menu-dropdown:hover > .submenu {opacity: 1; visibility: visible; margin-top: 1rem;} }
@media only screen and (max-width: 992px) { .navbar {height: 3rem;} .navbar-center .menu ul.menu-inner{margin-bottom: 0 !important; display: flex; align-items: flex-start; flex-direction: column;} .menu-header { position: relative; top: 0; display: flex; align-items: center; justify-content: flex-start; height: 4rem; z-index: 110; visibility: hidden; background: transparent;} .menu-header.is-active { visibility: visible; background-color: #fff;} .menu-header.is-active > .menu-arrow { display: block;} .menu-arrow { display: none; cursor: pointer; width: 3rem; height: 4rem; text-align: center;position: absolute; right: 0.625rem; top: 1.125rem;} .menu-arrow > i.bx { font-size: 1.5rem; line-height: 4rem; color: #1E1E1E; transition: all 0.25s ease;} .menu-title { text-transform: capitalize; padding-left: 2.1875rem;} .menu-inner { height: 100%; margin-top: 3rem; overflow-y: auto; overflow-x: hidden;padding-left: 0;} .menu-item { display: block; line-height: 1; padding-inline: 0;width: 95%;padding: 0 !important;} .menu-link { justify-content: space-between; height: 2rem; line-height: 2.5rem; padding-left: 2.1875rem; margin-bottom: 1rem;} .menu-link > i.bx { margin-left: 0.5rem; transform: rotate(0deg);} }
.submenu { position: absolute; top: 3rem; width: 100%; height: auto; margin-top: 1.75rem; padding: 1rem 0rem; transition: all 0.23s ease-out 0s; z-index: 100; opacity: 0; visibility: hidden; border-top: solid 0.0625rem #eee;} 
.submenu .submenu-inner {flex: 0 0 25%;padding: 0 1rem;position: relative;z-index: 333;margin-bottom: 2rem;}
.submenu .submenu-inner ul.submenu-list {padding-left: 0 !important;}
.submenu .submenu-inner ul.submenu-list li a {text-decoration: none;}
.submenu-title {padding: 0.75rem 0;font-weight: 700;font-size: 1.125rem;line-height: 1.75rem;color: #111827;transition: all 0.3s ease;border-bottom: solid 0.0625rem #E7EBEF; margin-bottom: 0.875rem !important;}
.submenu-item {display: block;line-height: 1;margin: 0 auto;}
.submenu-link {display: inline-block;font-weight: 500;font-size: 1rem;line-height: 1.5rem;color: #1E1E1E;padding: 0.125rem 0;white-space: nowrap;transition: all 0.25s ease-in-out;}
.submenu-link:hover {color: #111827;}
.submenu-image {display: block;width: 100%;height: auto;margin-block: 0.5rem;object-fit: cover;}
@media only screen and (max-width: 992px) { .submenu {position: absolute;display: none;top: 0;left: 0;width: 100%;height: 100%;max-width: none;min-width: auto;margin: 0;padding: 1rem;padding-top: 4rem;opacity: 1;overflow-y: auto;visibility: visible;box-shadow: none;transform: translateX(0%);} .submenu.is-active {display: block;} .submenu-inner {flex: 0 0 100%;padding: 0rem;} .submenu-list {margin-bottom: 1rem;} .submenu-link {display: block;} .submenu-image {margin-top: 0;} }
.megamenu {left: 50%;width: 87.5rem;height: auto;margin: 0 auto;transform: translateX(-50%);background: #ffffff;}
.submenu::after{content: '';position: absolute; left: -25rem; width: 100%;height: 100%;background: #ffffff;z-index: 1; top: 0;}
.submenu::before{content: '';position: absolute; right: -25rem; width: 100%;height: 100%;background: #ffffff;z-index: 1;top: 0;}
.megamenu-column-1 {left: 65%;max-width: 15rem;width: 100%;height: auto;}
.megamenu-column-4 {display: flex;flex-wrap: wrap;max-width: 100%;height: auto;margin: 0 auto;}
@media only screen and (max-width: 992px) { .megamenu { position: absolute; background: #ffffff; display: none; top: 0; left: 0; width: 100%; height: 100%; max-width: none; min-width: auto; margin: 0; padding: 1rem; padding-top: 4rem; opacity: 1; overflow-y: auto;overflow-x: hidden; visibility: visible; transform: translateX(0%); box-shadow: none;} }
.switch { position: relative; display: block; cursor: pointer; user-select: none; margin-right: 0.5rem;}
.switch-light, .switch-dark { position: absolute; top: 50%; left: 50%; transform-origin: center; transform: translate(-50%, -50%); transition: all 0.3s ease-in;}
.switch-light { font-size: 1.3rem; visibility: visible; color: #1E1E1E;}
.switch-dark { font-size: 0rem; visibility: hidden; color: #fff;}
.overlay { 
  position: fixed; 
  display: block; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 98; 
  opacity: 0; 
  visibility: hidden; 
  background-color: rgba(0, 0, 0, 0.5); 
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overlay.is-active {
  /* opacity: 1; */
  visibility: visible;
}
/* Desktop - Hide Mobile Elements */
@media only screen and (min-width: 993px) {
  .mobile-menu {
    display: none;
  }
  
  .overlay {
    display: none;
  }
}

/* Mobile Styles */
@media only screen and (max-width: 992px) {
  .header {
    height: 4rem;
    background-color: #ffffff;
    padding-top: 6px;
  }

  .navbar {
    padding: 0 1rem;
  }
  
  .navbar-left, 
  .navbar-right { 
    flex: 0 0 auto;
  }
  
  .navbar-right { 
    align-items: center;
    gap: 0.75rem;
  }

  
.menu-item:first-child {
  margin: 0 0.5rem;
}
  
  /* Hide desktop buttons on mobile */
  .navbar-right .login-btn,
  .navbar-right .get-btn {
    display: none;
  }
  
  .menu-toggle {
    display: flex !important;
  }
  
  .navbar-center {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }
  
  /* Hide desktop menu on mobile */
  .navbar-center > .menu,
  .navbar-center > ul,
  .navbar-center .menu-inner {
    display: none !important;
  }
  
  .mobile-menu-content {
    gap: 0;
  }
}

