/* ==========================================================================
   AIRTECH ENGINEERING — style.css
   Premium Industrial Modern UI
   Fonts  : Big Shoulders Display (bold headings) · Manrope (body) · Caveat (cursive)
   Colors : Yellow #FFF44E · Gold #FFD301 · Light Gray #F2F3F4
            Cyan #00B9FC · Blue #246BCF · Dark Navy text
   ========================================================================== */

/* ---------- 0. THEME VARIABLES ---------- */
:root {
  --yellow: #FFF44E;
  --gold:   #FFD301;
  --gray:   #F2F3F4;
  --cyan:   #00B9FC;
  --blue:   #246BCF;
  --navy:   #0A1A3C;       /* dark navy text */
  --navy-2: #0E2250;       /* section navy   */
  --navy-3: #061226;       /* footer navy    */
  --white:  #FFFFFF;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-cursive: 'Caveat', cursive;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(10, 26, 60, .12);
  --shadow-lg: 0 28px 70px rgba(10, 26, 60, .2);
  --transition: .35s cubic-bezier(.22, .9, .35, 1);
}

/* ---------- 1. RESET / BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* offset for sticky header */
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section { padding: 96px 0; position: relative; overflow: hidden; }

/* Hide native cursor only when custom cursor is active (set by JS on desktop) */
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- 2. TYPOGRAPHY HELPERS ---------- */
.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
}
.section__title--light { color: var(--white); }

/* Cursive accent (Caveat) */
.cursive {
  font-family: var(--font-cursive);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: .82em;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.cursive--blue { color: var(--blue); }
.cursive--gold { color: var(--gold); }

/* Outlined "stroke" text effect */
.stroke-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
}
.stroke-text--gold { -webkit-text-stroke: 2px var(--gold); }
.stroke-text--blue { -webkit-text-stroke: 2px var(--blue); }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(36, 107, 207, .09);
  border: 1.5px solid rgba(36, 107, 207, .25);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow--light {
  color: var(--gold);
  background: rgba(255, 211, 1, .1);
  border-color: rgba(255, 211, 1, .35);
}
.eyebrow__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 185, 252, .55); }
  70%  { box-shadow: 0 0 0 11px rgba(0, 185, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 185, 252, 0); }
}

.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }

/* ---------- 3. BUTTONS (with shine animation) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .4px;
  padding: 16px 30px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; transition: transform .3s; }
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.btn:hover svg { transform: translateX(5px); }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 28px rgba(255, 211, 1, .4); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 28px rgba(36, 107, 207, .4); }
.btn--navy { background: var(--navy); color: var(--white); box-shadow: 0 10px 28px rgba(10, 26, 60, .35); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2.5px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-light { color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--full { width: 100%; justify-content: center; }

/* Shine sweep */
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  animation: shine 3.2s infinite;
}
@keyframes shine {
  0%, 55% { left: -80%; }
  100%    { left: 160%; }
}

/* ---------- 4. PRELOADER (light background : logo + loader bar) ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--gray) 60%, #E9F4FE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: min(220px, 55vw);
  animation: logoBreathe 1.6s ease-in-out infinite alternate;
}
/* Text fallback shown only if media/logo.png is missing */
.preloader__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
  text-align: center;
  animation: logoBreathe 1.6s ease-in-out infinite alternate;
}
.preloader__text span { color: var(--blue); }
.preloader__text small {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 7px;
  color: var(--cyan);
  margin-top: 8px;
}
/* Loader bar — brand gradient sweeping across a light track */
.preloader__bar {
  width: min(240px, 60vw);
  height: 6px;
  border-radius: 100px;
  background: rgba(10, 26, 60, .1);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--blue));
  animation: loadSweep 1.2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes logoBreathe { from { transform: scale(.96); opacity: .85; } to { transform: scale(1.04); opacity: 1; } }
@keyframes loadSweep {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(280%); }
}

/* ---------- 5. CUSTOM CURSOR (desktop only) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  display: none; /* enabled by JS on fine pointers */
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 9px; height: 9px;
  background: var(--blue);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 2px solid var(--cyan);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.is-hover {
  width: 62px; height: 62px;
  border-color: var(--gold);
  background: rgba(255, 211, 1, .12);
}

/* ---------- 6. TOP STRIP ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
  padding: 9px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contacts { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  transition: color .25s;
}
.topbar__item:hover { color: var(--gold); }
.topbar__item svg { width: 15px; height: 15px; fill: var(--cyan); }
.topbar__socials { display: flex; align-items: center; gap: 12px; }
.topbar__follow { font-weight: 700; color: var(--gold); letter-spacing: .5px; }
.topbar__socials a {
  display: grid;
  place-items: center;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background .25s, transform .25s;
}
.topbar__socials a:hover { background: var(--cyan); transform: translateY(-3px); }
.topbar__socials svg { width: 13px; height: 13px; fill: var(--white); }

/* ---------- 7. HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gray); /* light but NOT pure white */
  border-bottom: 1px solid rgba(10, 26, 60, .08);
  transition: box-shadow .3s, background .3s;
}
.header.is-stuck { box-shadow: 0 10px 35px rgba(10, 26, 60, .12); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__img { height: 56px; width: auto; }
.logo__text { flex-direction: column; line-height: 1; }
.logo__text strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 1px;
  color: var(--navy);
}
.logo__text strong em { font-style: normal; color: var(--blue); }
.logo__text small {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 5.5px;
  color: var(--cyan);
  margin-top: 3px;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 15px;
  border-radius: 9px;
  color: var(--navy);
  transition: color .25s, background .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav__link:hover, .nav__link.is-active { color: var(--blue); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  padding: 6px;
}
.hamburger span {
  width: 27px; height: 3.2px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8.7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8.7px) rotate(-45deg); }

/* ---------- 8. PLACEHOLDER BOXES (replace with real images later) ---------- */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(36,107,207,.05) 0 14px, rgba(36,107,207,.1) 14px 28px),
    linear-gradient(135deg, #E3ECF9, #F2F3F4);
  border: 2.5px dashed rgba(36, 107, 207, .45);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: 1px;
  padding: 16px;
}
.ph svg { width: 46px; height: 46px; fill: rgba(36, 107, 207, .55); }
.ph small { font-weight: 600; letter-spacing: .3px; color: #4A5E85; text-transform: none; }

/* ---------- 9. HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(0, 185, 252, .14), transparent),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(255, 244, 78, .25), transparent),
    linear-gradient(160deg, #EAF1FC 0%, #F6F9FF 55%, #EAF7FF 100%);
  padding: 90px 0 110px;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Background video — fills the hero, sits below the overlay */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Very slight black gradient overlay over the video — improves text contrast */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, .35) 0%,
    rgba(0, 0, 0, .12) 50%,
    rgba(0, 0, 0, .35) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
/* Centered content block over the clean video */
.hero__content {
  max-width: 840px;
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 4px 26px rgba(6, 18, 38, .65), 0 2px 6px rgba(6, 18, 38, .5);
  margin-bottom: 24px;
}
.hero__title .stroke-text {
  -webkit-text-stroke: 2px var(--gold);
  text-shadow: none;
}
.hero__title .cursive {
  font-size: .72em;
  color: var(--yellow);
  text-shadow: 2px 2px 0 rgba(6, 18, 38, .55);
}
.hero__desc {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(6, 18, 38, .75), 0 1px 3px rgba(6, 18, 38, .6);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__desc strong { color: var(--yellow); }
/* Eyebrow + outline button restyled for legibility on the video */
.hero .eyebrow {
  color: var(--white);
  background: rgba(6, 18, 38, .45);
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
}
.hero .btn--outline { color: var(--white); border-color: var(--white); background: rgba(6, 18, 38, .3); }
.hero .btn--outline:hover { background: var(--white); color: var(--navy); }
.hero .btn--outline svg { fill: currentColor; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Floating decorative shapes (used in the banner section) */
.shape { position: absolute; pointer-events: none; z-index: 1; }
.shape--ring {
  width: 130px; height: 130px;
  border: 14px solid rgba(0, 185, 252, .25);
  border-radius: 50%;
  top: 9%; left: 44%;
}
.shape--ring-light { border-color: rgba(255,255,255,.14); top: 12%; left: 6%; }
.shape--dot {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  bottom: 16%; left: 4%;
  opacity: .8;
}
.shape--dot-gold { right: 8%; left: auto; bottom: 12%; }

/* Floating animations */
.float-a { animation: floatA 5.5s ease-in-out infinite; }
.float-b { animation: floatB 6.5s ease-in-out infinite; }
.float-c { animation: floatA 7.5s ease-in-out infinite reverse; }
.spin    { animation: spin 14s linear infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(14px) rotate(3deg); }
}

/* ---------- 10. MARQUEE STRIPS ---------- */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.marquee--gold {
  background: var(--gold);
  transform: rotate(-1.2deg) scale(1.02);
  margin-top: -14px;
  box-shadow: 0 14px 35px rgba(255, 211, 1, .35);
}
.marquee--cyan { background: var(--cyan); }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.marquee--cyan .marquee__track span { color: var(--white); }
.marquee__track i { font-style: normal; font-size: 1.1rem; color: var(--navy); }
.marquee--cyan .marquee__track i { color: var(--yellow); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 11. ABOUT (background: white) ---------- */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  padding: 30px 0 64px; /* room for the badge (top) and founder overlap (bottom) */
}
/* Decorative gold offset frame behind the photos */
.about__frame {
  position: absolute;
  top: 0; right: 4%;
  width: 56%; height: 54%;
  border: 4px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}
/* Main company photo */
.about__img-main {
  position: relative;
  z-index: 1;
  width: 84%;
  aspect-ratio: 4 / 4.6;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* Founder photo — overlapping card, bottom-right */
.about__img-founder {
  position: absolute;
  z-index: 2;
  right: 0; bottom: 0;
  width: 46%;
  aspect-ratio: 3 / 3.6;
  margin: 0;
  border: 6px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-main img,
.about__img-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.about__img-main:hover img,
.about__img-founder:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute;
  z-index: 3;
  top: 6px; left: -16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border-bottom: 5px solid var(--gold);
  animation: floatA 6s ease-in-out infinite;
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about__badge span { font-size: .8rem; font-weight: 700; line-height: 1.3; }

.about__content .section__title { margin-bottom: 22px; }
.about__content p { margin-bottom: 16px; color: #233453; font-weight: 500; }
.about__list { margin: 22px 0 30px; display: grid; gap: 12px; }
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.about__list li span {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.about__list li span svg { width: 14px; height: 14px; fill: var(--navy); }
.about__cta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.about__phone { display: flex; align-items: center; gap: 12px; }
.about__phone svg {
  width: 46px; height: 46px;
  padding: 11px;
  fill: var(--white);
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 185, 252, .4);
}
.about__phone small { display: block; font-weight: 600; color: #44598a; font-size: .75rem; }
.about__phone strong { font-size: 1.1rem; font-weight: 800; }

/* ---------- 11b. STATS STRIP (background: blue gradient) ---------- */
.stats {
  background:
    radial-gradient(ellipse 50% 80% at 12% 10%, rgba(0, 185, 252, .3), transparent),
    radial-gradient(ellipse 45% 70% at 90% 90%, rgba(255, 211, 1, .14), transparent),
    linear-gradient(120deg, var(--navy-2) 0%, var(--blue) 100%);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stats__item {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
/* divider between items */
.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  width: 1.5px; height: 64%;
  background: rgba(255, 255, 255, .18);
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stats__num i { font-style: normal; color: var(--white); }
.stats__label {
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #D9E6FB;
}

/* ---------- 12. WHY CHOOSE US (background: navy) ---------- */
.why {
  background: #EDF2FF;
  padding-bottom: 0; /* section ends right after the cards — no colored band below */
}
.why__carousel { overflow: hidden; } /* no edge fade — cards run clean to both sides */
.clients__carousel, .testi__carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.why__track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 0 34px; /* bottom room so card shadows fade out inside the section */
  animation: marquee 32s linear infinite;
}
.why__carousel:hover .why__track { animation-play-state: paused; }

.why-card {
  position: relative;
  width: 320px;
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--navy);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 26, 60, .08);
}
/* Moving outline — a rotating conic gradient behind the card surface */
.why-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 170%;
  aspect-ratio: 1;
  translate: -50% -50%;
  background: conic-gradient(
    transparent 0deg,
    var(--cyan) 60deg,
    var(--blue) 120deg,
    var(--gold) 180deg,
    transparent 240deg);
  animation: spin 4.5s linear infinite;
}
/* Card surface — sits 1.5px inside, revealing the rotating gradient as a thin outline */
.why-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: #FFF9EA; /* light cream */
  border-radius: calc(var(--radius) - 1.5px);
}
.why-card > * { position: relative; z-index: 1; } /* content above the outline layers */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.why-card__num {
  position: absolute;
  top: 10px; right: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 26, 60, .18);
}
.why-card__ic {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(0, 185, 252, .35);
}
.why-card__ic svg { width: 29px; height: 29px; fill: var(--white); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--blue);
}
.why-card p { font-size: .92rem; font-weight: 500; color: #36486B; }

/* ---------- 12b. TRENDING PRODUCTS (background: light mint) — moves LEFT ➜ RIGHT ---------- */
.trending {
  background: #E9FBF3; /* light mint — distinct from neighbouring sections */
  padding: 76px 0 0;   /* tight bottom — track carries its own shadow room */
}
.trend__carousel { overflow: hidden; }
.trend__track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 0 40px;
  animation: marquee 38s linear infinite reverse; /* left ➜ right, smooth infinite loop */
}
.trend__carousel:hover .trend__track { animation-play-state: paused; }
.trend-card {
  position: relative;
  width: 280px;
  border-radius: var(--radius);
  padding: 14px 14px 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 26, 60, .08);
  transition: transform var(--transition), box-shadow var(--transition);
}
/* Moving outline — rotating conic gradient behind the card surface */
.trend-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 220%;
  aspect-ratio: 1;
  translate: -50% -50%;
  background: conic-gradient(
    transparent 0deg,
    var(--cyan) 60deg,
    var(--blue) 120deg,
    var(--gold) 180deg,
    transparent 240deg);
  animation: spin 4.5s linear infinite;
}
/* Card surface — light cream, 1.5px inside, revealing a thin moving outline */
.trend-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: #FFF9EA;
  border-radius: calc(var(--radius) - 1.5px);
}
.trend-card > * { position: relative; z-index: 1; } /* content above outline layers */
.trend-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.trend-card__media {
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}
.trend-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.trend-card:hover .trend-card__img { transform: scale(1.06); }
.trend-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(255, 211, 1, .5);
}
.trend-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 0 8px;
}
.trend-card p {
  font-size: .85rem;
  font-weight: 600;
  color: #36486B;
  padding: 0 8px;
  margin: 4px 0 14px;
}
.trend-card .p-card__link { padding: 0 8px; font-size: .82rem; }

/* ---------- 13. HAPPY CLIENTS (background: light gray) — moves RIGHT ➜ LEFT ---------- */
.clients { background: var(--gray); padding-top: 36px; }
.clients__track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 30s linear infinite; /* right ➜ left */
}
.clients__carousel:hover .clients__track { animation-play-state: paused; }
.clients--ltr .clients__track { animation-direction: reverse; } /* left ➜ right */
/* Brand logo chips */
.client-logo {
  display: grid;
  grid-template-rows: 1fr;    /* definite track so the img's height:100% = chip content box */
  grid-template-columns: 1fr;
  place-items: center;
  width: 250px;
  height: 140px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(10, 26, 60, .08);
  border-bottom: 5px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.client-logo:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--cyan);
  box-shadow: var(--shadow-lg);
}
.client-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;   /* allow the 1fr track to shrink the img below its intrinsic size */
  min-height: 0;
  object-fit: contain; /* letterbox inside the chip — tall logos can no longer overflow */
  display: block;
}

/* ---------- 14. PRODUCTS (background: soft cyan tint) ---------- */
.products {
  background:
    radial-gradient(ellipse 45% 40% at 95% 5%, rgba(255, 244, 78, .3), transparent),
    linear-gradient(180deg, #E8F7FE 0%, #F3FBFF 100%);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.p-card {
  position: relative;
  background: #FFF9EA; /* light cream — matches the Why Choose Us cards */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(10, 26, 60, .09);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
/* Moving outline — rotating conic gradient behind the card surface */
.p-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 220%; /* large enough to cover the tall card while rotating */
  aspect-ratio: 1;
  translate: -50% -50%;
  background: conic-gradient(
    transparent 0deg,
    var(--cyan) 60deg,
    var(--blue) 120deg,
    var(--gold) 180deg,
    transparent 240deg);
  animation: spin 4.5s linear infinite;
}
/* Card surface — 1.5px inside, revealing the gradient as a thin moving outline */
.p-card::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: #FFF9EA;
  border-radius: calc(var(--radius) - 1.5px);
}
.p-card > * { position: relative; z-index: 1; } /* content above the outline layers */
.p-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.p-card__media { position: relative; padding: 14px 14px 0; overflow: hidden; }
.ph--product { aspect-ratio: 4 / 3; } /* placeholder frame for products without images yet */
.p-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.p-card:hover .p-card__img { transform: scale(1.05); }
.p-card__tag {
  position: absolute;
  top: 26px; left: 26px;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(255, 211, 1, .5);
}
.p-card__tag--cyan { background: var(--cyan); color: var(--white); box-shadow: 0 6px 16px rgba(0, 185, 252, .5); }
.p-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.p-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.p-card__body p { font-size: .92rem; font-weight: 500; color: #36486B; margin-bottom: 18px; flex: 1; }
.p-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--blue);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .25s, color .25s;
}
.p-card__link svg { width: 17px; height: 17px; fill: currentColor; }
.p-card__link:hover { gap: 14px; color: var(--cyan); }

/* View-more button row under the products grid */
.products__more { display: flex; justify-content: center; margin-top: 46px; }

/* ---------- 15. BANNER CTA (background: blue gradient) ---------- */
.banner {
  background:
    radial-gradient(ellipse 55% 65% at 15% 20%, rgba(0, 185, 252, .35), transparent),
    linear-gradient(120deg, #1A4FA0 0%, var(--blue) 55%, #0E2F66 100%);
  color: var(--white);
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.banner__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.banner__content p { font-size: 1.05rem; font-weight: 500; color: #DCE9FD; margin-bottom: 30px; max-width: 520px; }
.banner__content strong { color: var(--yellow); }
/* YouTube video : thumbnail facade → iframe on click */
.banner__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, .25);
}
.banner__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.banner__video:hover .banner__thumb { transform: scale(1.04); }
.banner__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 211, 1, .5);
  animation: playPulse 1.8s infinite;
  transition: background .25s;
}
.banner__play:hover { background: var(--yellow); }
.banner__play svg { width: 32px; height: 32px; fill: var(--navy); }
.banner__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 211, 1, .55); }
  100% { box-shadow: 0 0 0 26px rgba(255, 211, 1, 0); }
}

/* ---------- 16. FAQ (background: soft yellow tint) ---------- */
.faq { background: linear-gradient(180deg, #FFFBE0 0%, #FFF7C8 100%); }
.faq__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.faq__head { position: sticky; top: 120px; }
.faq__sub { margin-top: 18px; font-weight: 600; color: #36486B; }
.faq__sub a { color: var(--blue); font-weight: 800; text-decoration: underline; }
.faq__art {
  display: inline-grid;
  place-items: center;
  width: 96px; height: 96px;
  margin-top: 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(36, 107, 207, .35);
}
.faq__art svg { width: 46px; height: 46px; fill: var(--white); }

.faq__list { display: grid; gap: 16px; }
.faq-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 26, 60, .08);
  border: 1.5px solid rgba(10, 26, 60, .08);
}
/* QUESTION : navy background */
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: var(--navy);          /* question bg  */
  color: var(--white);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 20px 24px;
  transition: background .3s;
}
.faq-item__q:hover { background: var(--navy-2); }
.faq-item__icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform .35s;
}
/* ANSWER : white background (different from question) */
.faq-item__a {
  background: var(--white);          /* answer bg — different color */
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}
.faq-item__a p {
  padding: 20px 24px;
  font-weight: 500;
  color: #2A3C61;
  border-top: 3px solid var(--cyan);
}
.faq-item.is-open .faq-item__a { max-height: 300px; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

/* ---------- 17. TESTIMONIALS (background: deep navy) ---------- */
.testimonials {
  background:
    radial-gradient(ellipse 60% 55% at 10% 10%, rgba(36, 107, 207, .3), transparent),
    radial-gradient(ellipse 45% 50% at 95% 90%, rgba(0, 185, 252, .15), transparent),
    var(--navy);
}
.testi__track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 60s linear infinite;
}
.testi__carousel:hover .testi__track { animation-play-state: paused; }
.t-card {
  width: 360px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.t-card:hover { transform: translateY(-8px); border-color: var(--cyan); background: rgba(0, 185, 252, .1); }
.t-card__stars { display: flex; gap: 4px; margin-bottom: 14px; }
.t-card__stars svg { width: 17px; height: 17px; fill: var(--gold); }
.t-card p { font-size: .95rem; font-weight: 500; color: #E2EAF9; flex: 1; margin-bottom: 20px; }
.t-card footer { display: flex; align-items: center; gap: 13px; }
/* Profile icon badge */
.t-card__avatar {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 2px solid rgba(255, 255, 255, .35);
  box-shadow: 0 8px 18px rgba(0, 185, 252, .35);
}
.t-card__avatar svg { width: 24px; height: 24px; fill: var(--white); }
.t-card h4 { font-size: .98rem; font-weight: 800; color: var(--gold); }
.t-card small { font-size: .78rem; font-weight: 600; color: #A9BCE0; }

/* ---------- 18. CONTACT (background: light gray) ---------- */
.contact { background: var(--gray); }
.contact__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.contact__list { display: grid; gap: 22px; margin-bottom: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(36, 107, 207, .35);
}
.contact__ic svg { width: 23px; height: 23px; fill: var(--white); }
.contact__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact__list p { font-weight: 600; color: #2A3C61; font-size: .95rem; }
.contact__list a:hover { color: var(--blue); text-decoration: underline; }
.contact__map {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Contact form card */
.contact__form-wrap {
  background: var(--white);
  border-radius: 22px;
  padding: 42px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 26px;
}
.contact__form-title .cursive { font-size: .95em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray);
  border: 2px solid transparent;
  border-radius: 11px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 107, 207, .14);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #7C8BA8; font-weight: 500; }
.form-success {
  display: none;
  margin-top: 16px;
  background: #E5F9EE;
  border: 1.5px solid #2EAD64;
  color: #19713D;
  font-weight: 700;
  border-radius: 11px;
  padding: 14px 18px;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; animation: fadeUp .5s ease; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; fill: #19713D; }

/* ---------- 19. FOOTER (background: deepest navy) ---------- */
.footer {
  background:
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(36, 107, 207, .25), transparent),
    var(--navy-3);
  color: #C7D4EC;
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1.1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.logo--footer { margin-bottom: 18px; }
/* Dark-blue logo art needs a light chip to stay visible on the navy footer */
.logo--footer .logo__img {
  height: 64px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}
.logo--footer .logo__text strong { color: var(--white); }
.footer__col--brand p { font-size: .92rem; font-weight: 500; margin-bottom: 22px; }
.footer__tagline {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: -12px;
}
.footer__socials { display: flex; gap: 11px; }
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  transition: background .25s, transform .25s;
}
.footer__socials a:hover { background: var(--blue); transform: translateY(-4px); }
.footer__socials svg { width: 17px; height: 17px; fill: var(--white); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}
.footer__col ul { display: grid; gap: 11px; }
.footer__col ul a {
  font-size: .92rem;
  font-weight: 600;
  transition: color .25s, padding-left .25s;
}
.footer__col ul a:hover { color: var(--gold); padding-left: 7px; }
.footer__contact li {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact li svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  fill: var(--cyan);
  margin-top: 3px;
}
.footer__contact a:hover { color: var(--gold); }

/* QR block */
.footer__qr {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px;
}
.footer__qr-img {
  width: 86px; height: 86px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 5px;
}
.footer__qr p { font-size: .85rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.footer__qr strong { color: #25D366; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
  font-weight: 600;
}
.footer__bottom strong { color: var(--gold); }
/* Admin Login button (clearly visible in the footer bottom bar) */
.footer__admin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), #FFB300);
  color: var(--navy);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .3px;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(255, 211, 1, .28);
  transition: transform .2s, box-shadow .2s;
}
.footer__admin svg { width: 14px; height: 14px; fill: var(--navy); }
.footer__admin:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 211, 1, .45); color: var(--navy); }
/* Designer credit — bright, clearly visible on the dark footer */
.footer__credit { color: var(--white); }
.footer__credit-link {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 211, 1, .6);
  transition: color .25s, text-shadow .25s;
}
.footer__credit-link:hover {
  color: var(--yellow);
  text-shadow: 0 0 14px rgba(255, 211, 1, .65);
}

/* ---------- 20. MOBILE BOTTOM NAV ---------- */
.mobile-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(10, 26, 60, .1);
  box-shadow: 0 -10px 35px rgba(10, 26, 60, .14);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--navy);
  padding: 6px 2px;
  border-radius: 12px;
  transition: color .25s, background .25s;
}
.mobile-nav__item svg { width: 21px; height: 21px; fill: currentColor; }
.mobile-nav__item:active, .mobile-nav__item.is-active { color: var(--blue); background: rgba(36, 107, 207, .08); }
/* Call item — identical to the others, only the icon color differs */
.mobile-nav__item--call svg { fill: var(--gold); }

/* ---------- 21. BACK TO TOP ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 26px;
  z-index: 1400;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(36, 107, 207, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s, transform .35s, visibility .35s, background .25s;
}
.to-top svg { width: 21px; height: 21px; fill: var(--white); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy); }

/* ---------- 22. SCROLL REVEAL (directional variants) ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-zoom {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.22,.9,.35,1), transform .9s cubic-bezier(.22,.9,.35,1);
  will-change: opacity, transform;
}
.reveal       { transform: translateY(44px); }            /* rises up   */
.reveal-left  { transform: translateX(-64px); }           /* slides in from left  */
.reveal-right { transform: translateX(64px); }            /* slides in from right */
.reveal-zoom  { transform: scale(.86); }                  /* zooms in   */
.reveal--delay { transition-delay: .18s; }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible { opacity: 1; transform: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 23. HERO ENTRANCE — staggered load-in sequence ---------- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content .eyebrow { animation: heroIn .8s cubic-bezier(.22,.9,.35,1) .25s both; }
.hero__title            { animation: heroIn .9s cubic-bezier(.22,.9,.35,1) .45s both; }
.hero__desc             { animation: heroIn .9s cubic-bezier(.22,.9,.35,1) .65s both; }
.hero__btns             { animation: heroIn .9s cubic-bezier(.22,.9,.35,1) .85s both; }

/* ---------- 24. EXTRA MICRO-ANIMATIONS ---------- */
/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--blue));
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}
/* Shine sweep across product images on hover */
.p-card__media::after {
  content: '';
  position: absolute;
  top: 14px; bottom: 0;
  left: -90%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  transition: left .75s ease;
}
.p-card:hover .p-card__media::after { left: 145%; }
/* Icon wiggle on Why-card hover */
.why-card:hover .why-card__ic { animation: wiggle .55s ease; }
@keyframes wiggle {
  0%   { transform: rotate(0); }
  30%  { transform: rotate(-9deg); }
  60%  { transform: rotate(8deg); }
  100% { transform: rotate(0); }
}
/* Smooth 3D tilt on product cards (transform set by JS on desktop) */
.p-card { transform-style: preserve-3d; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ----- Tablet (≤ 1024px) ----- */
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .about__inner, .banner__inner { grid-template-columns: 1fr; gap: 50px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .stats__item:nth-child(2)::after { display: none; } /* no divider at row end */
  .hero { padding: 64px 0 96px; }
  .about__media { max-width: 560px; margin-inline: auto; }
  .faq__inner { grid-template-columns: 1fr; gap: 44px; }
  .faq__head { position: static; text-align: center; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Mobile nav breakpoint (≤ 860px) ----- */
@media (max-width: 860px) {
  .topbar__item--address, .topbar__follow { display: none; }
  .topbar__inner { justify-content: center; }

  /* Slide-down mobile menu */
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--gray);
    padding: 14px 5%;
    border-bottom: 1px solid rgba(10,26,60,.1);
    box-shadow: 0 24px 40px rgba(10,26,60,.14);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .4s cubic-bezier(.22,.9,.35,1);
  }
  .nav.is-open { clip-path: inset(0 0 0 0); }
  .nav__link { padding: 13px 16px; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link.is-active { background: rgba(36,107,207,.1); }
  .hamburger { display: flex; }
  .header__cta { display: none; }

  .mobile-nav { display: flex; }
  body { padding-bottom: 76px; } /* room for bottom nav */
  .to-top { bottom: 96px; }
}

/* ==========================================================================
   INNER PAGES — page hero, product detail, gallery, CTA band, credentials
   ========================================================================== */

/* Page hero (all inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .28), rgba(0, 0, 0, .38)),
    url('media/hero-image.png') center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 78px 0 64px;
}
.page-hero__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-hero__crumb {
  position: relative;
  margin-top: 14px;
  font-weight: 700;
  font-size: .92rem;
  color: #BCD0F0;
}
.page-hero__crumb a { transition: color .25s; }
.page-hero__crumb a:hover { color: var(--gold); }
.page-hero__crumb span { color: var(--gold); margin: 0 8px; }

/* Product detail — overview */
.pd { background: var(--white); }
.pd__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.pd__grid--reverse > *:first-child { order: 2; }
.pd__grid--reverse > *:last-child  { order: 1; }
@media (max-width: 900px) {
  .pd__grid--reverse > *:first-child,
  .pd__grid--reverse > *:last-child { order: initial; }
}
.pd__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  outline: 1.5px solid rgba(36, 107, 207, .25);
}
/* Show the full image at its natural proportions (no cropping) */
.pd__img--actual {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}
/* "Click to view full size" hint below an image */
.pd__img-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: #246bcf;
  cursor: zoom-in;
  transition: color .15s;
}
.pd__img-hint:hover { color: #0a2a66; text-decoration: underline; }
.pd__img-hint svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.pd__content p { margin-bottom: 16px; color: #233453; font-weight: 500; }
.pd__meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 20px; }
.chip {
  background: rgba(36, 107, 207, .08);
  border: 1.5px solid rgba(36, 107, 207, .3);
  color: var(--blue);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .6px;
  padding: 7px 15px;
  border-radius: 100px;
}
.pd__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* Product gallery (placeholders) */
.gallery { background: var(--gray); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ph--gallery { aspect-ratio: 4 / 3; }
/* Gallery page — responsive auto grid, video tiles & empty state */
.gallery__grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gallery__item--video { cursor: default; background: #05101f; }
.gallery__item--video video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.gallery-empty { text-align: center; color: #5A6B8C; font-weight: 600; font-size: 1.05rem; padding: 50px 0; }

/* Instagram section (About page) */
.insta { background: var(--gray); }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.insta__tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(10, 26, 60, .10);
}
.insta__tile .ph--insta,
.insta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph--insta { aspect-ratio: 1 / 1; border-radius: 0; }
.insta__img { transition: transform .5s var(--ease, ease); }
.insta__tile:hover .insta__img { transform: scale(1.07); }
.insta__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(131, 58, 180, .55), rgba(225, 48, 108, .55), rgba(252, 176, 69, .45));
  opacity: 0;
  transition: opacity .3s ease;
}
.insta__tile:hover .insta__overlay { opacity: 1; }
.insta__overlay svg { width: 38px; height: 38px; fill: #fff; }
.insta__cta { text-align: center; margin-top: 36px; }
.insta__cta .btn svg { width: 20px; height: 20px; }
.insta__connect { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.insta__connect-label { font-weight: 700; color: #36486B; font-size: .95rem; letter-spacing: .3px; }
.insta__socials { display: flex; gap: 14px; }
.insta__social {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  transition: transform .2s, box-shadow .2s;
}
.insta__social svg { width: 22px; height: 22px; fill: #fff; }
.insta__social:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(10, 26, 60, .25); }
.insta__social--wa { background: #25D366; }
.insta__social--li { background: #0A66C2; }
.insta__social--fb { background: #1877F2; }
@media (max-width: 900px) {
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
/* Clickable gallery images */
.gallery__item {
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(10, 26, 60, .08);
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease, ease);
}
.gallery__item:hover .gallery__img { transform: scale(1.06); }

/* Full-screen image lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 12, 28, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: scale(.96);
  transition: transform .3s ease;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .24); }

/* Product video (placeholder) */
.pvideo { background: #EDF2FF; }
.pvideo__box { max-width: 880px; margin: 0 auto; }
.ph--16x9 { aspect-ratio: 16 / 9; box-shadow: var(--shadow); }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 85% 15%, rgba(0, 185, 252, .3), transparent),
    linear-gradient(120deg, #1A4FA0 0%, var(--blue) 60%, #0E2F66 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-band p { color: #DCE9FD; font-weight: 600; margin-bottom: 28px; }
.cta-band__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Credentials cards (About page) */
.creds { background: var(--gray); }
/* Infinite-loop credentials carousel */
.creds__marquee {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}
.creds__track {
  display: flex;
  width: max-content;
  animation: creds-scroll 36s linear infinite;
}
.creds__marquee:hover .creds__track { animation-play-state: paused; }
@keyframes creds-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .creds__track { animation: none; }
}
.creds__track .cred-card {
  flex: 0 0 300px;
  margin: 0 26px 0 0;
}
.cred-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(10, 26, 60, .08);
  border-top: 5px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cred-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cred-card__ic {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 10px 24px rgba(0, 185, 252, .35);
}
.cred-card__ic svg { width: 28px; height: 28px; fill: var(--white); }
.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cred-card p { font-weight: 600; color: #36486B; font-size: .92rem; word-break: break-word; }

/* Product cards — dual link row (Products page) */
.p-card__links { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Inner pages responsive */
@media (max-width: 1024px) {
  .pd__grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { padding: 56px 0 46px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .creds__track .cred-card { flex-basis: 260px; }
}

/* ----- Mobile (≤ 600px) ----- */
@media (max-width: 600px) {
  .topbar__socials { display: none; } /* contact details only in the top strip on phones */
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 40px; }
  .hero { padding: 48px 0 84px; }
  .hero__btns .btn { padding: 14px 22px; font-size: .88rem; }
  .shape--ring { display: none; }
  .marquee__track span { font-size: 1.1rem; }
  .marquee__track { gap: 22px; }
  .products__grid { grid-template-columns: 1fr; }
  .why-card { width: 272px; padding: 26px 22px; }
  .t-card { width: 300px; padding: 22px; }
  .client-logo { width: 200px; height: 100px; padding: 20px 26px; }
  /* Trending carousel — calmer, contained layout on phones */
  .trend__carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .trend__track { gap: 18px; padding: 8px 0 34px; }
  .trend-card {
    width: 230px;
    background: #FFF9EA;
    border: 1.5px solid rgba(10, 26, 60, .12);
  }
  .trend-card::before, .trend-card::after { display: none; } /* drop the spinning gradient border on mobile */
  .trend-card h3 { font-size: 1.2rem; }
  .about__badge { padding: 13px 16px; top: 8px; left: -4px; }
  .about__badge strong { font-size: 2rem; }
  .about__media { padding-bottom: 48px; }
  .about__img-main { width: 88%; }
  .about__img-founder { width: 50%; border-width: 4px; }
  .about__cta { gap: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact__form-wrap { padding: 28px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .to-top { right: 14px; width: 44px; height: 44px; }
}

/* =====================================================================
   SERVICE ICONS — used on "What We Do" cards (home + about)
====================================================================== */
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2a66 0%, #1a4ec2 100%);
  color: #ffd24a;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(10, 42, 102, 0.22);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 210, 74, 0.35);
  pointer-events: none;
}
.service-icon svg {
  width: 36px;
  height: 36px;
}
.p-card:hover .service-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(10, 42, 102, 0.32);
}

/* =====================================================================
   FULL-WIDTH AUTOPLAY VIDEO BANNER (no curves, edge-to-edge)
====================================================================== */
.video-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  padding: 90px 0;
  isolation: isolate;
}
.video-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.video-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.30) 100%);
  z-index: 1;
}
.video-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 880px;
  padding: 0 24px;
}
.video-banner__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  margin: 1.2rem 0 1.4rem;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.video-banner__title .stroke-text--gold {
  -webkit-text-stroke: 2px #ffd24a;
  color: transparent;
}
.video-banner__title .cursive--gold {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: #ffd24a;
  margin-top: .6rem;
  -webkit-text-stroke: 0;
}
.video-banner__sub {
  max-width: 660px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.video-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .video-banner { min-height: 420px; padding: 60px 0; }
  .video-banner__sub { font-size: .98rem; }
}

/* =====================================================================
   INDUSTRY GRID — image-led cards for Applications page
====================================================================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}
.industry-card {
  position: relative;
  background: linear-gradient(160deg, #fff8e1 0%, #fff3d4 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 167, 38, 0.12);
  border: 2px solid #ffb300;
  outline: 1px solid rgba(10, 42, 102, 0.12);
  outline-offset: 3px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, outline-color .35s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(255, 167, 38, 0.28);
  border-color: #0a2a66;
  outline-color: #ffb300;
}
.industry-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a66 0%, #1a4ec2 50%, #ffd24a 100%);
}
.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.industry-card:hover .industry-card__media img {
  transform: scale(1.06);
}
.industry-card__media.no-img::before {
  content: "Image coming soon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: .85rem;
  text-transform: uppercase;
}
.industry-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 42, 102, 0.35) 100%);
  pointer-events: none;
}
.industry-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.industry-card__body h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 1.35rem;
  color: #0a2a66;
  margin: 0 0 .5rem;
  text-transform: uppercase;
}
.industry-card__body p {
  font-size: .95rem;
  line-height: 1.55;
  color: #5a4a2a;
  margin: 0;
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* =====================================================================
   OUR VALUABLE CLIENTS — premium client showcase
====================================================================== */
.valued-clients {
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(255, 210, 74, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}
.valued-clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
/* Valuable clients carousel wrapper */
.vc__carousel {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.vc__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  align-items: stretch;
  animation: marquee 55s linear infinite;
}
.vc__carousel:hover .vc__track { animation-play-state: paused; }

.vc-card {
  background: linear-gradient(160deg, #e9f7ec 0%, #d6f0dc 100%);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 125, 50, 0.18);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.10);
  transition: transform .4s ease, box-shadow .4s ease;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.vc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32 0%, #66bb6a 50%, #a5d6a7 100%);
}
.vc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46, 125, 50, 0.22);
}
.vc-card__logo-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 .85rem;
  padding: .85rem;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.vc-card__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(10, 42, 102, 0.12));
  transition: transform .35s ease;
}
.vc-card:hover .vc-card__logo {
  transform: scale(1.06);
}
.vc-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex: 1;
}
.vc-card__body h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .4px;
  color: #1b5e20;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
  word-break: break-word;
  width: 100%;
}
.vc-card__location {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #4a6650;
  font-size: .76rem;
  margin: 0;
}
.vc-card__location svg { color: #2e7d32; flex-shrink: 0; }
.vc-card__tag {
  display: inline-block;
  padding: .28rem .75rem;
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-top: auto;
}
@media (max-width: 600px) {
  .valued-clients__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .vc-card__logo-wrap { height: 90px; padding: .75rem; }
}

/* =====================================================================
   PRESENCE MAP — contact page "Our Presence" image with click-to-zoom
====================================================================== */
.presence-map {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10, 42, 102, 0.08);
}
.presence-map__head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.presence-map__head h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: .5px;
  color: var(--brand, #0a2a66);
  margin: .5rem 0 0;
  text-transform: uppercase;
}
.presence-map__btn {
  position: relative;
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid rgba(10, 42, 102, 0.08);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(10, 42, 102, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.presence-map__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 42, 102, 0.18);
}
.presence-map__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.presence-map__cta {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(10, 42, 102, 0.92);
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.presence-map__cta svg { flex-shrink: 0; }
