:root {
  --primary-dark: #164E7A;
  --primary-light: #4A9EDB;

  --bg-dark: #0E1A24;
  --bg-light: #F5F9FC;

  --text-dark: #0B1E2D;
  --text-light: #FFFFFF;

  --service-light: #2C6F9E;


  /* Card css variable */
  --black: #080808;
  --off-white: #f0ece4;
  --grey: #2e2e2e;
  --text-dim: #3a3a3a;
  --text-mid: #888;
  --text-bright: #f0ece4;
  --accent: #c8a96e;
  --card-bg: #111;

}

html{
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-light);
  color: var(--text-light);
  font-weight: 600;
  cursor: none;
}

/* ── Custom cursor ──────────────────────────── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-light);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--text-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}

h2 {
  font-size: 3rem;
}


/* ========================
Loader CSS
======================== */
#loader {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  color: #fff;
}

#percentage {
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
}

/* Hide website initially */
#content {
  display: none;
}

/* ========================
Header CSS
======================== */
.menuButton {
  cursor: pointer;
  display: none !important;
}

.menuButton img {
  transform: rotate(180deg);
  filter: invert(1);
}

.menu {
  position: absolute;
  margin-top: 40px;
  background: #9d9d9d;
  width: 400px;
  height: 0px;
  cursor: pointer;
}

nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  background-color: green;
  visibility: hidden;
}



.menuCol {
  position: relative;
  margin: 40px 20px;
  float: left;
}

button {
  position: relative;
  background: transparent;
  border: none;
  font: 400 20px Arial;
  text-align: left;
  outline: none;
  width: 100%;
  margin: 15px 0;
  padding: 0;
  cursor: pointer;
  visibility: hidden;
}

button:hover {
  font-weight: 800;
}

.top_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 30px 0; */
}

.top_header h1 {
  font-size: clamp(18px, 1.5vw, 42px);
}

section.top_header_wrapper {
  border-bottom: 1px solid var(--primary-dark);
}

.header-logo {
  filter: invert(1);
}

.got-project {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-direction: column;
  text-align: center;
}

.got-project p {
  margin: 0;
}

/* Main hero section css */
main {
  padding: 0;
}

.text {
  font-size: clamp(28px, 3.5vw, 72px);
  line-height: 1.5;
  display: block;
  /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
  text-align: center;
  gap: 22px;
}

.hero-text-wrapper {
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-subtext {
  font-size: 20px;
  line-height: 1.5;
  padding: 50px;
  text-align: center;
  margin: 0;
}

.hero-btn-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.hero-btn-wrapper a {
  visibility: initial !important;
  border: 1.5px solid #0284C7;
  padding: 15px 32px;
  margin: 0;
  color: white;
  background: transparent;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins' !important;
  font-size: 18px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
    text-decoration: none;
    display: block;
    width: 100%;
}

.hero-btn-wrapper a:hover {
  background-color: #0284C7;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.35);
  font-weight: 400 !important;
}


/* .hero-container span:nth-child(2){
    position: absolute;
    top: 2rem;
    background: #1f4fd8;
    padding: 1.48148vh 2.03704vh 1.11111vh;
    border-radius: .5rem;
    transform: rotate(345deg);
}


.hero-container span:nth-child(3){
    position: absolute;
    top: 2rem;
    background: #0F766E;
    padding: 1.48148vh 2.03704vh 1.11111vh;
    border-radius: .5rem;
    transform: rotate(345deg);
    right: 0;
}
.hero-container span:nth-child(4){
    position: absolute;
    bottom: 2rem;
    background: #4F46E5;
    padding: 1.48148vh 2.03704vh 1.11111vh;
    border-radius: .5rem;
    transform: rotate(345deg);
    right: 0;
}
.hero-container span:nth-child(5){
    position: absolute;
    bottom: 2rem;
    background: #0284C7;
    padding: 1.48148vh 2.03704vh 1.11111vh;
    border-radius: .5rem;
    transform: rotate(345deg);
    left: 0;
}
  */

.test {
  /* height: 100vh; */
  width: 100%;
}

div#root {
  /* border-top: 1px solid var(--primary-dark); */
  margin: 100px 0 0 0;
}

div#root .heading {
  position: absolute !important;
  top: 0;
  background-color: var(--service-light);
  color: var(--bg-light);
  width: 100%;
  height: 12.6%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56%;
  /* 4:3 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-bg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(2deg, #000000, #00000080);
}

/* What Do? */
.whatdo-title {
  padding: 80px 0 0 0;
  text-align: center;
}

.circle-brand::after {
  content: '';
  position: absolute;
  background-image: url(/assets/red-circle.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 260px;
  height: 260px;
  top: -103px;
  right: -53px;
}

.slides-wrapper {
  margin-top: 63px;
}

.slides-wrapper img {
  width: 100%;
  margin-top: 30px;
}

.panel {
  width: 100%;
  min-height: calc(100vh - 64px);
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5em;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
  background: var(--color-just-black);
  color: var(--color-surface-white);
  overflow: hidden;
}

.panel h1 {
  font-size: 17vw;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin: 0 auto;
  text-transform: uppercase;
}

.panel-content p {
  font-size: 20px;
  font-weight: 400;
  padding: 20px 50px 0;
}

.panel-content iframe {
  width: 100%;
  top: 0px;
  position: absolute;
  height: 96%;
  left: 0px;
  right: 0px;
  border-radius: 20px;
}

.panel-content img{
  border-radius: 20px;
}

/* What to do 2D section */
.whatDo-second {
  padding: 80px 0 40px 0;
}

/* ── SCROLL SECTION ─────────────────────────── */
#scroll-section {
  position: relative;
}

.scroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* LEFT — text column */
.text-col {
  /* padding: 12vh 6vw 12vh 8vw; */
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* RIGHT — sticky card */
.card-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0 6vw 0 2vw; */
}

/* ── Card ──────────────────────────────────── */
.card-wrap {
  position: relative;
  width: min(520px, 45vw);
  aspect-ratio: 1;
}

.card-frame {
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
}

/* decorative corner marks */
.card-frame::before,
.card-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.5;
  z-index: 2;
}

.card-frame::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.card-frame::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

/* inner card scenes — one per section */

.card-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* visual content of each scene */

div#scene-0 {
  background-image: url('/Assets/2d-animation.png');
  background-size: cover;
  background-repeat: no-repeat;
}

div#scene-3 img {
  max-width: 100%;
}

.scene-bg {
  position: absolute;
  inset: 0;
}

/* scene 1 — wireframe grid */
.s1-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.s1-sphere {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #2a2a2a, #0a0a0a);
  border: 1px solid rgba(200, 169, 110, 0.25);
  box-shadow: inset -20px -20px 40px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(200, 169, 110, 0.06);
  position: relative;
  z-index: 1;
}

/* wireframe rings */
.s1-sphere::before,
.s1-sphere::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.s1-sphere::before {
  inset: -20px;
}

.s1-sphere::after {
  inset: -40px;
  opacity: 0.5;
}

/* scene 2 — triangular polygon */
.s2-wrap {
  position: relative;
  z-index: 1;
}

.s2-hex {
  width: 160px;
  height: 160px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2416 50%, #1a1a1a 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s2-inner {
  width: 80px;
  height: 80px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--accent);
  opacity: 0.15;
}

.s2-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 8px,
      rgba(200, 169, 110, 0.04) 8px,
      rgba(200, 169, 110, 0.04) 9px);
}

/* scene 3 — light rig dots */
.s3-scene {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
}

.s3-center {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(200, 169, 110, 0.2);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08), transparent 70%);
}

.s3-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.s3-dot:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.s3-dot:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.s3-dot:nth-child(3) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.s3-dot:nth-child(4) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.s3-line-h,
.s3-line-v {
  position: absolute;
  background: rgba(200, 169, 110, 0.12);
}

.s3-line-h {
  height: 1px;
  width: 100%;
  top: 50%;
}

.s3-line-v {
  width: 1px;
  height: 100%;
  left: 50%;
}

/* scene 4 — final render glow */
.s4-product {
  /* position: relative; z-index: 1;
  width: 120px; height: 200px;
  background: linear-gradient(160deg, #222 0%, #111 60%, #0a0a0a 100%);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 14px;
  box-shadow:
    0 0 80px rgba(200,169,110,0.12),
    0 0 160px rgba(200,169,110,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; */
}

.s4-screen {
  width: 80px;
  height: 130px;
  background: radial-gradient(ellipse at 50% 30%, rgba(200, 169, 110, 0.18), transparent 70%);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 8px;
}

.s4-reflection {
  position: absolute;
  bottom: -40px;
  width: 80px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.08), transparent);
  filter: blur(8px);
  border-radius: 50%;
}

/* shared scene bg subtle */
.scene-bg-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.04), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* card label */
.card-label {
  position: absolute;
  bottom: -28px;
  left: 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  transition: color 0.4s;
}

/* card step counter */
.card-step {
  position: absolute;
  top: -28px;
  right: 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #333;
}

.card-step span {
  color: var(--accent);
}

/* progress line */
.card-progress {
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #1a1a1a;
}

.card-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  height: 0%;
  transition: height 0.1s linear;
}

/* ── Text blocks ──────────────────────────── */
.text-block {
  padding: 10vh 0;
  border-bottom: 1px solid #111;
  position: relative;
}

.text-block:last-child {
  border-bottom: none;
}

.block-number {
  font-size: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-bottom: 1.4rem;
  display: block;
  transition: color 0.5s ease;
}

.block-heading {
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
  transition: color 0.7s ease;
}

.block-body {
  /* font-family: 'DM Mono', monospace; */
  font-size: clamp(12px, 1vw, 14px);
  line-height: 2;
  color: var(--text-dim);
  transition: color 0.7s ease;
  max-width: 100%;
}

/* active state */
.text-block.is-active .block-number {
  color: var(--accent);
  background-image: url('/assets/red-circle.png');
}

.text-block.is-active .block-heading {
  color: var(--off-white);
}

.text-block.is-active .block-body {
  color: white;
}

/* ── OUTRO ──────────────────────────────────── */
#outro {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid #111;
  opacity: 0;
}

.outro-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.outro-cta {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--off-white);
  letter-spacing: -0.02em;
}

/* responsive */
@media (max-width: 768px) {
  .scroll-inner {
    display: flex;
    flex-direction: column;
  }

  /* Card moves to top and stays sticky while text scrolls beneath */
  .card-col {
    order: -1;
    /* visually first even though 2nd in DOM */
    position: sticky;
    top: 0;
    height: 48vw;
    min-height: 220px;
    max-height: 54vh;
    z-index: 10;
    padding: 8vw;
    background: var(--black);
    /* cover content beneath on scroll */
    border-bottom: 1px solid #1a1a1a;
  }

  .card-wrap {
    width: 100% !important;
    height: 100% !important;
  }

  /* push step/label closer on small card */
  .card-step {
    top: -22px;
    font-size: 9px;
  }

  .card-label {
    bottom: -22px;
    font-size: 9px;
  }

  .card-progress {
    left: -16px;
  }

  .text-col {
    order: 1;
    padding: 6vh 6vw;
  }

  .text-block {
    padding: 7vh 0;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 52px);
  }
}

@media (max-width: 480px) {
  .card-col {
    height: 70vw;
    min-height: 100%;
  }

  .card-wrap {
    width: min(160px, 44vw);
  }
}


/* Footer css */
footer {
  position: relative;
  /* background: linear-gradient(135deg, #0d0d1a 0%, #12122b 50%, #0d0d1a 100%); */
  background-color: inherit;
  overflow: hidden;
  padding: 80px 40px 30px;
  color: #fff;
}

/* footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  border-radius: 50%;
  animation: floatOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
} */

/* footer::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  border-radius: 50%;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.1);
  }
} */

/* .wave-container {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-container svg {
  width: 200%;
  height: 80px;
}

.wave1 {
  animation: waveMove 6s linear infinite;
}

.wave2 {
  animation: waveMove 9s linear infinite reverse;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto 60px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-icon {
  /* width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); */
  /* animation: logoPulse 3s ease-in-out infinite; */
}

/* @keyframes logoPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  }

  50% {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.7);
  }
} */

.logo-icon img{
  width: 150px;
  filter: invert(1);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #a5b4fc, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-desc {
  color: white;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-btn:hover::before {
  opacity: 1;
}

.social-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.social-btn i {
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.footer-links li a::before {
  content: '→';
  opacity: 0;
  width: 0;
  transition: all 0.3s;
  color: white;
  font-size: 0.85rem;
}

.footer-links li a:hover {
  color: #e2e8f0;
  transform: translateX(8px);
}

.footer-links li a:hover::before {
  opacity: 1;
  width: 20px;
}

.newsletter-text {
  color: white;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-form button:hover {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}

.stats-bar {
  position: relative;
  z-index: 2;
  /* max-width: 1200px; */
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item {
  padding: 22px;
  text-align: center;
  transition: background 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(99, 102, 241, 0.1);
}

.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: white;
  font-size: 0.75rem;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-divider {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.6) 25%, rgba(236, 72, 153, 0.6) 75%, transparent 100%);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.copy {
  color: white;
  font-size: 0.82rem;
}

.copy span {
  background: linear-gradient(90deg, #a5b4fc, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  color: #475569;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-links a:hover {
  color: #a5b4fc;
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-350px) rotate(720deg);
    opacity: 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  font-size: 0.75rem;
  color: white;
  margin-bottom: 14px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6bff8e;
  box-shadow: 0 0 6px #6bff8e;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 60px 20px 24px;
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#scrollTopBtn:hover {
  background-color: #333;
  transform: translateY(-3px);
}


nav{
  display: none;
}

/* Mobile responsive css */
@media screen and (max-width:768px) {
  .top_header.container {
    flex-direction: column;
    padding-bottom: 40px;
}
.responsive-iframe{
  height: auto !important;
}
.hero-text-wrapper {
  top: 0 !important;
  left: inherit !important;
  width: 100%;
  transform: inherit !important;
  z-index: 3;
  position: relative !important;
}
.text{
  font-size: 26px !important;
}
.hero-subtext {
  font-size: 16px !important;
  padding: 30px 0 !important;
}
.video-container{
  padding-bottom: 50px;
}
.hero-btn-wrapper{
  flex-wrap: wrap;
}
h2.whatdo-title {
  font-size: 30px !important;
  line-height: 55px;
}
.circle-brand::after {
  width: 150px !important;
  height: 150px !important;
  top: -58px !important;
  right: -21px !important;
}
.panel-content p{
  font-size: 20px !important;
    padding: 20px 0 !important;
}
.slides-wrapper img {
  height: 400px !important;
  object-fit: cover;
  max-width: 100% !important;
  min-height: 500px !important;
}
.whatDo-second{
  padding: 0 !important;
}
.block-body{
  font-size: 16px !important;
}
}

