/* navbar starts here */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600&display=swap');

:root {
  --bg: #000000;
  --glass: rgba(255,255,255,0.02);
  --border: rgba(255,255,255,0.06);

  --text: #ffffff;
  --muted: #6b7280;

  --accent: #0A84FF;
  --accent-glow: rgba(10,132,255,0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background: #000000;
  color: var(--text);
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  padding: 12px 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--glass);
  backdrop-filter: blur(14px);

  border-radius: 14px;
  border: 1px solid var(--border);

  z-index: 1000;
}

/* subtle depth */
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.02),
    0 10px 30px rgba(0,0,0,0.9);
  pointer-events: none;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
}

.logo span {
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--text);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center; /* 🔥 FIXED */
  gap: 30px;
}

.nav-links a {
  display: flex;              /* 🔥 FIXED */
  align-items: center;        /* 🔥 FIXED */
  height: 36px;               /* 🔥 SAME HEIGHT */
  
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;

  position: relative;
  transition: 0.25s;
}

/* hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: 0.25s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE */
.nav-links a.active {
  color: var(--text);
   text-shadow: 0 0 10px rgba(10,132,255,0.6);
}

.nav-links a.active::after {
  width: 100%;
}


/* CTA BUTTON */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 36px;               /* 🔥 MATCHED HEIGHT */
  padding: 0 18px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);

  color: var(--text) !important;
  font-size: 12px;
  letter-spacing: 1px;

  transition: 0.25s;
}

.cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* MENU ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;

    flex-direction: column;
    gap: 18px;

    background: #000000;
    border-radius: 12px;
    border: 1px solid var(--border);

    padding: 20px;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .menu-toggle {
    display: flex;
  }
}

/* navbar ends here */

/* footer starts here */

/* LOGO */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(10,132,255,0.3));
}

/* SOCIAL ICONS */
.socials a {
  margin: 0 10px;
  font-size: 18px;
  color: #9ca3af;
  transition: 0.3s;
  display: inline-block;
}

/* HOVER EFFECT */
.socials a:hover {
  color: #0A84FF;
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 0 12px rgba(10,132,255,0.7);
}

.footer {
  background: #000;
  padding: 100px 20px 40px;
  position: relative;
  overflow: hidden;
}

/* GRID BACKGROUND */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: footerGrid 25s linear infinite;
}

@keyframes footerGrid {
  100% { transform: translate(50px,50px); }
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand h2 {
  color: #fff;
  font-size: 28px;
}

.footer-brand p {
  color: #9ca3af;
  margin-top: 10px;
  max-width: 300px;
}

/* COLUMN */
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  color: #9ca3af;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.footer-col a:hover {
  color: #0A84FF;
  text-shadow: 0 0 10px rgba(10,132,255,0.5);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* SOCIAL */
.socials {
  margin-bottom: 20px;
}

.socials a {
  margin: 0 10px;
  font-size: 20px;
  color: #9ca3af;
  transition: 0.3s;
}

.socials a:hover {
  color: #0A84FF;
  text-shadow: 0 0 10px rgba(10,132,255,0.6);
}

/* COPYRIGHT */
.footer-bottom p {
  color: #6b7280;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

/* footer ends here */

/* unique cursor starts here */

/* HIDE DEFAULT CURSOR */

/* HIDE DEFAULT CURSOR */
body {
  cursor: none;
}

/* CORE DOT */
.cursor-core {
  width: 6px;
  height: 6px;
  background: #0A84FF;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}

/* RING */
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(10,132,255,0.6);
  border-radius: 50%;
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  transition: transform 0.2s ease;
}

/* GLOW AURA */
.cursor-glow {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(10,132,255,0.2), transparent 60%);
  border-radius: 50%;
  position: fixed;
  z-index: 9997;
  pointer-events: none;
  filter: blur(20px);
}

/* TRAIL CANVAS */
#cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
}

.cursor-glow {
  transition: transform 0.2s ease, opacity 0.3s;
}

/* SPOTLIGHT */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--x) var(--y),
    rgba(10,132,255,0.12),
    transparent 200px);
  z-index: 1;
}

/* unique cursor ends here */

/* loader starts here */

/* LOADER WRAPPER */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  flex-direction: column;
}

/* CONTENT */
.loader-content {
  text-align: center;
}

/* TEXT */
.loader-text {
  color: #0A84FF;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: monospace;
}

/* DOTS ANIMATION */
.dots::after {
  content: "";
  animation: dotsAnim 1.5s infinite;
}

@keyframes dotsAnim {
  0% { content: ""; }
  33% { content: "."; }
  66% { content: ".."; }
  100% { content: "..."; }
}

/* BAR */
.loader-bar {
  width: 260px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}

/* PROGRESS LINE */
.loader-progress {
  width: 0%;
  height: 100%;
  background: #0A84FF;
  box-shadow: 0 0 10px #0A84FF;
  animation: loadBar 2.5s ease forwards;
}

/* ANIMATION */
@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* FADE OUT */
.loader {
  transition: opacity 0.5s ease;
}

/* loader ends here */

/* homepage starts here */

/* hero section starts here */

/* ================= HERO ================= */

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* GRID BACKGROUND */
#gridCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}

/* TITLE */
.hero h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  transition: all 0.6s ease;
}

/* HIGHLIGHT */
.hero h1 span {
  color: #0A84FF;
}

/* SUBTEXT */
.hero p {
  margin-top: 18px;
  font-size: 16px;
  color: #9ca3af;
  letter-spacing: 1px;
  transition: all 0.6s ease;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  height: 44px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

/* PRIMARY */
.btn.primary {
  background: #0A84FF;
  color: #000;
  box-shadow: 0 0 20px rgba(10,132,255,0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(10,132,255,0.7);
}

/* SECONDARY */
.btn.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn.secondary:hover {
  border-color: #0A84FF;
  color: #0A84FF;
}

/* ANIMATION STATES */
.fade-out {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* hero section ends here */

/* trust section starts here */

/* ================= TRUST SECTION ================= */

/* TRUST SECTION */
.trust {
  width: 100%;
  padding: 70px 20px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TEXT */
.trust-text {
  font-size: 14px;
  color: #9ca3af;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.trust-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* STATS */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.stat.show {
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER */
.stat h3 {
  font-size: 34px;
  color: #fff;
}

/* LABEL */
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

/* HOVER EFFECT */
.stat:hover h3 {
  color: #0A84FF;
  text-shadow: 0 0 10px rgba(10,132,255,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-stats {
    gap: 30px;
  }

  .stat h3 {
    font-size: 24px;
  }
}

/* trust section ends here */

/* service section starts here */

/* ================= SERVICES ================= */

.services {
  padding: 120px 20px;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* GRID BG */
/* .services::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 25s linear infinite;
  top: -50%;
  left: -50%;
} */

.services::before {
  content: "";
  position: absolute;
  inset: 0; /* 🔥 FIXED */
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 25s linear infinite;
}

@keyframes moveGrid {
  100% { transform: translate(40px,40px); }
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 40px;
  color: #fff;
}

.section-sub {
  color: #9ca3af;
  margin-top: 10px;
}

/* GRID */
.services-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  padding: 30px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  text-align: left;

  transition: 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;

  position: relative;
  overflow: hidden;
}

/* ICON */
.icon {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.service-card p {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
}

/* GLOW EDGE */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  box-shadow: 0 0 30px rgba(10,132,255,0.2);
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

/* HOVER */
.service-card:hover {
  border-color: rgba(10,132,255,0.5);
}

/* service section ends here */

/* portfolio section starts here */

/* ================= PORTFOLIO ================= */

.portfolio {
  padding: 120px 20px;
  background: #000;
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* GRID */
.portfolio-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARD */
.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: 0.3s;
}

/* MEDIA */
.media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.media img,
.media video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO HIDDEN */
.media video {
  opacity: 0;
  transition: 0.4s ease;
}

/* HOVER SWITCH */
.portfolio-item:hover .media video {
  opacity: 1;
}

.portfolio-item:hover .media img {
  opacity: 0;
}

/* INFO */
.info {
  padding: 20px;
  text-align: left;
}

.info h3 {
  color: #fff;
}

.info span {
  color: #0A84FF;
  font-size: 13px;
}

/* HOVER EFFECT */
.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: rgba(10,132,255,0.5);
  box-shadow: 0 0 25px rgba(10,132,255,0.2);
}

/* portfolio section ends here */

/* solution section starts here */

/* ================= SOLUTIONS ================= */
/* HEADER */
.solutions-header {
  margin-bottom: 60px; /* 🔥 spacing instead of absolute */
  max-width: 600px;
}

/* TITLE */
.solutions-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

/* SUBTEXT */
.solutions-header p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}



.solutions-header h2 {
  text-shadow: 0 0 20px rgba(10,132,255,0.2);
}

.solutions {
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND GRID */
.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  100% { transform: translate(60px,60px); }
}

/* LAYOUT */
.solutions-wrapper {
  /* width: 90%; */
  width: 100%;
  /* max-width: 1200px; */
  max-width: 1250px;
  display: flex;
  gap: 60px;
  z-index: 2;
  padding: 1rem;
}

/* LEFT MENU */
.solutions-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.solution-item {
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.solution-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #0A84FF;
  transition: 0.3s;
}

.solution-item:hover,
.solution-item.active {
  color: #fff;
}

.solution-item.active::after {
  width: 100%;
}

/* RIGHT PANEL */
.solutions-display {
  flex: 2;
  position: relative;
}

/* PANEL */
.solution-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s;
}

.solution-panel.active {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.solution-panel h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.solution-panel p {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 500px;
}

/* GLOW PANEL EFFECT */
.solutions-display::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(10,132,255,0.1), transparent);
  z-index: -1;
}

/* SCROLLABLE LIST */
.solutions-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

/* CUSTOM SCROLLBAR (FUTURISTIC) */
.solutions-list::-webkit-scrollbar {
  width: 4px;
}

.solutions-list::-webkit-scrollbar-thumb {
  background: rgba(10,132,255,0.5);
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solutions-wrapper {
    flex-direction: column;
  }

  .solution-panel h2 {
    font-size: 28px;
  }
}

/* solution section ends here */

/* why choose us section starts here */

.why {
  padding: 120px 20px;
  background: #000;
  position: relative;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 38px;
  color: #fff;
}

.why-header p {
  color: #9ca3af;
  margin-top: 10px;
}

/* GRID */
.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.why-card {
  padding: 30px;
  border-radius: 16px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);

  text-align: left;

  position: relative;
  overflow: hidden;

  transition: 0.4s;
  transform: translateY(40px);
  opacity: 0;
}

/* SHOW */
.why-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* ICON */
.icon {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.why-card p {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
}

/* GLOW EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  box-shadow: 0 0 40px rgba(10,132,255,0.15);
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,132,255,0.5);
}

/* why choose us section ends here */

/* process section starts here */

.process {
  padding: 120px 20px;
  background: #000;
}

/* HEADER */
.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 38px;
  color: #fff;
}

.process-header p {
  color: #9ca3af;
  margin-top: 10px;
}

/* PIPELINE */
.process-line {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* CONNECTING LINE */
.process-line::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

/* STEP */
.process-step {
  text-align: center;
  width: 18%;
  position: relative;

  transform: translateY(40px);
  opacity: 0;
  transition: 0.6s;
}

.process-step.show {
  transform: translateY(0);
  opacity: 1;
}

/* CIRCLE */
.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  border: 2px solid rgba(255,255,255,0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  color: #fff;
  font-size: 18px;

  transition: 0.3s;
}

/* HOVER */
.process-step:hover .circle {
  border-color: #0A84FF;
  box-shadow: 0 0 20px rgba(10,132,255,0.5);
}

/* TEXT */
.process-step h3 {
  color: #fff;
  margin-top: 15px;
  font-size: 15px;
}

.process-step p {
  color: #9ca3af;
  font-size: 13px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .process-line {
    flex-direction: column;
    gap: 40px;
  }

  .process-line::before {
    display: none;
  }

  .process-step {
    width: 100%;
  }
}

/* process section ends here */

/* stats section starts here */

.stats {
  padding: 120px 20px;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* GRID BG */
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  100% { transform: translate(50px,50px); }
}

/* CONTAINER */
.stats-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* HEADER */
.stats-header h2 {
  font-size: 38px;
  color: #fff;
}

.stats-header p {
  color: #9ca3af;
  margin-top: 10px;
}

/* GRID */
.stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* BOX */
.stat-box {
  padding: 40px 20px;
  border-radius: 16px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}

/* NUMBER */
.stat-box h3 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}

/* LABEL */
.stat-box span {
  color: #9ca3af;
  font-size: 14px;
}

/* HOVER */
.stat-box:hover {
  border-color: rgba(10,132,255,0.5);
  box-shadow: 0 0 30px rgba(10,132,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-header h2 {
    font-size: 28px;
  }
}

/* stats section ends here */

/* testimonials section starts here */

.testimonials {
  padding: 140px 20px;
  background: #000;
  text-align: center;
  position: relative;
}

/* TITLE */
.testimonial-title {
  font-size: 38px;
  color: #fff;
  margin-bottom: 80px;
}

/* WRAPPER */
.testimonial-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

/* CARD */
.testimonial-card {
  width: 320px;
  padding: 30px;
  border-radius: 20px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.5s;
  opacity: 0.4;
  transform: scale(0.9);
  backdrop-filter: blur(10px);
}

/* ACTIVE CENTER CARD */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05);
  border-color: rgba(10,132,255,0.6);
  box-shadow: 0 0 40px rgba(10,132,255,0.25);
}

/* AVATAR */
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid rgba(10,132,255,0.6);
}

/* TEXT */
.testimonial-card p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-card h4 {
  margin-top: 15px;
  color: #fff;
}

.testimonial-card span {
  font-size: 12px;
  color: #0A84FF;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* testimonials section ends here */

/* cta section starts here */

.cta-final {
  position: relative;
  padding: 160px 20px;
  background: #000;
  text-align: center;
  overflow: hidden;
}

/* BACKGROUND ENERGY */
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,132,255,0.15), transparent 60%);
  animation: pulseBg 6s infinite ease-in-out;
}

@keyframes pulseBg {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.cta-content h2 {
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
}

.cta-content h2 span {
  color: #0A84FF;
  text-shadow: 0 0 20px rgba(10,132,255,0.6);
}

/* TEXT */
.cta-content p {
  margin-top: 15px;
  color: #9ca3af;
  font-size: 15px;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* BTN BASE */
.cta-btn {
  height: 50px;
  padding: 0 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

/* PRIMARY */
.cta-btn.primary {
  background: #0A84FF;
  color: #000;
  box-shadow: 0 0 25px rgba(10,132,255,0.6);
}

.cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(10,132,255,0.9);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.cta-btn.secondary:hover {
  border-color: #0A84FF;
  color: #0A84FF;
  box-shadow: 0 0 20px rgba(10,132,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* cta section ends here */

/* homepage ends here */
