/* ═══════════════════════════════════════
       DESIGN TOKENS — 50/50 White / Royal Blue
    ═══════════════════════════════════════ */
:root {
  /* Brand blues */
  --royal: #002366;
  /* Royal Blue  — nav, footer, headings   */
  --electric: #0056B3;
  /* Electric Blue — CTAs, highlights       */
  --electric-h: #004494;
  /* Electric hover state                   */
  --electric-glow: rgba(0, 86, 179, .3);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  /* Section backgrounds                    */
  --body-text: #1A1F2E;
  /* Dark text on white backgrounds         */
  --muted-text: #4A5568;
  /* Secondary paragraphs                   */
  --border: rgba(0, 35, 102, .12);

  /* Accent on dark (parallax, progress bar) */
  --accent-light: #5B9BD5;

  --nav-h: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  cursor: none;
  padding-top: env(safe-area-inset-top);
  animation: pageFade 0.5s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════
       CUSTOM CURSOR
    ═══════════════════════════════════════ */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--electric);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none !important;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform, width, height;
}

#cursor.hover {
  width: 44px;
  height: 44px;
  background: rgba(0, 86, 179, .22);
  border: 2px solid var(--electric);
}

#cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--royal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none !important;
  z-index: 1000000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* Mobile Optimization: Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  #cursor,
  #cursor-dot {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}

/* ═══════════════════════════════════════
       SMART NAVBAR  — Royal Blue, hide-on-down
    ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--royal), transparent 15%);
  border-bottom: 3px solid var(--electric);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .35s;
  box-shadow: 0 2px 20px rgba(0, 35, 102, .35);
}

#navbar.nav-hidden {
  transform: translateY(-100%);
}

#navbar.nav-scrolled {
  box-shadow: 0 4px 28px rgba(0, 35, 102, .5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  /* background: var(--electric); border-radius: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  /* box-shadow: 0 0 18px rgba(0,86,179,.6); flex-shrink: 0; */
}

.nav-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #fff;
}

.nav-logo-text span {
  color: rgba(255, 255, 255, .6);
  font-weight: 400;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s;
}

.nav-links>li>a:hover {
  color: #fff;
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nav-links>li>a:hover::after {
  transform: scaleX(1);
}

/* Products dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: none;
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform .2s;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--royal);
  border: 1px solid rgba(255, 255, 255, .15);
  border-top: 3px solid var(--electric);
  border-radius: 12px;
  padding: 8px;
  min-width: 230px;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  box-shadow: 0 12px 40px rgba(0, 35, 102, .5);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  border-radius: 6px;
  transition: background .15s, color .15s;
}

.dropdown-menu a:hover {
  background: var(--electric);
  color: #fff;
}

/* Nav CTA */
.nav-cta {
  background: var(--electric) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .03em;
  box-shadow: 0 0 20px rgba(0, 86, 179, .5);
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s !important;
}

.nav-cta:hover {
  background: var(--electric-h) !important;
  box-shadow: 0 0 32px rgba(0, 86, 179, .75) !important;
  transform: translateY(-1px) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--royal);
  border-bottom: 3px solid var(--electric);
  z-index: 998;
  flex-direction: column;
  padding: 20px 28px 28px;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  box-shadow: 0 8px 24px rgba(0, 35, 102, .5);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-cta {
  background: var(--electric);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 14px;
  padding: 14px !important;
  border-bottom: none !important;
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════
       AWARDS MARQUEE STRIP  — Royal Blue BG
       Sits immediately after navbar (before hero)
    ═══════════════════════════════════════ */
#awards-marquee {
  width: 100%;
  background: var(--royal);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-bottom: 2px solid var(--electric);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

/* Pause on hover */
#awards-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 52px;
  white-space: nowrap;
}

.marquee-item-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.marquee-item-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.marquee-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, .3);
  font-size: 20px;
  font-weight: 100;

}

/* ═══════════════════════════════════════
       HERO — FULL-SCREEN VIDEO, 100% CLEAR
    ═══════════════════════════════════════ */
/* ===================================================
   STABLE HERO SLIDER SECTION (DESKTOP)
   =================================================== */
#hero {
  position: relative;
  width: 100%;
  height: 600px;
  /* Restores your perfect desktop presentation height */
  overflow: hidden;
  background-color: #ffffff;

  /* FIX: Shifts the entire hero section cleanly right below the fixed desktop navbar layout */
  margin-top: 80px;
  /* Adjust this to 70px or 75px if you see a tiny white space line, to match your header perfectly */
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  /* Keeps the entire banner 100% visible with zero cropping */
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* ===================================================
   RESPONSIVE OVERLAP FIX (MOBILE ONLY)
   =================================================== */
@media (max-width: 768px) {
  #hero {
    width: 100%;
    /* Let the height adjust completely dynamically based on the mobile device width */
    height: auto;
    aspect-ratio: 1920 / 900;
    /* This forces the box to be the exact shape of your banner */
    margin-top: 70px;
    /* Keeps it perfectly below the mobile navbar */
    position: relative;
    overflow: hidden;
  }

  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slider .slide {
    /* Now that the container box is the exact ratio of the image, 'cover' fits it 100% perfectly without cropping a single pixel */
    background-size: contain;
    background-position: center center;
  }
}

/* Minimal bottom gradient so the section transition reads cleanly */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 120px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

/* Slide content sits above video */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
  width: 100%;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 88px;
  max-width: 680px;
}

/* Pill tag — T+0.5s — now on white-ish glass */
.hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--royal);
  background: rgba(255, 255, 255, .88);
  border: 1.5px solid var(--electric);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s .5s ease, transform .5s .5s ease;
}

.hero-slide.active .hero-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Title — T+0.8s */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: opacity .65s .8s ease, filter .65s .8s ease, transform .65s .8s ease;
}

.hero-title .accent {
  color: #90C8FF;
}

.hero-slide.active .hero-title {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Desc — T+1.1s */
.hero-desc {
  font-size: clamp(14px, 1.4vw, 16.5px);
  color: rgba(255, 255, 255, .88);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s 1.1s ease, transform .6s 1.1s ease;
}

.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateX(0);
}

/* Button row — T+1.4s */
.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px) scale(.95);
  transition:
    opacity .5s 1.4s cubic-bezier(.34, 1.56, .64, 1),
    transform .5s 1.4s cubic-bezier(.34, 1.56, .64, 1);
}

.hero-slide.active .hero-btn-row {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--electric);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: none;
  box-shadow: 0 4px 20px rgba(0, 86, 179, .55);
  transition: background .2s, box-shadow .2s, transform .18s;
}

.hero-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.hero-btn:hover {
  background: var(--electric-h);
  box-shadow: 0 6px 32px rgba(0, 86, 179, .75);
  transform: translateY(-2px);
}

/* Outlined secondary button */
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  cursor: none;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .18s;
}

.hero-btn-outline svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .28);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: none;
  transition: background .35s, width .35s, border-radius .35s;
}

.dot.active {
  background: var(--electric);
  width: 26px;
  border-radius: 4px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--electric);
  z-index: 10;
  width: 0%;
}

/* Counter */
.hero-counter {
  position: absolute;
  top: 50%;
  right: 52px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
}

.hero-counter-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(rgba(255, 255, 255, .3), transparent);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 42px;
  right: 84px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
}

.scroll-hint span {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(#fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

/* ═══════════════════════════════════════
       SCROLL-REVEAL UTILITY
    ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .10s;
}

.reveal-d2 {
  transition-delay: .20s;
}

.reveal-d3 {
  transition-delay: .30s;
}

.reveal-d4 {
  transition-delay: .40s;
}

.reveal-d5 {
  transition-delay: .50s;
}

/* ═══════════════════════════════════════
       SHARED SECTION TYPOGRAPHY
    ═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.2;
}

.section-title .accent {
  color: var(--electric);
}

.section-sub {
  font-size: 15px;
  color: var(--muted-text);
  margin-top: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}

/* ═══════════════════════════════════════
       PRECISION ENGINEERING HERO SECTION
       (Replaces Track Record / Metrics)
    ═══════════════════════════════════════ */
.precision-hero {
  position: relative;
  background-color: var(--royal);
  background: 
    radial-gradient(ellipse 85% 65% at 80% 50%, rgba(0, 86, 179, 0.42) 0%, transparent 70%),
    radial-gradient(ellipse 70% 55% at 15% 40%, rgba(0, 22, 64, 0.75) 0%, transparent 60%),
    linear-gradient(135deg, #001844 0%, var(--royal) 50%, #001438 100%);
  padding: 100px 80px;
  overflow: hidden;
  color: #FFFFFF;
}

/* Background layers */
.precision-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.precision-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.85;
}

.precision-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 35%, rgba(30, 200, 219, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 25% 65%, rgba(0, 86, 179, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.precision-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 460px);
  gap: 48px 64px;
  align-items: center;
}

/* Left Content Area */
.precision-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.precision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 35, 102, 0.65);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.precision-badge-dot {
  color: #1ec8db;
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(30, 200, 219, 0.8);
}

.precision-badge-text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ec8db;
  white-space: nowrap;
}

.precision-headline {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

.precision-headline .precision-accent {
  color: #1ec8db;
}

.precision-desc {
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 0 36px 0;
  font-weight: 400;
}

.precision-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.precision-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.precision-btn-primary {
  background-color: #1ec8db;
  color: #041220;
  border: 1px solid #1ec8db;
  box-shadow: 0 4px 20px rgba(30, 200, 219, 0.28);
}

.precision-btn-primary:hover {
  background-color: #2fe0f2;
  border-color: #2fe0f2;
  color: #020b14;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 200, 219, 0.42);
}

.precision-btn-secondary {
  background: rgba(0, 35, 102, 0.55);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.precision-btn-secondary:hover {
  background: rgba(30, 200, 219, 0.15);
  border-color: #1ec8db;
  color: #1ec8db;
  transform: translateY(-2px);
}

.precision-btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.precision-btn:hover .precision-btn-arrow {
  transform: translateX(3px);
}

.precision-btn-secondary:hover .precision-btn-arrow {
  transform: translate(2px, -2px);
}

/* Right Content Area: Center-Right Balanced Statistics Panel */
.precision-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* Compact Statistics Panel */
.precision-stats-panel {
  width: 100%;
  max-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0, 26, 77, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0, 18, 55, 0.38);
}

.precision-stat-box {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.precision-stat-box:hover {
  background: rgba(30, 200, 219, 0.06);
}

.precision-stat-box:nth-child(1) {
  border-right: 1px solid rgba(34, 211, 238, 0.15);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.precision-stat-box:nth-child(2) {
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.precision-stat-box:nth-child(3) {
  border-right: 1px solid rgba(34, 211, 238, 0.15);
}

.precision-stat-num {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 800;
  color: #1ec8db;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  display: block;
}

.precision-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
       ENGINEERING STANDARD / CRAFTSMANSHIP
       Between Clientele & Products Strip
    ═══════════════════════════════════════ */
.engineering-standard {
  position: relative;
  background-color: var(--royal);
  padding: 100px 80px;
  overflow: hidden;
  color: #FFFFFF;
}

.engineering-standard-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.engineering-standard-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.85;
}

.engineering-standard-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 12% 25%, rgba(30, 200, 219, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(0, 86, 179, 0.28) 0%, transparent 55%);
}

.engineering-standard-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px 68px;
  align-items: center;
}

/* Left Content Area */
.engineering-standard-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.engineering-standard-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 20px;
}

.engineering-standard-eyebrow .eyebrow-dash {
  font-weight: 900;
  color: #22d3ee;
}

.engineering-standard-headline {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

.engineering-standard-desc {
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 0 36px 0;
  font-weight: 400;
}

.engineering-standard-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.standard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.standard-btn-white {
  background-color: #FFFFFF;
  color: var(--royal);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.standard-btn-white:hover {
  background-color: #F0F5FF;
  color: var(--electric);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.standard-btn-dark {
  background: #031433;
  color: #FFFFFF;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.standard-btn-dark:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.4);
}

.standard-btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.standard-btn-dark:hover .standard-btn-arrow {
  transform: translateX(3px);
}

/* Right Feature Grid (2 x 2) */
.engineering-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.standard-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 18, 55, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 18, 55, 0.3);
  border-color: rgba(34, 211, 238, 0.4);
}

.standard-icon-box {
  width: 44px;
  height: 44px;
  background: #071c42;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #22d3ee;
  flex-shrink: 0;
}

.standard-card-title {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 17.5px;
  color: #0b1d3a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.standard-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* ═══════════════════════════════════════
       INDUSTRIES SERVED
       Between Products Strip & Company Brochure
    ═══════════════════════════════════════ */
.industries-served {
  position: relative;
  background-color: var(--royal);
  padding: 100px 80px;
  overflow: hidden;
  color: #FFFFFF;
}

.industries-served-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.industries-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.85;
}

.industries-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(30, 200, 219, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 86, 179, 0.28) 0%, transparent 55%);
}

.industries-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px 68px;
  align-items: center;
}

/* Left Column */
.industries-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industries-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 20px;
}

.industries-eyebrow .eyebrow-dash {
  font-weight: 900;
  color: #22d3ee;
}

.industries-headline {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

.industries-desc {
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 0 36px 0;
  font-weight: 400;
}

.industries-actions {
  display: flex;
  align-items: center;
}

.industry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #22d3ee;
  color: #021a36;
  border: 1px solid #22d3ee;
  border-radius: 6px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.industry-btn:hover {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #021226;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
}

.industry-btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.industry-btn:hover .industry-btn-arrow {
  transform: translateX(3px);
}

/* Right Column: 2 x 3 Editorial Card Container */
.industries-grid-wrap {
  width: 100%;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(3, 20, 52, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.industry-card {
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:nth-child(2n) {
  border-right: none;
}

.industry-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.industry-card:hover {
  background: rgba(34, 211, 238, 0.05);
}

.industry-title {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #22d3ee;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.industry-text {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ═══════════════════════════════════════
       CATALOG DOWNLOAD SECTION
       Clean White Editorial Section
    ═══════════════════════════════════════ */
#catalog-download {
  background-color: #FFFFFF;
  padding: 100px 80px;
  position: relative;
  border-top: 1px solid #E5E9F0;
  color: var(--body-text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#catalog-download::before {
  display: none;
}

.catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px 72px;
  align-items: center;
}

/* Left Side */
.catalog-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 20px;
}

.catalog-eyebrow .eyebrow-dash {
  font-weight: 900;
  color: var(--electric);
}

.catalog-heading {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #0b1d3a;
  margin: 0 0 24px 0;
}

.catalog-description {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.68;
  color: #4A5568;
  max-width: 540px;
  margin: 0 0 36px 0;
  font-weight: 400;
}

/* 2-Column Feature List */
.catalog-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  width: 100%;
  max-width: 540px;
}

.catalog-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', -apple-system, sans-serif;
}

.catalog-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  flex-shrink: 0;
}

.catalog-feature-text {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.01em;
}

/* Right Side: Request Card */
.catalog-right {
  width: 100%;
}

.catalog-request-card {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 14px;
  padding: 38px 34px;
  box-shadow: 0 8px 30px rgba(0, 35, 102, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-request-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 35, 102, 0.09);
  border-color: #CBD5E1;
}

.catalog-card-label {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 12px;
  display: block;
}

.catalog-card-heading {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0b1d3a;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.catalog-card-desc {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4A5568;
  margin: 0 0 26px 0;
  font-weight: 400;
}

.catalog-request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--electric);
  color: #FFFFFF;
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.catalog-request-btn:hover {
  background: var(--royal);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.35);
}

.catalog-btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.catalog-request-btn:hover .catalog-btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
       PRODUCTS  — Off-White BG
    ═══════════════════════════════════════ */
#products-strip {
  background: var(--off-white);
  padding: 80px 80px;
  overflow: hidden;
}

.products-strip-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: -12px;
}

.products-row::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1.5px ridge var(--electric-h);
  box-shadow: 0 4px 15px rgba(0, 35, 102, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 91, 192, 0.5);
  box-shadow: 0 16px 36px rgba(0, 35, 102, 0.15);
}

.product-img-placeholder {
  height: 250px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: 12px;
  z-index: 2;
  transform: scale(1) translateZ(0);
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-placeholder img {
  transform: scale(1.05);
}

.product-img-placeholder::after {
  display: none;
}

.product-info {
  padding: 24px;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-info h3,
.product-title {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--royal);
  margin: 0;
  line-height: 1.25;
  flex: 1;
}

/* Premium Installed-Count Capsule */
.product-installed-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 86, 179, 0.35);
  border-radius: 6px;
  padding: 4px 9px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 35, 102, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover .product-installed-badge {
  border-color: var(--electric);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.12);
}

.badge-count {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.badge-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  border-left: 1px solid rgba(0, 86, 179, 0.22);
  padding-left: 7px;
}

.badge-installed {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  line-height: 1;
}

.badge-type {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4A5568;
  line-height: 1;
  white-space: nowrap;
}

.product-info p {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 13px;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════
       PRODUCTS CAROUSEL NAVIGATION
    ═══════════════════════════════════════ */
.products-carousel-wrapper {
  position: relative;
  width: 100%;
}

.products-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 35, 102, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  z-index: 10;
  cursor: none;
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.carousel-nav-btn:hover:not(.disabled) {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.25);
}

.carousel-nav-btn.prev-btn:hover:not(.disabled) svg {
  transform: translateX(-2px);
}

.carousel-nav-btn.next-btn:hover:not(.disabled) svg {
  transform: translateX(2px);
}

.carousel-nav-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

@media (min-width: 1025px) {
  .products-carousel-controls {
    margin-bottom: 0;
  }

  .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-nav-btn.prev-btn {
    left: -64px;
  }

  .carousel-nav-btn.next-btn {
    right: -64px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .carousel-nav-btn {
    cursor: pointer !important;
  }
}

/* ═══════════════════════════════════════
       PARALLAX BANNER — between Products & Clients
    ═══════════════════════════════════════ */
#parallax-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -30% 0;
  background:
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80") center center / cover no-repeat;
  will-change: transform;
  transform: translateY(0px);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 20, 60, .88) 0%, rgba(0, 35, 102, .72) 50%, rgba(0, 20, 60, .88) 100%);
}

.parallax-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(91, 155, 213, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 155, 213, .08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px;
  max-width: 860px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.parallax-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.parallax-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #90C8FF;
  background: rgba(0, 86, 179, .2);
  border: 1px solid rgba(91, 155, 213, .4);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.parallax-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.parallax-title .accent {
  color: #90C8FF;
}

.parallax-sub {
  font-size: clamp(14px, 1.5vw, 16.5px);
  color: rgba(255, 255, 255, .65);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto;
}

.parallax-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.parallax-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 40px;
}

.parallax-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.parallax-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.parallax-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.parallax-badge {
  position: absolute;
  z-index: 4;
  top: 36px;
  right: 52px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 22px;
  text-align: center;
}

.parallax-badge-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.parallax-badge-text {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.45;
  display: block;
}

/* ═══════════════════════════════════════
       CLIENTS  — Pure White BG
    ═══════════════════════════════════════ */
#clients {
  background: var(--white);
  padding: 100px 80px;
  border-top: 4px solid var(--border);
}

.clients-header {
  text-align: center;
  margin-bottom: 68px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  box-shadow: 0 2px 10px rgba(0, 35, 102, .04);
  transition: box-shadow .3s, border-color .3s, transform .35s;
  opacity: 0;
  transform: translateY(20px) scale(.95);
}

.client-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.client-card:hover {
  box-shadow: 0 8px 28px rgba(0, 86, 179, .12);
  border-color: var(--electric);
  transform: translateY(-3px) scale(1) !important;
}

.client-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-abbr {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.client-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--body-text);
  text-align: center;
  line-height: 1.4;
}

.client-card.duplicate {
  display: none;
}

@keyframes clientMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
       FOOTER  — Royal Blue
    ═══════════════════════════════════════ */
#footer {
  background: var(--royal);
  padding: 60px 80px 32px;
  border-top: 4px solid var(--electric);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 275px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  /* background: var(--electric); */
  /* border-radius: 9px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.footer-motto {
  font-size: .59rem;
  font-weight: 700;
  color: #f8f9fa;
  line-height: 1.72;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-links-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 11px;
}

.footer-links-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  cursor: none;
  transition: background .2s, color .2s, border-color .2s;
}

.social-btn:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.footer-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-badge span {
  color: #90C8FF;
  font-weight: 700;
}

/* ═══════════════════════════════════════
       WHATSAPP FLOATING BUTTON
    ═══════════════════════════════════════ */
#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}

#whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

#whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .72;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════
       RESPONSIVE DESIGN SYSTEM (320px to 1920px+)
    ═══════════════════════════════════════ */

/* ── Large Desktop / Ultrawide (1600px+) ── */
@media (min-width: 1600px) {
  .precision-hero-container,
  .engineering-standard-container,
  .industries-container,
  .catalog-container {
    max-width: 1400px;
  }
}

/* ── Laptop / Small Desktop (max-width: 1180px) ── */
@media (max-width: 1180px) {
  #navbar {
    padding: 0 32px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content {
    padding: 0 44px;
  }

  .precision-hero,
  .engineering-standard,
  .industries-served,
  #clients,
  #products-strip,
  #catalog-download,
  #footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .precision-hero-container {
    gap: 40px 48px;
  }

  .engineering-standard-container,
  .industries-container {
    gap: 36px 44px;
  }
}

/* ── Tablets Landscape / Small Laptops (max-width: 1024px) ── */
@media (max-width: 1024px) {
  #navbar {
    padding: 0 28px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13.5px;
  }

  #hero {
    height: 480px;
    margin-top: 75px;
  }

  .precision-hero {
    padding: 80px 32px;
  }

  .precision-hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .precision-headline {
    font-size: clamp(32px, 3.8vw, 46px);
  }

  .engineering-standard {
    padding: 80px 32px;
  }

  .engineering-standard-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
  }

  .standard-card {
    padding: 26px 20px;
  }

  .industries-served {
    padding: 80px 32px;
  }

  .industries-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
  }

  .industry-card {
    padding: 26px 22px;
  }

  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .catalog-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Tablets Portrait (max-width: 900px) ── */
@media (max-width: 900px) {
  .precision-hero {
    padding: 72px 28px;
  }

  .precision-hero-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .precision-desc {
    max-width: 100%;
  }

  .precision-right {
    max-width: 100%;
    width: 100%;
  }

  .engineering-standard {
    padding: 72px 28px;
  }

  .engineering-standard-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .industries-served {
    padding: 72px 28px;
  }

  .industries-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Mobile Devices & Small Tablets (max-width: 768px) ── */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-dot {
    display: none !important;
  }

  #navbar {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8.5;
    min-height: 210px;
    margin-top: var(--nav-h);
    position: relative;
    overflow: hidden;
  }

  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slider .slide {
    background-size: contain;
    background-position: center center;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-counter,
  .scroll-hint {
    display: none;
  }

  .hero-btn-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .precision-hero {
    padding: 60px 20px;
  }

  .precision-badge {
    margin-bottom: 18px;
    padding: 5px 14px;
  }

  .precision-badge-text {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .precision-headline {
    font-size: clamp(28px, 7.2vw, 38px);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .precision-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .precision-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .precision-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    text-align: center;
  }

  .precision-stats-panel {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .precision-stat-box {
    padding: 20px 16px;
  }

  .engineering-standard-eyebrow {
    margin-bottom: 16px;
    font-size: 10.5px;
  }

  .engineering-standard-headline {
    font-size: clamp(28px, 7.2vw, 38px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .engineering-standard-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .engineering-standard-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .engineering-standard-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .standard-card {
    padding: 24px 20px;
  }

  .industries-eyebrow {
    margin-bottom: 16px;
    font-size: 10.5px;
  }

  .industries-headline {
    font-size: clamp(28px, 7.2vw, 38px);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .industries-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .industries-actions {
    width: 100%;
  }

  .industry-btn {
    width: 100%;
    text-align: center;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
    width: 100%;
  }

  .industry-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
  }

  .industry-card:last-child {
    border-bottom: none;
  }

  #catalog-download {
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .catalog-request-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 14.5px;
    text-align: center;
    justify-content: center;
  }

  #products-strip {
    padding: 60px 20px;
  }

  .products-carousel-wrapper {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }

  .products-carousel-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 18px 0 0 0 !important;
    gap: 16px !important;
  }

  .carousel-nav-btn {
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
  }

  .product-img-placeholder {
    height: 200px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .products-row {
    grid-template-columns: 1fr;
  }

  #clients {
    padding: 68px 0;
    overflow: hidden;
  }

  .clients-header {
    padding: 0 20px;
  }

  .clients-grid {
    display: flex;
    width: max-content;
    gap: 20px;
    padding-right: 20px;
    animation: clientMarquee 18s linear infinite;
  }

  .clients-grid:hover {
    animation-play-state: paused;
  }

  .client-card {
    flex: 0 0 160px;
    margin: 0;
  }

  .client-card.duplicate {
    display: flex;
  }

  #footer {
    padding: 44px 20px 24px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  #whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  #parallax-banner {
    height: auto;
    min-height: 420px;
  }

  .parallax-badge {
    display: none;
  }

  .parallax-stat {
    padding: 0 20px;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 30px;
  }

  .precision-hero {
    padding: 48px 16px;
  }

  .precision-headline {
    font-size: 28px;
  }

  .precision-stat-box {
    padding: 16px 12px;
  }

  .precision-stat-num {
    font-size: 24px;
  }

  .engineering-standard {
    padding: 48px 16px;
  }

  .engineering-standard-headline {
    font-size: 27px;
  }

  .standard-card {
    padding: 20px 16px;
  }

  .industries-served {
    padding: 48px 16px;
  }

  .industries-headline {
    font-size: 27px;
  }

  .industry-card {
    padding: 20px 16px;
  }

  #catalog-download {
    padding: 48px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .catalog-container {
    gap: 28px;
    width: 100%;
  }

  .catalog-heading {
    font-size: clamp(23px, 7vw, 28px);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .catalog-description {
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 20px;
  }

  .catalog-request-card {
    padding: 24px 16px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .catalog-request-btn {
    padding: 13px 16px;
    font-size: 14px;
  }

  .product-header {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===================================================
   GLOBAL IMAGE PROTECTION (KILLS COPY & DRAG)
   =================================================== */
img {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  pointer-events: none !important;
  /* Completely blocks right-click 'Copy Image' options */
}

/* Ensure our hover zoom still works perfectly since pointer-events are disabled on the img itself */
.product-card:hover img {
  transform: scale(1.05);
}

/* ===================================================
   GLOBAL WATERMARK SYSTEM
   =================================================== */
/* Reusable watermark classes */
.watermarked-diagram,
.gallery-slide,
.gie-lb-inner {
  position: relative;
  overflow: hidden;
}

.watermarked-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

.watermarked-image img {
  display: block;
}

/* Watermark pseudo-elements for informational & content image containers */
.watermarked-diagram::after,
.watermarked-image::after,
.diagram-card::after,
.gp-image-wrapper::after,
.gie-award-card::before,
.gie-cert-card::after,
.gie-cert-img-wrap::after,
.gie-scrap-photo::after,
.gie-expo-card::after,
.product-img-placeholder::before,
.card-image::after,
.modal-hero::before,
.gie-hero-img-wrap::before,
.gallery-slide::after,
.gie-lb-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Ctext x='50%25' y='50%25' fill='%23002366' font-family='sans-serif' font-weight='800' font-size='14' text-anchor='middle' transform='rotate(-20 100 100)' fill-opacity='0.35'%3E© GAYATRI INDUSTRIAL ENGINEERS%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: clamp(110px, 11vw, 175px) clamp(110px, 11vw, 175px);
}

/* Ensure captions and text overlays render above the watermark */
.diagram-card-caption,
.gie-award-overlay,
.gie-expo-overlay,
.card-category {
  z-index: 4;
}
