:root {
  --c-navy: #34346a;
  --c-gold: #fab240;
  --c-charcoal: #464342;
  --c-light: #fdfeff;
}

html {
  scroll-behavior: smooth;
}

html.reduce-motion {
  scroll-behavior: auto;
}

section[id] {
  scroll-margin-top: 55px;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--c-light);
  color: var(--c-charcoal);
}

.section-header {
  text-align: center;
}

.section-header + p {
  text-align: center;
}

.js .fade-up {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .fade-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .hero-copy.fade-up {
  transform: translate3d(0, -30px, 0);
  transition-duration: 1.1s;
}

.js .hero-copy.fade-up.is-visible {
  transform: translate3d(0, 0, 0);
}

.cmt-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--c-light);
  border-bottom: 1px solid rgba(52, 52, 106, 0.12);
  box-shadow: 0 2px 10px rgba(52, 52, 106, 0.08);
}

.brand-logo {
  width: auto;
  height: clamp(26px, 3.4vw, 38px);
  max-width: 360px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.navbar .nav-link {
  color: var(--c-navy);
  opacity: 0.9;
  font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--c-gold);
}

.navbar .nav-link.active {
  color: var(--c-gold);
}

.navbar .nav-link.nav-contact-btn {
  background: var(--c-navy);
  color: var(--c-light);
  border-radius: 999px;
}

.navbar .nav-link.nav-contact-btn:hover,
.navbar .nav-link.nav-contact-btn:focus {
  background: var(--c-gold);
  color: var(--c-navy);
}

.navbar-toggler {
  color: var(--c-navy);
}

.cmt-navbar .navbar-collapse {
  background: transparent;
}

.hero-section {
  min-height: calc(100svh - 76px);
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(52, 52, 106, 0.82), rgba(70, 67, 66, 0.45));
}

.hero-cta {
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  color: var(--c-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero-title {
  color: var(--c-light);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.hero-sub {
  color: var(--c-light);
  opacity: 0.95;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  max-width: 62ch;
}

.btn-brand {
  background-color: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
  font-weight: 700;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--c-light);
  color: var(--c-navy);
  border-color: var(--c-light);
}

.section-alt {
  background-color: rgba(52, 52, 106, 0.05);
}

.section-surface {
  background-color: var(--c-light);
}

.stat-card,
.cmt-card {
  border-color: rgba(52, 52, 106, 0.2);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.stat-card .card-body {
  text-align: center;
}

.stat-icon {
  color: var(--c-gold);
  font-size: 4rem;
}

h1,
h2,
h3 {
  color: var(--c-navy);
}

.hero-section h1 {
  color: var(--c-light);
}

.intro-section {
  background: linear-gradient(180deg, rgba(52, 52, 106, 0.03) 0%, rgba(253, 254, 255, 1) 100%);
}

.intro-panel {
  border: 1px solid rgba(52, 52, 106, 0.18);
  border-radius: 0.95rem;
  background: var(--c-light);
  box-shadow: 0 12px 28px rgba(52, 52, 106, 0.1);
  padding: 1.25rem;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.intro-kicker {
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.78rem;
}

.intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.intro-points li:last-child {
  margin-bottom: 0;
}

.intro-points i {
  color: var(--c-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.hse-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.hse-points li:last-child {
  margin-bottom: 0;
}

.hse-points i {
  color: var(--c-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.intro-industry-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.intro-industry-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.55rem;
  overflow: hidden;
}

.intro-industry-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.65s ease;
}

.intro-industry-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(24, 24, 48, 0.45), rgba(24, 24, 48, 0.55));
  color: var(--c-light);
  font-weight: 700;
  text-align: center;
  padding: 0.75rem;
}

.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: clients-slide 90s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.45rem;
}

.client-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.5s ease;
}

@keyframes clients-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reduce-motion .clients-track {
  animation: none;
}

.reduce-motion .fade-up,
.reduce-motion .fade-up.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reduce-motion .hero-image,
.reduce-motion .intro-industry-image,
.reduce-motion .client-logo-item img,
.reduce-motion .cmt-card,
.reduce-motion .stat-card,
.reduce-motion .testimonial-card,
.reduce-motion .criteria,
.reduce-motion .intro-panel,
.reduce-motion .contact-box,
.reduce-motion .btn-brand {
  transition: none;
}

.reduce-motion .hero-section:hover .hero-image,
.reduce-motion .intro-industry-media:hover .intro-industry-image,
.reduce-motion .client-logo-item:hover img,
.reduce-motion .cmt-card:hover,
.reduce-motion .stat-card:hover,
.reduce-motion .testimonial-card:hover,
.reduce-motion .criteria:hover,
.reduce-motion .intro-panel:hover,
.reduce-motion .contact-box:hover,
.reduce-motion .btn-brand:hover,
.reduce-motion .btn-brand:focus {
  transform: none;
}

.hero-section:hover .hero-image {
  transform: scale(1.06);
}

.intro-industry-media:hover .intro-industry-image {
  transform: scale(1.1);
}

.client-logo-item:hover img {
  transform: scale(1.08);
}

.cmt-card:hover,
.stat-card:hover,
.testimonial-card:hover,
.criteria:hover,
.intro-panel:hover,
.contact-box:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 52, 106, 0.35);
  box-shadow: 0 16px 32px rgba(52, 52, 106, 0.14);
}

.btn-brand:hover,
.btn-brand:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(52, 52, 106, 0.2);
}

@media (max-width: 991.98px) {
  .brand-logo {
    height: 28px;
    max-width: min(56vw, 230px);
  }

  .cmt-navbar .navbar-collapse {
    background: var(--c-light);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(52, 52, 106, 0.14);
  }

  .hero-cta {
    max-width: 100%;
  }

  .navbar .nav-link.nav-contact-btn {
    width: fit-content;
  }

  .clients-track {
    animation-duration: 75s;
    padding: 0.6rem 0;
  }

  .client-logo-item {
    width: 230px;
    height: 130px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 24px;
    max-width: min(52vw, 190px);
  }
}

.cmt-card i {
  color: var(--c-gold);
}

.about-card-body {
  text-align: center;
}

.about-feature-icon {
  display: block;
  font-size: 4rem;
  color: var(--c-gold);
  margin-bottom: 0.65rem;
}

.about-card-body h3 {
  margin-bottom: 0.45rem;
}

.criteria {
  border: 1px solid rgba(52, 52, 106, 0.2);
  border-radius: 0.5rem;
  background: var(--c-light);
  text-align: center;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.criteria-no {
  display: block;
  font-size: 40px;
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
}

.testimonial-card {
  border: 1px solid rgba(52, 52, 106, 0.2);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(52, 52, 106, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.testimonial-card .card-body {
  text-align: center;
}

.testimonial-author {
  font-weight: 700;
  color: var(--c-navy);
}

.testimonial-stars {
  color: var(--c-gold);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  line-height: 1;
}

.contact-box {
  background: var(--c-navy);
  color: var(--c-light);
  border-radius: 0.75rem;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.contact-box h2 {
  color: var(--c-light);
}

.contact-box .h6 {
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-info-block p {
  color: rgba(253, 254, 255, 0.95);
}

.contact-inline-link {
  color: var(--c-light);
  text-decoration: none;
  font-weight: 700;
}

.contact-inline-link:hover,
.contact-inline-link:focus {
  color: var(--c-gold);
}

.contact-info-block .bi-envelope-fill,
.contact-info-block .bi-telephone-fill {
  color: var(--c-gold);
}

.contact-form .form-label {
  color: var(--c-light);
}

.contact-form .form-control {
  background: var(--c-light);
  border: 1px solid rgba(250, 178, 64, 0.35);
  color: var(--c-charcoal);
}

.contact-form .form-control:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 0.2rem rgba(250, 178, 64, 0.25);
}

.about-page-main {
  padding-top: 76px;
}

.about-hero-banner {
  background: var(--c-navy);
}

.about-hero-title {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  animation: about-slide-down 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-hero-subtitle {
  color: var(--c-gold);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  font-weight: 500;
  margin-top: 0.25rem;
}

.about-content-section {
  background: var(--c-light);
}

.product-content-section {
  background: var(--c-light);
}

.product-catalog-card {
  border: 1px solid rgba(52, 52, 106, 0.2);
  border-radius: 0.95rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(52, 52, 106, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-catalog-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.75s ease;
}

.product-catalog-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, rgba(24, 24, 48, 0.2), rgba(24, 24, 48, 0.72));
}

.product-catalog-overlay span {
  color: var(--c-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-catalog-title {
  color: var(--c-navy);
  padding: 1rem 1rem 0.4rem;
  margin: 0;
}

.product-catalog-title i {
  color: var(--c-gold);
}

.product-catalog-list {
  padding: 0 1rem 1rem;
}

.product-catalog-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.product-catalog-list li:last-child {
  margin-bottom: 0;
}

.product-catalog-list i {
  color: var(--c-gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.product-catalog-card:hover {
  border-color: rgba(52, 52, 106, 0.34);
  box-shadow: 0 14px 28px rgba(52, 52, 106, 0.12);
}

.product-catalog-card:hover .product-catalog-image {
  transform: scale(1.08);
}

.services-intro-section {
  background: var(--c-light);
}

.services-intro-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.services-intro-title {
  color: var(--c-navy);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
}

.services-intro-text {
  color: var(--c-charcoal);
  font-size: clamp(0.96rem, 1.45vw, 1.06rem);
  line-height: 1.65;
}

.service-content-section {
  background: var(--c-light);
}

.service-catalog-card {
  border: 1px solid rgba(52, 52, 106, 0.2);
  border-radius: 0.95rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(52, 52, 106, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-catalog-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-catalog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.75s ease;
}

.service-catalog-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, rgba(24, 24, 48, 0.2), rgba(24, 24, 48, 0.72));
}

.service-catalog-overlay span {
  color: var(--c-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-catalog-body {
  padding: 1rem;
}

.service-catalog-title {
  color: var(--c-navy);
  margin: 0 0 0.55rem;
}

.service-catalog-title i {
  color: var(--c-gold);
}

.service-note {
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.service-note:last-of-type {
  margin-bottom: 0.35rem;
}

.service-feature-block {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(52, 52, 106, 0.12);
}

.service-feature-title {
  color: var(--c-gold);
  font-size: 1rem;
  font-weight: 700;
}

.service-feature-text {
  margin-bottom: 0.38rem;
  line-height: 1.55;
}

.service-feature-text:last-child {
  margin-bottom: 0;
}

.service-number-list {
  margin-top: 0.7rem;
  padding-left: 1.15rem;
}

.service-number-list li {
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.service-number-list li:last-child {
  margin-bottom: 0;
}

.service-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 52, 106, 0.34);
  box-shadow: 0 18px 32px rgba(52, 52, 106, 0.15);
}

.service-catalog-card:hover .service-catalog-image {
  transform: scale(1.08);
}

.about-kicker {
  color: var(--c-gold);
  font-size: 1.1rem;
  font-weight: 700;
  animation: about-fade-up 0.7s ease both;
  animation-delay: 0.1s;
}

.about-company-title {
  color: var(--c-navy);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  animation: about-fade-up 0.8s ease both;
  animation-delay: 0.16s;
}

.about-company-secondary {
  color: var(--c-gold);
}

.about-content-section p {
  font-size: clamp(1rem, 1.45vw, 1.06rem);
  line-height: 1.65;
}

.about-story p {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: about-fade-up 0.65s ease forwards;
}

.about-story p:nth-child(1) { animation-delay: 0.24s; }
.about-story p:nth-child(2) { animation-delay: 0.32s; }
.about-story p:nth-child(3) { animation-delay: 0.4s; }
.about-story p:nth-child(4) { animation-delay: 0.48s; }
.about-story p:nth-child(5) { animation-delay: 0.56s; }
.about-story p:nth-child(6) { animation-delay: 0.64s; }

.about-vm-wrap {
  padding-top: 0.25rem;
}

.about-vm-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 1px solid rgba(52, 52, 106, 0.22);
  background: #fff;
  box-shadow: 0 10px 20px rgba(52, 52, 106, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: about-fade-up 0.75s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-vm-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-navy));
}

.about-vm-wrap .col-md-6:nth-child(1) .about-vm-card {
  animation-delay: 0.22s;
}

.about-vm-wrap .col-md-6:nth-child(2) .about-vm-card {
  animation-delay: 0.36s;
}

.about-vm-card.vision-card {
  background: linear-gradient(180deg, rgba(52, 52, 106, 0.05), #fff 40%);
}

.about-vm-card.mission-card {
  background: linear-gradient(180deg, rgba(250, 178, 64, 0.12), #fff 40%);
}

.about-vm-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: var(--c-navy);
  color: var(--c-gold);
  font-size: 1.2rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.about-vm-card h3 {
  color: var(--c-navy);
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-vm-card p {
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-vm-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(52, 52, 106, 0.35);
  box-shadow: 0 18px 30px rgba(52, 52, 106, 0.16);
}

.about-vm-card:hover h3 {
  color: var(--c-gold);
  transform: translate3d(0, -2px, 0);
}

.about-vm-card:hover p {
  color: #2f2d5f;
  transform: translate3d(0, -1px, 0);
}

.about-vm-card:hover .about-vm-icon {
  transform: scale(1.08) rotate(-6deg);
  background: var(--c-gold);
  color: var(--c-navy);
}

@keyframes about-slide-down {
  from {
    opacity: 0;
    transform: translate3d(0, -26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.cmt-footer {
  background-color: var(--c-navy);
  color: var(--c-light);
}

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
}
