/* Loading Screen Styles */
.realistic-speedometer-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.realistic-speedometer-loading-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(0, 136, 204, 0.5) 1px, transparent 1px);
  background-size: 33% 33%;
  opacity: 0.3;
  z-index: 1;
}

.realistic-speedometer-loading-screen::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.realistic-speedometer-loading-screen.realistic-speedometer-fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}



/* Speedometer Container */
.realistic-speedometer-main-container {
    position: relative;
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7;
}

/* SVG Gauge Container */
.realistic-speedometer-gauge-container {
    position: relative;
    width: 500px;
    height: 300px;
}

.realistic-speedometer-gauge-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

/* Needle */
.realistic-speedometer-needle-container {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.realistic-speedometer-needle {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 4px;
    height: 140px;
    background: linear-gradient(to top, #ff4444 0%, #ffffff 100%);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-100deg);
    transition: transform 0.05s linear;
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
}

.realistic-speedometer-needle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffffff 0%, #666666 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    border: 2px solid #333;
}

/* Loading Text */
.realistic-speedometer-loading-text {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Main Content Page */
.realistic-main-content-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.realistic-main-content-page.realistic-main-content-visible {
    opacity: 1;
}

/* Hero Section */
.realistic-hero-content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
    text-align: center;
}

.realistic-hero-content-wrapper {
    max-width: 800px;
}

.realistic-hero-main-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #ff8844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.realistic-hero-subtitle-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.realistic-hero-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff4444 0%, #ff8844 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.realistic-hero-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
}



.voltrack-portal-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
    transform: translateY(-100%);
  visibility: hidden;
    transition: opacity 0.5s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.voltrack-portal-transition.voltrack-portal-active {
  opacity: 1;
  visibility: visible;
    transform: translateY(0);
  pointer-events: all;
}

.voltrack-portal-door-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  perspective: 1000px;
}

.voltrack-portal-door {
  position: relative;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2332 100%);
  overflow: hidden;
  transform-origin: center;
}

.voltrack-portal-door-left {
  border-right: 2px solid #0088cc;
  box-shadow: inset -20px 0 50px rgba(0, 136, 204, 0.3);
}

.voltrack-portal-door-right {
  border-left: 2px solid #0088cc;
  box-shadow: inset 20px 0 50px rgba(0, 136, 204, 0.3);
}

.voltrack-portal-door-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 50px;
}

.voltrack-portal-line {
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
  opacity: 0;
  transform: scaleX(0);
}

/* Door Set 1 */
.voltrack-portal-set-one {
  z-index: 4;
}

.voltrack-portal-set-one .voltrack-portal-line {
  animation: voltrack-portal-line-slide 0.4s ease-out forwards;
}

.voltrack-portal-set-one .voltrack-portal-line:nth-child(1) { animation-delay: 0s; }
.voltrack-portal-set-one .voltrack-portal-line:nth-child(2) { animation-delay: 0.05s; }
.voltrack-portal-set-one .voltrack-portal-line:nth-child(3) { animation-delay: 0.1s; }
.voltrack-portal-set-one .voltrack-portal-line:nth-child(4) { animation-delay: 0.15s; }
.voltrack-portal-set-one .voltrack-portal-line:nth-child(5) { animation-delay: 0.2s; }

.voltrack-portal-set-one .voltrack-portal-door-left {
  animation: voltrack-portal-door-slide-left 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.35s forwards;
}

.voltrack-portal-set-one .voltrack-portal-door-right {
  animation: voltrack-portal-door-slide-right 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.35s forwards;
}

/* Door Set 2 */
.voltrack-portal-set-two {
  z-index: 3;
}

.voltrack-portal-set-two .voltrack-portal-line {
  animation: voltrack-portal-line-slide 0.4s ease-out forwards;
  animation-delay: 0.6s;
}

.voltrack-portal-set-two .voltrack-portal-line:nth-child(1) { animation-delay: 0.6s; }
.voltrack-portal-set-two .voltrack-portal-line:nth-child(2) { animation-delay: 0.65s; }
.voltrack-portal-set-two .voltrack-portal-line:nth-child(3) { animation-delay: 0.7s; }
.voltrack-portal-set-two .voltrack-portal-line:nth-child(4) { animation-delay: 0.75s; }
.voltrack-portal-set-two .voltrack-portal-line:nth-child(5) { animation-delay: 0.8s; }

.voltrack-portal-set-two .voltrack-portal-door-left {
  animation: voltrack-portal-door-slide-left 3s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}

.voltrack-portal-set-two .voltrack-portal-door-right {
  animation: voltrack-portal-door-slide-right 3s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}

/* Door Set 4 */
.voltrack-portal-set-four {
  z-index: 1;
}

.voltrack-portal-set-four .voltrack-portal-line {
  animation: voltrack-portal-line-slide 0.4s ease-out forwards;
}

.voltrack-portal-set-four .voltrack-portal-line:nth-child(1) { animation-delay: 0.2s; }
.voltrack-portal-set-four .voltrack-portal-line:nth-child(2) { animation-delay: 0.25s; }
.voltrack-portal-set-four .voltrack-portal-line:nth-child(3) { animation-delay: 0.3s; }
.voltrack-portal-set-four .voltrack-portal-line:nth-child(4) { animation-delay: 0.35s; }
.voltrack-portal-set-four .voltrack-portal-line:nth-child(5) { animation-delay: 0.35s; }

.voltrack-portal-set-four .voltrack-portal-door-left {
  animation: voltrack-portal-door-slide-left 2s cubic-bezier(0.22, 1, 0.36, 1) 1.75s forwards;
}

.voltrack-portal-set-four .voltrack-portal-door-right {
  animation: voltrack-portal-door-slide-right 2s cubic-bezier(0.22, 1, 0.36, 1) 1.75s forwards;
}

@keyframes voltrack-portal-line-slide {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes voltrack-portal-door-slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes voltrack-portal-door-slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}








.voltrack-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.voltrack-hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
}

.voltrack-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 20, 40, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.voltrack-hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voltrack-hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  padding-right: 60px;
}

.voltrack-hero-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 115px;
  line-height: 0.95;
  color: #fff;
  margin: 0;
  padding: 0;
  text-transform: none;
  letter-spacing: -4px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: voltrack-hero-heading-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes voltrack-hero-heading-reveal {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-hero-heading-line-one {
  display: block;
  transform: translateX(-10px);
  opacity: 0;
  animation: voltrack-hero-line-slide-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes voltrack-hero-line-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.voltrack-hero-heading-line-two {
  display: block;
  opacity: 0;
  animation: voltrack-hero-line-slide-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.voltrack-hero-heading-line-three {
  display: block;
  margin-left: 0px;
  opacity: 0;
  animation: voltrack-hero-line-slide-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.voltrack-hero-subtext-container {
  margin-top: 40px;
  max-width: 520px;
  opacity: 0;
  animation: voltrack-hero-subtext-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

@keyframes voltrack-hero-subtext-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-hero-description-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.3px;
}

.voltrack-hero-waitlist-button {
  margin-top: 50px;
  padding: 20px 50px;
  background: #0088cc;
  border: 2px solid #0088cc;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  animation: voltrack-hero-button-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
}

@keyframes voltrack-hero-button-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-hero-waitlist-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.voltrack-hero-waitlist-button:hover::before {
  left: 100%;
}

.voltrack-hero-waitlist-button:hover {
  background: transparent;
  border-color: #00aaff;
  color: #00aaff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.voltrack-hero-button-text {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-hero-button-arrow {
  position: relative;
  z-index: 1;
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-hero-waitlist-button:hover .voltrack-hero-button-arrow {
  transform: translateX(8px);
}

.voltrack-hero-right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  width: 50%;
  height: 90%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.voltrack-hero-feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  margin-top: 40px;
}

.voltrack-hero-feature-item {
  position: relative;
  padding: 12px 0;
  opacity: 0;
  animation: voltrack-hero-feature-item-slide 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voltrack-hero-feature-item:nth-child(1) {
  animation-delay: 2s;
}

.voltrack-hero-feature-item:nth-child(2) {
  animation-delay: 2.1s;
}

.voltrack-hero-feature-item:nth-child(3) {
  animation-delay: 2.2s;
}

.voltrack-hero-feature-item:nth-child(4) {
  animation-delay: 2.3s;
}

.voltrack-hero-feature-item:nth-child(5) {
  animation-delay: 2.4s;
}

.voltrack-hero-feature-item:nth-child(6) {
  animation-delay: 2.5s;
}

@keyframes voltrack-hero-feature-item-slide {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.voltrack-hero-feature-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.voltrack-hero-feature-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #0088cc;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-hero-feature-item:hover .voltrack-hero-feature-text {
  color: rgba(255, 255, 255, 1);
  transform: translateX(-10px);
}

.voltrack-hero-feature-item:hover .voltrack-hero-feature-text::after {
  width: 15px;
}

.voltrack-hero-feature-active .voltrack-hero-feature-text {
  color: #fff;
  font-weight: 600;
}

.voltrack-hero-feature-active .voltrack-hero-feature-text::after {
  width: 15px;
  background: #00aaff;
}

.voltrack-hero-large-text-display {
  position: relative;
  margin-top: auto;
  opacity: 0;
  animation: voltrack-hero-large-text-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.8s forwards;
}

@keyframes voltrack-hero-large-text-reveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.voltrack-hero-display-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: -6px;
  line-height: 1;
  text-transform: uppercase;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.voltrack-hero-corner-accent-topleft {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-top: 2px solid rgba(0, 170, 255, 0.4);
  border-left: 2px solid rgba(0, 170, 255, 0.4);
  z-index: 4;
  opacity: 0;
  animation: voltrack-hero-corner-fade-in 1s ease 1.2s forwards;
}

@keyframes voltrack-hero-corner-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.voltrack-hero-corner-accent-topright {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-top: 2px solid rgba(0, 170, 255, 0.4);
  border-right: 2px solid rgba(0, 170, 255, 0.4);
  z-index: 4;
  opacity: 0;
  animation: voltrack-hero-corner-fade-in 1s ease 1.4s forwards;
}

.voltrack-hero-corner-accent-bottomleft {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid rgba(0, 170, 255, 0.4);
  border-left: 2px solid rgba(0, 170, 255, 0.4);
  z-index: 4;
  opacity: 0;
  animation: voltrack-hero-corner-fade-in 1s ease 1.6s forwards;
}

.voltrack-hero-corner-accent-bottomright {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid rgba(0, 170, 255, 0.4);
  border-right: 2px solid rgba(0, 170, 255, 0.4);
  z-index: 4;
  opacity: 0;
  animation: voltrack-hero-corner-fade-in 1s ease 1.8s forwards;
}

.voltrack-hero-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00aaff, transparent);
  z-index: 5;
  opacity: 0.6;
  animation: voltrack-hero-scan-line-move 8s linear infinite;
}

@keyframes voltrack-hero-scan-line-move {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 1500px) {
  .voltrack-hero-main-heading {
    font-size: 100px;
    letter-spacing: -3px;
  }

  .voltrack-hero-display-text {
    font-size: 140px;
    letter-spacing: -5px;
  }

  .voltrack-hero-tech-number {
    font-size: 36px;
  }
}

@media (max-width: 1200px) {
  .voltrack-hero-content-wrapper {
    padding: 0 60px;
  }

  .voltrack-hero-main-heading {
    font-size: 85px;
    letter-spacing: -2px;
  }

  .voltrack-hero-display-text {
    font-size: 120px;
  }

  .voltrack-hero-description-text {
    font-size: 18px;
  }
}

@media (max-width: 968px) {
  .voltrack-hero-content-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
  }

  .voltrack-hero-left-content {
    width: 100%;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .voltrack-hero-right-content {
    width: 100%;
    align-items: center;
    height: auto;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .voltrack-hero-main-heading {
    font-size: 70px;
    align-items: center;
  }

  .voltrack-hero-heading-line-two {
    margin-left: 0;
  }

  .voltrack-hero-subtext-container {
    text-align: center;
  }

  .voltrack-hero-feature-list {
    align-items: center;
    margin-top: 30px;
  }

  .voltrack-hero-display-text {
    font-size: 90px;
  }

  .voltrack-hero-large-text-display {
    display: none;
  }
}

@media (max-width: 768px) {
  .voltrack-hero-main-heading {
    font-size: 56px;
    letter-spacing: -1px;
  }

  .voltrack-hero-description-text {
    font-size: 16px;
  }

  .voltrack-hero-waitlist-button {
    padding: 18px 40px;
    font-size: 14px;
  }

  .voltrack-hero-tech-number {
    font-size: 28px;
  }

  .voltrack-hero-feature-text {
    font-size: 12px;
  }

  .voltrack-hero-corner-accent-topleft,
  .voltrack-hero-corner-accent-topright,
  .voltrack-hero-corner-accent-bottomleft,
  .voltrack-hero-corner-accent-bottomright {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .voltrack-hero-content-wrapper {
    padding: 0 24px;
  }

  .voltrack-hero-main-heading {
    font-size: 42px;
  }

  .voltrack-hero-description-text {
    font-size: 14px;
  }

  .voltrack-hero-waitlist-button {
    padding: 16px 35px;
    font-size: 13px;
  }

  .voltrack-hero-tech-number {
    font-size: 24px;
  }

  .voltrack-hero-feature-item {
    padding: 10px 0;
  }

  .voltrack-hero-corner-accent-topleft,
  .voltrack-hero-corner-accent-topright,
  .voltrack-hero-corner-accent-bottomleft,
  .voltrack-hero-corner-accent-bottomright {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
  }
}







.voltrack-theft-crisis-section {
  position: relative;
  width: 100%;
  height: max-content;
  background: #0088cc;
  padding-top: 120px;
  overflow: hidden;
}

.voltrack-theft-crisis-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.voltrack-theft-crisis-image-wrapper {
  width: 50%;
  position: relative;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-theft-crisis-image-wrapper.voltrack-theft-image-visible {
  transform: translateX(0);
  opacity: 1;
}

.voltrack-theft-crisis-image-mask {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 0 250px 250px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.voltrack-theft-crisis-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-theft-crisis-image-mask:hover .voltrack-theft-crisis-image {
  transform: scale(1.05);
}

.voltrack-theft-crisis-content {
  width: 50%;
  opacity: 0.5;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-theft-crisis-content.voltrack-theft-crisis-visible {
  opacity: 1;
}

.voltrack-theft-crisis-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 40px 0;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
}

.voltrack-theft-crisis-heading-line {
  display: block;
}

.voltrack-theft-crisis-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 0.3px;
}

.voltrack-theft-stats-container {
  max-width: 1600px;
  margin: 100px auto 0;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.voltrack-theft-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  background: #1a2332;
  padding: 50px 40px 60px;
  border-radius: 24px 24px 0 0;
  position: relative;
  box-shadow: 
    0 -10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 136, 204, 0.2);
  border-bottom: none;
}

.voltrack-theft-stat-item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 136, 204, 0.3) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.voltrack-theft-stat-item:hover::before {
  opacity: 1;
}

.voltrack-theft-stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  border-radius: 24px 24px 0 0;
}

.voltrack-theft-stat-item.voltrack-theft-stat-visible {
  opacity: 1;
  transform: translateY(0);
}

.voltrack-theft-stat-item:nth-child(1) {
  transition-delay: 0.1s;
}

.voltrack-theft-stat-item:nth-child(2) {
  transition-delay: 0.3s;
}

.voltrack-theft-stat-item:nth-child(3) {
  transition-delay: 0.5s;
}

.voltrack-theft-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.voltrack-theft-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .voltrack-theft-stat-item {
    padding: 40px 30px 50px;
  }

  .voltrack-theft-stat-number {
    font-size: 48px;
  }
}

@media (max-width: 968px) {
  .voltrack-theft-stats-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
  }

  .voltrack-theft-stat-item {
    border-radius: 24px;
    border: 2px solid rgba(0, 136, 204, 0.2);
  }

  .voltrack-theft-stat-item::before {
    height: 100%;
    border-radius: 24px;
  }

  .voltrack-theft-stat-item::after {
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .voltrack-theft-stat-item {
    padding: 35px 25px 45px;
  }

  .voltrack-theft-stat-number {
    font-size: 40px;
  }

  .voltrack-theft-stat-label {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .voltrack-theft-crisis-container {
    gap: 60px;
  }

  .voltrack-theft-crisis-heading {
    font-size: 56px;
  }

  .voltrack-theft-stat-number {
    font-size: 48px;
  }
}

@media (max-width: 968px) {
  .voltrack-theft-crisis-container {
    flex-direction: column;
    gap: 60px;
  }

  .voltrack-theft-crisis-image-wrapper,
  .voltrack-theft-crisis-content {
    width: 100%;
  }

  .voltrack-theft-crisis-image-mask {
    border-radius: 0 150px 150px 0;
    height: 400px;
  }

  .voltrack-theft-stats-container {
    flex-direction: column;
    gap: 50px;
  }

  .voltrack-theft-crisis-heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .voltrack-theft-crisis-section {
    padding: 80px 0;
  }

  .voltrack-theft-crisis-container,
  .voltrack-theft-stats-container {
    padding: 0 40px;
  }

  .voltrack-theft-crisis-heading {
    font-size: 42px;
  }

  .voltrack-theft-crisis-description {
    font-size: 18px;
  }

  .voltrack-theft-stat-number {
    font-size: 40px;
  }
}



















.voltrack-features-bodyguard-section {
  position: relative;
  width: 100%;
  height: max-content;
  background: #1a2332;
  padding: 150px 0 200px;
  overflow: hidden;
}

.voltrack-features-bodyguard-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.voltrack-features-bodyguard-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin: 0 0 100px 0;
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(40px);
  animation: voltrack-features-heading-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes voltrack-features-heading-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voltrack-features-bodyguard-showcase {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}

.voltrack-features-selection-panel {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voltrack-features-selection-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: rgba(15, 20, 30, 0.6);
  border: 2px solid rgba(0, 136, 204, 0.2);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(10px);
}

.voltrack-features-selection-item:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.5);
  transform: translateX(10px);
}

.voltrack-features-item-active {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 170, 255, 0.2) 100%);
  border-color: #0088cc;
  box-shadow: 0 0 30px rgba(0, 136, 204, 0.4);
}

.voltrack-features-selection-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 136, 204, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-features-item-active .voltrack-features-selection-icon {
  background: #0088cc;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.6);
}

.voltrack-features-selection-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(1.2) invert(1);
}

.voltrack-features-selection-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-features-item-active .voltrack-features-selection-text {
  color: #fff;
  font-weight: 700;
}

.voltrack-features-display-panel {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.voltrack-features-device-frame {
  position: relative;
  width: 550px;
  height: 550px;
  background: linear-gradient(145deg, #1e2635 0%, #141924 100%);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 20px 60px rgba(0, 136, 204, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.6);
  overflow: visible;
}

.voltrack-features-device-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #00d4ff, #0088cc, #0055aa, #00d4ff);
  background-size: 400% 400%;
  border-radius: 30px;
  animation: voltrack-features-border-gradient 4s ease infinite;
  filter: blur(2px);
}

@keyframes voltrack-features-border-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.voltrack-features-device-inner-shadow {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 20px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.voltrack-features-device-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: voltrack-features-device-float 6s ease-in-out infinite;
}

@keyframes voltrack-features-device-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.voltrack-features-bluetooth-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.voltrack-features-bluetooth-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}

.voltrack-features-circle-one {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, rgba(0, 136, 204, 0.8) 50%, transparent 100%);
  border: 2px solid rgba(0, 212, 255, 0.4);
}

.voltrack-features-circle-two {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.5) 0%, rgba(0, 136, 204, 0.75) 50%, transparent 100%);
  border: 2px solid rgba(0, 170, 255, 0.3);
}

.voltrack-features-circle-three {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.4) 0%, rgba(0, 85, 170, 0.7) 50%, transparent 100%);
  border: 2px solid rgba(0, 136, 204, 0.25);
}

.voltrack-features-circle-four {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, rgba(0, 68, 136, 0.65) 50%, transparent 100%);
  border: 2px solid rgba(0, 102, 204, 0.2);
}

.voltrack-features-wave-one .voltrack-features-bluetooth-circle {
  animation: voltrack-features-bluetooth-pulse 5s ease-out infinite;
}

.voltrack-features-wave-two .voltrack-features-bluetooth-circle {
  animation: voltrack-features-bluetooth-pulse 5s ease-out 1.25s infinite;
}

.voltrack-features-wave-three .voltrack-features-bluetooth-circle {
  animation: voltrack-features-bluetooth-pulse 5s ease-out 2.5s infinite;
}

.voltrack-features-wave-four .voltrack-features-bluetooth-circle {
  animation: voltrack-features-bluetooth-pulse 5s ease-out 3.75s infinite;
}

@keyframes voltrack-features-bluetooth-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.voltrack-features-description-container {
  text-align: center;
  max-width: 600px;
}

.voltrack-features-description-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.voltrack-features-description-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  overflow: hidden;
  border-right: 2px solid #0088cc;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.voltrack-features-typewriter-active {
    animation: voltrack-features-typewriter 0.8s steps(60) forwards, voltrack-features-cursor-blink 0.75s step-end infinite;
}

@keyframes voltrack-features-typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes voltrack-features-cursor-blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 1400px) {
  .voltrack-features-bodyguard-showcase {
    gap: 60px;
  }

  .voltrack-features-device-frame {
    width: 480px;
    height: 480px;
  }
}

@media (max-width: 1200px) {
  .voltrack-features-bodyguard-main-heading {
    font-size: 56px;
  }

  .voltrack-features-bodyguard-showcase {
    gap: 50px;
  }

  .voltrack-features-device-frame {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 968px) {
  .voltrack-features-bodyguard-section {
    padding: 100px 0 150px;
  }

  .voltrack-features-bodyguard-main-heading {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .voltrack-features-bodyguard-showcase {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .voltrack-features-selection-panel,
  .voltrack-features-display-panel {
    width: 100%;
  }
  .voltrack-features-display-panel {
    flex-direction: column-reverse;
  }

  .voltrack-features-device-frame {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .voltrack-features-bodyguard-container {
    padding: 0 40px;
  }

  .voltrack-features-bodyguard-main-heading {
    font-size: 36px;
  }

  .voltrack-features-selection-item {
    padding: 20px 24px;
  }

  .voltrack-features-selection-icon {
    width: 40px;
    height: 40px;
  }

  .voltrack-features-selection-icon img {
    width: 24px;
    height: 24px;
  }

  .voltrack-features-selection-text {
    font-size: 16px;
  }

  .voltrack-features-description-title {
    font-size: 26px;
  }

  .voltrack-features-description-text {
    font-size: 18px;
  }
}


























.voltrack-innovation-hubs-section {
  position: relative;
  width: 100%;
  height: max-content;
  background: linear-gradient(180deg, #e8f4f8 0%, #f5f7fa 100%);
  padding: 120px 0;
  overflow: hidden;
}

.voltrack-innovation-hubs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 170, 255, 0.03) 0%, transparent 50%);
}

.voltrack-innovation-hubs-container {
    position: relative;
    z-index: 5;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

.voltrack-innovation-hubs-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.2;
  color: #1a1f2e;
  text-align: center;
  margin: 0 0 80px 0;
  letter-spacing: -1px;
}

.voltrack-innovation-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.voltrack-innovation-logos-panel {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.voltrack-innovation-logo-item {
  width: calc(33.333% - 27px);
  min-width: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.voltrack-innovation-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 136, 204, 0.2);
}

.voltrack-innovation-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.3) opacity(0.7);
  transition: filter 0.4s ease;
}

.voltrack-innovation-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

.voltrack-innovation-quote-panel {
  width: 55%;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.95) 0%, rgba(26, 35, 50, 0.95) 100%);
  border-radius: 24px;
  padding: 80px 60px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 136, 204, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.voltrack-innovation-quote-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('TELL_ME_THE_IMAGE_PATH');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  filter: grayscale(0.5) blur(2px);
}

.voltrack-innovation-quote-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.2) 0%, rgba(0, 68, 136, 0.3) 100%);
  mix-blend-mode: multiply;
}

.voltrack-innovation-quote-panel::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, transparent, #0088cc, transparent, #00d4ff);
  background-size: 400% 400%;
  border-radius: 24px;
  z-index: 0;
  opacity: 0.3;
  animation: voltrack-innovation-border-flow 6s ease infinite;
}

@keyframes voltrack-innovation-border-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.voltrack-innovation-quote-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: voltrack-innovation-glow-pulse 4s ease-in-out infinite;
}

@keyframes voltrack-innovation-glow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.voltrack-innovation-quote-decoration-top {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 150px;
  height: 150px;
  z-index: 2;
}

.voltrack-innovation-quote-decoration-top path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: voltrack-innovation-line-draw 3s ease-in-out infinite;
}

@keyframes voltrack-innovation-line-draw {
  0%, 100% {
    stroke-dashoffset: 300;
    opacity: 0.3;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
}

.voltrack-innovation-quote-decoration-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  z-index: 2;
}

.voltrack-innovation-quote-decoration-bottom path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: voltrack-innovation-line-draw 3s ease-in-out 1.5s infinite;
}

.voltrack-innovation-quote-mark-opening {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 100px;
  height: 100px;
  z-index: 2;
  opacity: 0.2;
  animation: voltrack-innovation-quote-float 6s ease-in-out infinite;
}

@keyframes voltrack-innovation-quote-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.voltrack-innovation-quote-mark-closing {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 100px;
  height: 100px;
  transform: rotate(180deg);
  z-index: 2;
  opacity: 0.2;
  animation: voltrack-innovation-quote-float 6s ease-in-out 3s infinite;
}

.voltrack-innovation-quote-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
  margin: 0 0 30px 0;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.voltrack-innovation-quote-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #00d4ff;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 136, 204, 0.5);
  position: relative;
}

@media (max-width: 1200px) {
  .voltrack-innovation-hubs-heading {
    font-size: 48px;
  }

  .voltrack-innovation-content-wrapper {
    gap: 60px;
  }

  .voltrack-innovation-quote-text {
    font-size: 22px;
  }
}

@media (max-width: 968px) {
  .voltrack-innovation-hubs-section {
    padding: 80px 0;
  }

  .voltrack-innovation-hubs-heading {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .voltrack-innovation-content-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .voltrack-innovation-logos-panel,
  .voltrack-innovation-quote-panel {
    width: 100%;
  }

  .voltrack-innovation-logo-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .voltrack-innovation-hubs-container {
    padding: 0 40px;
  }

  .voltrack-innovation-hubs-heading {
    font-size: 32px;
  }

  .voltrack-innovation-quote-panel {
    padding: 60px 40px;
  }

  .voltrack-innovation-quote-text {
    font-size: 20px;
  }

  .voltrack-innovation-quote-author {
    font-size: 16px;
  }
}

.voltrack-innovation-particles-container {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 300px;
  overflow: visible;
  pointer-events: none;
}

.voltrack-innovation-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: voltrack-innovation-particle-fall linear infinite;
  filter: blur(1px);
}

.voltrack-innovation-particle-square {
  border-radius: 4px;
}

.voltrack-innovation-particle-triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid;
  border-radius: 0;
  background: transparent !important;
}

.voltrack-innovation-particle-diamond {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.voltrack-innovation-particle-hexagon {
  width: 14px;
  height: 8px;
  position: relative;
  border-radius: 2px;
}

.voltrack-innovation-particle-hexagon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 4px solid;
}

.voltrack-innovation-particle-hexagon::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 4px solid;
}

.voltrack-innovation-particle-star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border-radius: 0;
}

@keyframes voltrack-innovation-particle-fall {
  0% {
    transform: translateY(-150px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(calc(100vh + 200px)) rotate(360deg);
    opacity: 0;
  }
}

@keyframes voltrack-innovation-particle-sway {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(30px) rotate(180deg);
  }
}















@media screen and (max-width: 625px) {
  .realistic-speedometer-main-container {
    width: 90%;
    aspect-ratio: 1.5 / 1;
  }

  .voltrack-theft-crisis-container {
    padding: 20px;
  }
  .voltrack-theft-crisis-image-mask {
    border-radius: 15px;
    height: 400px;
  }

  .voltrack-features-circle-one {
    width: 75%;
    height: 75%;
  }

  .voltrack-features-circle-two {
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.5) 0%, rgba(0, 136, 204, 0.75) 50%, transparent 100%);
    border: 2px solid rgba(0, 170, 255, 0.3);
  }

  .voltrack-features-circle-three {
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0) 0%, rgba(0, 85, 170, 0.0) 50%, transparent 100%);
    border: 2px solid rgba(0, 136, 204, 0.25);
  }

  .voltrack-features-circle-four {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0) 0%, rgba(0, 68, 136, 0.0) 50%, transparent 100%);
    border: 2px solid rgba(0, 102, 204, 0.2);
  }

  .voltrack-features-description-text {
    font-size: 14px;
  }

}

@media screen and (max-width: 400px) {
  .voltrack-features-description-text {
    font-size: 12px;
  }

  .voltrack-innovation-hubs-container {
    padding: 0;
  }
}























