@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #ff8800;
  --brand-dark: #d86e00;
  --blue: #075bb8;
  --blue-dark: #052d61;
  --sky: #e8f4ff;
  --ink: #102033;
  --muted: #64748b;
  --white: #ffffff;
  --line: rgba(7, 91, 184, 0.14);
  --shadow: 0 18px 44px rgba(5, 45, 97, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  position: relative;
  max-width: 100%;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  background: var(--white);
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img {
  max-width: 100%;
  display: block;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader span {
  width: 54px;
  height: 54px;
  border: 5px solid var(--sky);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.glass-nav {
  top: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  transition: all 0.25s ease;
}

.top-contact-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1040;
  min-height: 24px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.top-contact-bar .container {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.top-contact-left,
.top-contact-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-contact-bar a,
.top-contact-bar span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  transition: color 0.2s ease;
}

.top-contact-bar i {
  font-size: 0.82rem;
  line-height: 1;
}

.top-contact-right a:not(.login-link) {
  width: 22px;
  height: 22px;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.top-contact-right a:not(.login-link) i {
  font-size: 0.9rem;
}

.top-contact-bar a:hover {
  color: var(--brand);
}

.top-contact-right a:not(.login-link):hover {
  color: var(--blue-dark);
  background: var(--brand);
}

.login-link {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.glass-nav.scrolled {
  box-shadow: 0 10px 35px rgba(5, 45, 97, 0.1);
}

.navbar-brand img {
  width: 86px;
  height: auto;
}

.navbar {
  min-height: 38px;
}

.navbar > .container {
  min-height: 38px;
}

.nav-link {
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 3px;
  background: var(--brand);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 800;
  border-width: 2px;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 0.76rem;
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand), #ffae35);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 136, 0, 0.28);
}

.btn-brand:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline-brand {
  color: var(--blue);
  border-color: var(--brand);
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: var(--white);
}

.hero-slider,
.page-hero {
  position: relative;
  min-height: 84vh;
  color: var(--white);
  overflow: hidden;
}

.hero-slide,
.page-hero {
  background-image: linear-gradient(110deg, rgba(5, 45, 97, 0.88), rgba(7, 91, 184, 0.52), rgba(255, 136, 0, 0.28)), var(--bg);
  background-position: center;
  background-size: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  padding-top: 58px;
}

.hero-content h1,
.page-hero h1 {
  max-width: 780px;
  font-family: "Archivo", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 3.3vw, 3.15rem);
  line-height: 1.06;
  font-weight: 800;
  margin: 8px 0 12px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.75vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content p {
  max-width: 620px;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  color: rgba(255, 255, 255, 0.88);
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: var(--brand);
}

.eyebrow.dark {
  color: var(--blue);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--brand);
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
}

.slider-dots button.active {
  background: var(--brand);
}

.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 42px;
}

.compact-hero {
  min-height: 44vh;
}

.page-hero .eyebrow {
  margin-bottom: 4px;
}

.section {
  padding: 62px 0;
}

.soft-bg,
.intro-band {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.intro-image {
  float: right;
  width: min(48%, 360px);
  margin: 0 0 16px 28px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.intro-image:hover img {
  transform: scale(1.04);
}

.intro-wrap::after {
  content: "";
  display: block;
  clear: both;
}

.records-highlight {
  position: relative;
}

.records-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.records-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.records-image:hover img {
  transform: scale(1.04);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 22px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.feature-list i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--brand-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  color: var(--blue-dark);
  font-size: clamp(1.42rem, 2.1vw, 2.22rem);
  line-height: 1.15;
  font-weight: 900;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.lead,
p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card,
.value-card,
.industry-card,
.price-card,
.contact-form,
.contact-panel,
.sitemap-grid a {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(5, 45, 97, 0.07);
}

.service-card {
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--blue));
}

.service-card:hover,
.industry-card:hover,
.price-card:hover,
.sitemap-grid a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-media {
  width: 100%;
  height: 138px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(5, 45, 97, 0.12);
}

.service-card a {
  color: var(--brand-dark);
  font-weight: 900;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(184px, auto);
  gap: 24px;
}

.client-logo-card {
  width: 100%;
  min-height: 184px;
  display: grid;
  grid-template-rows: 88px 1fr;
  align-items: start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), #f8fbff);
  box-shadow: 0 10px 30px rgba(5, 45, 97, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.78) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 136, 0, 0.38);
  box-shadow: var(--shadow);
}

.client-logo-card:hover::before {
  transform: translateX(120%);
}

.client-logo-mark {
  width: 100%;
  height: 88px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(7, 91, 184, 0.08);
}

.client-logo-mark img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.9);
  transform: scale(0.96);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.client-logo-card p {
  min-height: 44px;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #53677f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
}

.client-logo-card-wide .client-logo-mark img {
  max-width: 190px;
  max-height: 68px;
}

.client-logo-card:hover .client-logo-mark img {
  filter: saturate(1.08);
  transform: scale(1);
}

.angled-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}

.angled-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  transform: scale(1.03);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.metric-grid div {
  padding: 16px 12px;
  border-radius: 8px;
  background: var(--sky);
  text-align: center;
}

.metric-grid strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--white);
  margin: 8px 0 0;
}

.value-card,
.price-card,
.contact-form,
.contact-panel {
  padding: 24px;
}

.value-card .card-media,
.price-card .card-media {
  height: 132px;
  margin-bottom: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  padding: 20px;
  border-left: 4px solid var(--brand);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 45, 97, 0.08);
}

.timeline-media {
  width: 100%;
  height: 116px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-detail.reverse img {
  order: 2;
}

.service-detail img,
.industry-card img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail li,
.price-card li {
  color: var(--muted);
  margin-bottom: 8px;
}

.industry-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card img {
  height: 185px;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.industry-card h2,
.industry-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.industry-card h2 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.industry-card p {
  padding-bottom: 20px;
}

.price-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card.featured {
  border-color: rgba(255, 136, 0, 0.45);
  transform: translateY(-8px);
}

.price-card strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.05rem;
  margin: 16px 0 10px;
}

.contact-section {
  background: var(--sky);
}

.contact-form label {
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 7px;
}

.form-control,
.form-select {
  min-height: 44px;
  border: 1px solid rgba(7, 91, 184, 0.18);
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.22rem rgba(255, 136, 0, 0.15);
}

.form-status {
  display: inline-block;
  margin-left: 14px;
  color: var(--blue);
  font-weight: 800;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sitemap-grid a {
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sitemap-grid strong,
.sitemap-grid span {
  display: block;
}

.sitemap-grid strong {
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.sitemap-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 18px;
  background: #061f41;
  color: var(--white);
}

.footer-logo {
  width: 108px;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--brand);
}

.office-line {
  display: block;
  margin-top: 6px;
}

.office-line-spaced {
  margin-top: 12px;
}

.office-line strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel .office-line strong {
  color: var(--blue-dark);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .top-contact-bar .container {
    justify-content: center;
  }

  .top-contact-left {
    display: none !important;
  }

  .top-contact-right {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .top-contact-right a:not(.login-link) {
    display: inline-flex !important;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .top-contact-right .login-link {
    display: none !important;
  }

  html {
    scroll-padding-top: 82px;
  }

  .glass-nav {
    top: 24px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 7px;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero-slider {
    min-height: 680px;
  }

  .slider-btn {
    display: none;
  }

  .timeline,
  .sitemap-grid,
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-grid {
    grid-auto-rows: minmax(178px, auto);
  }

  .client-logo-card {
    min-height: 178px;
  }

  .client-logo-mark img {
    max-width: 140px;
    max-height: 54px;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse img {
    order: 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
}

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

  .top-contact-bar {
    font-size: 0.65rem;
  }

  .top-contact-bar .container {
    max-width: 100%;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
    justify-content: center;
    gap: 0;
  }

  .top-contact-left {
    display: none !important;
  }

  .top-contact-bar a,
  .top-contact-bar span {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-contact-right {
    display: flex !important;
    flex: 0 1 auto;
    justify-content: center;
    gap: 10px;
  }

  .top-contact-right .login-link {
    display: none !important;
  }

  .top-contact-bar,
  .glass-nav,
  .hero-slider,
  .page-hero,
  main,
  footer {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .navbar-brand img {
    width: 78px;
  }

  .hero-slider,
  .page-hero {
    min-height: 620px;
    min-height: min(620px, 92svh);
    min-height: min(620px, 92dvh);
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 1.65rem;
  }

  .section {
    padding: 48px 0;
  }

  .intro-image {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }

  .metric-grid,
  .timeline,
  .sitemap-grid,
  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-auto-rows: minmax(170px, auto);
    gap: 14px;
  }

  .client-logo-card {
    min-height: 170px;
    padding: 18px;
  }

  .client-logo-mark img {
    max-width: min(180px, 68vw);
    max-height: 50px;
  }

  .service-detail img,
  .angled-image img {
    min-height: 0;
    height: 235px;
  }

  .angled-image,
  .price-card.featured {
    transform: none;
  }

  .slider-dots {
    max-width: calc(100vw - 32px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-status {
    display: block;
    margin: 12px 0 0;
  }
}
