:root {
  --bg-dark: #020617;
  --bg-soft: #0b0b0b;

  --primary: #ff7a18;
  --secondary: #ffb347;

  --accent: #f66b04;
  --accent2: #026ea8;

  --dark: #1f2937;
  --muted: #6b7280;

  --white: #ffffff;
}



/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.text-secondary {
  font-size: 16px;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary),
      var(--secondary));
  color: var(--white);
  border: none;
  font-weight: 500;
}


.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #fe7418, #027bd1);
}

.btn-primary:active {
  transform: translateY(0);
}


.btn-secondary {
  background: var(--accent2);
  color: var(--white);
  border: 1px solid var(--accent2);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--accent2);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--accent2);
  border: 1px solid var(--accent2);
}

.btn-secondary-outline:hover {
  background: var(--accent2);
  color: var(--white);
}



/* ===== ANIMATED GRADIENT ===== */
.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(120deg, #020617, #0f172a, #020617);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ===== WAVE BACKGROUND ===== */
#waveCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .35;
}


/* =========================
   NAVBAR BASE
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(12px);
  transition: transform .45s ease, opacity .45s ease, background .45s ease;
}

.navbar.nav-visible {
  background: rgba(0, 0, 0, .85);
}

.navbar-logo {
  height: 38px;
}

/* =========================
   NAV LINKS
========================= */
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #cfcfcf !important;
  margin-left: 35px;
  padding: 6px 0;
  transition: color .3s ease;
}

.nav-link:hover {
  color: #32b3ff !important;
}

.nav-link.active {
  color: #ff9f2d !important;
}


/* =========================
   MEGA DROPDOWN BASE
========================= */

/* Important for centering */
.mega-dropdown {
  position: static;
}

.mega-dropdown .dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  /* 🔥 CUSTOM WIDTH HERE */
  width: auto;
  /* Change this value */
  /* Responsive safety */

  margin-top: 5px;
  padding: 15px;

  border: none;
  border-radius: 18px;

  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

  animation: fadeIn .25s ease;
}

/* =========================
   MEGA ITEMS
========================= */

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  transition: background .25s ease;
  cursor: pointer;
}

.mega-item:hover {
  background: #f5f9ff;
}

.mega-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mega-item h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.mega-item p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Large Screens */
@media (max-width: 1200px) {
  .mega-dropdown .dropdown-menu {
    width: 800px;
  }
}

/* Tablet */
@media (max-width: 992px) {

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .mega-dropdown .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: none;
    padding: 2px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mega-item {
    flex-direction: row;
    gap: 8px;
  }

  .mega-item img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 992px) {

  /* Make collapse full width */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /* Full screen width */
    background: #ffffff;
    padding: 5px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  }

  /* Remove container restriction */
  .navbar .container {
    position: static;
  }

  /* Dark text for white background */
  .navbar-collapse .nav-link {
    color: #111 !important;
  }

  .navbar-collapse .nav-link:hover {
    color: #0383ce !important;
  }

}

/* =========================
   MOBILE NAV ITEM BACKGROUND
========================= */
@media (max-width: 992px) {

  .navbar-collapse .nav-item {
    width: 100%;
    margin-bottom: 8px;
  }

  .navbar-collapse .nav-link {
    background: #f3f4f6;
    /* Change this color */
    padding: 20px 16px;
    border-radius: 5px;
    color: #111 !important;

  }

  .navbar-collapse .nav-link:hover {
    background: #e5e7eb;
  }

  .navbar-collapse .nav-link.active {
    background: #0472b3;
    color: #fff !important;
  }

  .navbar-collapse {
    max-height: 85vh;
    /* Limits height */
    overflow-y: auto;
    /* Enables vertical scroll */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth iOS scroll */
  }

}

/* =========================
   MOBILE DROPDOWN ICON RIGHT
========================= */
@media (max-width: 992px) {

  .navbar-collapse .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-collapse .dropdown-toggle::after {
    margin-left: auto;
    /* Push arrow to right */
  }

}


.mega-menu {
  width: 950px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f9ff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.mega-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

/* Icon Background Colors */
.bg-blue {
  background: #3b82f6;
}

.bg-cyan {
  background: #06b6d4;
}

.bg-purple {
  background: #8b5cf6;
}

.bg-indigo {
  background: #6366f1;
}

.bg-orange {
  background: #f97316;
}

.bg-yellow {
  background: #facc15;
}

.bg-green {
  background: #22c55e;
}

.bg-sky {
  background: #0ea5e9;
}

.bg-lime {
  background: #84cc16;
}

.bg-teal {
  background: #14b8a6;
}

.mega-item h6 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.mega-item p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6b7280;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 110px 0 0px;
  text-align: center;
  overflow: hidden;
}


#heroChart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}



.hero {
  position: relative;
  z-index: 2;
}

.hero p {
  max-width: 620px;
  margin: auto;
  color: #b5b5b5;
}

/* ===== PHONE ===== */
.phone-mockup {
  width: 650px;
  height: 620px;
  background:
    linear-gradient(180deg, rgba(31, 41, 55, 0), rgba(2, 6, 23, 0)),
    url("../images/hero_mobile.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 42px; */
  margin: 30px auto 0;
  /* box-shadow: 0 40px 80px rgba(0, 0, 0, .7); */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 0px;
  }

  .phone-mockup {
    width: 100%;
    height: 460px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 0;
  }
}




/* ===== FUTURE SECTIONS ===== */
.section-dark {
  background: linear-gradient(180deg, #0a0a0a, #050505);
}


.section-padding {
  padding: 80px 0;
}

.section-light {
  background: linear-gradient(180deg, #ffffff, #ffffff)
}


/* ===== WEB PLATFORM SECTION ===== */
.web-platform {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(76, 130, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #020617, #040a1f);
  overflow: hidden;
}

/* Badge */
.platform-badge {
  background: rgba(76, 130, 255, 0.15);
  color: #8fb4ff;
  border: 1px solid rgba(76, 130, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* Title */
.platform-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffffd6;
}

/* Description */
.platform-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8c1d9;
  max-width: 520px;
}

/* Features */
.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #aeb7cf;
}

.platform-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c82ff, #7aa2ff);
}

/* Image Container */
.web-platform-image {
  position: relative;
  height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.9)),
    url("../images/web.png");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  overflow: hidden;
}

/* Glow Overlay */
.web-platform-image .image-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(76, 130, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Hover Effects */
.web-platform-image:hover {
  transform: translateY(-14px) scale(1.025);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(76, 130, 255, 0.25);
}

.web-platform-image:hover .image-glow {
  opacity: 1;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
  .platform-title {
    font-size: 1.9rem;
  }

  .web-platform-image {
    height: 320px;
    margin-top: 40px;
  }
}

/* Feature Cards */
.platform-cards {
  max-width: 620px;
}

.platform-card {
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Horizontal centering */
  justify-content: center;
  /* Vertical balance */
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Icon */
.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
  color: #8fb4ff;
  background: linear-gradient(135deg,
      rgba(76, 130, 255, 0.25),
      rgba(76, 130, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(76, 130, 255, 0.35);
}

/* Title */
.platform-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffffc7;
  margin: 0;
}



/* Hover */
.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 130, 255, 0.45);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(76, 130, 255, 0.18);
}



/* =========================================================
   MARKET MARQUEE – ULTRA SLOW FINTECH BACKGROUND
========================================================= */
.market-marquee {
  position: relative;
  height: 260px;
  overflow: hidden;
  opacity: 0.5;

  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.14),
      rgba(2, 6, 23, 0) 65%);

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;

  /* LEFT + RIGHT EDGE FADE */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%);
}

/* =========================================================
   MARQUEE TRACK
========================================================= */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  white-space: nowrap;

  will-change: transform;
  transform: translateZ(0);
}

/* =========================================================
   ULTRA SLOW – MODERN MOTION
========================================================= */
.marquee-track.left {
  animation: slideLeft 420s linear infinite;
}

.marquee-track.right {
  animation: slideRight 520s linear infinite;
}

/* Pause on hover (premium UX) */
.market-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* =========================================================
   WORD / BUTTON STYLE
========================================================= */
.marquee-track span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;

  padding: 10px 18px;
  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(6px);

  color: rgba(255, 255, 255, 0.55);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 26px rgba(0, 0, 0, 0.28);

  user-select: none;
  pointer-events: auto;
  cursor: default;

  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}

/* =========================================================
   HOVER STATE – SOFT ACCENT GLOW
========================================================= */
.marquee-track span:hover {
  color: #f48022;

  background: rgba(244, 128, 34, 0.14);
  border-color: rgba(244, 128, 34, 0.45);

  box-shadow:
    0 14px 34px rgba(244, 128, 34, 0.38),
    inset 0 0 0 1px rgba(244, 128, 34, 0.25);

  transform: translateY(-2px);
  opacity: 1;
}

/* =========================================================
   DEPTH VARIATION (SUBTLE)
========================================================= */
.marquee-track span:nth-child(3n) {
  opacity: 0.45;
}

.marquee-track span:nth-child(5n) {
  font-size: 14px;
  padding: 11px 20px;
}

/* =========================================================
   KEYFRAMES
========================================================= */
@keyframes slideLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slideRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */
@media (max-width: 768px) {
  .market-marquee {
    height: 180px;
    gap: 18px;
  }

  .marquee-track span {
    font-size: 13px;
    padding: 8px 14px;
  }

  .marquee-track span:nth-child(5n) {
    font-size: 13px;
    padding: 9px 16px;
  }
}



/* =========================
       SECTION BACKGROUND
       (IMAGE-MATCHED)
    ========================= */
.platform-video-section {
  position: relative;
  padding: 70px 0px 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 85%,
      rgba(87, 51, 35, 0.75),
      transparent 60%),
    radial-gradient(ellipse at 75% 85%,
      rgba(48, 75, 97, 0.75),
      transparent 60%),
    linear-gradient(to bottom,
      #020305 0%,
      #1b1c20 45%,
      #434046 70%,
      #020305 100%);
}

/* Ambient floor glow */
.platform-video-section::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: -180px;
  height: 520px;
  background:
    linear-gradient(to right,
      rgba(87, 51, 35, 0.55),
      rgba(48, 75, 97, 0.55));
  filter: blur(180px);
  opacity: 0.95;
  pointer-events: none;
}

/* =========================
       TEXT
    ========================= */
.container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.title {
  margin-top: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.subtitle {
  color: #aaa;
  margin: 15px 0 60px;
  font-size: 1rem;
}

/* =========================
       STAGE / PERSPECTIVE
    ========================= */
.ctcl-stage {
  perspective: 1600px;
}

/* =========================
       DEVICE 3D
    ========================= */
.device-3d {
  position: relative;
  max-width: 716px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(3deg);
  z-index: 2;
}

/* Shadow bloom */
.device-3d::before {
  content: "";
  position: absolute;
  /* inset: -25%; */
  /* background: rgba(0, 0, 0, 0.35); */
  filter: blur(140px);
  z-index: 0;
}

/* =========================
       DEVICE IMAGE
    ========================= */
.laptop-frame {
  margin-top: 60px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}

/* =========================
       SCREEN MASK (VIDEO)
    ========================= */
.screen-mask {
  position: absolute;
  top: 2.6%;
  left: 1.6%;
  width: 95.8%;
  height: 58.8%;
  border-radius: 0px;
  overflow: hidden;
  z-index: 2;
  transform: translateZ(2px);
}

.screen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0000001c;
}

/* =========================
       IMAGE COLOR BLEED
    ========================= */
.image-blend {
  position: absolute;
  inset: -20%;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 140, 0, 0.45), transparent 60%),
    radial-gradient(circle at 70% 55%, rgba(0, 180, 255, 0.45), transparent 60%);
  filter: blur(140px);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* =========================
       BOTTOM DISSOLVE
    ========================= */
.image-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  height: 50%;
  z-index: 4;
  /* background:
        linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 0%,
          #020305 78%
        ); */
  pointer-events: none;
}

/* =========================
       RESPONSIVE
    ========================= */
@media (max-width: 900px) {
  .device-3d {
    transform: rotateY(-8deg) rotateX(2deg);
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }
}




/* ================= HERO SECTION ================= */
.slider-section {
  position: relative;
  padding: 90px 90px;
  overflow: hidden;
  background: #ffffff;
}

/* --- dotted texture layer --- */
.slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(80 120 255 / 58%) 1px, transparent 1px);
  background-size: 15px 18px;
  z-index: 0;
}

/* --- vertical fade mask (matches reference image) --- */
.slider-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      /* #ffffff 0%, */
      /* rgba(255,255,255,0.85) 20%, */
      rgba(255, 255, 255, 0.45) 45%,
      /* rgba(255,255,255,0.45) 55%, */
      rgba(255, 255, 255, 0.85) 80%,
      #ffffff 100%);
  z-index: 1;
}

/* ================= SLIDER ================= */
.slider {
  position: relative;
  z-index: 2;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  animation: slideFade 0.8s ease forwards;
}

.slide.active {
  display: grid;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CONTENT ================= */
.slide-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0472b3;
}

.slide-content h1 span {
  color: #ff7a00;
}

.slide-content p {
  margin: 20px 0;
  max-width: 480px;
  color: #555;
  line-height: 1.6;
}

.slide-content a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* ================= IMAGE PLACEHOLDER ================= */
.slide-image {
  height: 450px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, #f4f6f9, #e9edf3); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 18px;
  animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ================= SLIDER DOTS ================= */
.slider-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0px;
}

.slider-dots span {
  width: 8px;
  height: 26px;
  background: #d9d9d9;
  border-radius: 4px;
}

.slider-dots span.active {
  background: #ff7a00;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .slider-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .slide {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slide-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .slide-image {
    height: 260px;
  }

  .slider-section::before {
    background-size: 26px 26px;
    opacity: 0.14;
  }
}

@media (max-width: 480px) {
  .slider-section {
    padding: 60px 0px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-image {
    height: 300px;
    font-size: 16px;
  }
}



/* =====================================================
       API Section
    ====================================================== */
.bg-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -1;
}

.bg-blob.blue {
  background: #60a5fa;
  top: -140px;
  left: -140px;
  animation: float 20s ease-in-out infinite;
}

.bg-blob.indigo {
  background: #818cf8;
  bottom: -160px;
  right: -140px;
  animation: floatAlt 24s ease-in-out infinite;
}

.bg-blob.cyan {
  background: #fa7500;
  top: 40%;
  right: -180px;
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(120px, 80px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes floatAlt {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-120px, 140px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* =====================================================
       SECTION API
    ====================================================== */
.api-container {
  position: relative;
  padding: 150px 150px;
  overflow: hidden;
  background: #ffffff;
  max-width: 100%;
}

.api-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
  font-size: 40px;
  font-weight: 600;
  color: #0472b3;
}

.api-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.api-header h1 span {
  color: #f48022;
}

.api-header p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
}

/* =====================================================
       GRID & CARDS
    ====================================================== */
.api-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  /* height: 10%; */
}

.api-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.api-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
}

.api-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 10px;
}

.api-card p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  max-width: 95%;
}

.api-card.tall {
  grid-row: span 2;
}

/* =====================================================
       DECORATIVE ELEMENTS
    ====================================================== */
.mock-phone {
  position: absolute;
  bottom: -24px;
  left: -5%;
  transform: translateX(0%);
  width: 140%;
  height: 100%;

}

.chart {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  height: 60px;
  background: repeating-linear-gradient(to right,
      rgba(2, 132, 199, 0.25) 0,
      rgba(2, 132, 199, 0.25) 8px,
      transparent 8px,
      transparent 16px);
  border-radius: 6px;
}


.amount {
  position: absolute;
  bottom: 65px;
  left: 28px;
  font-size: 3.6rem;
  font-weight: 600;
  color: #069419;
  animation: pulse 1.2s ease-in-out infinite;
}



/* =====================================================
       RESPONSIVE BREAKPOINTS
    ====================================================== */
@media (max-width: 1024px) {
  .api-section {
    padding: 72px 20px;
  }
}

@media (max-width: 768px) {
  .api-header {
    margin-bottom: 48px;
  }

  .api-header h1 {
    font-size: 2rem;
  }

  .api-header h1 span {
    display: block;
    margin-top: 6px;
  }

  .api-grid {
    grid-template-columns: 1fr;
  }

  .api-card {
    padding: 24px;
  }

  .api-card.tall {
    grid-row: span 20;
  }
}

@media (max-width: 480px) {
  .api-section {
    padding: 56px 16px;
  }

  .api-header h1 {
    font-size: 1.75rem;
  }

  .api-header p {
    font-size: 0.9rem;
  }

  .mock-phone {
    width: 100%;
    height: 100%;
  }

  .icon-bull {
    width: 72px;
    height: 48px;
  }

  .chart {
    height: 48px;
  }

  .amount {
    font-size: 2.35rem;
  }

  .bg-blob {
    width: 280px;
    height: 280px;
    filter: blur(70px);
    opacity: 0.35;
  }

  .mobile-height {
    height: 280px;
  }
}




/* ===== FEATURE CARD BASE ===== */
.card-dark {
  position: relative;
  background: rgba(18, 18, 18, 0.85);
  border: 2px dotted #303030;
  border-radius: 20px;
  height: 100%;
  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
  overflow: hidden;
}

/* ===== CARD HOVER EFFECT ===== */
.card-dark:hover {
  transform: translateY(-10px);
  border: 2px dotted var(--accent);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(var(--accent-rgb, 0, 200, 255), 0.35);
  background: radial-gradient(ellipse at bottom, rgba(239, 147, 9, .25), rgba(0, 0, 0, .1))
}

/* ===== ANIMATED DOTTED BORDER ===== */

.card-dark:hover::before {
  border-color: var(--accent);
  animation: border-spin 6s linear infinite;

}

@keyframes border-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== ICON BASE ===== */
.card-dark i {
  font-size: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 1;
  transition:
    color .4s ease,
    background .4s ease,
    transform .4s ease;

  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== ICON HOVER EFFECT ===== */
.card-dark:hover i {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  -webkit-text-fill-color: unset;
  color: var(--accent);
  transform: scale(1.1);
}

/* ===== ICON DOTTED CIRCULAR BORDER ===== */
.card-dark i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dotted #e9ecef4a;
  opacity: 0;
}

.card-dark:hover i::after {
  opacity: 1;
  animation: icon-spin 4s linear infinite;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* ===== TEXT ===== */
.mainText {
  color: #cbcbcb;
  transition: color .3s ease;
  font-size: 16px;
}

.card-dark:hover .mainText {
  color: var(--accent2);
  font-weight: 700;
}





/* ======================================================
   SECTION WRAPPER
====================================================== */

.section-light {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.scroll-wrapper {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

/* ======================================================
   HEADER
====================================================== */

.api-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.api-header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0472b3;
  margin-bottom: 15px;
}

.api-header h1 span {
  color: #f48022;
}

.api-header p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

/* ======================================================
   STAGE (STACK CONTAINER)
====================================================== */

.stage {
  position: relative;
  width: 100%;
  height: 620px;
  /* Fixed height for stable animation */
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================================
   STACK CARDS
====================================================== */

.stack-card {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;

  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 6px 17px rgb(0 0 0 / 21%);

  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform, opacity;
}

/* ======================================================
   STACK STATES
====================================================== */

.stack-card.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 3;
}

.stack-card.behind-1 {
  transform: translateY(35px) scale(0.96);
  opacity: 0.75;
  z-index: 2;
}

.stack-card.behind-2 {
  transform: translateY(70px) scale(0.92);
  opacity: 0.45;
  z-index: 1;
}

/* Hide deeper cards */
.stack-card:not(.active):not(.behind-1):not(.behind-2) {
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  z-index: 0;
}

/* ======================================================
   CARD CONTENT STYLING
====================================================== */

.stack-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.stack-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

.stack-card ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.stack-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.stack-card ul li p {
  margin: 0;
}

/* ======================================================
   VISUAL AREA
====================================================== */

.visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.visual img,
.visual lottie-player {
  max-width: 100%;
  max-height: 320px;
}



/* ======================================================
   RESPONSIVE (TABLET)
====================================================== */

@media (max-width: 991px) {

  .stage {
    height: 580px;
  }

  .stack-card {
    padding: 20px;
    height: 100%;
  }

  .stack-card h3 {
    font-size: 1.3rem;
  }
}

/* ======================================================
   RESPONSIVE (MOBILE)
====================================================== */

@media (max-width: 768px) {

  .stage {
    height: 650px;
    /* Slightly taller for stacked content */
    margin-bottom: 60px;

  }

  .stack-card {
    padding: 15px;
    height: 100%;
    overflow: auto;
  }

  .stack-card h3 {
    font-size: 1.2rem;
  }

  .stack-card p {
    font-size: 0.95rem;
  }

  .visual img,
  .visual lottie-player {
    max-height: 220px;
  }
}





/* Section Base */
.section-fix {
  background: #ffffff;
  color: #1f2933;
}

/* Header */
.section-fix .api-header h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}


.section-fix .api-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #4b5563;
  line-height: 1.6;
}

/* Service Info */
.section-fix .service-info h2 span {
  color: #2563eb;
  font-weight: 600;
}

.section-fix .service-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 10px;
}

.section-fix .service-info p {
  color: #374151;
  line-height: 1.7;
}

/* Image */
.fix-image {
  max-width: 420px;
}

/* Transparent Image Styling */
.fix-image-transparent {
  max-width: 500px;
  background: transparent;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .fix-image-transparent {
    max-width: 300px;
    margin-bottom: 30px;
  }
}


/* Cards */
.card-light {
  position: relative;
  background: rgb(255, 255, 255);
  border: 2px dotted #0472b3;
  border-radius: 20px;
  height: 100%;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}

.card-light:hover {
  transform: translateY(-10px);
  border: 2px dotted var(--accent);
  box-shadow:
    0 30px 60px rgba(255, 109, 5, 0.6),
    0 0 30px rgba(var(--accent-rgb, 0, 200, 255), 0.35);
  background: radial-gradient(ellipse at bottom, rgba(239, 147, 9, .25), rgba(0, 0, 0, 0))
}

/* ===== TEXT ===== */
.cardmainText {
  color: #101116;
  transition: color .3s ease;
  font-size: 16px;
}

.card-dark:hover .cardmainText {
  color: var(--accent2);
  font-weight: 700;
}


/* Responsive */
@media (max-width: 768px) {
  .fix-image {
    max-width: 320px;
  }
}




.container {
  width: 95%;
  max-width: 1366px;
  margin: auto;
}

/* =========================
   Section
========================= */

.testimonial-section {
  padding: 50px 0;
  position: relative;
  background: #fff;

}

/* =========================
   Header
========================= */

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}



.testimonial-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0472b3;
  margin: 0;
}

/* =========================
   Navigation Arrows
========================= */

.testimonial-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #e4e9f2;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
  background: #fff;
}

.nav-btn:hover {
  background: #f1f5ff;
  border-color: #d0dcff;
}

.nav-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: solid #1e2a47;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.prev-btn span {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* =========================
   Card
========================= */

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgb(28 138 191 / 14%);
  position: relative;
  transition: 0.4s ease;
  height: 100%;
  margin: 30px 0px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border: 2px dotted var(--accent);
  box-shadow:
    0 30px 60px rgba(255, 109, 5, 0.6),
    0 0 30px rgba(var(--accent-rgb, 0, 200, 255), 0.35);
  background: radial-gradient(ellipse at bottom, rgba(239, 147, 9, .25), rgba(0, 0, 0, 0))
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile img {
  width: 120px;
  height: 45px;
  border-radius: 5%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e2a47;
}

.profile span {
  font-size: 14px;
  color: #7a7f8c;
}


.testimonial-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.8;
  margin: 0;
}

.quote {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 70px;
  color: rgba(255, 77, 77, 0.07);
  font-weight: bold;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonial-nav {
    align-self: center;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }

}





.our-customers {
  background: #ffffff;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Smooth Infinite Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {

  .logo-track {
    gap: 10px;
  }

  .logo-track img {
    height: 70px;
  }
}



/* =====================================================
   GLOBAL – CODING / DEVELOPER BACKGROUND
===================================================== */
.tech-background {
  margin: 0;
  min-height: 80vh;
  overflow: hidden;

  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff, #f5f8fc);

  background-size:
    48px 48px,
    48px 48px,
    cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   FLOATING CODE LAYER
===================================================== */
.code-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.code {
  position: absolute;
  font-size: clamp(11px, 1.1vw, 14px);
  white-space: nowrap;
  opacity: 0.35;
  animation: codeFloat linear infinite;
}

/* Language colors (subtle) */
.code.c {
  color: #00599c;
}

.code.cpp {
  color: #004482;
}

.code.py {
  color: #3572a5;
}

.code.js {
  color: #b58900;
}

.code.html {
  color: #c0392b;
}

.code.css {
  color: #2980b9;
}

@keyframes codeFloat {
  from {
    transform: translateY(110vh);
  }

  to {
    transform: translateY(-120px);
  }
}

/* Reduce density on mobile */
@media (max-width: 600px) {
  .code {
    opacity: 0.2;
  }
}

/* =====================================================
   HUB CONTAINER
===================================================== */
.tech-hub {
  position: relative;
  width: min(92vw, 960px);
  aspect-ratio: 16 / 9;
  z-index: 2;
}

/* Soft editor glow */
.tech-hub::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0, 120, 220, 0.14), transparent 65%);
  filter: blur(80px);
  z-index: -1;
}

/* =====================================================
   PLATFORM
===================================================== */
.platform {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}

.energy-well {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32%;
  height: 14%;
  background: radial-gradient(ellipse at center,
      rgba(0, 120, 220, 0.45),
      rgba(0, 120, 220, 0.15) 50%,
      transparent 70%);
  transform: rotateX(65deg);
  filter: blur(14px);
}

/* =====================================================
   RINGS
===================================================== */
.ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  transform: rotateX(65deg);
  border: 1px dashed rgba(0, 121, 220, 0.7);
  animation: spin linear infinite;
}


.ring-image {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 70%;
  aspect-ratio: 1 / 1;
  /* keeps it perfectly circular */
  border-radius: 50%;

  background: url("../images/technology.svg") center/contain no-repeat;

  transform-style: preserve-3d;
  animation: spin3d 40s linear infinite;
}

@keyframes spin3d {
  from {
    transform: rotateX(65deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(65deg) rotateZ(360deg);
  }
}



/* ===================== RINGS ===================== */

.r0 {
  width: 18%;
  height: 28%;
  animation-duration: 16s;
  opacity: 0.9;
}

.r1 {
  width: 28%;
  height: 45%;
  animation-duration: 24s;
  opacity: 0.8;
}

.r2 {
  width: 38%;
  height: 62%;
  animation-duration: 34s;
  opacity: 0.65;
}

.r3 {
  width: 48%;
  height: 80%;
  animation-duration: 48s;
  opacity: 0.5;
}

.r4 {
  width: 60%;
  height: 100%;
  animation-duration: 64s;
  opacity: 0.4;
}

.r5 {
  width: 75%;
  height: 125%;
  animation-duration: 82s;
  opacity: 0.3;
}

.r6 {
  width: 95%;
  height: 150%;
  animation-duration: 110s;
  opacity: 0.22;
}


@keyframes spin {
  from {
    transform: rotateX(65deg) rotate(0deg);
  }

  to {
    transform: rotateX(65deg) rotate(360deg);
  }
}

/* =====================================================
           CORE
        ===================================================== */
.core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(80px, 12vw, 110px);
  height: clamp(80px, 12vw, 110px);
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 120, 220, 0.35);
  box-shadow: 0 25px 50px rgba(0, 80, 140, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-24%);
  animation: coreFloat 4s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.core:hover {
  transform: translateY(-32%) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 120, 220, 0.45);
}

@keyframes coreFloat {

  0%,
  100% {
    transform: translateY(-24%);
  }

  50% {
    transform: translateY(-32%);
  }
}

.core img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: filter 0.4s ease;
}

.core:hover img {
  filter: drop-shadow(0 0 16px rgba(0, 120, 220, 0.7));
}

/* =====================================================
   NODES
===================================================== */
.node {
  position: absolute;
  text-align: center;
}

.icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 120, 220, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 80, 140, 0.2);
  animation: iconFloat 5s ease-in-out infinite;
  transition: box-shadow 0.35s ease, border 0.35s ease;
}

.icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.icon:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(0, 120, 220, 0.6));
}

.icon:hover {
  transform: translateY(-10px);
  border: 2px dotted var(--accent);
  box-shadow:
    0 30px 60px rgba(255, 109, 5, 0.6),
    0 0 30px rgba(var(--accent-rgb, 0, 200, 255), 0.35);
  background: radial-gradient(ellipse at bottom, rgba(239, 147, 9, .25), rgba(0, 0, 0, 0))
}



.node code {
  font-size: clamp(11px, 1.2vw, 13px);
  color: #0a4c80;
}

.node .line {
  width: 2px;
  height: clamp(50px, 8vw, 70px);
  margin: 0 auto;
  background: linear-gradient(to bottom,
      rgba(0, 120, 220, 0.7),
      transparent);
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Positions */
.left {
  left: 5%;
  top: 42%;
}

.right {
  right: 5%;
  top: 42%;
}

.top-left {
  left: 24%;
  top: 6%;
}

.top-right {
  right: 24%;
  top: 6%;
}

.bottom-left {
  left: 24%;
  bottom: 6%;
}

.bottom-right {
  right: 24%;
  bottom: 6%;
}

/* Stack nodes on very small screens */
@media (max-width: 480px) {

  .top-left,
  .top-right {
    top: -5%;
  }

  .bottom-left,
  .bottom-right {
    bottom: -15%;
  }

  .tech-background {
    min-height: 50vh;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}




.finance-footer-light {
  background: #f8fafc;
  color: #334155;
  padding: 64px 0 24px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Soft animated gradient accent */
.finance-footer-light::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  animation: floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(40px);
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.footer-text {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-size: 16px;
}

/* Underline slide animation */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #0284c7;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #e2e8f0;
  border-radius: 50%;
  margin-right: 8px;
  color: #0f172a;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  background: #38bdf8;
  transform: translateY(-4px);
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #e2e8f0;
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

.footer-social a {
  width: 24px;
  height: 24px;
  font-size: 12px;
  background: #e2e8f0;
}

.footer-social a:hover {
  transform: translateY(-2px);
  /* softer motion */
}


.footer-social a:hover i.bi-linkedin {
  color: #0a66c2;
}

.footer-social a:hover i.bi-twitter-x {
  color: #000000;
}

.footer-social a:hover i.bi-facebook {
  color: #1877f2;
}

.footer-social a:hover i.bi-instagram {
  color: #e1306c;
}

.footer-social a:hover i.bi-youtube {
  color: #ff0000;
}

.footer-social a:hover i.bi-telegram {
  color: #229ed9;
}

.footer-social a:hover i.bi-whatsapp {
  color: #25d366;
}

.footer-social a:hover i.bi-reddit {
  color: #ff4500;
}

.footer-social a:hover i.bi-github {
  color: #24292f;
}













/* other pages start  */

.greekApp-platform {
  position: relative;
  padding: 70px 0px 70px;
  overflow: hidden;

  background: linear-gradient(253deg, #0e457800 -19.01%, #2d005000 128.91%),
    url("../images/mobileApp/bg_wave.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-future {
  background: linear-gradient(178deg, #f9fdff, #ffffff);
}

.lightCard_Text {
  color: #0472b3;
  transition: color .3s ease;
  font-size: 16px;
}

.card-light i {
    font-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: color .4s ease, background .4s ease, transform .4s ease;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== ICON HOVER EFFECT ===== */
.card-light:hover i {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  -webkit-text-fill-color: unset;
  color: var(--accent);
  transform: scale(1.1);
}

/* ===== ICON DOTTED CIRCULAR BORDER ===== */
.card-light i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dotted #e9ecef4a;
  opacity: 0;
}

.card-light:hover i::after {
  opacity: 1;
  animation: icon-spin 4s linear infinite;
}

.GreekApp {
    position: relative;
    background: radial-gradient(circle at 85% 15%, rgba(76, 130, 255, 0), transparent 55%), linear-gradient(180deg, #ffffff, #ffffff);
    overflow: hidden;
}

.otherPage-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    color: #292929d6;
}

.otherPage-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}