:root {
  --primary: #2f67e7;
  --primary-dark: #0b1f53;
  --primary-deep: #071733;
  --navy: #08142d;
  --yellow: #ffd21e;
  --yellow-soft: #ffe66c;
  --text: #14213d;
  --muted: #66718b;
  --white: #ffffff;
  --surface: #f5f7fb;
  --surface-2: #edf2fb;
  --line: #dbe4f3;
  --shadow: 0 16px 40px rgba(10, 31, 83, .12);
  --shadow-lg: 0 24px 70px rgba(7, 23, 51, .18);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1460px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

button {
  border: none;
  background: none
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  z-index: 9999;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow)
}

.container-xxl {
  max-width: var(--container)
}

.section-space {
  padding: 30px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary)
}

.eyebrow-light {
  color: rgba(255, 255, 255, .84)
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 30, .18)
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--primary-dark)
}

h1,
.hero-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -.03em
}

h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em
}

h3 {
  font-size: 1.22rem;
  font-weight: 800
}

p {
  margin: 0 0 14px;
  color: var(--muted)
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px
}

.section-heading.centered {
  text-align: center
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: none
}

.section-heading h2 span,
.section-head-sm h2 span,
.hero-copy h1 span,
.hero-title span,
.numbers-intro h2 span {
  color: var(--primary)
}

.section-note {
  color: var(--muted);
  margin: 0;
  text-align: right
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: .35s ease
}

.btn-brand {
  width: max-content;
  background: linear-gradient(135deg, var(--yellow), #ffde4f);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 210, 30, .24)
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 210, 30, .28)
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px)
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary-dark)
}

.btn-outline-primary {
  border: 1px solid rgba(47, 103, 231, .22);
  background: #fff;
  color: var(--primary-dark)
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.btn-lg {
  padding: 10px 17px;
  font-size: 17px;
}

.swiper-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
  transition: .3s ease
}

.swiper-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 10px
}

.swiper-pagination-bullet {
  background: #9cb5ef;
  opacity: 1
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 999px
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: .35s ease
}

.topbar {
  background: #03112b;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: .35s ease;
  overflow: hidden;
  max-height: 60px
}

.topbar-wrap,
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px
}

.topbar-wrap {
  justify-content: space-between;
  padding: 9px 20px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .84)
}

.mini-social {
  display: flex;
  gap: 8px
}

.mini-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.main-navbar {
  padding: 14px 0;
  background: transparent;
  transition: .35s ease
}

.nav-shell {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 18px 46px rgba(10, 31, 83, .08);
  border-radius: 24px;
  padding: 12px 20px;
  transition: .35s ease
}

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

.navbar-nav {
  gap: 6px
}

.nav-link {
  font-weight: 700;
  color: var(--text);
  padding: 10px 14px !important;
  border-radius: 12px;
  position: relative
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(47, 103, 231, .06)
}

.navbar-toggler {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f3f6fd;
  border: 1px solid #dbe4f3;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px
}

.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px
}

.site-header.hide-topbar .topbar {
  max-height: 0;
  padding: 0;
  border-bottom-color: transparent
}

.site-header.is-scrolled .nav-shell {
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(9, 25, 59, .14)
}

.mobile-offcanvas {
  background: #071a43;
  color: #fff
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px
}

.mobile-nav-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 700
}

.mobile-contact-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 20px;
  border-radius: 18px;
  margin-top: 28px
}

.mobile-contact-card a {
  display: block;
  color: #fff;
  margin-top: 10px
}

/* hero */
.hero-section {
  margin-top: -119px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #061331 0%, #0b265d 54%, #173b8d 100%);
  padding: 48px 0 50px;
  color: #fff
}

.hero-bg-glow {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 620px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(59, 114, 239, .65), transparent 60%);
  filter: blur(20px);
  animation: floatGlow 12s linear infinite alternate
}

.hero-bg-rings {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 36%, transparent 0 16%, rgba(255, 255, 255, .08) 16.3%, transparent 16.6%, transparent 24%, rgba(255, 255, 255, .06) 24.3%, transparent 24.6%, transparent 32%, rgba(255, 210, 30, .12) 32.3%, transparent 32.6%, transparent 40%, rgba(255, 255, 255, .06) 40.3%, transparent 40.6%, transparent 100%);
  opacity: .9;
  animation: ringDrift 16s linear infinite
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0)
  }

  to {
    transform: translate3d(-60px, -40px, 0)
  }
}

@keyframes ringDrift {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-24px)
  }
}

.hero-wrap {
  position: relative;
  z-index: 1
}

.hero-swiper {
  overflow: hidden;
  padding-top: 24px
}

.hero-slide {
  padding: 36px 0 20px
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .8)
}

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

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .14); */
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, .25); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px
}

.hero-main-image {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .28))
}

.hero-main-image.cover-img {
  width: 100%;
  max-height: none;
  height: 408px;
  object-fit: cover;
  border-radius: 24px
}

.floating-note,
.hero-chip-inline {
  position: absolute;
  background: rgba(13, 28, 67, .88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  padding: 10px 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, .18)
}

.floating-note i,
.hero-chip-inline strong {
  color: var(--yellow)
}

.note-top {
  top: 20px;
  right: 20px;
  display: none;
}

.note-bottom {
  left: 20px;
  bottom: 20px
}

.hero-chip-inline {
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: block
}

.hero-chip-inline strong {
  display: block;
  margin-bottom: 6px
}

.hero-chip-inline small {
  color: rgba(255, 255, 255, .74)
}

.hero-pagination {
  margin-top: 8px;
  position: static;
  text-align: center
}

.hero-quick-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 26px;
  overflow: hidden
}

.hero-quick-stats article {
  background: rgba(255, 255, 255, .06);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px)
}

.hero-quick-stats i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow)
}

.hero-quick-stats strong {
  display:flex;
  font-size: 1.55rem;
  line-height: 1.1;
  color: #fff
}

.hero-quick-stats span {
  display: block;
  color: #ffffff;
}

/* about */
.about-media {
  position: relative;
  padding-right: 34px;
  padding-bottom: 30px
}

.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg)
}

.about-float-card {
  position: absolute;
  left: 28px;
  bottom: 0;
  max-width: 280px;
  background: #fff;
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}

.about-float-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-dark);
  margin-bottom: 8px
}

.about-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px
}

.about-points-grid article {
  display: flex;
  gap: 14px;
  align-items:center;
  padding: 7px 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(9, 25, 59, .06)
}

.about-points-grid i {
  width:30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(47, 103, 231, .08);
  color: var(--primary);
  font-size: 1.2rem;
  flex: 0 0 auto
}

.about-points-grid h3 {
  font-size: 15px;
  margin-bottom: 6px
}

.about-points-grid p {
  font-size: .95rem;
  margin: 0
}

/* why */
.why-section {
  background: linear-gradient(180deg, #f8fbff, #eef4ff)
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px
}

.why-card {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(8, 20, 45, .06);
  min-height: 240px;
  position: relative;
  overflow: hidden
}

.why-tall {
  grid-column: span 3
}

.why-wide {
  grid-column: span 6;
  display: flex;
  align-items: flex-start;
  gap: 18px
}

.image-card {
  grid-column: span 3;
  padding: 0;
  min-height: 260px
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.image-card-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 23, 51, .7);
  color: #fff;
  backdrop-filter: blur(10px)
}

.image-card-overlay span {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: 6px
}

.image-card-overlay strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.35
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 103, 231, .12), rgba(255, 210, 30, .14));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 18px
}

.inline-link {
  margin-top: auto;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

/* products */
.products-section {
  position: relative;
  overflow: hidden
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px
}

.filter-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--muted);
  transition: .3s ease
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff
}

.product-swiper,
.project-swiper,
.testimonial-swiper {
  overflow: hidden
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(8, 20, 45, .06)
}

.product-thumb {
  height: 230px;
  padding: 18px;
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.product-thumb img {
  max-height: 100%;
  width: auto;
  object-fit: contain
}

.product-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.product-tag {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 103, 231, .09);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.product-content h3 {
  font-size: 1.16rem;
  margin: 0
}

.product-content p {
  margin: 0 0 8px
}

.product-content a {
  margin-top: auto;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  gap: 8px;
  align-items: center
}

.product-pagination {
  position: static;
  margin-top: 26px
}

/* expertise */
.expertise-section {
  background: linear-gradient(180deg, #071838, #0d2b68)
}

.expertise-shell {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg)
}

.expertise-image-wrap {
  height: 100%
}

.expertise-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover
}

.expertise-content {
  padding: 1px 48px;
  color: #fff
}

.expertise-content p {
  color: rgba(255, 255, 255, .78)
}

.expertise-content h2 {
  color: #fff
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px
}

.expertise-grid article {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06)
}

.expertise-grid i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 210, 30, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.2rem;
  flex: 0 0 auto
}

.expertise-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px
}

.expertise-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .95rem
}

/* industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px
}

.industry-card {
  position: relative;
  height: 310px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease
}

.industry-card:hover img {
  transform: scale(1.08)
}

.industry-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(5, 16, 40, .1), rgba(5, 16, 40, .78));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px
}

.industry-overlay span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

.industry-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem
}

/* projects */
.projects-section {
  background: #fbfcff
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(8, 20, 45, .06);
  position: relative;
  height: 100%
}

.project-card>img {
  width: 100%;
  height: 230px;
  object-fit: cover
}

.project-lightbox {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 23, 51, .66);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2
}

.project-body {
  padding: 22px
}

.chip {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 210, 30, .17);
  color: #7a5c00;
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px
}

.project-body h3 {
  font-size: 1.14rem;
  margin-bottom: 10px
}

.project-body p {
  font-size: .96rem
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: .93rem;
  color: var(--muted)
}

.project-pagination {
  position: static;
  margin-top: 26px
}

/* process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  position: relative
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 54px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 103, 231, .08), rgba(47, 103, 231, .36), rgba(47, 103, 231, .08));
  z-index: 0
}

.process-grid article {
  position: relative;
  z-index: 1;
  padding: 30px 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(9, 25, 59, .06)
}

.process-grid i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 20px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(47, 103, 231, .1), rgba(255, 210, 30, .18));
  color: var(--primary);
  font-size: 1.45rem;
  border: 1px solid rgba(47, 103, 231, .12)
}

.step-num {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--primary);
  font-weight: 800;
  font-size: .78rem
}

.process-grid h3 {
  font-size: 1.02rem;
  margin-bottom: 10px
}

.process-grid p {
  font-size: .94rem;
  margin: 0
}

/* numbers */
.numbers-section {
  background: linear-gradient(135deg, #173c96, #2f67e7 58%, #4046d8)
}

.numbers-shell {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12)
}

.numbers-intro,
.number-card {
  background: rgba(6, 19, 49, .26);
  padding: 34px;
  color: #fff
}

.numbers-intro h2,
.numbers-intro .eyebrow {
  color: #fff
}

.numbers-intro p {
  color: rgba(255, 255, 255, .76)
}

.number-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px
}

.number-card i {
  font-size: 1.5rem;
  color: var(--yellow)
}

.number-card strong {
  font-family: "Space Grotesk";
  font-size: 2.1rem;
  line-height: 1;
  color: #fff
}

.number-card span {
  color: rgba(255, 255, 255, .78)
}

/* testimonials */
.testimonials-section {
  background: #f8fbff
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch
}

.testimonial-intro {
  background: linear-gradient(135deg, #0a1f4d, #2f67e7);
  color: #fff;
  padding: 40px;
  border-radius: 32px;
  position: relative;
  overflow: hidden
}

.testimonial-intro::before {
  content: "";
  position: absolute;
  inset: auto -15% -15% auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .04), 0 0 0 120px rgba(255, 255, 255, .03)
}

.testimonial-intro h2,
.testimonial-intro .eyebrow {
  color: #fff
}

.testimonial-intro p {
  color: rgba(255, 255, 255, .78);
  max-width: 280px
}

.testimonial-side-image {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  border-radius: 26px;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .16)
}

.testimonial-content {
  background: #fff;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(9, 25, 59, .07)
}

.testimonial-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .84rem;
  letter-spacing: .1em
}

.testimonial-card {
  height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: #f8fbff;
  border: 1px solid #e0e8f6;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px
}

.stars {
  font-size: 1.1rem;
  color: #f7b500;
  letter-spacing: .18em
}

.person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f67e7, #60a4ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800
}

.person strong {
  display: block;
  color: var(--primary-dark)
}

.person span {
    display : none;
  font-size: .9rem;
  color: var(--muted)
}

.testimonial-pagination {
  position: static;
  margin-top: 18px
}

/* clients */
.clients-marquee {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6f9ff);
  padding: 26px 0;
  box-shadow: 0 16px 36px rgba(8, 20, 45, .05)
}

.clients-track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.client-logo-card {
  width: 210px;
  height: 118px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(9, 25, 59, .06)
}

.client-logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain
}

/* certifications */
.certification-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 20px
}


.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(9, 25, 59, .05)
}

.cert-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 103, 231, .12), rgba(255, 210, 30, .18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 18px
}

.cert-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem
}

.cert-card p {
  margin: 0
}

/* faq contact */
.faq-contact-wrap {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line)
}

.faq-pane {
  height: 100%;
  padding: 54px;
  background: #fff
}

.faq-pane h2 span {
  color: var(--primary)
}

.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0
}

.custom-accordion .accordion-button {
  padding: 22px 0;
  font-weight: 800;
  color: var(--primary-dark);
  background: transparent;
  box-shadow: none
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary)
}

.custom-accordion .accordion-button::after {
  width: 34px;
  height: 34px;
  background-size: 14px;
  border-radius: 12px;
  background-color: #eef4ff;
  background-position: center
}

.custom-accordion .accordion-body {
  padding: 0 0 22px 0;
  color: var(--muted)
}

.contact-pane {
  position: relative;
  height: 100%;
  min-height: 100%;
  background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 19, 49, .9), rgba(23, 59, 150, 0))
}

.contact-form-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 24, 56, .64);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22)
}

.contact-form-shell h2,
.contact-form-shell .eyebrow {
  color: #fff
}

.contact-form-shell p {
  color: rgba(255, 255, 255, .78)
}

.form-floating>.form-control,
.form-floating>.form-select,
.quote-modal .form-control,
.quote-modal .form-select {
  border-radius: 16px;
  border: 1px solid rgba(219, 228, 243, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  min-height: 37px
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus,
.quote-modal .form-control:focus,
.quote-modal .form-select:focus {
  border-color: rgba(255, 210, 30, .56);
  box-shadow: 0 0 0 .18rem rgba(255, 210, 30, .15);
  background: rgba(255, 255, 255, .1);
  color: #000;
}

.form-floating>label {
  color: rgba(255, 255, 255, .72)
}

.form-floating textarea.form-control {
  height: 130px !important
}

.form-control::placeholder {
  color: transparent
}

.form-select option {
  color: #111
}

.invalid-feedback {
  color: #ffd3d3
}

/* footer */
.site-footer {
  background: linear-gradient(180deg, #04122d, #031028);
  color: rgba(255, 255, 255, .74)
}

.footer-top {
  padding: 40px 0 0
}

.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f3178, #2f67e7);
  color: #fff;
  margin-bottom: 38px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22)
}

.footer-cta-bar strong {
  display: block;
  font-size: 1.3rem
}

.footer-cta-bar p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .82)
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff
}

.site-footer h3 {
  color: #fff;
  font-size: 1.16rem;
  margin-bottom: 18px
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px
}

.site-footer li a,
.site-footer li span {
  color: rgba(255, 255, 255, .74)
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.footer-contact i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 210, 30, .08);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto
}

.footer-contact li div {
  display: grid;
  gap: 4px
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .72)
}

.powered-by a {
  color: #fff;
  font-weight: 800
}

/* floating */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1600;
  background: #25D366;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .28)
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #ffcf00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  box-shadow: 0 18px 40px rgba(255, 210, 30, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: .3s ease;
  z-index: 1600
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none
}

/* modal + toast */
.quote-modal .modal-content {
  border: none;
  border-radius: 26px;
  overflow: hidden
}

.quote-modal .modal-header {
  padding: 13px 28px;
  border-bottom: 1px solid #e8eef8;
      background: #f8fbff;
}

.modal-kicker {
  display: block;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 6px
}

.quote-modal .modal-title {
  font-size: 1.9rem
}

.quote-modal .modal-body {
  padding: 28px;
  background: #f8fbff
}

.quote-modal .form-control,
.quote-modal .form-select {
  background: #fff;
  color: var(--text);
  border: 1px solid #dbe4f3
}

.quote-modal .modal-info {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #08142d, #163b91);
  color: #fff
}

.quote-modal .modal-info img {
    width: 100%;
    height: 148px;
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
    padding: 0px;
    border-radius: 18px;
    margin-bottom: 18px;
}

.quote-modal .modal-info h3 {
  color: #fff;
  font-size: 1.2rem;
}

.quote-modal .modal-info p,
.quote-modal .modal-info li {
  color: rgba(255, 255, 255, .78);
      font-size: 14px;
}

.toast {
  background: #0f3178;
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg)
}

.toast-body i {
  margin-right: 8px;
  color: var(--yellow)
}


/* =========================================================
   V4 alignment, responsive and component refinement layer
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip
}

main,
section,
.container-xxl,
.row,
[class*="col-"] {
  min-width: 0
}

.section-space {
  position: relative
}

.section-heading p {
  max-width: 760px
}

.section-heading-row>div:first-child {
  min-width: 0
}

.section-heading-row .slider-nav {
  flex: 0 0 auto
}

/* Header: cleaner sticky state and alignment */
.site-header {
  background: transparent
}

.site-header.hide-topbar .main-navbar {
  padding-top: 10px;
  padding-bottom: 10px
}

.site-header.hide-topbar .nav-shell {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 42px rgba(4, 17, 43, .16)
}

.nav-shell {
  max-width: calc(var(--container) - 24px);
  margin-inline: auto
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto
}

.navbar-brand img {
  width: auto;
  height: 56px;
  object-fit: contain
}

.navbar-collapse {
  min-width: 0
}

.navbar-nav {
  flex-wrap: nowrap
}

.nav-link {
  white-space: nowrap
}

/* Hero: controlled typography and cleaner carousel */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  max-width: 100%
}

.hero-copy {
  max-width: 650px
}

.hero-copy h1,
.hero-title {
  font-size: clamp(2.45rem, 3.45vw, 3.5rem);
  max-width: 620px
}

.hero-copy p {
  max-width: 600px
}

.hero-media {
  min-height: 450px
}

.hero-machine-card .hero-main-image {
  max-width: 94%;
  max-height: 380px
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .55)
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--yellow)
}

/* About alignment */
.about-section .row {
  align-items: center
}

.about-media {
  max-width: 680px;
  margin-inline: auto
}

.about-image {
  aspect-ratio: 1.14/1;
  height: auto;
  min-height: 500px
}

.about-float-card {
  right: 24px;
  left: auto;
  bottom: 0
}

.section-head-sm {
  max-width: 700px
}

/* Why section — balanced bento */
.why-bento {
  grid-auto-flow: dense;
  align-items: stretch
}

.why-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #c8d8f5;
  box-shadow: 0 20px 45px rgba(8, 20, 45, .1)
}

.why-primary {
  background: linear-gradient(145deg, #0b2458, #173f96);
  color: #fff;
  border-color: rgba(255, 255, 255, .08)
}

.why-primary h3 {
  color: #fff
}

.why-primary p {
  color: rgba(255, 255, 255, .75)
}

.why-primary .why-icon {
  background: rgba(255, 255, 255, .1);
  color: var(--yellow)
}

.why-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 210, 30, .14);
  color: var(--yellow);
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.image-card {
  min-height: 300px
}

.why-wide {
  min-height: 220px;
  align-items: center
}

.why-wide .inline-link {
  margin-left: auto;
  white-space: nowrap
}

/* Products — prevent clipping/overlap and improve image grid */
.products-section {
  overflow: hidden
}

.product-swiper {
  width: 100%;
  padding: 4px 3px 18px;
  overflow: hidden
}

.product-swiper .swiper-wrapper {
  align-items: stretch
}

.product-swiper .swiper-slide {
  height: auto;
  min-width: 0;
  display: flex
}

.product-card {
  width: 100%;
  min-width: 0
}

.product-thumb {
  height: 245px;
  padding: 22px
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply
}

.product-content h3 {
  min-height: 2.55em
}

.product-content p {
  min-height: 4.7em
}

.product-pagination {
  padding-top: 8px
}

/* Expertise */
.expertise-shell .row {
  align-items: stretch
}

.expertise-image-wrap {
  height: 100%;
  min-height: 580px
}

.expertise-image {
  min-height: 580px
}

.expertise-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.expertise-grid article {
  min-width: 0
}

/* Applications */
.industries-grid {
  align-items: stretch
}

.industry-card {
  height: 320px
}

.industry-card:nth-child(1),
.industry-card:nth-child(6) {
  grid-column: span 1
}

.industry-overlay {
  align-items: center
}

.industry-overlay h3 {
  min-width: 0
}

/* Projects */
.project-swiper {
  width: 100%;
  overflow: hidden;
  padding: 4px 2px 12px
}

.project-swiper .swiper-slide {
  height: auto;
  display: flex;
  min-width: 0
}

.project-card {
  width: 100%
}

.project-card>img {
  height: 245px
}

.project-body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 245px)
}

.project-meta {
  margin-top: auto
}

/* Process — premium connected timeline */
.process-section {
  background: linear-gradient(180deg, #fff, #f6f9ff)
}

.process-grid {
  gap: 18px;
  counter-reset: step
}

.process-grid article {
  padding-top: 34px;
  border-top: 4px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #2f67e7, #ffd21e) border-box
}

.process-grid article:nth-child(even) {
  transform: translateY(20px)
}

.process-grid article:hover {
  box-shadow: 0 22px 46px rgba(9, 25, 59, .1)
}

.process-grid i {
  margin-top: 16px
}

/* Numbers — aligned two-row composition */
.numbers-shell {
  display: block;
  background: rgba(6, 19, 49, .22);
  padding: 0;
  border-radius: 32px;
  overflow: hidden
}

.numbers-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  padding: 38px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(3, 16, 40, .26)
}

.numbers-intro>div {
  max-width: 620px
}

.numbers-intro p {
  max-width: 560px;
  margin: 0
}

.numbers-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .1)
}

.number-card {
  min-height: 180px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 30px;
  background: rgba(4, 19, 51, .22)
}

.number-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .09);
  flex: 0 0 auto
}

.number-card .number-icon i {
  margin: 0
}

.number-card div {
  min-width: 0
}

.number-card strong {
  display:flex;
  font-size: 2rem
}

.number-card span:not(.number-icon) {
  display: block
}

/* Testimonials: 2 cards on desktop, aligned heights */
.testimonial-layout {
  grid-template-columns: minmax(340px, 410px) minmax(0, 1fr);
  align-items: stretch
}

.testimonial-intro,
.testimonial-content {
  height: 100%
}

.testimonial-side-image {
  height: 360px;
  object-position: center 35%
}

.testimonial-swiper {
  width: 100%;
  overflow: hidden
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  min-width: 0
}

.testimonial-card {
  width: 100%;
  min-height: 320px
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.75
}

/* Clients: fully visible static responsive grid */
.clients-section {
  background: #fff
}

.clients-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #f5f8ff;
  border: 1px solid var(--line);
  flex: 0 0 auto
}

.clients-trust-badge i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(47, 103, 231, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary)
}

.clients-trust-badge strong,
.clients-trust-badge small {
  display: block
}

.clients-trust-badge small {
  color: var(--muted);
  font-size: .8rem
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px
}

.client-logo-card {
  width: auto;
  height: 132px;
  padding: 20px;
  transition: .3s ease
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(8, 20, 45, .1);
  border-color: #cddaf2
}

.client-logo-card img {
  max-height: 88px;
  filter: saturate(.98);
  transition: .3s ease
}

/* Contact + FAQ alignment */
.faq-contact-wrap {
  align-items: stretch
}

.faq-contact-wrap>[class*="col-"] {
  display: flex
}

.faq-pane,
.contact-pane {
  width: 100%
}

.contact-pane {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=84');
  background-position: center
}

.contact-form-shell {
  max-width: 650px
}

/* Footer alignment / supplied footer logo */
.footer-top {
  padding-top: 48px
}

.footer-logo img {
  width: auto;
  max-width: 250px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center
}

.site-footer .row>[class*="col-"] {
  min-width: 0
}

.site-footer ul {
  word-break: normal
}

.footer-bottom-wrap {
  min-height: 40px
}

.powered-by a {
  color: var(--yellow);
  transition: .25s ease
}

.powered-by a:hover {
  color: #fff
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}


/* =========================================================
   V5 targeted refinements requested after visual QA
   ========================================================= */

/* Hero visibility + navigation */
.hero-section {
  isolation: isolate
}

.hero-swiper {
  position: relative;
  padding-inline: 58px
}

.hero-slide {
  opacity: 1 !important;
  visibility: visible !important
}

.hero-slide>.row {
  min-height: 520px
}

.hero-copy {
  position: relative;
  z-index: 3
}

.hero-copy h1,
.hero-title {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .14)
}

.hero-copy h1 span,
.hero-title span {
  color: #55a8ff !important
}

.hero-copy p {
  color: rgba(255, 255, 255, .88) !important
}

.hero-media {
  z-index: 2;
  /* background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border-color: rgba(255, 255, 255, .2); */
  box-shadow: 0 34px 70px rgba(0, 0, 0, .28)
}

.hero-media .hero-main-image {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important
}

.hero-machine-card .hero-main-image {
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .28)) !important
}

.hero-main-image.cover-img {
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
  transition: .3s ease
}

.hero-arrow:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow)
}

.hero-prev {
  left: 4px
}

.hero-next {
  right: 4px
}

.hero-pagination {
  position: static !important;
  margin-top: 18px
}

/* About visual: premium framed composition */
.about-visual-v5 {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  padding: 18px 24px 15px 18px
}

.about-image-frame {
  position: relative;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(145deg, #fff, #edf3ff);
  border: 1px solid #d5e1f4;
  box-shadow: 0 28px 65px rgba(10, 31, 83, .15)
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 46%;
  height: 46%;
  border-radius: 32px 0 0 0;
  border-left: 2px solid rgba(47, 103, 231, .2);
  border-top: 2px solid rgba(47, 103, 231, .2);
  pointer-events: none
}

.about-image-v5 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px
}

.about-site-label {
  position: absolute;
  left: 26px;
  top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(7, 23, 51, .82);
  color: #fff;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12)
}

.about-site-label i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 210, 30, .13);
  color: var(--yellow);
  font-size: 1.15rem
}

.about-site-label strong,
.about-site-label small {
  display: block
}

.about-site-label small {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem
}

.experience-seal {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 10px solid #f4f7fd;
  box-shadow: 0 22px 55px rgba(10, 31, 83, .18);
  z-index: 3
}

.experience-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed var(--yellow)
}

.experience-seal strong {
  font-family: "Space Grotesk";
  font-size: 2.35rem;
  line-height: 1;
  color: var(--primary)
}

.experience-seal small {
  position: relative;
  margin-top: 8px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary-dark);
  line-height: 1.35
}

.seal-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(47, 103, 231, .15)
}

.about-mini-metrics {
  position: absolute;
  left: 56px;
  right: 58px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(8, 20, 45, .09);
  z-index: 2
}

.about-mini-metrics>div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 14px;
  border-right: 1px solid var(--line)
}

.about-mini-metrics>div:last-child {
  border-right: 0
}

.about-mini-metrics i {
  color: var(--primary)
}

.about-mini-metrics strong,
.about-mini-metrics small {
  display: block
}

.about-mini-metrics strong {
  font-size: .86rem
}

.about-mini-metrics small {
  font-size: .72rem;
  color: var(--muted)
}

/* Why Choose: completely new 2-column engineering layout */
.why-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%)
}

.why-modern-layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: stretch
}

.why-showcase {
  position: relative;
  min-height: 510px;
  border-radius: 32px;
  overflow: hidden;
  padding: 38px;
  background: linear-gradient(145deg, #071a43, #18439b);
  box-shadow: 0 24px 56px rgba(7, 23, 51, .16);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.why-showcase::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -170px;
  bottom: -170px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .03), 0 0 0 140px rgba(255, 255, 255, .025)
}

.why-showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 470px
}

.why-showcase-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 210, 30, .12);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px
}

.why-showcase h3 {
  font-family: "Space Grotesk";
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
  color: #fff;
  max-width: 470px
}

.why-showcase p {
  color: rgba(255, 255, 255, .76)
}

.why-showcase-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px
}

.why-showcase-stat strong {
  font-family: "Space Grotesk";
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1
}

.why-showcase-stat span {
  max-width: 150px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.35
}

.why-machine-visual {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: 110%;
  margin-top: 0px
}

.why-machine-visual img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, .32))
}

.why-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}

.why-benefit-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dbe4f3;
  box-shadow: 0 14px 34px rgba(9, 25, 59, .065);
  overflow: hidden;
  transition: .35s ease
}

.why-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(9, 25, 59, .11);
  border-color: #c3d4f2
}

.why-benefit-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 103, 231, .11), transparent 68%);
  right: -30px;
  bottom: -30px
}

.why-benefit-card>i {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 103, 231, .11), rgba(255, 210, 30, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 20px
}

.why-benefit-card h3 {
  font-size: 1.1rem
}

.why-benefit-card p {
  margin: 0
}

.benefit-no {
  position: absolute;
  right: 22px;
  top: 20px;
  font-family: "Space Grotesk";
  font-size: 2.2rem;
  font-weight: 700;
  color: #e4ebf8
}

.why-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(8, 20, 45, .055)
}

.why-trust-strip>div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line)
}

.why-trust-strip>div:last-child {
  border-right: 0
}

.why-trust-strip i {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #eef4ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem
}

.why-trust-strip strong,
.why-trust-strip small {
  display: block
}

.why-trust-strip small {
  color: var(--muted);
  font-size: .8rem
}

/* Restore previous compact Metro by the Numbers layout */
.numbers-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #173c96, #2f67e7 58%, #4046d8)
}

.numbers-shell.numbers-classic {
  display: grid !important;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr)) !important;
  gap: 1px !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, .12) !important;
  padding: 0 !important
}

.numbers-classic .numbers-intro,
.numbers-classic .number-card {
  background: rgba(6, 19, 49, .28) !important;
  padding: 30px !important;
  color: #fff !important;
  min-height: 190px !important;
  border: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 8px !important
}

.numbers-classic .numbers-intro {
  display: block !important
}

.numbers-classic .numbers-intro h2 {
  font-size: 2rem;
  color: #fff;
  margin: 10px 0 12px
}

.numbers-classic .numbers-intro p {
  color: rgba(255, 255, 255, .72);
  margin: 0;
  max-width: 330px
}

.numbers-classic .number-card i {
  font-size: 1.5rem;
  color: var(--yellow);
  margin: 0
}

.numbers-classic .number-card strong {
  font-family: "Space Grotesk";
  font-size: 2rem !important;
  line-height: 1 !important;
  color: #fff;
  white-space: nowrap
}

.numbers-classic .number-card>span {
  color: rgba(255, 255, 255, .76);
  font-size: .88rem
}

/* Testimonials: remove image; compact left proof panel */
.testimonial-layout {
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr)
}

.testimonial-intro-clean {
  min-height: 430px;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 38px !important
}

.testimonial-intro-clean h2 {
  font-size: clamp(2.2rem, 3.2vw, 2.0rem)
}

.testimonial-intro-clean p {
  max-width: 310px !important
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: .75;
  color: rgba(255, 210, 30, .9);
  margin: 20px 0 16px
}

.testimonial-proof-list {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: auto
}

.testimonial-proof-list>div {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .09)
}

.testimonial-proof-list strong,
.testimonial-proof-list span {
  display: block
}

.testimonial-proof-list strong {
  font-size: .92rem;
  color: #fff
}

.testimonial-proof-list span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .66)
}

.testimonial-card {
  min-height: 300px
}

/* Clients: return to looping previous carousel style */
.clients-section {
  background: #fff;
  overflow: hidden
}

.clients-marquee {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f9fd);
  padding: 24px 0;
  box-shadow: 0 16px 36px rgba(8, 20, 45, .05)
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: clientMarquee 34s linear infinite;
  will-change: transform
}

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

@keyframes clientMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(calc(-50% - 9px))
  }
}





.experience-seal {
    position: relative !important;
    left: auto !important;
    right: -190px !important;
    top: auto !important;
    bottom: 127px !important;
    transform: none !important;
    margin: -46px auto 0 !important;
    width: 145px !important;
    height: 148px !important;
    z-index: 4 !important;
    box-shadow: 0 18px 38px rgba(8, 20, 45, .18) !important;
}



.clients-marquee .client-logo-card {
  width: 210px !important;
  height: 118px !important;
  flex: 0 0 210px;
  padding: 18px !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(8, 20, 45, .045)
}

.clients-marquee .client-logo-card img {
  max-width: 100%;
  max-height: 104px;
  object-fit: contain
}

/* Bootstrap floating labels on dark contact form: remove white label patch */
.contact-form-shell .form-floating>label,
.contact-form-shell .form-floating>label::after,
.contact-form-shell .form-floating>.form-control~label::after,
.contact-form-shell .form-floating>.form-select~label::after {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .7) !important
}

.contact-form-shell .form-floating>.form-control:focus~label,
.contact-form-shell .form-floating>.form-control:not(:placeholder-shown)~label,
.contact-form-shell .form-floating>.form-select~label {
  color: rgba(255, 255, 255, .75) !important
}

.contact-form-shell .form-floating>.form-control,
.contact-form-shell .form-floating>.form-select {
  background-color: rgba(255, 255, 255, .075) !important;
  color: #fff !important
}

.contact-form-shell .form-floating>.form-select option {
  color: #111;
  background: #fff
}

/* Footer supplied footer logo */
.footer-logo img {
  max-width: 265px;
  max-height: 90px;
  object-fit: contain;
  object-position: left center
}

.hero-machine-card, .hero-photo-card{
  opacity: 1 !important;
}
/* =========================================================
   V6 FINAL UI / ALIGNMENT REFINEMENTS
   ========================================================= */

/* Header navigation: clean underline interaction + active section */
.nav-link{
  background:transparent!important;
  border-radius:0!important;
  color:var(--text)!important;
  padding:12px 13px!important;
  position:relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:13px;
  right:13px;
  bottom:4px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),#66a9ff);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .28s ease;
}
.nav-link:hover,.nav-link.active{color:var(--primary)!important;background:transparent!important}
.nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)}

/* Hero: guarantee one clean slide at a time and keep machine fully visible */
.hero-swiper{
  width:100%;
  max-width:100%;
  padding-inline:0!important;
  overflow:hidden!important;
  position:relative;
}
.hero-swiper .swiper-wrapper{align-items:stretch}
.hero-swiper .swiper-slide{
  width:100%!important;
  max-width:100%!important;
  flex:0 0 100%!important;
  overflow:hidden;
  opacity:1;
}
.hero-slide>.row{width:100%;margin-left:0;margin-right:0}
.hero-slide>.row>[class*="col-"]{min-width:0}
.hero-copy{max-width:650px;padding-left:32px}
.hero-copy h1,.hero-title{
  font-size:clamp(2.55rem,3.35vw,4.25rem)!important;
  color:#fff!important;
  line-height:1.06!important;
  text-shadow:none!important;
}
.hero-copy h1 span,.hero-title span{color:#59a9ff!important}
.hero-copy p{max-width:600px!important;color:rgba(255,255,255,.86)!important}
.hero-media{
  min-height:460px!important;
  overflow:visible!important;
  padding:26px 44px!important;
  box-shadow:none!important;
}
.hero-machine-card .hero-main-image{
  width:100%!important;
  height:auto!important;
  max-height:390px!important;
  object-fit:contain!important;
  object-position:center!important;
  filter:drop-shadow(0 22px 32px rgba(0,0,0,.30))!important;
}
.hero-arrow{top:50%;width:50px;height:50px;background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.24)}
.hero-prev{left:12px}.hero-next{right:12px}

/* Centered section title treatment */
.products-heading,.projects-heading,.clients-heading{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  max-width:900px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.products-heading>div:first-child,.projects-heading>div:first-child,.clients-heading>div:first-child{width:100%}
.products-heading p{max-width:760px;margin:0 auto;color:var(--muted)}
.products-heading .slider-nav,.projects-heading .slider-nav{margin-top:18px;justify-content:center}

/* Products: dark premium image stage */
.products-section{background:linear-gradient(180deg,#fff 0%,#f7f9fd 100%)}
.product-card{border-radius:24px;border:1px solid #dce5f4;box-shadow:0 16px 36px rgba(8,20,45,.07);overflow:hidden}
.product-thumb{
  position:relative;
  height:250px!important;
  padding:22px!important;
  background:linear-gradient(145deg,#071733 0%,#0c2a66 62%,#183f92 100%)!important;
  overflow:hidden;
}
.product-thumb::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  right:-100px;
  top:-110px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 0 0 48px rgba(255,255,255,.025),0 0 0 96px rgba(255,210,30,.025);
}
.product-thumb img{
  position:relative;
  z-index:1;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  mix-blend-mode:normal!important;
  background:#fff;
  border-radius:18px;
  padding:10px;
  box-shadow:0 14px 28px rgba(0,0,0,.16);
}
.product-content{padding:24px!important}
.product-content h3{min-height:auto!important}
.product-content p{min-height:auto!important}
.product-swiper{padding:8px 3px 18px!important}

/* Engineering Capabilities: better image treatment */
.expertise-image-wrap{position:relative;overflow:hidden;background:#071733}
.expertise-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(7,23,51,.06),rgba(7,23,51,.20));
  pointer-events:none;
}
.expertise-image{object-position:center!important;filter:saturate(.92) contrast(1.03)}

/* Featured Projects: centered heading + upgraded carousel cards */
.projects-section{background:linear-gradient(180deg,#f8fbff,#eef4ff)}
.projects-heading{margin-bottom:34px!important}
.project-swiper{padding:8px 4px 22px!important}
.project-card{
  border:0!important;
  border-radius:26px!important;
  background:linear-gradient(180deg,#0a1d47,#071733)!important;
  box-shadow:0 20px 46px rgba(7,23,51,.14)!important;
  overflow:hidden;
  transition:transform .35s ease,box-shadow .35s ease;
}
.project-card:hover{transform:translateY(-6px);box-shadow:0 28px 56px rgba(7,23,51,.20)!important}
.project-card>img{height:260px!important;object-fit:cover;transition:transform .45s ease}
.project-card:hover>img{transform:scale(1.05)}
.project-body{padding:24px!important;height:auto!important;min-height:235px}
.project-body h3{color:#fff!important;margin-bottom:10px}
.project-body p{color:rgba(255,255,255,.72)!important}
.project-meta{border-color:rgba(255,255,255,.13)!important;color:rgba(255,255,255,.65)!important}
.project-card .chip{background:var(--yellow)!important;color:#111!important}
.project-lightbox{background:rgba(7,23,51,.78)!important}
.project-pagination{margin-top:22px!important}

/* Our Clients: centered heading without changing carousel layout */
.clients-heading{margin-bottom:34px!important}
.clients-heading h2{margin-bottom:0}
.clients-marquee{max-width:100%;overflow:hidden!important}

/* Mobile / tablet consistency helpers */
.section-heading h2{margin-bottom:12px}
.section-heading .eyebrow{justify-content:center}



/* =========================================================
   V7 — Product showcase redesign + Why title alignment
========================================================= */
.why-section .why-heading{
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  max-width:980px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  margin-bottom:44px!important;
}
.why-section .why-heading>div{width:100%}
.why-section .why-heading .eyebrow{justify-content:center}
.why-section .why-heading h2{max-width:900px;margin:12px auto 0}

.premium-products-section{
  position:relative;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 8% 14%,rgba(47,103,231,.22),transparent 24%),
    radial-gradient(circle at 93% 80%,rgba(255,210,30,.10),transparent 22%),
    linear-gradient(145deg,#051126 0%,#071c46 50%,#0d2e71 100%)!important;
  color:#fff;
}
.premium-products-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 78%);
}
.product-orbit{position:absolute;border:1px solid rgba(255,255,255,.07);border-radius:50%;pointer-events:none}
.product-orbit-one{width:560px;height:560px;right:-170px;top:140px;box-shadow:0 0 0 70px rgba(255,255,255,.018),0 0 0 140px rgba(47,103,231,.04)}
.product-orbit-two{width:330px;height:330px;left:-160px;bottom:90px;box-shadow:0 0 0 55px rgba(255,210,30,.025),0 0 0 110px rgba(255,255,255,.018)}
.premium-products-section .products-heading{position:relative;z-index:2;margin-bottom:38px!important}
.premium-products-section .products-heading .eyebrow{color:#9ebcff}
.premium-products-section .products-heading h2{color:#fff;margin-top:10px}
.premium-products-section .products-heading h2 span{color:#69a0ff}
.premium-products-section .products-heading p{color:rgba(255,255,255,.70);max-width:780px!important}

.product-feature-spotlight{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(480px,1.12fr);
  gap:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:34px;
  overflow:hidden;
  background:rgba(255,255,255,.055);
  box-shadow:0 30px 80px rgba(0,0,0,.24);
  backdrop-filter:blur(18px);
}
.product-feature-copy{padding:48px 50px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.product-feature-label{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,210,30,.11);border:1px solid rgba(255,210,30,.18);color:var(--yellow);font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em;margin-bottom:18px}
.product-feature-copy h3{font-family:"Space Grotesk","Manrope",sans-serif;color:#fff;font-size:clamp(2rem,3.2vw,3.25rem);letter-spacing:-.03em;margin-bottom:16px}
.product-feature-copy p{color:rgba(255,255,255,.72);font-size:1.02rem;max-width:610px}
.product-feature-points{display:grid;gap:10px;margin:16px 0 26px}
.product-feature-points span{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.86);font-weight:700}
.product-feature-points i{color:var(--yellow)}
.product-feature-visual{position:relative;min-height:460px;padding:38px;background:linear-gradient(135deg,rgba(255,255,255,.06),rgba(47,103,231,.11));display:flex;align-items:center;justify-content:center;overflow:hidden}
.feature-grid-lines{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:38px 38px;mask-image:radial-gradient(circle at center,#000,transparent 78%)}
.feature-index{position:absolute;right:30px;top:18px;font-family:"Space Grotesk";font-weight:700;font-size:6rem;line-height:1;color:rgba(255,255,255,.045)}
.feature-product-stage{position:relative;z-index:2;width:min(520px,88%);height:330px;border-radius:28px;background:linear-gradient(180deg,#fff,#eaf0fb);border:1px solid rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;padding:34px;box-shadow:0 30px 55px rgba(0,0,0,.24);transform:perspective(1000px) rotateY(-4deg) rotateX(2deg)}
.feature-product-stage::after{content:"";position:absolute;left:12%;right:12%;bottom:18px;height:22px;border-radius:50%;background:rgba(12,39,89,.12);filter:blur(12px)}
.feature-product-stage img{position:relative;z-index:2;max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 16px 18px rgba(9,30,70,.16))}
.feature-floating-card{position:absolute;z-index:3;display:flex;gap:11px;align-items:center;max-width:230px;padding:14px 16px;border-radius:17px;background:rgba(5,18,45,.88);border:1px solid rgba(255,255,255,.11);backdrop-filter:blur(12px);box-shadow:0 16px 34px rgba(0,0,0,.20)}
.feature-floating-card i{width:38px;height:38px;border-radius:12px;background:rgba(255,210,30,.12);color:var(--yellow);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.feature-floating-card strong,.feature-floating-card span{display:block}.feature-floating-card strong{font-size:.84rem;color:#fff}.feature-floating-card span{font-size:.72rem;color:rgba(255,255,255,.62)}
.feature-card-one{left:26px;top:28px}.feature-card-two{right:24px;bottom:28px}

.product-range-bar{position:relative;z-index:2;display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin:44px 0 20px}
.product-range-kicker{display:block;color:#91aff2;font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;margin-bottom:5px}
.product-range-bar h3{color:#fff;font-size:1.45rem;margin:0}
.product-slider-nav .swiper-arrow{border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.08);color:#fff;box-shadow:none}
.product-slider-nav .swiper-arrow:hover{background:var(--yellow);border-color:var(--yellow);color:#111}

.premium-product-swiper{position:relative;z-index:2;padding:8px 4px 36px!important;overflow:hidden!important}
.premium-product-swiper .swiper-wrapper{align-items:stretch}
.premium-product-swiper .swiper-slide{height:auto!important;display:flex}
.premium-product-card{width:100%;height:100%;background:rgba(255,255,255,.97)!important;border:1px solid rgba(255,255,255,.20)!important;border-radius:26px!important;overflow:hidden;box-shadow:0 18px 46px rgba(0,0,0,.16)!important;transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}
.premium-product-card:hover{transform:translateY(-7px);box-shadow:0 26px 60px rgba(0,0,0,.26)!important;border-color:rgba(255,210,30,.45)!important}
.premium-product-card .product-thumb{position:relative;height:245px!important;padding:24px!important;background:linear-gradient(145deg,#0b214f 0%,#123b87 100%)!important;overflow:hidden}
.premium-product-card .product-thumb::before{content:"";position:absolute;width:260px;height:260px;border-radius:50%;right:-100px;top:-110px;border:1px solid rgba(255,255,255,.09);box-shadow:0 0 0 46px rgba(255,255,255,.018),0 0 0 92px rgba(255,210,30,.018)}
.premium-product-card .product-thumb::after{content:"";position:absolute;left:26px;right:26px;bottom:18px;height:2px;background:linear-gradient(90deg,transparent,rgba(255,210,30,.7),transparent)}
.premium-product-card .product-thumb img{position:relative;z-index:2;width:100%!important;height:100%!important;object-fit:contain!important;background:rgba(255,255,255,.97)!important;border-radius:18px!important;padding:12px!important;mix-blend-mode:normal!important;box-shadow:0 15px 30px rgba(0,0,0,.20)!important}
.product-number{position:absolute;z-index:3;right:16px;top:12px;color:rgba(255,255,255,.12);font-family:"Space Grotesk";font-size:2.4rem;font-weight:700;line-height:1}
.premium-product-card .product-content{padding:22px 22px 24px!important;background:#fff;gap:9px!important}
.premium-product-card .product-tag{background:#eef3ff!important;color:#3b67db!important;border:1px solid #dfe8fb;letter-spacing:.07em}
.premium-product-card .product-content h3{color:#0b2154!important;font-size:1.08rem!important;min-height:2.5em!important;margin:0!important}
.premium-product-card .product-content p{color:#71809e!important;font-size:.93rem!important;min-height:4.35em!important;margin:0!important}
.premium-product-card .product-content a{margin-top:auto!important;color:#245fe0!important;font-weight:800!important}
.premium-products-section .product-pagination{position:static!important;margin-top:22px!important;padding:0!important}
.premium-products-section .product-pagination .swiper-pagination-bullet{background:rgba(255,255,255,.34)!important}
.premium-products-section .product-pagination .swiper-pagination-bullet-active{background:var(--yellow)!important}


/* =========================================================
   V8 — Restore refined product carousel + supplied hero BG
   ========================================================= */

/* Hero: use the exact user-supplied background artwork. */
.hero-section{
  background-image:url('../assets/images/hero-bg.png')!important;
  background-size:cover!important;
  background-position:center center!important;
  background-repeat:no-repeat!important;
  isolation:isolate;
}
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(3,14,36,.90) 0%,rgba(5,22,52,.72) 42%,rgba(5,22,52,.18) 72%,rgba(5,22,52,.28) 100%);
}
.hero-bg-glow,.hero-bg-rings{display:none!important}
.hero-wrap{position:relative;z-index:2!important}
.hero-copy h1,.hero-title{color:#fff!important;text-shadow:0 3px 24px rgba(0,0,0,.34)!important}
.hero-copy h1 span,.hero-title span{color:#66b4ff!important}
.hero-copy p{color:rgba(255,255,255,.88)!important}
.hero-media{background:transparent!important;border-color:transparent!important}
.hero-machine-card .hero-main-image{filter:drop-shadow(0 24px 34px rgba(0,0,0,.38))!important}
.hero-arrow{background:rgba(6,23,55,.72)!important;border-color:rgba(255,255,255,.24)!important;box-shadow:0 14px 34px rgba(0,0,0,.22)!important}
.hero-arrow:hover{background:var(--yellow)!important;color:#111!important;border-color:var(--yellow)!important}

/* Products: return to the clean V6 carousel concept, refined. */
.products-v8{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 18%,rgba(47,103,231,.075),transparent 24%),
    radial-gradient(circle at 92% 85%,rgba(255,210,30,.065),transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f7f9fd 100%)!important;
  color:var(--text)!important;
}
.products-v8::before{
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  right:-220px;
  top:55px;
  border-radius:50%;
  border:1px solid rgba(47,103,231,.08);
  box-shadow:0 0 0 55px rgba(47,103,231,.025),0 0 0 110px rgba(47,103,231,.018);
  pointer-events:none;
}
.products-v8 .products-heading{
  max-width:900px!important;
  margin:0 auto 4px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  text-align:center!important;
  position:relative;
  z-index:2;
}
.products-v8 .products-heading .eyebrow{color:var(--primary)!important;justify-content:center!important}
.products-v8 .products-heading h2{color:var(--primary-dark)!important;margin:10px 0 12px!important}
.products-v8 .products-heading h2 span{color:var(--primary)!important}
.products-v8 .products-heading p{color:var(--muted)!important;max-width:760px!important;margin:0 auto!important}
.product-heading-nav{margin-top:20px!important;justify-content:center!important}
.products-v8 .product-heading-nav .swiper-arrow{
  width:46px;
  height:46px;
  background:#fff!important;
  border:1px solid #d7e1f2!important;
  color:var(--primary-dark)!important;
  box-shadow:0 10px 24px rgba(9,25,59,.07)!important;
}
.products-v8 .product-heading-nav .swiper-arrow:hover{background:var(--primary)!important;border-color:var(--primary)!important;color:#fff!important}
.product-carousel-shell{
  position:relative;
  z-index:2;
  padding:22px 22px 8px;
  border:1px solid #dbe5f4;
  border-radius:34px;
  background:rgba(255,255,255,.76);
  box-shadow:0 22px 60px rgba(8,20,45,.08);
  backdrop-filter:blur(10px);
}
.products-v8 .product-swiper{overflow:hidden!important;padding:6px 4px 28px!important}
.products-v8 .swiper-wrapper{align-items:stretch}
.products-v8 .swiper-slide{height:auto!important;display:flex}
.products-v8 .product-card{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  border-radius:26px!important;
  overflow:hidden!important;
  background:#fff!important;
  border:1px solid #dbe4f3!important;
  box-shadow:0 14px 36px rgba(8,20,45,.07)!important;
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.products-v8 .product-card:hover{transform:translateY(-7px);border-color:#bfd0f0!important;box-shadow:0 24px 54px rgba(8,20,45,.13)!important}
.products-v8 .product-thumb{
  position:relative;
  height:250px!important;
  padding:24px!important;
  background:linear-gradient(145deg,#071733 0%,#0b2b69 62%,#173f94 100%)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
}
.products-v8 .product-thumb::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  right:-118px;
  top:-122px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 0 0 52px rgba(255,255,255,.022),0 0 0 104px rgba(255,210,30,.024);
}
.products-v8 .product-thumb::after{
  content:"";
  position:absolute;
  left:20%;
  right:20%;
  bottom:17px;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,210,30,.75),transparent);
}
.products-v8 .product-thumb img{
  position:relative;
  z-index:2;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#fff!important;
  border-radius:18px!important;
  padding:12px!important;
  mix-blend-mode:normal!important;
  box-shadow:0 15px 30px rgba(0,0,0,.17)!important;
}
.product-corner-no{
  position:absolute;
  z-index:3;
  top:12px;
  right:16px;
  font-family:"Space Grotesk","Manrope",sans-serif;
  font-size:2.25rem;
  line-height:1;
  font-weight:700;
  color:rgba(255,255,255,.13);
}
.products-v8 .product-content{
  padding:22px 22px 24px!important;
  display:flex!important;
  flex-direction:column!important;
  gap:9px!important;
  flex:1!important;
  background:#fff!important;
}
.products-v8 .product-tag{
  align-self:flex-start;
  padding:6px 11px!important;
  border-radius:999px!important;
  background:#eef3ff!important;
  border:1px solid #dce7fb!important;
  color:#3565de!important;
  font-size:.74rem!important;
  font-weight:800!important;
  text-transform:uppercase!important;
  letter-spacing:.07em!important;
}
.products-v8 .product-content h3{font-size:1.08rem!important;color:#0b2154!important;min-height:2.45em!important;margin:0!important}
.products-v8 .product-content p{font-size:.94rem!important;color:#71809e!important;min-height:4.1em!important;margin:0 0 4px!important}
.products-v8 .product-content a{margin-top:auto!important;color:#245fe0!important;font-weight:800!important;display:inline-flex!important;align-items:center!important;gap:7px!important}
.products-v8 .product-pagination{position:static!important;margin-top:22px!important;padding:0!important}
.products-v8 .product-pagination .swiper-pagination-bullet{background:#b9c7e3!important;opacity:1!important}
.products-v8 .product-pagination .swiper-pagination-bullet-active{background:var(--primary)!important}

/* =========================================================
   V9 FINAL REFINEMENTS
   User-requested mobile alignment + dark product cards
========================================================= */

/* Floating actions: WhatsApp left, back-to-top right */
.floating-whatsapp{
  left:22px !important;
  right:auto !important;
  bottom:24px !important;
  z-index:2600 !important;
}
.back-to-top{
  right:22px !important;
  left:auto !important;
  bottom:24px !important;
  z-index:2600 !important;
}

/* Product cards: full dark industrial treatment */
.products-v8 .product-carousel-shell{
  /* background:linear-gradient(145deg,#061631 0%,#0b2556 56%,#12377e 100%) !important; */
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 28px 70px rgba(8,20,45,.18) !important;
  border-radius:32px !important;
  padding:28px 22px 34px !important;
  overflow:hidden !important;
  position:relative;
}
.products-v8 .product-carousel-shell::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 10%,rgba(47,103,231,.22),transparent 28%),
    radial-gradient(circle at 88% 88%,rgba(255,210,30,.08),transparent 24%);
}
.products-v8 .product-swiper{position:relative;z-index:1;padding:2px 2px 6px !important}
.products-v8 .product-card{
  background:linear-gradient(180deg,#0d285e 0%,#081a3d 100%) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 20px 44px rgba(0,0,0,.20) !important;
  border-radius:24px !important;
  overflow:hidden !important;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease !important;
}
.products-v8 .product-card:hover{
  transform:translateY(-7px) !important;
  border-color:rgba(255,210,30,.45) !important;
  box-shadow:0 28px 56px rgba(0,0,0,.28) !important;
}
.products-v8 .product-thumb{
  background:linear-gradient(145deg,#173b84,#0a204e) !important;
  padding:10px !important;
  height:235px !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
}
.products-v8 .product-thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  background:#fff !important;
  border-radius:18px !important;
  padding:10px !important;
  box-shadow:0 14px 28px rgba(0,0,0,.20) !important;
}
.products-v8 .product-corner-no{
  color:rgba(255,255,255,.14) !important;
}
.products-v8 .product-content{
  background:transparent !important;
  padding:22px 22px 24px !important;
}
.products-v8 .product-tag{
  background:rgba(255,210,30,.12) !important;
  color:var(--yellow) !important;
  border:1px solid rgba(255,210,30,.20) !important;
}
.products-v8 .product-content h3{color:#fff !important}
.products-v8 .product-content p{color:rgba(255,255,255,.70) !important}
.products-v8 .product-content a{color:#72a0ff !important}
.products-v8 .product-content a:hover{color:var(--yellow) !important}
.products-v8 .product-pagination .swiper-pagination-bullet{background:rgba(255,255,255,.4) !important}
.products-v8 .product-pagination .swiper-pagination-bullet-active{background:var(--yellow) !important}

/* Why Choose: remove numeric stat space and keep visual balanced */
.why-showcase-copy{justify-content:center !important}
.why-showcase-stat{display:none !important}

/* Mobile drawer must fully sit above sticky header */
.mobile-offcanvas{
  z-index:3200 !important;
  width:min(92vw,390px) !important;
  max-width:390px !important;
  height:100dvh !important;
  top:0 !important;
}
.offcanvas-backdrop{z-index:3100 !important}
.mobile-offcanvas .offcanvas-header{
  position:sticky;
  top:0;
  z-index:3;
  background:#fff;
  padding:14px 18px;
  border-bottom:1px solid rgba(7,23,51,.08);
}
.mobile-offcanvas .offcanvas-body{overflow-y:auto;padding-bottom:34px}

/* Form labels: remove any white label patch */
.contact-form-shell .form-floating>label,
.contact-form-shell .form-floating>.form-control:focus~label,
.contact-form-shell .form-floating>.form-control:not(:placeholder-shown)~label,
.contact-form-shell .form-floating>.form-select~label{
  background:transparent !important;
  color:rgba(255,255,255,.78) !important;
}
.contact-form-shell .form-floating>label::after{background:transparent !important}




.process-grid article {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-grid article i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;
  color: #3f6df6;

  background: linear-gradient(135deg, #f3f7ff 0%, #fff8d8 100%);
  border: 1px solid #dce3ef;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.process-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(26, 57, 120, 0.12);
}

.process-grid article:hover i {
  background: linear-gradient(135deg, #4169f5, #f3c900);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08) rotate(4deg);
}




.product-list span{
        color: rgba(255, 255, 255, .70) !important;
        font-size: .94rem !important;
}
.products-v8 .product-content p {
 display:none;   
    
}












@media (max-width: 748px) {
.quote-modal .modal-info {
    display:none !important;
}
.quote-modal .modal-header {
    padding: 13px 28px;
    border-bottom: 1px solid #e8eef8;
    background: #fff;
}
.quote-modal .modal-title {
    font-size: 1.4rem;
}
.form-label {
    font-size: 14px;
    margin-top: -12px;
    margin-bottom: -1.5rem;
}
.form-floating>.form-control, .form-floating>.form-select, .quote-modal .form-control{
    border-radius: 16px;
           border: 1px solid rgb(0 0 0 / 22%);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    min-height: 27px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.175rem .75rem;
    font-size: 0.9rem;
}
.needs-validation{
   margin-top: -59px; 
}

}







.modal {
    --bs-modal-zindex: 2155;
}