

/* ----------------------- Base / Reset ----------------------- */
html {
  font-size: 14px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-family: "Kumbh Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("https://app.salesdrip.com/users/myteam49869/Media121.webp");
  background-position: center; /* fixed double semicolon */
  overflow-x: hidden;
}

:root {
  /* Colors */
  --color-one: #0061A9;
  --color-two: #242424;
  --color-three: #ffffff;
  --color-four: transparent;
  --color-five: #f7f7f7;
  --color-six: #777777;
  --color-seven: #EB1D27;
  --color-eight: #eda436;
  --maxWidth-set: 1300px;

  --bg-body-gradient: radial-gradient(1200px 800px at 10% 10%, #ffffff 0%, #e8e8e800 60%, #efefef00 100%)!important;
  /* Particles */
  --particles-density: 0.00012;
  --particles-base-speed: 0.1;
  --particles-wander: 0.003;
  --particles-link-distance: 140;
  --particles-link-alpha: 0.4;
  --particles-radius: 1.6;
  --particles-max-dpr: 2;
  --particles-z: 0;
  --particles-dot: #ffffff;
  --particles-link: rgba(255, 255, 255, 0.35);
  --particles-mouse-mode: repel; /* repel | attract | none */
  --particles-mouse-radius: 150;
  --particles-mouse-force: 0.08; /* 0.04â€“0.16 */
  --particles-mouse-linger: 0.92;

  /* Nav (modern) */
  --nf-nav-bg: rgba(255, 255, 255, 0.92);
  --nf-nav-bg-strong: #ffffff;
  --nf-nav-text: #1f2430;
  --nf-nav-text-dim: #6b7280;
  --nf-accent: #EB1D27;
  --nf-ring: rgba(37, 149, 206, 0.35);
  --nf-radius: 14px;
  --nf-blur: 12px;
  --nf-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  --nf-speed: 0.28s;
  --nf-header-h: 74px;
}

/* Typography & generic */
.kumbh {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}
a {
  text-decoration: none;
  transition: all 200ms ease-out;
}
p {
  margin: 0;
  padding: 0;
}

/* Utilities */
.flex {
  display: flex;
}
.jCenter {
  justify-content: center;
}
.aCenter {
  align-items: center;
}
.center_center {
  align-items: center;
  justify-content: center;
}
.rowDirect {
  flex-direction: row;
}
.columnDirect {
  flex-direction: column;
}

/* Small globals */
.interior {
  width: 100%;
}
#homepageMain {
  width: 100%;
}
div[contenteditable="false"] {
  width: 100%;
}

table#homepageContentTable {
  display: none;
}
#playerStatsLink {
  display: none !important;
} /* de-duped */
::marker {
  display: none;
}

/* ----------------------- Header / Navigation ----------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: auto;
  padding: 1rem 0;
  background: var(--nf-nav-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--nf-speed), transform var(--nf-speed), box-shadow var(--nf-speed);
  box-shadow: 0px 10px 30px -20px #000; /* retained subtle drop */
}
header .headContent {
  min-height: var(--nf-header-h);
}
header.transformHead {
  background: var(--nf-nav-bg-strong);
  box-shadow: var(--nf-shadow);
}

.subPageHeader {
  background-color: var(--color-seven);
  width: 100%;
  position: relative;
}

.logoPlaceholder {
  width: 11rem;
  height: 4rem;
  margin: 1rem;
  background-color: var(--color-six);
}
.mainLogo {
  width: 22rem;
  height: 74px;
  object-fit: contain;
}

.headContent.flex {
  align-items: center;
  width: 95%;
  max-width: 1200px;
  margin: 0 2rem;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 24px);
  padding: 10px clamp(14px, 4vw, 28px);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 16px;
}
#nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  margin: 0;
  padding: 0;
}
#nav > li {
  position: relative;
}
#nav > li > a,
#nav > li > span > a {
  font-family: "Kumbh Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.2px;
  color: var(--nf-nav-text);
  text-decoration: none;
  display: inline-block;
  padding: 12px 2px;
  position: relative;
  transition: color var(--nf-speed), opacity var(--nf-speed);
  outline: none;
}
#nav a:focus-visible {
  outline: 3px solid var(--nf-ring);
  outline-offset: 2px;
  border-radius: 6px;
}
#nav > li > a::after,
#nav > li > span > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--nf-accent), color-mix(in lab, var(--nf-accent), white 25%));
  transition: transform var(--nf-speed);
  border-radius: 2px;
}
#nav > li:hover > a::after,
#nav > li:focus-within > a::after,
#nav > li:hover > span > a::after,
#nav > li:focus-within > span > a::after {
  transform: scaleX(1);
}
#nav:hover > li > a {
  opacity: 0.85;
}
#nav:hover > li:hover > a {
  opacity: 1;
}

/* Dropdowns */
#nav li > ul {
  position: absolute;
  left: 0;
  top: calc(100% + 0px);
  min-width: 240px;
  padding: 8px;
  margin: 0;
  list-style: none;
  border-radius: var(--nf-radius);
  background: #ffffff;
  backdrop-filter: blur(var(--nf-blur));
  -webkit-backdrop-filter: blur(var(--nf-blur));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity var(--nf-speed), transform var(--nf-speed);
}
#nav li:hover > ul,
#nav li:focus-within > ul {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#nav li > ul > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--nf-nav-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: background var(--nf-speed), color var(--nf-speed), transform var(--nf-speed);
}
#nav li > ul > li > a:hover,
#nav li > ul > li > a:focus {
  background: rgba(37, 149, 206, 0.08);
  color: var(--nf-accent);
}

/* Caret */
#nav > li:has(> ul) > a::before,
#nav > li:has(> ul) > span > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--nf-nav-text-dim);
  opacity: 0.7;
  margin-right: 6px;
  transform: translateY(-1px);
}

/* CTA */
.headerCTA {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--nf-accent), color-mix(in lab, var(--nf-accent), black 10%));
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 149, 206, 0.25);
  transition: transform var(--nf-speed), box-shadow var(--nf-speed), filter var(--nf-speed);
  white-space: nowrap;
}
.headerCTA:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(37, 149, 206, 0.28);
  filter: saturate(1.05);
}

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-one);
  display: none;
  place-items: center;
  cursor: pointer;
  transition: border-color var(--nf-speed), background var(--nf-speed);
}
.hamburger .bar {
  width: 22px;
  height: 2px;
  background: var(--color-five);
  border-radius: 2px;
  transition: transform var(--nf-speed), opacity var(--nf-speed);
}
.hamburger .bar + .bar {
  margin-top: 5px;
}
.hamburger.active .bar1 {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar2 {
  opacity: 0;
}
.hamburger.active .bar3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------- Main / Hero ----------------------- */
.main {
  width: 100%;
}
.heroSection {
  width: 100%;
  min-height: clamp(34rem, 80vh, 62rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: transparent;
}
.parallax {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}

.homepageHero {
  min-height: 75vh;
}
.homepageHero .heroWrap {
  min-height: inherit;
}

/* --- Ken Burns Parallax Slideshow (single 15s timeline) --- */
.kb-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  isolation: isolate;
}

/* Slideshow base to avoid seeing page bg during blends */
.kb-slideshow { background:#000; } /* or a dark brand color */

/* Slides */
.kb-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0; /* hidden by default */
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);

  /* Run both animations as if they already started (negative delay). */
  animation-name: kbCycle, kbPan;
  animation-duration: 15s, 15s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-fill-mode: both, both;     /* keep last frame across loops */
  animation-delay: var(--d), var(--d);
}

/* Per-slide phase offsets */
.kb-slide.s1 { --d: 0s;  background-image: url("https://app.salesdrip.com/users/myteam49869/Media139.jpg"); }
.kb-slide.s2 { --d: 5s;  background-image: url("https://app.salesdrip.com/users/myteam49869/Media105.jpg"); }
.kb-slide.s3 { --d: 10s; background-image: url("https://app.salesdrip.com/users/myteam49869/Media129.jpg"); }

/* Opacity: 15s cycle
   - 0%â†’6.666% (â‰ˆ1s)   : fade IN to 1
   - 6.666%â†’33.333%    : stay 1 (â‰ˆ4s visible total)
   - 33.333%â†’40% (â‰ˆ1s) : fade OUT to 0
   - rest              : 0
   This creates a 1s overlap with the next slideâ€™s fade-in. */
@keyframes kbCycle {
  0% { opacity: 0; }
  6.666% { opacity: 1; }
  33.333% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Continuous Ken Burns for the full 15s, in phase with opacity */
@keyframes kbPan {
  0% {
    transform: translate3d(0, var(--parallax-offset, 0px), 0)
               scale(1.06) translateX(-2%);
  }
  50% {
    transform: translate3d(0, var(--parallax-offset, 0px), 0)
               scale(1.18) translateX(2%);
  }
  100% {
    transform: translate3d(0, var(--parallax-offset, 0px), 0)
               scale(1.06) translateX(-2%);
  }
}


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .kb-slide { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.heroSection { position: relative; }
.kb-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease-out;
}
.kb-slideshow.is-ready {
  opacity: 1;
}
.heroWrap     { position: relative; z-index: 2; } /* overlay stays above */

.spanForm {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--color-one);
  padding: 1rem 0;
  width: 100%;
}

.heroNav {
  color: var(--color-five);
}
.heroNav a {
  color: var(--color-five);
  margin: 1rem;
  transition: all ease 400ms;
}
.heroNav a:hover {
  color: var(--color-one);
}

.shortBG .heroContent h1 {
  margin: 0.5rem;
}
.heroContent span {
  color:var(--color-three);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items:center;
}
.heroContent span img {
width: 2rem;
margin-right:1rem;
}
.heroAction {
  margin-top: 2rem;
}
.heroAction a {
  background-color: transparent;
  border: 2px solid var(--color-three);
  padding: 1rem 1.5rem;
  margin: 0 1rem;
  border-radius: 5px;
  font-weight: 500;
  color: var(--color-five);
  transition: all ease 300ms;
}
.heroAction a:hover {
  background-color: var(--color-one);
}

.heroSection h1 {
  font-size: 4rem;
  color: var(--color-three);
  max-width: 950px;
  text-align: center;
  font-weight: 800;
  margin: 1rem 0;
}
.heroSection p {
  font-size: 1.3rem;
  line-height: 2.1rem;
  max-width: 1000px;
  width: 90%;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-three);
}
.heroSection.shortBG {
  height: 300px;
}
.heroWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  min-height: inherit;
  height: auto;
  width: 100%;
  padding: clamp(4rem, 14vh, 8rem) 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.heroContent {
  margin-top: clamp(1.5rem, 6vh, 4rem);
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
.heroContent h1 span {
  color: var(--color-three);
  font-size: 5rem;
}

/* ----------------------- Sections / Blocks ----------------------- */
.iconBlocks {
  max-width: 1300px;
  width: 100%;
  flex-wrap: wrap;
}

.heroWrap .numCounter {
  position: relative;
  width: 5rem;
  aspect-ratio: 1 / 1;
  background: #0B63A9; /* border color */
  clip-path: polygon(
    50% 0%,
    93.301% 25%,
    93.301% 75%,
    50% 100%,
    6.699% 75%,
    6.699% 25%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-seven); /* red text */
  z-index: 1; /* keep text above ::before */
}

.heroWrap .numCounter::before {
  content: "";
  position: absolute;
  inset: 12%; /* controls border thickness */
  background: white;
  clip-path: inherit; /* same hex shape */
  z-index: -1; /* behind text */
}



.countNum {
  line-height: 6rem;
  margin: 0 2rem;
}
.whyUsWrap {
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  display: flex;
  color: #fff;
}

#scroll-line {
  position: fixed;
  top: 0;
  left: 50%;
  height: 5px;
  width: 0%;
  background: var(--color-seven);
  z-index: 9999;
  transform: translateX(-50%);
  transition: width 0.1s ease-out;
}

.section {
  max-width: 1300px;
  z-index: 50;
}
.topSection {
  margin-top: 5rem;
}
.section h2 {
  font-size: 3rem;
  color: #22253d;
  margin-top: 0.8rem;
}
.section p {
  font-size: 17px;
  line-height: 2.2rem;
  text-align: center;
  color: #22253d;
}
.formPlaceholder {
  width:90%; 
  max-width: 900px;
  height: 50rem;
  background-color: #ccc;
}
.section span {
  color: var(--color-seven);
  font-size: 19px;
}
.section.whyUs {
  width: 100%;
  background-color: var(--color-one);
  padding: 1rem 0 !important;
  z-index: 400;
  max-width: 100%;
  margin-top: 0;
}
.section.whyUs h2 {
  color: #ffffff;
  margin: 1rem 0;
}
.section.whyUs p {
  color: #ffffff;
  text-align: left;
}

.keyStat {
  font-size: 1.5rem;
  width: 20rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section .keyStat p {
  max-width: 20rem;
  line-height: 1.5rem;
}
.section .keyStat span {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.3rem;
  color: var(--color-three);
}
.numStat {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-five);
  display: inline-block;
  min-width: 3ch;
  text-align: right;
}

img.carriersIMG {
  max-width: 800px;
}

.whyCTA svg {
  transform: rotate(90deg);
  margin-left: 50%;
}
.whyCTA a span {
  font-weight: 800;
}
.whyCTA a strong {
  font-weight: 700;
}
.whyCTA a {
  background-color: transparent;
  border: 2px solid var(--color-three);
  padding: 0.6rem 1.5rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  margin-top: 2rem;
  font-weight: 300;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* fixed typo */
  min-width: 15rem;
  color: var(--color-five);
  transition: all ease 300ms;
}
.whyCTA a:hover {
  background-color: var(--color-three);
  color: var(--color-one);
}

/* Angled bars */
.angleWrap {
  background-color: transparent;
  width: 100%;
  z-index: 500;
}
.angleWrap.topAngle {
  background-color: rgba(0, 0, 0, 0.6);
}
.angled-bar {
  width: 90%;
  max-width: 1300px;
  height: 10px;
  background-color: var(--color-one);
  clip-path: polygon(3% 0, 97% 0, 100% 105%, 0% 105%);
  border-bottom: 1px solid var(--color-one);
}
.angled-bar.redAngle {
  background-color: var(--color-seven);
  border-bottom: 1px solid var(--color-seven);
}
.flippedAngle {
  transform: rotate(180deg);
}
.blueBGAngle {
  background-color: var(--color-one);
}
.whiteBGAngle {
  background-color: var(--color-five);
  border-color: #fff;
}
.styleLine {
  width: 90%;
  max-width: 25rem;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-seven);
  margin-bottom: 1rem;
}

/* Half blocks */
.halfBlock {
  width: 100%;
  padding: 0;
}
.halfBlockWrap {
  width: 100%;
  max-width: 1300px;
  justify-content: center;
}
.twoImageBlock {
  background-color: transparent;
}
.twoImageLayout {
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 4vw, 3rem);
}
.techContentOuter {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}
.techContentWrap {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.techContentWrap p {
  max-width: 960px;
  text-align: center;
  font-size: clamp(1.075rem, 1.4vw, 1.2rem);
  line-height: 1.9;
  color: var(--color-two);
}
.techContentWrap h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  text-align: center;
  margin: 0;
  color: var(--color-two);
}
.techEyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--color-one);
}
.twoImageLayout .contentHalf {
  width: 100%;
  max-width: clamp(24rem, 38vw, 34rem);
}
.countRow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-two);
}
.counters {
  margin-top: 1rem;
}
.counterWrap {
  font-size: 4rem;
  font-weight: 700;
}

.numCounter {
  font-variant-numeric: tabular-nums;
  text-rendering: optimizeLegibility;
}

.imgHalf {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
}
.twoImageLayout .imgHalf {
  max-width: clamp(20rem, 40vw, 34rem);
  overflow: visible;
}
.imgHalf img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  box-shadow: 0px 10px 30px -20px #000;
  object-fit: cover;
}
.imageStack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
.stackImage {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0px 20px 45px -30px rgba(17, 24, 39, 0.65);
  aspect-ratio: 4 / 3;
  will-change: transform;
  transition: transform 200ms ease-out;
}
.stackImage.topImage {
  width: clamp(19.2rem, 36vw, 33.6rem);
  align-self: flex-start;
  margin-left: clamp(0rem, 4vw, 2rem);
  z-index: 2;
}
.stackImage.bottomImage {
  width: clamp(24rem, 45.6vw, 36rem);
  align-self: flex-end;
  margin-top: clamp(-3rem, -6vw, -2rem);
}
.stackImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contactDetails {
  width: 100%;
  max-width: 42rem;
  display: flex;
  gap: 2.75rem;
  margin-top: 2.5rem;
  color: #181818;
}

.contactDetailsItem {
    display: flex
;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.25rem;
}
.contactIcon {
  color: var(--color-seven);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contactDetailsItem strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #181818;
}
.contactDetailsItem p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.contactDetails a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.contactDetails a:hover {
  text-decoration: underline;
}
.policyLegal {
  width: 100%;
  padding: 3rem 8vw 4rem;
  background: #ffffff;
  display: block;
}
.policyLegal__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.75rem;
}
.policyLegal__inner h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  text-align: left;
}
.policyLegal__inner h2,
.policyLegal__inner h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  font-size: 1.35rem;
}
.policyLegal__inner p {
  margin: 0 0 1.25rem;
}
.policyLegal__inner ul {
  margin: 0 0 1.5rem 1.35rem;
  padding: 0;
  list-style: disc;
}
.policyLegal__inner ul li {
  margin-bottom: 0.5rem;
}
.contentHalf {
  width: 60%;
  max-width: 40rem;
}
.contentHalf span {
  color: var(--color-seven);
  font-size: 19px;
}
.contentHalf h2 {
  font-size: 3rem;
  color: #22253d;
  margin-top: 0.8rem;
}
.contentHalf p {
  font-size: 1.3rem;
  line-height: 2.1rem;
}
.contentHalf ul {
  font-size: 17px;
  line-height: 2.2rem;
  color: #22253d;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contentHalf a {
  background-color: var(--color-one);
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  margin-top: 2rem;
  font-weight: 500;
  color: var(--color-five);
  transition: all ease 300ms;
  border: 2px solid transparent;
}
.contentHalf a:hover {
  background-color: var(--color-five);
  color: var(--color-one);
  border-color: var(--color-one);
}
.contentHalf ul a {
  background-color: transparent;
  padding: 0;
  text-transform: none;
  text-align: left;
  border-radius: 0;
  margin-top: 0;
  font-weight: 600;
  color: var(--color-one);
  transition: all ease 300ms;
}
.contentHalf ul a:hover {
  background-color: transparent;
  color: var(--color-seven);
}

/* Testimonials */
.testimonialSection {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  color: var(--color-three);
  background: radial-gradient(circle at center, rgba(0, 97, 169, 0.85), rgba(0, 40, 76, 0.95));
  background-image: radial-gradient(circle at center, rgba(0, 97, 169, 0.85), rgba(0, 40, 76, 0.95)), url("https://app.salesdrip.com/users/myteam49869/Media139.jpg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.testimonialSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(24 102 183 / 55%), rgb(19 97 179 / 93%));
  z-index: 0;
}
.testimonialWrap {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.testimonialBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 0;
  background: transparent;
  color: var(--color-seven);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonialWrap h2 {
  margin: 1rem 0 2rem;
  color: var(--color-three);
}
.testimonialSlider {
  position: relative;
  min-height: 240px;
  display: grid;
}
.testimonialSlide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 450ms ease, transform 450ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1.25rem;
  pointer-events: none;
  will-change: opacity, transform;
}
.testimonialSlide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testimonialSlide.slide-out {
  opacity: 0;
  transform: translateX(40px);
}
.testimonialSlide p {
  max-width: 760px;
  font-size: 1.35rem;
  line-height: 2.4rem;
  font-weight: 500;
}
.testimonialMeta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}
.quoteIcon {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonialMeta strong {
  display: block;
  font-size: 1.1rem;
}
.testimonialDots {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.testimonialDot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}
.testimonialDot.active,
.testimonialDot:hover {
  background: var(--color-seven);
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .testimonialSection {
      padding: 4rem 0;
  }
  .testimonialSlide p {
      font-size: 1.15rem;
      line-height: 2rem;
  }
  .testimonialMeta {
      flex-direction: column;
      gap: 0.35rem;
  }
  .quoteIcon {
      font-size: 2.6rem;
  }
}

/* Hero variants */
.heroContact,
.heroAbout,
.heroService {
  width: 100%;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  background-color: var(--color-one);
}
.heroContact {
  height: 30rem;
}
.heroAbout {
  height: 22rem;
}
.heroService {
  height: 36rem;
}
.heroContact h1,
.heroAbout h1,
.heroService h1 {
  font-size: 4rem;
  color: var(--color-three);
  max-width: 950px;
  text-align: center;
  font-weight: 800;
  margin: 1rem 0;
}
.heroService p {
  font-size: 1.3rem;
  line-height: 2.1rem;
  max-width: 1000px;
  width: 90%;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-three);
}

/* Icon grid */
.iconGrid {
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}
.shortHeader {
  max-width: 520px;
}

.countRow {
  color:var(--color-five);
}
.countNum p {
  font-size: 4rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.iconBlock {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 30%;
  margin: 2rem 1rem;
}
.iconBlock svg {
  margin-bottom: 1rem;
}
.section .iconBlock p {
  text-align: left;
}

/* Video */
.vidWrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: auto;
  min-height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.vidWrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100vw;
  min-height: 100%;
  height: auto;
  width: auto;
  aspect-ratio: 16 / 9;
  border: none;
  object-fit: cover;
}

/* Cards / Carousel */
.cardWrapper {
  width: 100%;
  max-width: 1300px;
  flex-wrap: wrap;
}
.card {
  width: 100%;
  max-width: 27rem;
  box-shadow: 0 10px 30px -20px #000;
  height: auto;
  margin: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}
.card span {
  text-transform: uppercase;
  font-weight: 300;
  color: var(--color-three);
  padding: 0 1rem;
  font-size: 1rem;
}
.card h4 {
  font-weight: 800;
  font-size: 2rem;
  padding: 0 1rem;
  margin: 0.8rem 0;
  color: var(--color-three);
}
.card p {
  padding: 0 1rem;
  text-align: left;
  color: var(--color-three);
}
.card img {
  width: 100%;
  height: 25rem;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  max-width: 405px;
  margin-bottom: 1rem;
  max-height: 270px;
}

.carousel3d {
  position: relative;
  perspective: 2000px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
}
.carousel3d .card {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  height: 390px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--color-one);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translate(-50%, -50%) scale(0.85);
  transition: transform 0.8s ease, opacity 0.8s ease, z-index 0.8s ease;
  opacity: 0.4;
  z-index: 1;
}
.carousel3d .card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 10;
}

.tripleIcon {
  margin: 1rem 0;
}

.tripleIcon img {
width: 4rem;
}

.tripleIconWrap h3 {
  font-size: 2rem;
  color: #22253d;
  margin: 0;
}
.tripleIconWrap {
  margin-left: 2rem;
}

/* Blocked content */
.blockedLeft {
  margin-right: 4rem;
  max-width: 700px;
}
.blockedLeft p {
  text-align: left;
}
.blockedLeft img {
  max-width: 600px;
  margin-top: 1.5rem;
  border-radius: 10px;
}
.brBlock {
  width: 25rem;
  margin: 2rem 1rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 10px 0px 30px -20px #000;
}
.brBlock h4 {
  font-size: 1.5rem;
  color: #22253d;
  margin-top: 0.8rem;
}
.blockedRight {
  max-height: 700px;
  flex-wrap: wrap;
}

/* Blue section */
.blueSection {
  margin-top: 5rem;
  background-color: var(--color-seven);
  width: 100%;
  max-width: 100% !important;
}
.blueSection h2,
.blueSection h3,
.blueSection h4,
.blueSection p,
.blueSection ul {
  color: #ffffff;
}
.halfPageSlideshow {
  width: 50%;
  box-shadow: 0px 10px 30px -20px #000;
  background-size: cover;
  background-color: var(--color-one);
  height: 48rem;
  margin-right: 8rem;
  padding-right: 8rem;
  transition: background-image 1s ease-in-out;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.show {
  opacity: 1;
  z-index: 2;
}
.slide.hide {
  z-index: 1;
}
.halfContent {
  width: 50%;
}
.halfContent p {
  max-width: 30rem;
  color: #cccccc !important;
  text-align: left;
}
.halfContent ul {
  list-style: none;
  font-size: 17px;
  line-height: 3rem;
}
.contentWrap {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
}
.contentWrap p {
  text-align: left;
}

/* Span form band */
.spanFormWrap {
  width: 100%;
  max-width: 1300px;
}
.spanFormContent {
  max-width: 1200px;
  text-align: center;
}
.spanForm h3 {
  color: var(--color-five);
  font-size: 3rem;
  margin: 1rem 0;
}
.spanFormContent p {
  font-size: 1.3rem;
  line-height: 2.1rem;
  width: 90%;
  margin-bottom: 2rem;
  color: var(--color-three);
}

/* Services */
.serviceHeader {
  font-size: 3rem;
  color: var(--color-five);
  margin-top: 0.8rem;
}
.serviceP {
  font-size: 1.3rem;
  line-height: 2.1rem;
  max-width: 1000px;
  width: 90%;
  color: var(--color-five);
  margin-bottom: 2rem;
  text-align: center;
}
.services {
  flex-wrap: wrap;
  max-width: 1200px;
}
.serviceBlock {
    margin: .5rem;
    width: 16rem;
    height: 22rem;
    background-color: var(--color-one);
    color: var(--color-three);
    border-radius: 10px;
    box-shadow: 0px 10px 30px -20px #000;
    transition: all 400ms ease;
}
.serviceBlock:hover {
  margin-top: 0rem;
  margin-bottom: 1rem;
  background-color: var(--color-two);
}
.serviceBlock img {
  width:4rem;
}

.serviceZone {
  width: 100%;
  background-color: var(--color-one);
  padding: 2rem 0 3rem 0;
}
.servContent {
  padding: 1rem;
  height: 100%;
}
.serviceBlock p {
  text-align: center;
  font-size: 1.1rem;
}
.serviceBlock h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0.5rem;
}
.serviceBlock a {
    width: 100%;
    font-size: 1.3rem;
    padding: 0.5rem 0;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-five);
    background-color: var(--color-seven);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 
ease 400ms;
}
.serviceBlock a:hover {
  background-color: var(--color-one);
  color: var(--color-three);
}

/* Tech blocks */
.techSections {
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.techBlock {
  margin: 0 1rem;
  width: 25rem;
}
.techBlock h3 {
  font-size: 2rem;
  color: #22253d;
  text-align: center;
  margin-top: 0.8rem;
}

/* Content block CTA */
.contentBlock {
  width: 50%;
  margin: 1rem;
}
.contentBlock a {
  border-radius: 100px;
  background-color: var(--color-one);
  padding: 1.5rem 2rem;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  max-width: 24rem;
  margin-top: 2rem;
  transition: all ease 300ms;
}
.contentBlock a:hover {
  background-color: var(--color-seven);
}
.aKey svg {
  margin: 0 0.5rem;
}

/* Profiles */
.profileCards {
  width: 100%;
  max-width: 1300px;
}
.cardP {
  height: 43rem;
  margin: 1rem;
  background-color: var(--color-five);
  box-shadow: 0px 10px 30px -20px #000000;
  border-radius: 15px;
  transition: all ease 300ms;
  width: 33%;
  justify-content: flex-start;
  cursor: pointer;
}
.cardP:hover {
  margin-top: 0;
  margin-bottom: 2rem;
  box-shadow: 0px 20px 40px -10px #000;
}
.cardP img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cardP p {
  padding: 1.5rem;
}
.cardP strong {
  font-size: 1.5rem;
}

/* Pink button */
a.pinkButton {
  all: unset;
  display: inline-block;
  width: auto !important;
  max-width: max-content;
  background-color: var(--color-one);
  transition: all ease 300ms;
  padding: 1.25rem 2rem;
  border-radius: 100px;
  font-size: 17px;
  color: #ffffff;
}

.padded {
  padding: 5rem 0;
} /* removed stray 's' */

/* Picture duo */
.doublePics {
  width: 100%;
  max-width: 1300px;
}
.picWrap {
  width: 100%;
  height: 30rem;
  border-radius: 10px;
  margin: 4rem 0.5rem;
  min-width: 37rem;
}

.picCover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: ease all 300ms;
}
.picWrap p {
  color: var(--color-five) !important;
}
.picCover:hover {
  background-color: rgba(0, 0, 0, 0);
}

.spanLine {
  width: 20rem;
  height: 1px;
  margin: 0.65rem 0;
  background-color: #a6abcd;
}

/* ----------------------- Carousel (logos) ----------------------- */
.carousel-container {
  max-width: 1300px;
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.carousel-track-wrapper {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.carousel-track-wrapper img {
  padding: 10px;
  margin: 0 1rem;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

/* ----------------------- Scroll To Top ----------------------- */
.scroll_top.scroll_to_top {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-color: #222;
  border-radius: 3px;
  padding: 0.4rem;
  cursor: pointer;
  z-index: 990;
  margin: 20px;
  transition: all 200ms ease;
}
.scroll_to_top:hover {
  background-color: var(--color-one);
}
.scroll_top {
  opacity: 0;
  z-index: 990;
}
.scroll_to_top img {
  width: 20px !important;
  height: 20px;
}

/* ----------------------- Footer ----------------------- */
footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-one);
}
.footContent {
  width: 90%;
  max-width: 1300px;
  padding: 3rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footBlock {
  max-width: 25rem;
}
.footIcon {
  background-color: var(--color-one);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.8rem;
}
.footLinkWrap {
  margin: 0.3rem 0rem;
}
.footLinkWrap a {
  color: var(--color-three);
  font-size: 16px;
}
.footLinkWrap p {
  color: var(--color-three);
  font-size: 16px;
  max-width: 240px;
}
.footLogo {
  width: 25rem;
  margin-top: 1rem;
}
.logoBlock {
  align-items: flex-start !important;
}
.footBlock h4 {
  color: var(--color-three);
  font-weight: 800;
  font-size: 24px;
  margin: 0.5rem 0;
}
.bottomFooter {
  width: 100%;
  max-width: 1300px;
  border-top: 1px solid var(--color-seven);
  padding-top: 3rem;
  color: var(--color-three);
  margin: 1rem 0;
}
.pinkFoot a {
  color: var(--color-three) !important;
  font-weight: 700;
}
.socialWrap {
  margin-top: 1rem;
}

/* ----------------------- Forms ----------------------- */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nf-inline-form {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.nf-inline-form input[type="email"] {
  flex: 1 1 auto;
  width: 100%;
  min-width: 300px;
  box-sizing: border-box;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--color-border, rgba(255, 255, 255, 0.14));
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text, #000000);
  outline: none;
  transition: border 0.15s, box-shadow 0.15s, background 0.15s;
}
.nf-inline-form input::placeholder {
  color: var(--color-muted, rgba(31, 31, 31, 0.55));
}
.nf-inline-form input:focus {
  border-color: var(--color-accent-alt, #e7e7e7);
  box-shadow: var(--focus-ring, 0 0 0 3px rgba(255, 255, 255, 0.25));
  background: rgba(255, 255, 255, 0.9);
}
.nf-inline-form input:-webkit-autofill,
.nf-inline-form input:-webkit-autofill:hover,
.nf-inline-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--color-autofill-bg, rgba(12, 19, 36, 0.85)) inset !important;
  -webkit-text-fill-color: var(--color-text, #e6edf6) !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.nf-inline-form .nf-btn {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 12px;
  border: 0;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  color: #ffffff;
  background: var(--gradient-accent, linear-gradient(90deg, #2a2a2a, #2b2b2b));
  box-shadow: var(--shadow-button, 0 8px 24px rgba(0, 0, 0, 0.25));
  transition: transform 0.12s ease;
}
.nf-inline-form .nf-btn:hover {
  transform: translateY(-1px);
}
.nf-inline-form .nf-btn:focus {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 3px rgba(34, 211, 238, 0.25));
}
@media (max-width: 640px) {
  .nf-inline-form {
      flex-direction: column;
      align-items: stretch;
  }
  .nf-inline-form .nf-btn {
      width: 100%;
  }
}

/* ----------------------- Particles ----------------------- */
.particles_fills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--particles-z, 0);
}
.particles_host {
  position: relative;
}
.particles_above {
  position: relative;
  z-index: calc(var(--particles-z, 0) + 1);
}
.white_particles {
  --particles-dot: #ffffff;
  --particles-link: rgba(255, 255, 255, 0.38);
}
.indigo_particles {
  --particles-dot: #6366f1;
  --particles-link: rgba(99, 102, 241, 0.45);
}
.cyan_particles {
  --particles-dot: #22d3ee;
  --particles-link: rgba(34, 211, 238, 0.45);
}
.pink_particles {
  --particles-dot: #ec4899;
  --particles-link: rgba(236, 72, 153, 0.42);
}
.slate_particles {
  --particles-dot: #94a3b8;
  --particles-link: rgba(148, 163, 184, 0.42);
}

/* ----------------------- Responsive ----------------------- */
/* Helpers */
.center_centrer {
  justify-content: center;
  align-items: center;
} /* support typo in markup */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 700px) {
  html {
      font-size: 15px;
  }
}

/* Header/Nav responsive */
@media (max-width: 900px) {
  .hamburger {
      width: 40px;
      height: 40px;
      display: grid;
  }
  .hamburger .bar {
      height: 2px;
  }
  .hamburger .bar + .bar {
      margin-top: 3px;
  }
  .hamburger.active .bar1 {
      transform: translateY(14px) rotate(45deg);
  }
  .hamburger.active .bar3 {
      transform: translateY(-13px) rotate(-45deg);
  }

  #nav {
      position: fixed;
      top: calc(var(--nf-header-h) + 12px);
      left: 12px;
      right: 12px;
      display: none;
      flex-direction: column;
      gap: 6px;
      padding: 10px;
      border-radius: var(--nf-radius);
      background: #ffffff;
      backdrop-filter: blur(var(--nf-blur));
      -webkit-backdrop-filter: blur(var(--nf-blur));
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: var(--nf-shadow);
  }
  .navigation:has(.hamburger.active) #nav {
      display: flex;
  }
  #nav > li {
      width: 100%;
  }
  #nav > li > a,
  #nav > li > span > a {
      width: 100%;
      padding: 12px 10px;
  }
  #nav li > ul {
      position: static;
      opacity: 1;
      transform: none;
      pointer-events: auto;
      background: transparent;
      border: 0;
      box-shadow: none;
      padding: 0 0 6px 10px;
  }
  #nav li > ul > li > a {
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--nf-nav-text-dim);
  }
  .headerCTA {
      display: none;
  }

  .mainLogo {
      width: 16rem;
      height: 58px;
  }
  .headContent.flex {
      margin: 0 1rem;
      padding: 10px 1rem;
  }
  .main {
      padding-top: calc(var(--nf-header-h) + 1rem);
  }
}

/* Hero sizing */
@media (max-width: 1100px) {
  .heroSection,
  .parallax,
  .heroWrap {
      min-height: 34rem;
      height: 50vh;
  }
}
@media (max-width: 900px) {
  .heroSection,
  .parallax,
  .heroWrap {
      min-height: 28rem;
      height: 48vh;
  }
  .heroSection h1,
  .heroAbout h1,
  .heroService h1,
  .heroContact h1 {
      font-size: 3rem;
  }
  .heroSection p,
  .heroService p {
      font-size: 1.1rem;
      line-height: 1.8rem;
      width: 92%;
  }
}
@media (max-width: 700px) {
  .heroContent span {
      flex-direction: column;
      font-size: 1rem;
      gap: 0.35rem;
  }
  .heroContent span img {
      margin: 0 auto 0.4rem;
  }
  .heroAction {
      flex-wrap: wrap;
      gap: 0.75rem;
      width: 100%;
  }
  .heroAction a {
      margin: 0;
      width: 100%;
      max-width: 18rem;
      text-align: center;
  }
}
@media (max-width: 600px) {
  .heroSection,
  .parallax,
  .heroWrap {
      min-height: 22rem;
      height: 44vh;
  }
  .heroSection h1,
  .heroAbout h1,
  .heroService h1,
  .heroContact h1 {
      font-size: 2.2rem;
  }
  .heroContent {
      margin-top: 4rem;
  }
  .mainLogo {
      width: 12.5rem;
      height: 52px;
  }
  .navigation {
      gap: 12px;
  }
  header {
      padding: 0.6rem 0;
  }
  .headContent.flex {
      width: 100%;
      margin: 0;
      padding: 8px 0.75rem;
  }
}
@media (max-width: 1100px) {
  .heroSection {
      background-attachment: scroll;
  }
}

/* Video wrapper on mobile */
@media (max-width: 900px) {
  .vidWrap {
      position: relative;
      height: 56vw;
      min-height: 0;
  }
  .vidWrap iframe {
      position: absolute;
      inset: 0;
      transform: none;
      width: 100%;
      height: 100%;
  }
}

/* WhyUs band */
@media (max-width: 1000px) {
  .section.whyUs {
      padding: 1.5rem 0 !important;
  }
  .whyUsWrap {
      width: 92%;
      gap: 1.5rem;
  }
  .whyContent {
      width: 100%;
      max-width: unset;
      margin: 0;
  }
  .whyCTA {
      width: 100%;
      margin-top: 1rem;
  }
  .whyCTA a {
      min-width: 12rem;
  }
  .section .counterWrap p {
      text-align: center;
  }
}

/* Angled separators */
@media (max-width: 900px) {
  .angleWrap {
      padding: 0 0.5rem;
  }
  .angled-bar {
      width: 96%;
      height: 16px;
  }
}

/* Half & Half */
@media (max-width: 1100px) {
  .halfBlock {
      padding: 3rem 0;
  }
  .halfBlockWrap {
      width: 92%;
  }
  .twoImageLayout {
      gap: clamp(1.5rem, 4vw, 3rem);
  }
  .twoImageLayout .imgHalf {
      max-width: min(100%, 32rem);
  }
}
@media (max-width: 900px) {
  .halfBlockWrap {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
  }
  .imgHalf {
      max-width: 48rem;
      margin: 0 !important;
  }
  .twoImageBlock {
      background-color: #f7f8fa;
  }
  .twoImageLayout {
      padding: clamp(1.5rem, 5vw, 2.5rem);
      text-align: center;
  }
  .twoImageLayout .imgHalf {
      align-items: center;
  }
  .twoImageLayout .contentHalf {
      align-items: center;
  }
  .twoImageLayout .contentHalf a {
      align-self: center;
  }
  .imageStack {
      align-items: center;
  }
  .stackImage.topImage {
      margin-left: 0;
  }
  .stackImage.bottomImage {
      align-self: center;
      margin-top: clamp(-1.5rem, -3vw, -1rem);
  }
  .contentHalf {
      width: 100%;
      max-width: 42rem;
  }
  .contentHalf h2 {
      font-size: 2.25rem;
  }
  .contentHalf p {
      font-size: 1.1rem;
      line-height: 1.9rem;
  }
  .contentHalf a {
      align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .contentHalf h2 {
      font-size: 1.9rem;
  }
  .contentHalf a {
      width: 100% !important;
      justify-content: center;
  }
  .stackImage.bottomImage {
      margin-top: 0;
  }
}

/* Counters */
@media (max-width: 700px) {
  .coutners,
  .counters {
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
  }
  .countRow {
      font-size: 1.1rem;
  }
}

/* Services grid */
@media (max-width: 1200px) {
  .services {
      width: 96%;
  }
}
@media (max-width: 1000px) {
  .services {
      justify-content: center;
      gap: 0.5rem;
  }
  .serviceBlock {
      width: calc(50% - 1rem);
      margin: 0.5rem;
  }
}
@media (max-width: 700px) {
  .serviceHeader {
      font-size: 2.3rem;
  }
  .serviceP {
      font-size: 1.1rem;
      line-height: 1.9rem;
      width: 92%;
  }
}
@media (max-width: 560px) {
  .serviceBlock {
      width: 100%;
      margin: 0.5rem 0;
  }
  .serviceBlock img {
      width: 6rem;
  }
  .serviceBlock h3 {
      font-size: 1.25rem;
  }
  .serviceBlock p {
      font-size: 1rem;
  }
}

/* Front section */
@media (max-width: 1000px) {
  .section.frontSection {
      width: 92%;
  }
}
@media (max-width: 700px) {
  .section.frontSection h2 {
      font-size: 2.2rem;
  }
  .section.frontSection p {
      font-size: 1.05rem;
      line-height: 1.8rem;
  }
  img.carriersIMG {
      width: 100%;
      max-width: 42rem;
  }
}

/* Span form */
@media (max-width: 1000px) {
  .spanFormWrap {
      width: 92%;
  }
  .spanFormContent p {
      width: 100%;
  }
}
@media (max-width: 600px) {
  .spanForm h3 {
      font-size: 2.2rem;
      text-align: center;
  }
}

/* 3D Carousel â†’ stacked */
@media (max-width: 900px) {
  .carousel3d {
      height: auto;
      perspective: none;
  }
  .carousel3d .card {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
      opacity: 1 !important;
      z-index: auto !important;
      max-width: 28rem;
      margin: 1rem auto;
  }
  .carousel3d .card img {
      max-height: 220px;
      object-fit: cover;
  }
}

/* Generic section width & text */
@media (max-width: 1000px) {
  .section {
      width: 92%;
  }
  .section h2 {
      font-size: 2.4rem;
  }
  .section p {
      font-size: 1.05rem;
      line-height: 1.85rem;
  }
}

/* Footer */
@media (max-width: 1000px) {
  .footContent {
      width: 92%;
      gap: 1.25rem;
  }
}
@media (max-width: 900px) {
  .footContent {
      flex-direction: column;
      align-items: stretch;
  }
  .footBlock {
      max-width: none;
  }
  .logoBlock {
      align-items: center !important;
  }
  .footLogo {
      width: 10rem;
  }
}
@media (max-width: 600px) {
  .bottomFooter {
      padding-top: 2rem;
      text-align: center;
  }
  .styleLine {
      width: 12rem;
  }
  .spanLine {
      width: 12rem;
  }
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
  * {
      transition: none !important;
      animation: none !important;
  }
  .carousel-track-wrapper {
      animation: none;
  }
}