:root {
  --vc-blue: #06234a;
  --vc-blue-2: #0b356d;
  --vc-green: #2fa719;
  --vc-green-2: #68c937;
  --vc-ink: #102034;
  --vc-muted: #64748b;
  --vc-line: #dbe7f3;
  --vc-soft: #f3f8fc;
  --vc-white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 35, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--vc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 167, 25, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 36%, #f7fbff 100%);
}

body.loading {
  overflow: hidden;
}

.tracking-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
  color: #fff;
  background:
    linear-gradient(rgba(104, 201, 55, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 201, 55, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(47, 167, 25, 0.28), transparent 18rem),
    var(--vc-blue);
  background-size: 42px 42px, 42px 42px, auto, auto;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.tracking-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-map {
  position: relative;
  width: 260px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 44%, rgba(104, 201, 55, 0.55) 45% 48%, transparent 49%),
    rgba(255, 255, 255, 0.06);
}

.loader-device,
.loader-vehicle,
.loader-pin {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.loader-device {
  left: 24px;
  top: 42px;
  width: 48px;
  height: 48px;
  color: var(--vc-blue);
  background: #fff;
  animation: devicePulse 1.4s ease-in-out infinite;
}

.loader-vehicle {
  left: 92px;
  top: 42px;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--vc-green);
  animation: loaderDrive 1.8s ease-in-out infinite;
}

.loader-pin {
  right: 28px;
  top: 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.tracking-loader strong {
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 231, 243, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
  box-shadow: 0 16px 45px rgba(6, 35, 74, 0.1);
}

.navbar-brand img {
  width: min(230px, 58vw);
  height: auto;
  display: block;
}

.nav-link {
  color: var(--vc-blue);
  font-weight: 700;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--vc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.transition-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(6, 35, 74, 0.1) !important;
  border-color: rgba(47, 167, 25, 0.4) !important;
}

.btn-lg {
  --bs-btn-padding-y: 0.72rem;
  --bs-btn-padding-x: 1.15rem;
  --bs-btn-font-size: 1rem;
}

.btn-track {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--vc-green);
  --bs-btn-border-color: var(--vc-green);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #248b13;
  --bs-btn-hover-border-color: #248b13;
  box-shadow: 0 14px 30px rgba(47, 167, 25, 0.25);
}

.btn-outline-track {
  --bs-btn-color: var(--vc-blue);
  --bs-btn-border-color: rgba(6, 35, 74, 0.22);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--vc-blue);
  --bs-btn-hover-border-color: var(--vc-blue);
  background: rgba(255, 255, 255, 0.8);
}

.section-pad {
  padding: 105px 0;
  scroll-margin-top: 90px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 35, 74, 0.08), rgba(47, 167, 25, 0.04) 54%, transparent),
    repeating-linear-gradient(90deg, rgba(6, 35, 74, 0.035) 0 1px, transparent 1px 94px);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-road-scene {
  position: absolute;
  inset: 88px 0 auto;
  height: min(46vw, 520px);
  min-height: 360px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.road-track {
  position: absolute;
  left: 48%;
  right: -6%;
  bottom: 8%;
  height: 210px;
  transform: rotate(-13deg);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(6, 35, 74, 0.06), transparent),
    linear-gradient(180deg, transparent 43%, rgba(6, 35, 74, 0.16) 44% 56%, transparent 57%);
  filter: drop-shadow(0 18px 42px rgba(6, 35, 74, 0.12));
}

.lane {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 52px, transparent 52px 92px);
  animation: laneMove 1.2s linear infinite;
}

.lane-one {
  top: 86px;
}

.lane-two {
  top: 116px;
  opacity: 0.72;
}

.road-car,
.road-pin {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.road-car {
  left: 8%;
  top: 74px;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--vc-blue), var(--vc-green));
  box-shadow: 0 18px 48px rgba(47, 167, 25, 0.34);
  animation: roadDrive 6.2s ease-in-out infinite;
}

.road-pin {
  right: 10%;
  top: 42px;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--vc-blue);
  box-shadow: 0 0 0 12px rgba(47, 167, 25, 0.08);
}

.gps-orbit {
  position: absolute;
  right: 9%;
  top: 30px;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(47, 167, 25, 0.34);
  border-radius: 999px;
  animation: gpsPulse 2.4s ease-out infinite;
}

.orbit-two {
  animation-delay: 0.8s;
}

.tracking-callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.82rem;
  color: var(--vc-blue);
  font-size: 0.78rem;
  font-weight: 900;
  border: 1px solid rgba(219, 231, 243, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(6, 35, 74, 0.1);
  backdrop-filter: blur(14px);
  animation: calloutFloat 3.4s ease-in-out infinite;
}

.tracking-callout i {
  color: var(--vc-green);
}

.tracking-callout.overspeed {
  right: 26%;
  top: 16%;
}

.tracking-callout.parking {
  right: 8%;
  top: 32%;
  animation-delay: 0.45s;
}

.tracking-callout.geofence {
  right: 30%;
  bottom: 18%;
  animation-delay: 0.9s;
}

.tracking-callout.immobilize {
  right: 10%;
  bottom: 3%;
  animation-delay: 1.25s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--vc-green);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--vc-blue);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: 35px;
  line-height: 1.4;
  max-width: 720px;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  color: var(--vc-muted);
  font-size: 1.16rem;
  margin: 1.25rem 0 1.3rem;
  max-width: 640px;
}

.hero-actions,
.hero-stats,
.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-feature-pills {
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.hero-feature-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.58rem 0.75rem;
  color: var(--vc-blue);
  font-size: 0.84rem;
  font-weight: 900;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(6, 35, 74, 0.07);
}

.hero-feature-pills i {
  color: var(--vc-green);
}

.hero-stats {
  margin-top: 2.4rem;
}

.hero-stats div {
  min-width: 130px;
  border-left: 3px solid var(--vc-green);
  padding-left: 1rem;
}

.hero-stats strong {
  color: var(--vc-blue);
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.hero-stats strong::after {
  content: "+";
}

.hero-stats div:nth-child(2) strong::after,
.hero-stats div:nth-child(3) strong::after {
  content: "%";
}

.hero-stats div:nth-child(3) strong::after {
  content: "/7";
}

.hero-stats span,
.product-card p,
.service-card p,
.contact-info p,
.about-section p {
  color: var(--vc-muted);
}

.fleet-visual {
  min-height: 590px;
  position: relative;
  border: 1px solid rgba(219, 231, 243, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(6, 35, 74, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 246, 255, 0.86)),
    radial-gradient(circle at 70% 24%, rgba(47, 167, 25, 0.18), transparent 16rem);
}

.pro-map-visual {
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(47, 167, 25, 0.15), transparent 16rem);
}

.map-toolbar {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 22px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(219, 231, 243, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(6, 35, 74, 0.09);
  backdrop-filter: blur(16px);
}

.map-toolbar span,
.map-toolbar strong {
  display: block;
}

.map-toolbar span {
  color: var(--vc-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-toolbar strong {
  color: var(--vc-blue);
  font-size: 1.02rem;
}

.map-toolbar em {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vc-green);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.pro-map-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 35, 74, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(6, 35, 74, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #eef6f0 0%, #f8fbff 42%, #eaf4ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

.map-water,
.map-block,
.map-road,
.route-trail,
.geofence-zone,
.map-pin,
.moving-car,
.car-pulse {
  position: absolute;
}

.map-water {
  right: -120px;
  bottom: 20px;
  width: 360px;
  height: 170px;
  border-radius: 50%;
  background: rgba(70, 150, 210, 0.16);
  transform: rotate(-18deg);
}

.map-block {
  border-radius: 18px;
  background: rgba(47, 167, 25, 0.08);
  border: 1px solid rgba(47, 167, 25, 0.11);
}

.block-b {
  right: 54px;
  top: 150px;
  width: 150px;
  height: 170px;
  background: rgba(6, 35, 74, 0.06);
  border-color: rgba(6, 35, 74, 0.08);
}

.block-c {
  left: 130px;
  bottom: 56px;
  width: 190px;
  height: 140px;
}

.map-road {
  height: 22px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent),
    #ffffff;
  box-shadow: 0 0 0 1px rgba(6, 35, 74, 0.08), 0 14px 30px rgba(6, 35, 74, 0.08);
}

.map-road::after {
  content: "";
  position: absolute;
  inset: 9px 10px auto;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(6, 35, 74, 0.18) 0 22px, transparent 22px 40px);
  animation: mapLaneMove 1.1s linear infinite;
}

.road-main {
  left: -70px;
  right: -80px;
  top: 305px;
  transform: rotate(-18deg);
}

.road-cross {
  left: 120px;
  top: 120px;
  width: 560px;
  transform: rotate(35deg);
}

.road-bypass {
  left: 12px;
  bottom: 128px;
  width: 500px;
  transform: rotate(10deg);
}

.road-link {
  right: 36px;
  top: 252px;
  width: 330px;
  transform: rotate(88deg);
}

.route-trail {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--vc-green), rgba(47, 167, 25, 0.18));
  box-shadow: 0 0 24px rgba(47, 167, 25, 0.38);
}

.route-trail-one {
  left: 78px;
  top: 334px;
  width: 420px;
  transform: rotate(-18deg);
  animation: routeGlow 1.8s ease-in-out infinite;
}

.route-trail-two {
  right: 150px;
  top: 238px;
  width: 230px;
  transform: rotate(35deg);
  animation: routeGlow 1.8s ease-in-out infinite 0.4s;
}

.geofence-zone {
  left: 305px;
  top: 172px;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(47, 167, 25, 0.68);
  border-radius: 999px;
  background: rgba(47, 167, 25, 0.08);
  animation: geofenceBreath 2.4s ease-in-out infinite;
}

.geofence-zone b {
  position: absolute;
  inset: 24px;
  border-radius: inherit;
  border: 1px solid rgba(47, 167, 25, 0.28);
}

.geofence-zone i {
  color: var(--vc-green);
  font-size: 1.6rem;
}

.map-pin {
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 999px;
  background: var(--vc-blue);
  box-shadow: 0 12px 34px rgba(6, 35, 74, 0.24);
}

.hub-pin {
  left: 118px;
  top: 190px;
}

.parking-pin {
  right: 116px;
  bottom: 132px;
  background: var(--vc-green);
}

.moving-car {
  z-index: 6;
  left: 90px;
  top: 318px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 5px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vc-blue), var(--vc-green));
  box-shadow: 0 18px 46px rgba(6, 35, 74, 0.28);
  animation: mapCarDrive 8s ease-in-out infinite;
}

.car-pulse {
  z-index: 5;
  left: 98px;
  top: 326px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(47, 167, 25, 0.62);
  border-radius: 999px;
  animation: mapCarPulse 8s ease-in-out infinite, pulseWave 1.5s ease-out infinite;
}

.map-alerts {
  position: absolute;
  right: 24px;
  top: 100px;
  z-index: 9;
  display: grid;
  gap: 0.7rem;
  width: min(320px, calc(100% - 48px));
}

.alert-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(219, 231, 243, 0.94);
  border-left: 4px solid var(--vc-green);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(6, 35, 74, 0.1);
  backdrop-filter: blur(16px);
  animation: alertFlash 9s ease-in-out infinite;
}

.alert-card i {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 10px;
  background: var(--vc-green);
}

.alert-card strong,
.alert-card span {
  display: block;
}

.alert-card strong {
  color: var(--vc-blue);
  font-size: 0.9rem;
}

.alert-card span {
  color: var(--vc-muted);
  font-size: 0.76rem;
}

.alert-card.danger {
  border-left-color: #e53935;
}

.alert-card.danger i,
.alert-card.sos i {
  background: #e53935;
}

.alert-card.warning {
  border-left-color: #f59e0b;
}

.alert-card.warning i,
.alert-card.engine i {
  background: #f59e0b;
}

.alert-card.sos {
  border-left-color: #e53935;
}

.alert-card.engine {
  border-left-color: #f59e0b;
}

.alert-card.parking-alert {
  border-left-color: var(--vc-blue);
}

.alert-card.parking-alert i {
  background: var(--vc-blue);
}

.alert-card.lock {
  border-left-color: #111827;
}

.alert-card.lock i {
  background: #111827;
}

.alert-two {
  animation-delay: 1.2s;
}

.alert-three {
  animation-delay: 2.4s;
}

.alert-four {
  animation-delay: 3.6s;
}

.alert-five {
  animation-delay: 4.8s;
}

.alert-six {
  animation-delay: 6s;
}

.map-status-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.map-status-strip div {
  padding: 0.85rem;
  border: 1px solid rgba(219, 231, 243, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(6, 35, 74, 0.08);
  backdrop-filter: blur(16px);
}

.map-status-strip span,
.map-status-strip strong {
  display: block;
}

.map-status-strip span {
  color: var(--vc-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.map-status-strip strong {
  color: var(--vc-blue);
  font-size: 1rem;
}

.device-video {
  position: absolute;
  left: 28px;
  top: 28px;
  width: min(360px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 35, 74, 0.92), rgba(11, 53, 109, 0.86));
  box-shadow: 0 24px 70px rgba(6, 35, 74, 0.2);
  z-index: 3;
}

.video-topbar,
.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 900;
  font-size: 0.82rem;
}

.video-topbar strong {
  color: var(--vc-green-2);
}

.device-body {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(104, 201, 55, 0.2), transparent 8rem),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.gps-device {
  position: relative;
  z-index: 2;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: var(--vc-blue);
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  animation: deviceFloat 3s ease-in-out infinite;
}

.gps-device i {
  font-size: 2.2rem;
  color: var(--vc-green);
}

.gps-device b {
  position: absolute;
  bottom: 18px;
  font-size: 0.78rem;
}

.device-light {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--vc-green);
  box-shadow: 0 0 0 0 rgba(104, 201, 55, 0.8);
  animation: lightPulse 1.5s ease-out infinite;
}

.scan-ring {
  position: absolute;
  width: 156px;
  height: 156px;
  border: 2px solid rgba(104, 201, 55, 0.8);
  border-radius: 999px;
  animation: scanRing 2.1s ease-out infinite;
}

.video-feed-lines {
  position: absolute;
  inset: auto 0 18px;
  display: grid;
  gap: 8px;
  padding: 0 1.2rem;
}

.video-feed-lines span {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(104, 201, 55, 0.8), transparent);
  animation: feedLine 1.5s ease-in-out infinite;
}

.video-feed-lines span:nth-child(2) {
  animation-delay: 0.2s;
}

.video-feed-lines span:nth-child(3) {
  animation-delay: 0.4s;
}

.video-caption {
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.08);
}

.map-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 35, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 35, 74, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.route {
  position: absolute;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--vc-green), var(--vc-blue), transparent);
  box-shadow: 0 0 24px rgba(47, 167, 25, 0.36);
  animation: routePulse 3s ease-in-out infinite;
}

.route-one {
  width: 72%;
  left: 9%;
  top: 26%;
  transform: rotate(17deg);
}

.route-two {
  width: 82%;
  left: 10%;
  top: 57%;
  transform: rotate(-20deg);
  animation-delay: 0.9s;
}

.pin,
.vehicle-dot {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
}

.pin {
  width: 38px;
  height: 38px;
  background: var(--vc-blue);
  box-shadow: 0 10px 30px rgba(6, 35, 74, 0.28);
  animation: pinBounce 2.7s ease-in-out infinite;
}

.pin-a {
  left: 17%;
  top: 22%;
}

.pin-b {
  right: 18%;
  top: 34%;
  animation-delay: 0.45s;
}

.pin-c {
  left: 38%;
  bottom: 22%;
  animation-delay: 0.85s;
}

.vehicle-dot {
  width: 54px;
  height: 54px;
  background: var(--vc-green);
  box-shadow: 0 18px 40px rgba(47, 167, 25, 0.38);
  z-index: 2;
}

.truck-one {
  left: 12%;
  top: 42%;
  animation: driveOne 7s ease-in-out infinite alternate;
}

.truck-two {
  right: 17%;
  bottom: 18%;
  animation: driveTwo 6.5s ease-in-out infinite alternate;
}

.command-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100% - 56px));
  padding: 1.1rem;
  border: 1px solid rgba(219, 231, 243, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(6, 35, 74, 0.16);
}

.panel-head,
.vehicle-row,
.signal-card,
.product-foot,
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-head {
  margin-bottom: 1rem;
  color: var(--vc-blue);
  font-weight: 900;
}

.panel-head strong {
  color: var(--vc-green);
  font-size: 0.78rem;
}

.vehicle-row {
  border: 1px solid var(--vc-line);
  border-radius: 16px;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.vehicle-row.active {
  border-color: rgba(47, 167, 25, 0.42);
}

.vehicle-row i {
  color: var(--vc-green);
  font-size: 1.3rem;
}

.vehicle-row strong,
.vehicle-row span {
  display: block;
}

.vehicle-row span {
  color: var(--vc-muted);
  font-size: 0.85rem;
}

.vehicle-row em {
  color: var(--vc-blue);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.signal-card {
  padding: 0.9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--vc-blue), var(--vc-blue-2));
  color: #fff;
  font-weight: 800;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 24px;
}

.signal-bars b {
  display: block;
  width: 7px;
  background: var(--vc-green-2);
  border-radius: 99px;
  animation: signal 1.4s ease-in-out infinite;
}

.signal-bars b:nth-child(1) {
  height: 8px;
}

.signal-bars b:nth-child(2) {
  height: 13px;
  animation-delay: 0.1s;
}

.signal-bars b:nth-child(3) {
  height: 18px;
  animation-delay: 0.2s;
}

.signal-bars b:nth-child(4) {
  height: 24px;
  animation-delay: 0.3s;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.service-card,
.product-card,
.contact-info,
.contact-form,
.metric-tile {
  border: 1px solid var(--vc-line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(6, 35, 74, 0.08);
}

.service-card,
.product-card {
  height: 100%;
  border-radius: 16px;
  padding: 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 167, 25, 0.38);
  box-shadow: 0 28px 70px rgba(6, 35, 74, 0.14);
}

.service-card i,
.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--vc-blue), var(--vc-green));
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.about-section {
  background: linear-gradient(135deg, var(--vc-blue), #081a34);
}

.about-section h2,
.about-section .metric-tile strong,
.about-section .metric-tile span {
  color: #fff;
}

.about-section p {
  color: rgba(255, 255, 255, 0.72);
}

.mobility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-tile {
  border-color: var(--vc-line);
  background: #fff;
  border-radius: 22px;
  padding: 1.4rem;
  min-height: 178px;
}

.metric-tile.accent {
  background: rgba(47, 167, 25, 0.1);
}

.metric-tile.wide {
  grid-column: 1 / -1;
  min-height: 150px;
}

.metric-tile span {
  display: block;
  color: var(--vc-muted);
  font-weight: 800;
}

.metric-tile strong {
  display: block;
  color: var(--vc-blue);
  font-size: 3rem;
  line-height: 1;
  margin-top: 1.8rem;
}

.about-section .metric-tile {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.about-section .metric-tile.accent {
  background: rgba(47, 167, 25, 0.22);
}

.about-section .metric-tile strong,
.about-section .metric-tile span {
  color: #fff;
}

.stack-line {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}

.stack-line b {
  height: 12px;
  border-radius: 999px;
  background: var(--vc-green-2);
  animation: stackGlow 1.8s ease-in-out infinite;
}

.stack-line b:nth-child(even) {
  background: #fff;
  animation-delay: 0.35s;
}

.check-list p {
  margin-bottom: 0.75rem;
}

.check-list i {
  color: var(--vc-green-2);
  margin-right: 0.45rem;
}

.products-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 167, 25, 0.1), transparent 20rem),
    var(--vc-soft);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--vc-blue);
  font-weight: 900;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(6, 35, 74, 0.08);
}

.cart-pill i {
  color: var(--vc-green);
}

.product-card {
  background: #fff;
}

.device-card {
  display: flex;
  flex-direction: column;
}

.device-image {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--vc-line);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #f5f9ff);
  overflow: hidden;
}

.device-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.device-feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--vc-muted);
  font-size: 0.95rem;
}

.product-card h3 {
  min-height: 52px;
}

.product-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.product-meta span {
  color: var(--vc-blue);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: var(--vc-soft);
}

.product-foot strong {
  color: var(--vc-blue);
  font-size: 1.1rem;
}

.contact-section {
  background:
    linear-gradient(rgba(6, 35, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 35, 74, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact-section.section-pad {
  padding-top: 86px;
  padding-bottom: 86px;
}

.page-hero {
  padding: 180px 0 100px;
  color: #fff;
  background:
    linear-gradient(rgba(104, 201, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 201, 55, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 75% 20%, rgba(47, 167, 25, 0.3), transparent 25rem),
    var(--vc-blue);
  background-size: 48px 48px, 48px 48px, auto, auto;
  text-align: center;
}

.page-hero .breadcrumb-lite {
  justify-content: center;
}

.page-hero h1 {
  margin: 1.5rem auto;
  max-width: 850px;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-lite {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  margin-bottom: 1rem;
}

.breadcrumb-lite a {
  color: #fff;
  text-decoration: none;
}

.detail-card {
  height: 100%;
  padding: 2.2rem;
  border: 1px solid var(--vc-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(6, 35, 74, 0.05);
  transition: transform 0.3s ease;
}

.legal-body {
  background: #fff;
  border: 1px solid var(--vc-line);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 20px 60px rgba(6, 35, 74, 0.06);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.legal-section h2 i {
  color: var(--vc-green);
  font-size: 1.4rem;
}

.detail-card i {
  color: var(--vc-green);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.detail-card p,
.timeline-item p {
  color: var(--vc-muted);
}

.process-band {
  background: var(--vc-soft);
}

.timeline-item {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 4.2rem;
  border: 1px solid var(--vc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(6, 35, 74, 0.07);
}

.timeline-item span {
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  background: var(--vc-green);
}

.product-table {
  overflow: hidden;
  border: 1px solid var(--vc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 35, 74, 0.08);
}

.product-table table {
  margin: 0;
}

.product-table th {
  color: var(--vc-blue);
  background: var(--vc-soft);
}

.support-strip {
  padding: 2rem;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--vc-blue), var(--vc-green));
}

.contact-info,
.contact-form {
  height: 100%;
  border-radius: 20px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-info {
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 167, 25, 0.18), transparent 12rem),
    linear-gradient(135deg, var(--vc-blue), #0a315e);
}

.contact-info h2,
.contact-info a {
  color: #fff;
}

.contact-info h2 {
  max-width: 420px;
  font-size: 28px;
  line-height: 1.5;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.98rem;
  font-weight: 750;
}

.contact-info i {
  color: var(--vc-green-2);
}

.contact-form {
  padding: clamp(1.35rem, 2.2vw, 1.8rem);
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 10px;
  border-color: var(--vc-line);
  font-size: 0.96rem;
}

.form-label {
  color: var(--vc-ink);
  font-size: 0.92rem;
  font-weight: 750;
  margin-bottom: 0.45rem;
}

.contact-form textarea.form-control {
  min-height: 120px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(47, 167, 25, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(47, 167, 25, 0.12);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(rgba(104, 201, 55, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 201, 55, 0.07) 1px, transparent 1px),
    var(--vc-blue);
  background-size: 46px 46px;
}

.site-footer img {
  width: 220px;
  max-width: 56vw;
  padding: 0.45rem;
  border-radius: 10px;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}

.footer-brand p {
  max-width: 390px;
  margin: 1rem 0 1.3rem;
}

.footer-main h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-main a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin-bottom: 0.72rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-main a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.42;
    filter: saturate(0.8);
  }

  50% {
    opacity: 1;
    filter: saturate(1.4);
  }
}

@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes driveOne {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(260px, -82px);
  }
}

@keyframes driveTwo {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-230px, -150px);
  }
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@keyframes stackGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes laneMove {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 92px;
  }
}

@keyframes roadDrive {
  0% {
    transform: translateX(0) rotate(13deg);
  }

  50% {
    transform: translateX(56vw) rotate(13deg);
  }

  100% {
    transform: translateX(0) rotate(13deg);
  }
}

@keyframes gpsPulse {
  from {
    opacity: 0.75;
    transform: scale(0.58);
  }

  to {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes calloutFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes mapLaneMove {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 40px;
  }
}

@keyframes routeGlow {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes geofenceBreath {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 167, 25, 0.1);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(47, 167, 25, 0.02);
  }
}

@keyframes mapCarDrive {
  0% {
    transform: translate(0, 0) rotate(-18deg);
  }

  28% {
    transform: translate(170px, -54px) rotate(-18deg);
  }

  52% {
    transform: translate(306px, -134px) rotate(35deg);
  }

  74% {
    transform: translate(408px, -24px) rotate(88deg);
  }

  100% {
    transform: translate(0, 0) rotate(-18deg);
  }
}

@keyframes mapCarPulse {
  0% {
    transform: translate(0, 0);
  }

  28% {
    transform: translate(170px, -54px);
  }

  52% {
    transform: translate(306px, -134px);
  }

  74% {
    transform: translate(408px, -24px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulseWave {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(47, 167, 25, 0.45);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(47, 167, 25, 0);
  }
}

@keyframes alertFlash {
  0%,
  100% {
    opacity: 0.68;
    transform: translateX(10px) scale(0.98);
  }

  8%,
  22% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  30% {
    opacity: 0.68;
    transform: translateX(10px) scale(0.98);
  }
}

@keyframes loaderDrive {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(78px);
  }
}

@keyframes devicePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.26);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes deviceFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes lightPulse {
  to {
    box-shadow: 0 0 0 14px rgba(104, 201, 55, 0);
  }
}

@keyframes scanRing {
  from {
    opacity: 0.9;
    transform: scale(0.65);
  }

  to {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes feedLine {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-18px);
  }

  50% {
    opacity: 1;
    transform: translateX(18px);
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 82px 0;
  }

  .hero-section {
    padding-top: 128px;
  }

  .fleet-visual {
    min-height: 520px;
  }

  .pro-map-visual {
    min-height: 620px;
  }

  .hero-road-scene {
    opacity: 0.55;
  }

  .tracking-callout {
    display: none;
  }

  .map-alerts {
    top: 92px;
    width: min(290px, calc(100% - 48px));
  }

  .alert-card {
    padding: 0.62rem;
  }

  .map-status-strip {
    grid-template-columns: 1fr;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats div {
    width: 100%;
  }

  .hero-feature-pills span {
    width: 100%;
    justify-content: center;
  }

  .fleet-visual {
    min-height: 560px;
    border-radius: 18px;
  }

  .pro-map-visual {
    min-height: 650px;
  }

  .command-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .device-video {
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
  }

  .map-toolbar {
    left: 14px;
    right: 14px;
    top: 14px;
  }

  .map-alerts {
    left: 14px;
    right: 14px;
    top: 92px;
    width: auto;
  }

  .map-status-strip {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .road-main {
    top: 360px;
  }

  .moving-car {
    left: 44px;
    top: 374px;
  }

  .car-pulse {
    left: 52px;
    top: 382px;
  }

  .geofence-zone {
    left: 145px;
    top: 284px;
    width: 135px;
    height: 135px;
  }

  .device-body {
    min-height: 160px;
  }

  .mobility-grid {
    grid-template-columns: 1fr;
  }

  .metric-tile.wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  @keyframes driveOne {
    from {
      transform: translate(0, 0);
    }

    to {
      transform: translate(145px, -58px);
    }
  }

  @keyframes driveTwo {
    from {
      transform: translate(0, 0);
    }

    to {
      transform: translate(-125px, -105px);
    }
  }

  @keyframes mapCarDrive {
    0% {
      transform: translate(0, 0) rotate(-18deg);
    }

    45% {
      transform: translate(160px, -46px) rotate(-18deg);
    }

    72% {
      transform: translate(205px, -118px) rotate(35deg);
    }

    100% {
      transform: translate(0, 0) rotate(-18deg);
    }
  }

  @keyframes mapCarPulse {
    0% {
      transform: translate(0, 0);
    }

    45% {
      transform: translate(160px, -46px);
    }

    72% {
      transform: translate(205px, -118px);
    }

    100% {
      transform: translate(0, 0);
    }
  }
}
