/* CSS for STATS Section */
/* Stat cards */

/* vertical text */
.numbers-text {
  writing-mode: vertical-rl;
}

/* Scroll text */
.scroll-text {
  writing-mode: vertical-rl;
}


.hero-card {
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.25s ease;
  will-change: transform;
}

.card-layer {
  transform: translateZ(30px);
  transition: transform 0.25s ease;
}

.perspective-container {
  perspective: 1200px;
}


/* vertical writing */
.writing-mode {
  writing-mode: vertical-rl;
}

/* smooth infinite scroll */
@keyframes scrollVertical {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.animate-scroll-vertical {
  animation: scrollVertical 6s linear infinite;
}

/* stat card */
.stat-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(251,146,60,0.3);
}

.numbers-text {
  writing-mode: vertical-rl;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: 10px;
}

/* wrapper */
.numbers-wrapper {
  display: flex;
  flex-direction: column;
  animation: scrollNumbers 40s linear infinite;
  padding: 40px 0; /* 🔥 top & bottom spacing */
}

/* each track */
.numbers-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px; /* 🔥 space between TRUST words */
}

/* text */
.numbers-text {
  writing-mode: vertical-rl;
  font-size: 110px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
}

/* smooth infinite vertical scroll */
@keyframes scrollNumbers {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollNumbers {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}


/* CSS STARTS HERE FOR TECH STACK SECTION */
/* wrapper (fade edges effect 🔥) */
.tech-marquee-wrapper {
  position: relative;
  overflow: hidden;
}

/* fade edges (premium look) */
.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.tech-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.tech-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

/* scrolling line */
.tech-marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollTech 40s linear infinite;
  align-items: center;
}

/* icons */
.tech-marquee i {
  font-size: 44px;

  /* 🔥 soft orange tone */
  color: rgba(251,146,60,0.8);

  opacity: 0.9;
}

/* smooth infinite scroll */
@keyframes scrollTech {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Footer CSS */
/* headings */
.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 14px;
}

/* list */
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-list a {
  color: #9ca3af;
  transition: 0.3s;
}

.footer-list a:hover {
  color: #fb923c;
}

/* icons */
.footer-icon-dark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: white;
}

.footer-icon-dark:hover {
  background: rgba(251,146,60,0.15);
  color: #fb923c;
}

/* button */
.footer-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(to right, #f97316, #f59e0b);
  color: black;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.footer-btn-dark:hover {
  box-shadow: 0 0 20px rgba(251,146,60,0.4);
}

