:root {
  --primary-color: #273993;
  --secondary-color: #323338;
  --heading-font: 'Verdana', sans-serif;
  --body-font: 'Verdana', sans-serif;
  --color: #000;
  --font-size: 16px;
  --line-height: 26px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--color);
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: normal;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s, border-color 0.3s;
  opacity: 0.55;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 16px;
  height: 16px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 52px;
  height: 52px;
  opacity: 0.3;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #0A2540;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  animation: loadBar 0.9s var(--ease-out) forwards;
}

.scrolled .white-color-logo,
.transparent-header .blue-color-logo {
  display: none;
}

nav ul:last-child li.group ul li a:after {
  background: #000;
}

@keyframes loadBar {
  to {
    left: 0;
  }
}


.container {
  max-width: 92% !important;
  margin: auto;
}

p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.primary-bg {
  background-color: var(--primary-color);
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}


header#main-header {
  z-index: 999;
}

div#fabricator-map {
  z-index: 0;
}

/* Default: transparent over hero */
header.at-top {
  background: transparent;
  box-shadow: none;
}

/* Sticky: scrolled past hero */
header.scrolled {
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

/* Slightly compress header padding when scrolled */
header.scrolled .header-inner {
  border: none;
  padding: 15px 0;
}



.header-inner img,
header.scrolled {
  transition: ease all 0.1s;
}

header.at-top .header-inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.header-inner {
  transition: padding 0.35s var(--ease-out);
}

nav ul li a {
  position: relative;
  transition: opacity 0.2s;
  letter-spacing: 1.5px;
  font-size: 13px;
}

nav ul:last-child li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s var(--ease-out);
}

nav ul:last-child li a:hover::after {
  width: 100%;
}

nav ul:last-child li a:hover {
  opacity: 0.75;
}

/* Skew buttons Ã¢â‚¬â€ lift on hover */
.skew-btn {
  display: inline-block;
  background: #0A2540;
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px 24px;
  transform: skewX(-18deg);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s var(--ease-out);
}

.skew-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 6px 24px rgba(39, 57, 147, 0.35);
  transform: skewX(-18deg) translateY(-2px);
}

.skew-btn span {
  display: block;
  transform: skewX(18deg);
}

.scrolled .header-inner nav {
  color: #2e2e2e;
}

.hero-headline {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s 1s var(--ease-out) forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero strip items Ã¢â‚¬â€ stagger */
.hero-strip-item {
  opacity: 0;
  animation: stripIn 0.6s var(--ease-out) forwards;
}

.hero-strip-item:nth-child(1) {
  animation-delay: 1.4s;
}

.hero-strip-item:nth-child(3) {
  animation-delay: 1.55s;
}

.hero-strip-item:nth-child(5) {
  animation-delay: 1.7s;
}

.hero-strip-item:nth-child(7) {
  animation-delay: 1.85s;
}

@keyframes stripIn {
  to {
    opacity: 1;
  }
}

/* Hero image subtle zoom */
.hero-bg-img {
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.about-text-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}

.scroll-animated-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 280px;
  line-height: 280px;
  margin-bottom: 0;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 10px;
  transform: translateX(60px);
  will-change: transform;
  right: 0;
  position: relative;
}

.fulltextcolumn {
  width: 100%;
  overflow: hidden;
  display: flex;
}

/* .hiddentextcolumn {
  width: 50%;
  overflow: hidden;
  float: right;
} */

.home-big-text {
  font-size: clamp(80px, 19vw, 300px);
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  color: #273993;
  white-space: nowrap;
  margin-left: 0;
  letter-spacing: 20px;
}

.home-big-text-2 {
  font-size: clamp(88px, 20.5vw, 320px);
  position: relative;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-left: 0;
  color: white;
  white-space: nowrap;
}

.hiddentextcolumn .scroll-animated-text {}

.stats-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stats-bg-2 {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 3%, #d0d4ef 8%, #6773c1 26%, #2236a8 52%, #1e30a0 100%);
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 3%, #d0d4ef 8%, #6773c1 26%, #2236a8 52%, #1e30a0 100%);
}

.stats-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  margin-bottom: 50px;
}

/*.stats-grid {*/
/*  width: 100%;*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  column-gap: 72px;*/
/*  align-content: start;*/
/*}*/
.stat-num-block {
  padding-bottom: 22px;
  margin-bottom: 22px;
  font-family: var(--heading-font);
}

.odometer {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  height: 90px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.od-digit {
  position: relative;
  overflow: hidden;
  height: 90px;
}

.od-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.od-strip span {
  display: block;
  height: 90px;
  line-height: 90px;
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.od-plus {
  font-size: 74px;
  font-weight: 400;
  color: #fff;
  line-height: 90px;
  padding-left: 5px;
}

.stat-label {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.4px;
}

.stat-feat-block {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-feat-block.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-feat-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1px;
}

.stats-cta-wrap {
  bottom: 44px;
  left: calc(42% + 0px);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-cta-wrap.show {
  opacity: 1;
  transform: translateY(0);
}

.stats-cta {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 30px;
  background: transparent;

  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.25s, transform 0.2s var(--ease-out);
}

.stats-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.strip {
  width: 50px;
  height: 2px;
  background: rgb(255 255 255 / 40%);
  position: absolute;
  bottom: 0;
}

.card {
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

.card .cardImage img {
  transition: transform 0.6s var(--ease-out);
}

.card:hover .cardImage img {
  transform: scale(1.04);
}

.cardContent {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  transition: background 0.3s;
}

.card:hover .cardContent {
  background: linear-gradient(to top, rgba(39, 57, 147, 0.75) 0%, transparent 100%);
}

/* Arrow bounce on hover */
.card:hover .cardContent span img {
  animation: arrowBounce 0.5s var(--ease-out);
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

.why-item {
  transition: transform 0.3s var(--ease-out);
  cursor: default;
}

.why-item:hover {
  transform: translateX(6px);
}

.why-item span img {
  transition: transform 0.35s var(--ease-out), filter 0.35s;
}

.why-item:hover span img {
  transform: scale(1.12);
  filter: brightness(1.3);
}

.gallery-filter.active {
  font-weight: 800;
}

.gallery-filter {
  transition: background 0.2s, letter-spacing 0.25s;

}

.gallery-filter:last-child {
  border: 0;
}

.gallery-filter:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
}


/* swiper fade in */
.gallerySwiper .swiper-slide img {
  transition: opacity 0.4s var(--ease-out);
}

/* Arrow nav hover */
.gallery-prev,
.gallery-next {
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
  opacity: 0.65;
}

.gallery-prev:hover,
.gallery-next:hover {
  transform: translate(0, -50%) scale(1.12);
  opacity: 1;
}

.blog-card {
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.blog-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card img {
  transition: transform 0.55s var(--ease-out);
}

.blog-card:hover img {
  transform: scale(1.03);
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #bfbfbf;
  outline: none;
  padding-bottom: 8px;
  font-size: 14px;
  position: relative;
  transition: border-color 0.3s;
}

.form-field {
  position: relative;
}

.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.35s var(--ease-out);
}

.form-field:focus-within::after {
  width: 100%;
}

.form-field:focus-within input,
.form-field:focus-within select {
  border-color: transparent;
}

footer ul li {
  cursor: pointer;
  transition: color 0.2s, letter-spacing 0.2s;
  padding: 2px 0;
}

footer ul li:hover {
  color: #fff;
}

footer .social-icon {
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

footer .social-icon:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
}

#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
}

#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #0A2540;
  color: white;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--primary-color);
}

#back-to-top svg {
  width: 16px;
  height: 16px;
}


.btn-gold:hover {
  color: #fff;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0A2540;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.btn-gold:hover::before {
  transform: scaleX(1);
}

.whiteArrow .gallery-prev,
.whiteArrow .gallery-next {
  filter: invert(1);
}

.feature-card {
  background-color: #2e3a9e;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 58, 158, 0.35);
}

.feature-card:hover .card-title {
  color: #c9a14a;
  transition: color 0.3s ease;
}

@media (max-width: 860px) {
  .stats-content {
    padding: 44px 24px 100px;
    margin-bottom: 0
  }

  .stats-bg {
    background: linear-gradient(to right, #fff 0%, #3244bc 20%, #1e30a0 100%);
  }

  .stats-grid {
    column-gap: 32px;
  }

  .odometer {
    height: 66px;
  }

  .od-digit {
    height: 66px;
  }

  .od-strip span {
    height: 66px;
    line-height: 66px;
    font-size: 60px;
  }

  .od-plus {
    font-size: 60px;
    line-height: 66px;
  }

  .stat-feat-title {
    font-size: 19px;
  }

  .stats-cta-wrap {
    left: 24px;
  }
}

.transparent-header.scrolled .blue-color-logo {
  display: block;
}

.scrolled nav ul:last-child li a::after {
  background-color: #273993;
}

.nw {
  max-width: 860px;
  margin: auto;
}

.nlabel {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.nitem {
  background: #fff;
  border: .5px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s
}

.nitem.active {
  border-color: #273993
}

.nhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none
}

.nhead:hover .ntitle {
  color: #273993
}

.nmeta {
  flex: 1
}

.ntag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 8px;
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.tag-featured {
  background: #E1F5EE;
  color: #085041
}

.tag-blue {
  background: #E6F1FB;
  color: #185FA5
}

.tag-purple {
  background: #EEEDFE;
  color: #534AB7
}

.tag-amber {
  background: #FAEEDA;
  color: #854F0B
}

.ntitle {
  font-size: 21px;
  font-weight: 500;
  color: #111;
  line-height: 36px;
  transition: color .2s
}

.npreview {
  color: #666;
  margin-top: 4px
}

.ntoggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: .5px solid #ccc;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 2px;
  transition: background .2s, transform .3s
}

.nitem.active .ntoggle {
  background: #b8c4fd;
  border-color: #273993;
  transform: rotate(180deg)
}

.ntoggle svg {
  width: 12px;
  height: 12px;
  stroke: #666;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.nitem.active .ntoggle svg {
  stroke: #273993
}

.nbody {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease
}

.nitem.active .nbody {
  max-height: 600px
}

.nbody-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: .5px solid #e0e0e0
}

.nbody-inner p {
  color: #555;
  margin-top: 1rem
}

.nbody-inner p+p {
  margin-top: .65rem
}

.article_manager h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.article_manager p {
  margin: 10px 0;
}

@media (max-width: 1640px) {
  p {
    font-size: 13px;
    line-height: 22px;
  }

  .scroll-animated-text {
    font-size: 120px;
    line-height: 150px;
  }

  .od-strip span {
    line-height: 70px;
    font-size: 60px;
  }

  .stat-feat-title {
    font-size: 19px;
    line-height: 26px;
  }
}

@media (max-width: 640px) {

  .about-text-track {
    position: relative;
  }

  .hiddentextcolumn {
    display: none;
  }

  .fulltextcolumn {
    width: 100%;
    justify-content: center;
  }

  /* On mobile: hide the split PROC / URAL and show a single compact word */
  .home-big-text {
    display: none;
  }

  .home-big-text-2 {
    font-size: clamp(48px, 18vw, 90px);
    color: #273993;
    margin-left: 0;
    justify-content: center;
    text-align: center;
    width: 100%;
    /* Override the white colour so it's visible on white bg */
    -webkit-text-stroke: 0;
  }

  .scroll-animated-text {
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 2px;
    right: -40%;
    margin-top: 25px;
  }

  .stats-content {
    padding: 0 50px;
  }

  header.scrolled #mobile-menu-btn span {
    background: #000;
  }
}

.blue-color-logo {
  display: none;
}

.scrolled .blue-color-logo {
  display: block;
}

/* ── Hero Swiper ── */
.heroSwiper .swiper-slide {
  opacity: 0 !important;
  transition: opacity 1.2s ease !important;
}

.heroSwiper .swiper-slide-active {
  opacity: 1 !important;
}

/* Pagination dots */
.hero-pagination .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-pagination .hero-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 4px;
}