*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #04111f;
  color: #e8f4fd;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

#navbar {
  z-index: 1200 !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #04111f;
}

::-webkit-scrollbar-thumb {
  background: #0ea5e9;
  border-radius: 999px;
}

.content-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.has-parallax,
.page-hero,
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.parallax-bg,
.page-hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hero-bg {
  inset: -10%;
}

.parallax-bg,
.page-hero-bg {
  top: -12%;
  bottom: -12%;
}

.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
}

.page-hero .content-shell {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 17, 31, 0.3) 0%,
    rgba(4, 17, 31, 0.66) 55%,
    rgba(4, 17, 31, 0.96) 100%
  );
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0ea5e9;
}

.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  color: #f0f8ff;
}

.page-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.25rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  color: #f0f8ff;
}

.page-title em,
.section-title em {
  color: #0ea5e9;
  font-style: normal;
}

.section-copy,
.page-copy {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: #90c4e8;
}

.section-divider {
  width: 68px;
  height: 2px;
  margin: 1.75rem 0 2rem;
  background: linear-gradient(90deg, #0ea5e9, transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background: rgba(14, 165, 233, 0.1);
  color: #38bdf8;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.85);
  animation: pulse 2s ease-in-out infinite;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 72% 46%, black 18%, transparent 68%);
}

.compass-bg {
  position: absolute;
  right: -6vw;
  top: 50%;
  width: min(56vw, 720px);
  height: min(56vw, 720px);
  transform: translateY(-50%);
  opacity: 0.05;
  z-index: 0;
}

.wave-line {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 165, 233, 0.15) 20%,
    rgba(14, 165, 233, 0.9) 50%,
    rgba(14, 165, 233, 0.15) 80%,
    transparent 100%
  );
  animation-name: waveFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.scroll-line {
  background: linear-gradient(180deg, #0ea5e9 0%, transparent 100%);
  animation: scrollDrop 1.5s ease-in-out infinite;
}

.service-card,
.info-card,
.metric-card,
.testimonial-card,
.timeline-item,
.port-card,
.expert-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.14);
  background: rgba(7, 30, 61, 0.8);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.service-card::before,
.info-card::before,
.feature-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover,
.info-card:hover,
.metric-card:hover,
.testimonial-card:hover,
.timeline-item:hover,
.port-card:hover,
.expert-card:hover,
.feature-card:hover {
  border-color: rgba(14, 165, 233, 0.34);
  transform: translateY(-4px);
  background: rgba(10, 45, 82, 0.86);
}

.service-card:hover::before,
.info-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 0.7rem;
  padding: 0.55rem 0;
  color: #90c4e8;
  font-size: 0.84rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-list li::before {
  content: "";
  flex: 0 0 6px;
  height: 6px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.timeline-item {
  border-left: 2px solid rgba(14, 165, 233, 0.24);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.55);
}

.expert-photo {
  aspect-ratio: 4 / 3;
  filter: saturate(0.72) brightness(0.78);
  transition: filter 0.3s ease;
}

.expert-card:hover .expert-photo {
  filter: saturate(0.9) brightness(0.92);
}

.footer-col h4 {
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
  color: #f0f8ff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-copy,
.footer-meta {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #4a90b8;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #4a90b8;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-field {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: #f0f8ff;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.form-field:focus {
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.06);
}

select option {
  background: #071e3d;
}

textarea.form-field {
  min-height: 132px;
  resize: vertical;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes waveFloat {
  0% {
    transform: translateX(-10%) skewX(-2deg);
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }

  100% {
    transform: translateX(10%) skewX(2deg);
    opacity: 0;
  }
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes compassSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-cta {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease;
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

nav.scrolled {
  background: rgba(4, 17, 31, 0.96) !important;
  border-bottom-color: rgba(14, 165, 233, 0.28) !important;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: #0ea5e9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: #38bdf8;
}

.nav-cta::after {
  display: none;
}

.nav-theme-item {
  display: flex;
  align-items: center;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(168, 184, 200, 0.26);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  color: #90c4e8;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.theme-toggle:hover {
  border-color: rgba(14, 165, 233, 0.36);
  background: rgba(14, 165, 233, 0.08);
  color: #38bdf8;
}

.theme-toggle:active {
  transform: translateY(1px);
}

.theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.theme-icon-light {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.theme-icon-dark {
  opacity: 0;
  transform: scale(0.75) rotate(-12deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.nav-dropdown-menu {
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(14, 165, 233, 0.08);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: #90c4e8;
}

.nav-dropdown-menu li a::after {
  display: none;
}

.nav-dropdown-menu li a:hover {
  background: rgba(14, 165, 233, 0.06);
  color: #38bdf8;
}

.nav-burger span {
  position: absolute;
  left: 8px;
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #90c4e8;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease,
    background 0.25s ease;
}

.nav-burger span:nth-child(1) {
  top: 12px;
}

.nav-burger span:nth-child(2) {
  top: 19px;
}

.nav-burger span:nth-child(3) {
  top: 26px;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #38bdf8;
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #38bdf8;
}

.nav-overlay {
  background: rgba(2, 10, 22, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="light"] body {
  background: #edf6fb;
  color: #173047;
}

html[data-theme="light"] ::-webkit-scrollbar-track {
  background: #edf6fb;
}

html[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: #0b84c7;
}

html[data-theme="light"] #navbar {
  background: linear-gradient(
    to bottom,
    rgba(248, 252, 255, 0.98),
    rgba(248, 252, 255, 0.72)
  ) !important;
  border-bottom-color: rgba(14, 165, 233, 0.16) !important;
}

html[data-theme="light"] nav.scrolled {
  background: rgba(248, 252, 255, 0.95) !important;
  border-bottom-color: rgba(14, 165, 233, 0.22) !important;
}

html[data-theme="light"] .brand-wordmark,
html[data-theme="light"] .footer-brandmark,
html[data-theme="light"] .hero-title,
html[data-theme="light"] .section-title,
html[data-theme="light"] .page-title,
html[data-theme="light"] .metric-value,
html[data-theme="light"] .service-card h2,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .footer-col h4 {
  color: #10253a;
}

html[data-theme="light"] .section-copy,
html[data-theme="light"] .page-copy,
html[data-theme="light"] .hero-intro,
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-meta,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .metric-label,
html[data-theme="light"] .service-card p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .info-card p,
html[data-theme="light"] .expert-card p,
html[data-theme="light"] .testimonial-card p,
html[data-theme="light"] .timeline-item p,
html[data-theme="light"] .port-card p,
html[data-theme="light"] .form-label,
html[data-theme="light"] .nav-links a,
html[data-theme="light"] .nav-dropdown-menu li a {
  color: #587086;
}

html[data-theme="light"] [class*="text-[#f0f8ff]"] {
  color: #10253a !important;
}

html[data-theme="light"] [class*="text-[#90c4e8]"],
html[data-theme="light"] [class*="text-[#4a90b8]"],
html[data-theme="light"] [class*="text-[rgba(168,184,200,0.36)]"] {
  color: #587086 !important;
}

html[data-theme="light"] [class*="bg-[#04111f]"],
html[data-theme="light"] [class*="bg-[#071e3d]"],
html[data-theme="light"] [class*="bg-[rgba(4,17,31"],
html[data-theme="light"] [class*="bg-[rgba(7,30,61"],
html[data-theme="light"] [class*="bg-[rgba(10,45,82"] {
  background-color: rgba(255, 255, 255, 0.88) !important;
}

html[data-theme="light"] .section-tag,
html[data-theme="light"] .hero-badge,
html[data-theme="light"] .nav-links a[aria-current="page"],
html[data-theme="light"] .footer-links a:hover {
  color: #0b84c7;
}

html[data-theme="light"] .nav-links a::after {
  background: #0b84c7;
}

html[data-theme="light"] .hero-badge {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

html[data-theme="light"] .hero-badge::before {
  background: #0b84c7;
  box-shadow: 0 0 8px rgba(11, 132, 199, 0.4);
}

html[data-theme="light"] .service-card,
html[data-theme="light"] .info-card,
html[data-theme="light"] .metric-card,
html[data-theme="light"] .testimonial-card,
html[data-theme="light"] .timeline-item,
html[data-theme="light"] .port-card,
html[data-theme="light"] .expert-card,
html[data-theme="light"] .feature-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(14, 165, 233, 0.16);
  box-shadow: 0 16px 42px rgba(16, 37, 58, 0.05);
}

html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .info-card:hover,
html[data-theme="light"] .metric-card:hover,
html[data-theme="light"] .testimonial-card:hover,
html[data-theme="light"] .timeline-item:hover,
html[data-theme="light"] .port-card:hover,
html[data-theme="light"] .expert-card:hover,
html[data-theme="light"] .feature-card:hover {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(14, 165, 233, 0.24);
}

html[data-theme="light"] .service-list li {
  color: #587086;
  border-bottom-color: rgba(16, 37, 58, 0.08);
}

html[data-theme="light"] .footer-col h4 {
  border-bottom-color: rgba(14, 165, 233, 0.14);
}

html[data-theme="light"] footer {
  background: #f7fbff !important;
  border-top-color: rgba(14, 165, 233, 0.14) !important;
}

html[data-theme="light"] .form-field {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 165, 233, 0.16);
  color: #10253a;
}

html[data-theme="light"] .form-field:focus {
  background: #ffffff;
}

html[data-theme="light"] .form-field::placeholder {
  color: #7a8ea2;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(14, 165, 233, 0.18);
  color: #587086;
}

html[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.98);
  color: #0b84c7;
}

html[data-theme="light"] .theme-icon-light {
  opacity: 0;
  transform: scale(0.75) rotate(12deg);
}

html[data-theme="light"] .theme-icon-dark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

html[data-theme="light"] .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(14, 165, 233, 0.16);
  box-shadow: 0 18px 40px rgba(16, 37, 58, 0.08);
}

html[data-theme="light"] .nav-dropdown-menu li a:hover {
  background: rgba(14, 165, 233, 0.08);
  color: #0b84c7;
}

html[data-theme="light"] .nav-overlay {
  background: rgba(237, 246, 251, 0.72);
}

html[data-theme="light"] .nav-burger span {
  background: #587086;
}

html[data-theme="light"] .hero-bg,
html[data-theme="light"] .parallax-bg,
html[data-theme="light"] .page-hero-bg {
  opacity: 0.34;
}

html[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(248, 252, 255, 0.12) 0%,
    rgba(248, 252, 255, 0.56) 55%,
    rgba(248, 252, 255, 0.95) 100%
  );
}

html[data-theme="light"] .blueprint-grid {
  opacity: 0.38;
}

html[data-theme="light"] .compass-bg {
  opacity: 0.08;
}

@media (max-width: 1100px) {
  .section-shell,
  .page-shell {
    padding: 4.75rem 0;
  }

  .compass-bg {
    width: min(80vw, 620px);
    height: min(80vw, 620px);
    right: -18vw;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  .section-shell,
  .page-shell {
    padding: 4.25rem 0;
  }

  .compass-bg {
    display: none;
  }

  .nav-burger {
    display: flex !important;
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 1001;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1300;
    width: min(82vw, 320px);
    min-height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding: calc(6rem + env(safe-area-inset-top, 0px)) 2rem
      calc(3rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: linear-gradient(160deg, #04111f 0%, #071e3d 60%, #0a2d52 100%);
    border-right: 1px solid rgba(14, 165, 233, 0.18);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-links.open {
    transform: translateX(0);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
  }

  .nav-links > li {
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-16px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-links.open > li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0.35rem;
    font-size: 0.84rem;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 1rem;
    border: 0;
    border-left: 2px solid rgba(14, 165, 233, 0.24);
    background: rgba(14, 165, 233, 0.04);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    transition:
      max-height 0.25s ease,
      opacity 0.25s ease,
      margin 0.25s ease,
      padding 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 240px;
    margin: 0.25rem 0 0.8rem;
    padding: 0.35rem 0 0.35rem 1rem;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-links::before {
    content: "MMS";
    position: absolute;
    right: 1.5rem;
    bottom: 1.4rem;
    color: rgba(14, 165, 233, 0.06);
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  html[data-theme="light"] .nav-links {
    background: linear-gradient(
      160deg,
      #f9fcff 0%,
      #eef6fb 60%,
      #e7f1f8 100%
    );
    border-right-color: rgba(14, 165, 233, 0.14);
  }

  html[data-theme="light"] .nav-dropdown-menu {
    background: rgba(14, 165, 233, 0.05);
  }
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .hero-bg,
  .parallax-bg,
  .page-hero-bg {
    top: 0 !important;
    bottom: 0 !important;
    inset: 0 !important;
    transform: none !important;
  }

  .wave-line,
  .scroll-line,
  .hero-badge::before {
    animation: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
