html,
body {
  background-color: #03080f !important;
  margin: 0 !important;
  padding: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0066ff;
  --blue-bright: #3385ff;
  --blue-dim: #0044bb;
  --blue-glow: rgba(0, 102, 255, 0.35);
  --blue-faint: rgba(0, 102, 255, 0.08);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.07);
  --black: #000000;
  --black-90: #090912;
  --black-80: #0d0d1a;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black-90);
  color: var(--white);
  overflow: visible;
  overflow-x: hidden;
}



/* ── CANVAS BACKGROUND ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── SECTION-1 ── */
.home_hero_section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #03080f;
}

/* ── TOPBAR ── */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.topbar-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.topbar-logo span {
  color: var(--blue);
}
.topbar-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid var(--blue-dim);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  background: var(--blue-faint);
}

/* ── ICON CLOUD ── */
.icon-cloud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.icon-cloud i {
  position: absolute;
  font-size: 1.6rem;
  color: var(--blue);
  opacity: 0;
  filter: blur(1px);
  animation: iconFloat 14s ease-in-out infinite;
}
.icon-cloud .icon-1 {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
  animation-duration: 13s;
  font-size: 1.8rem;
}
.icon-cloud .icon-2 {
  top: 22%;
  left: 88%;
  animation-delay: 1.5s;
  animation-duration: 15s;
  font-size: 1.4rem;
}
.icon-cloud .icon-3 {
  top: 68%;
  left: 4%;
  animation-delay: 2.5s;
  animation-duration: 12s;
  font-size: 2rem;
}
.icon-cloud .icon-4 {
  top: 78%;
  left: 85%;
  animation-delay: 0.8s;
  animation-duration: 16s;
  font-size: 1.5rem;
}
.icon-cloud .icon-5 {
  top: 45%;
  left: 92%;
  animation-delay: 3.2s;
  animation-duration: 11s;
  font-size: 1.7rem;
}
.icon-cloud .icon-6 {
  top: 55%;
  left: 2%;
  animation-delay: 1s;
  animation-duration: 14s;
  font-size: 1.9rem;
}
.icon-cloud .icon-7 {
  top: 35%;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 17s;
  font-size: 1.3rem;
}

@keyframes iconFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.18;
  }
  50% {
    transform: translateY(-28px) rotate(8deg);
    opacity: 0.22;
  }
  90% {
    opacity: 0.14;
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
}

/* ── CONTAINER / GRID ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.col-lg-7 {
  flex: 0 0 58.333%;
  max-width: 58.333%;
}
.col-lg-5 {
  flex: 0 0 41.667%;
  max-width: 41.667%;
}

/* ── HERO INNER ── */
.hero-inner {
  padding: 30px 0 60px;
  position: relative;
  z-index: 5;
}

/* Staggered reveal — starts invisible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid rgba(0, 102, 255, 0.3);
  background: rgba(0, 102, 255, 0.07);
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* ── HEADING ── */
h1 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.gradient-title {
  background: linear-gradient(
    135deg,
    #3385ff 0%,
    #66aaff 40%,
    #ffffff 70%,
    #3385ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: block;
  margin-top: 0.25rem;
}
@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* ── SUBHEAD ── */
.subhead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 58ch;
  margin-bottom: 2.75rem;
  border-left: 2px solid var(--blue);
  padding-left: 1.25rem;
}

/* ── CTA ROW ── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  position: relative;
  /* overflow: hidden;
  transition: all 0.3s ease; */
   overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  letter-spacing: 0.03em;
  cursor: pointer;
}

/* First button — solid blue */
.cta-row a:first-child.btn-primary-hero {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue-bright);
  box-shadow:
    0 0 24px rgba(0, 102, 255, 0.4),
    0 0 60px rgba(0, 102, 255, 0.15);
}
/* .cta-row a:first-child.btn-primary-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
} */
/* .cta-row a:first-child.btn-primary-hero:hover {
  box-shadow:
    0 0 40px rgba(0, 102, 255, 0.7),
    0 0 80px rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
} */
.cta-row a:first-child.btn-primary-hero:hover::before {
  opacity: 1;
}

/* Second button — ghost */
.cta-row a:last-child.btn-primary-hero {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}
.cta-row a:last-child.btn-primary-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.35s ease;
}
.cta-row a:last-child.btn-primary-hero:hover::after {
  width: 100%;
}
.cta-row a:last-child.btn-primary-hero:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  /* transform: translateY(-2px); */
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-bright);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--white-40);
  letter-spacing: 0.05em;
}

/* ── HERO VISUAL (right col) ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3rem;
  min-height: 520px;
}

/* Rotating ring behind image */
.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.25);
  animation: spinRing 18s linear infinite;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 102, 255, 0.15);
  animation: spinRing 12s linear infinite reverse;
}
@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

/* Glow blob */
.glow-blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.18) 0%,
    transparent 70%
  );
  animation: blobPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blobPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* Corner brackets */
.bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--blue);
  border-style: solid;
  opacity: 0.6;
}
.bracket-tl {
  top: 2.5rem;
  left: 2.5rem;
  border-width: 2px 0 0 2px;
}
.bracket-tr {
  top: 2.5rem;
  right: 2.5rem;
  border-width: 2px 2px 0 0;
}
.bracket-bl {
  bottom: 2.5rem;
  left: 2.5rem;
  border-width: 0 0 2px 2px;
}
.bracket-br {
  bottom: 2.5rem;
  right: 2.5rem;
  border-width: 0 2px 2px 0;
}

.hero-rotatable {
  height: 300px;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 0 40px rgba(0, 102, 255, 0.5))
    drop-shadow(0 0 80px rgba(0, 102, 255, 0.2));
  transition: transform 0.08s linear;
  animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Floating data chips */
.data-chip {
  position: absolute;
  z-index: 6;
  background: rgba(5, 5, 20, 0.85);
  border: 1px solid rgba(0, 102, 255, 0.35);
  backdrop-filter: blur(12px);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: chipFloat 5s ease-in-out infinite;
}
.data-chip i {
  color: var(--blue);
  font-size: 0.85rem;
}
.chip-1 {
  top: 18%;
  left: -8%;
  animation-delay: 0s;
}
.chip-2 {
  bottom: 22%;
  right: -6%;
  animation-delay: 1.5s;
}
.chip-3 {
  top: 55%;
  left: -10%;
  animation-delay: 0.8s;
  font-size: 0.7rem;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .col-lg-7,
  .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-inner {
    padding: 30px 0 30px;
  }
  .hero-visual {
    min-height: 340px;
  }
  .hero-rotatable {
    max-width: 260px;
  }
  .hero-visual::before {
    width: 300px;
    height: 300px;
  }
  .hero-visual::after {
    width: 240px;
    height: 240px;
  }
  .topbar {
    padding: 1.25rem 1.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .stats-row {
    gap: 1.5rem;
  }
  .chip-1,
  .chip-2,
  .chip-3 {
    display: none;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 1.8rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
@media (max-width: 991px) {
  .home_hero_section .col-lg-5 {
    display: none;
  }
}


/* ── STATS SECTION ── */
.ai-stats-section {
  position: relative;
  padding-top: 20px;
  overflow: hidden;
  width: 100%;
  background: #03080f;
}
.stats-para{
    color: #fff!important;
    text-align: center;
    max-width: 700px!important;
    margin: 0 auto!important;
}
/* Atmospheric grid background */
.ai-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
  pointer-events: none;
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 111, 255, 0.18);
  top: -80px;
  left: -100px;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.12);
  bottom: -60px;
  right: -60px;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(30, 111, 255, 0.14);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ai-stats-section.in-view .orb {
  opacity: 1;
}

/* Section label */
.section-eyebrow {
  text-align: center;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ai-stats-section.in-view .section-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.section-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.06);
}
.section-eyebrow span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
  }
}

/* Heading */
.section-heading {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}
.ai-stats-section.in-view .section-heading {
  opacity: 1;
  transform: translateY(0);
}
.section-heading h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.section-heading h2 em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
}

/* Stats grid */
.ai-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Individual stat card */
.ai-stat-box {
  position: relative;
  padding: 48px 32px 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}
.ai-stat-box:first-child {
  border-radius: 16px 0 0 16px;
}
.ai-stat-box:last-child {
  border-radius: 0 16px 16px 0;
}

/* Staggered entrance */
.ai-stats-section.in-view .ai-stat-box:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}

/* Hover shimmer */
.ai-stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ai-stat-box:hover::before {
  opacity: 1;
}
.ai-stat-box:hover {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(255, 255, 255, 0.055);
}

/* Top accent line */
.ai-stat-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.ai-stat-box:hover::after {
  transform: scaleX(1);
}

/* Number */
.stat-number {
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.stat-number .digits {
  color: var(--white);
}
.stat-number .suffix {
  font-size: 0.55em;
  color: var(--cyan);
}

/* Underline bar */
.stat-bar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--cyan));
  margin-bottom: 14px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.ai-stats-section.in-view .ai-stat-box .stat-bar {
  transform: scaleX(1);
}
.ai-stats-section.in-view .ai-stat-box:nth-child(1) .stat-bar {
  transition-delay: 0.55s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(2) .stat-bar {
  transition-delay: 0.67s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(3) .stat-bar {
  transition-delay: 0.79s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(4) .stat-bar {
  transition-delay: 0.91s;
}

/* Label */
.stat-label {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Small icon badge */
.stat-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ── FULL-WIDTH CTA STRIP ── */
.ai-cta-strip {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2244 40%, #071525 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s;
}
.ai-cta-strip.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Scan line animation */
.ai-cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 255, 0.04),
    transparent
  );
  animation: scan 3.5s ease-in-out infinite;
}
@keyframes scan {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

/* Dot pattern */
.ai-cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 229, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0.85;
}

.cta-heading {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 1.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-heading span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--blue-glow), #0a4fd8);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(30, 111, 255, 0.35);
  text-decoration: none;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 12px 40px rgba(30, 111, 255, 0.5);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary .btn-icon {
  font-size: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);

  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  /* transform: translateY(-2px); */
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ai-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-stat-box:nth-child(1) {
    border-radius: 16px 0 0 0;
  }
  .ai-stat-box:nth-child(2) {
    border-radius: 0 16px 0 0;
  }
  .ai-stat-box:nth-child(3) {
    border-radius: 0 0 0 16px;
  }
  .ai-stat-box:nth-child(4) {
    border-radius: 0 0 16px 0;
  }
}
@media (max-width: 520px) {
  .ai-stats-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .ai-stat-box {
    padding: 32px 20px 28px;
  }
  .stat-number {
    font-size: 48px;
  }
}

/* Atmospheric grid background */
.ai-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 100%
  );
  pointer-events: none;
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 111, 255, 0.18);
  top: -80px;
  left: -100px;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, 0.12);
  bottom: -60px;
  right: -60px;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(30, 111, 255, 0.14);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ai-stats-section.in-view .orb {
  opacity: 1;
}

/* Section label */
.section-eyebrow {
  text-align: center;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ai-stats-section.in-view .section-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.section-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.06);
}
.section-eyebrow span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
  }
}

/* Heading */
.section-heading {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}
.ai-stats-section.in-view .section-heading {
  opacity: 1;
  transform: translateY(0);
}
.section-heading h2 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.section-heading h2 em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
}

/* Stats grid */
.ai-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Individual stat card */
.ai-stat-box {
  position: relative;
  padding: 48px 32px 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}
.ai-stat-box:first-child {
  border-radius: 16px 0 0 16px;
}
.ai-stat-box:last-child {
  border-radius: 0 16px 16px 0;
}

/* Staggered entrance */
.ai-stats-section.in-view .ai-stat-box:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}

/* Hover shimmer */
.ai-stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ai-stat-box:hover::before {
  opacity: 1;
}
.ai-stat-box:hover {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(255, 255, 255, 0.055);
}

/* Top accent line */
.ai-stat-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.ai-stat-box:hover::after {
  transform: scaleX(1);
}

/* Number */
.stat-number {
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.stat-number .digits {
  color: var(--white);
}
.stat-number .suffix {
  font-size: 0.55em;
  color: var(--cyan);
}

/* Underline bar */
.stat-bar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-glow), var(--cyan));
  margin-bottom: 14px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.ai-stats-section.in-view .ai-stat-box .stat-bar {
  transform: scaleX(1);
}
.ai-stats-section.in-view .ai-stat-box:nth-child(1) .stat-bar {
  transition-delay: 0.55s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(2) .stat-bar {
  transition-delay: 0.67s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(3) .stat-bar {
  transition-delay: 0.79s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(4) .stat-bar {
  transition-delay: 0.91s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.58s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.70s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.82s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.94s;
}
.ai-stats-section.in-view .ai-stat-box:nth-child(5) .stat-bar {
  transition-delay: 1.03s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(6) .stat-bar {
  transition-delay: 1.15s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(7) .stat-bar {
  transition-delay: 1.27s;
}

.ai-stats-section.in-view .ai-stat-box:nth-child(8) .stat-bar {
  transition-delay: 1.39s;
}

/* Label */
.stat-label {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Small icon badge */
.stat-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
}

/* ── FULL-WIDTH CTA STRIP ── */
.ai-cta-strip {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2244 40%, #071525 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s;
}
.ai-cta-strip.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Scan line animation */
.ai-cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 255, 0.04),
    transparent
  );
  animation: scan 3.5s ease-in-out infinite;
}
@keyframes scan {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

/* Dot pattern */
.ai-cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 229, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0.85;
}

.cta-heading {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 1.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-heading span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--blue-glow), #0a4fd8);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(30, 111, 255, 0.35);
  text-decoration: none;
}
.btn-primary2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 111, 255, 0.5);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-primary2 .btn-icon {
  font-size: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);

  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.06);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ai-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-stat-box:nth-child(1) {
    border-radius: 16px 0 0 0;
  }
  .ai-stat-box:nth-child(2) {
    border-radius: 0 16px 0 0;
  }
  .ai-stat-box:nth-child(3) {
    border-radius: 0 0 0 16px;
  }
  .ai-stat-box:nth-child(4) {
    border-radius: 0 0 16px 0;
  }
}
@media (max-width: 520px) {
  .ai-stats-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .ai-stat-box {
    padding: 32px 20px 28px;
  }
  .stat-number {
    font-size: 48px;
  }
}

/* Section-3 Our Services  */
.Ai_services_sec *,
.Ai_services_sec *::before,
.Ai_services_sec *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design tokens ── */
.Ai_services_sec {
  --bg: #03080f;
  --bg-card: #070f1d;
  --bg-card-h: #0b1728;
  --blue: #1756f8;
  --blue-lt: #4d8aff;
  --cyan: #00d4ff;
  --white: #eef3ff;
  --muted: #546070;
  --border: rgba(23, 86, 248, 0.15);
  --border-h: rgba(0, 212, 255, 0.4);
  --fd: "Syne", sans-serif;
  --fb: "Instrument Sans", sans-serif;
}

/* ── SERVICES LAYOUT ── */
.svc-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT SIDE */
.svc-left {
  width: 42%;
  position: sticky;
  top: 100px; /* navbar ke hisab se adjust kar lena */
  align-self: flex-start;
}

/* RIGHT SIDE */
.svc-right {
  width: 58%;
}

/* MOBILE */
@media (max-width: 992px) {
  .svc-layout {
    flex-direction: column;
  }

  .svc-left,
  .svc-right {
    width: 100%;
  }

  .svc-left {
    position: relative;
    top: 0;
  }
}

/* ── Section wrapper ── */
.Ai_services_sec {
  padding: 4rem 0;
  position: relative;
  background: var(--bg);
  color: var(--white);
  /* overflow: visible; */
}

/* Hex grid texture */
.Ai_services_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='rgba(23,86,248,0.055)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
  z-index: 0;
}

/* Decorative glows */
.Ai_services_sec .svc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.Ai_services_sec .svc-glow-1 {
  /* width: 480px; */
  height: 480px;
  background: rgba(23, 86, 248, 0.12);
  top: -100px;
  left: -140px;
}
.Ai_services_sec .svc-glow-2 {
  /* width: 300px; */
  height: 300px;
  background: rgba(0, 212, 255, 0.08);
  bottom: 0;
  right: -60px;
}

/* ── Container ── */
.Ai_services_sec .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Two-column layout using flexbox (Bootstrap-safe) ── */
.Ai_services_sec .svc-layout {
  display: flex;
  gap: 56px;
  /* align-items: flex-start;    */
}

/* LEFT — 38% width, sticky */
.Ai_services_sec .svc-left {
  width: 38%;
  flex-shrink: 0;
  position: sticky;
  top: 100px; /* sticks while right scrolls */
  /* reveal animation */
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-left .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.Ai_services_sec .svc-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Badge */
.Ai_services_sec .svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.06);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.Ai_services_sec .svc-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: svc-pulse 2s ease-in-out infinite;
}
@keyframes svc-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);
  }
}

/* Heading */
.Ai_services_sec .svc-left h2 {
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.3px;
  color: var(--white);
  margin-bottom: 16px;
}
.Ai_services_sec .svc-left h2 .hl {
  background: linear-gradient(90deg, var(--blue-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.Ai_services_sec .svc-left p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 32px;
}

/* Progress bars */
.Ai_services_sec .svc-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 32px;
}
.Ai_services_sec .svc-bar-track {
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.Ai_services_sec .svc-bar-track span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.Ai_services_sec .svc-left.revealed .svc-bar-track span {
  width: 100%;
}
@media (max-width: 575px) {
  .right_section h3 span {
    display: none;
  }
}

/* CTA button */
.Ai_services_sec .btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--blue), #0e38b8);
  color: #fff;

  font-size: 13.5px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 6px 24px rgba(23, 86, 248, 0.36);
  border: 1px solid rgba(77, 138, 255, 0.2);
}


/* ══════════════════════════════
   RIGHT — natural height, scrolls with page
   Cards animate as they enter viewport
══════════════════════════════ */
.Ai_services_sec .svc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* right col just flows naturally — page scrolling handles it */
}

/* Card */
.Ai_services_sec .right_section {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  cursor: default;
  /* scroll-reveal initial */
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}
.Ai_services_sec .right_section.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Left accent bar on hover */
.Ai_services_sec .right_section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.26s ease;
  border-radius: 0 2px 2px 0;
}
.Ai_services_sec .right_section:hover::before {
  opacity: 1;
}
.Ai_services_sec .right_section:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.07);
}

/* Icon figure */
.Ai_services_sec .right_section figure {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(23, 86, 248, 0.1);
  border: 1px solid rgba(23, 86, 248, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 2px;
  transition:
    border-color 0.26s,
    background 0.26s,
    transform 0.26s;
}
.Ai_services_sec .right_section:hover figure {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  transform: scale(1.08) rotate(-3deg);
}
.Ai_services_sec .right_section figure img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.65);
  transition: filter 0.26s;
}
.Ai_services_sec .right_section:hover figure img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(70%) saturate(700%)
    hue-rotate(160deg) brightness(108%);
}

/* Title */
.Ai_services_sec .right_section h3 {
  grid-column: 2;
  grid-row: 1;

  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}
.Ai_services_sec .right_section h3 span {
  font-size: 10px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 1.5px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.18);
  padding: 1px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Description */
.Ai_services_sec .right_section p {
  grid-column: 2;
  grid-row: 2;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #fff;
  transition: color 0.26s;
}
.Ai_services_sec .right_section:hover p {
  color: #8bb0cc;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .Ai_services_sec .svc-layout {
    flex-direction: column;
    gap: 40px;
  }
  .Ai_services_sec .svc-left {
    width: 100%;
    position: static;
    text-align: center;
  }
  .Ai_services_sec .svc-badge {
    margin: 0 auto 24px;
  }
  .Ai_services_sec .svc-bars {
    display: none;
  }
  .Ai_services_sec .btn-primary-hero {
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  .Ai_services_sec .right_section {
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    padding: 16px 14px;
  }
  .Ai_services_sec .right_section h3 {
    font-size: 13px;
  }
}

/* Section4- what ai do */
.ai_related_sec {
  background: #050a14;

  position: relative;
  overflow: hidden;
}

/* Animated background grid */
.ai_related_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 100, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 100, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb top-right */
.ai_related_sec::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 100, 255, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse-orb 6s ease-in-out infinite;
}

@keyframes gridShift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}

@keyframes pulse-orb {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.ai_related_sec .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
.ai_related_sec_head {
  text-align: center;
  margin-bottom: 64px;
}

.ai_related_sec_head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;

  /* Fade-in up animation */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.ai_related_sec_head h2 span {
  background: linear-gradient(90deg, #1e64ff, #5eadff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai_related_sec_head p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}

/* Visible state triggered by IntersectionObserver */
.ai_related_sec_head.is-visible h2,
.ai_related_sec_head.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

/* ---- GRID LAYOUT — works WITH Bootstrap ---- */
.ai_related_sec .row {
  margin-left: -12px;
  margin-right: -12px;
}

.ai_related_sec .col-lg-4,
.ai_related_sec .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
}

.ai_related_sec .mb-4 {
  margin-bottom: 24px !important;
}

/* ---- CARD ---- */
.ai_related_sec_box {
  position: relative;
  background: linear-gradient(135deg, #0d1526 0%, #0a1020 100%);
  border: 1px solid rgba(30, 100, 255, 0.15);
  border-radius: 16px;
  padding: 36px 30px 32px;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;

  /* Lazy load: starts hidden */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ai_related_sec_box.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — applied to the box directly via inline style in HTML */
.ai_related_sec_box[data-delay="0"] {
  transition-delay: 0s;
}
.ai_related_sec_box[data-delay="1"] {
  transition-delay: 0.1s;
}
.ai_related_sec_box[data-delay="2"] {
  transition-delay: 0.2s;
}
.ai_related_sec_box[data-delay="3"] {
  transition-delay: 0.3s;
}
.ai_related_sec_box[data-delay="4"] {
  transition-delay: 0.4s;
}
.ai_related_sec_box[data-delay="5"] {
  transition-delay: 0.5s;
}

/* Card inner glow on hover */
.ai_related_sec_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(30, 100, 255, 0.12) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 16px;
}

/* Blue accent top line */
.ai_related_sec_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1e64ff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ai_related_sec_box:hover {
  border-color: rgba(30, 100, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(30, 100, 255, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(30, 100, 255, 0.08);
  transform: translateY(-4px);
}

.ai_related_sec_box:hover::before,
.ai_related_sec_box:hover::after {
  opacity: 1;
}

/* ---- ICON AREA ---- */
.ai_related_sec_box picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(30, 100, 255, 0.2),
    rgba(30, 100, 255, 0.05)
  );
  border: 1px solid rgba(30, 100, 255, 0.3);
  border-radius: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ai_related_sec_box:hover picture {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(30, 100, 255, 0.35);
}

.ai_related_sec_box picture img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ---- TEXT ---- */
.ai_related_sec_box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.ai_related_sec_box:hover h3 {
  color: #5eadff;
}

.ai_related_sec_box p {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Numbered badge */
.ai_card_num {
  position: absolute;
  top: 20px;
  right: 22px;

  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(30, 100, 255, 0.35);
  letter-spacing: 1px;
  z-index: 1;
}

/* Bottom divider line inside card */
.ai_card_line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 100, 255, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ai_related_sec_box:hover .ai_card_line {
  opacity: 1;
}

/* Section-4 Foundation model */
#foundation-models-section {
  background: #050a14;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Animated dot-grid background */
#foundation-models-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(30, 100, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  animation: fmDotDrift 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb bottom-left */
#foundation-models-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(30, 100, 255, 0.14) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: fmPulse 7s ease-in-out infinite;
}

@keyframes fmDotDrift {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(36px);
  }
}

@keyframes fmPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Ensure container is above pseudo elements */
#foundation-models-section .container {
  position: relative;
  z-index: 1;
}

/* ── HEADER (class-based, no :first-child/:last-child) ── */
#foundation-models-section .fm-head-wrap {
  text-align: center;
  margin-bottom: 64px;
}

/* Eyebrow pill badge */
#foundation-models-section .fm-eyebrow {
  display: inline-block;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1e64ff !important;
  background: rgba(30, 100, 255, 0.1);
  border: 1px solid rgba(30, 100, 255, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Main heading */
#foundation-models-section .fm-heading {
  font-size: clamp(1.9rem, 3.5vw, 3rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}

/* Subtitle */
#foundation-models-section .fm-subtext {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;

  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}

/* Animate in when JS adds .fm-header-visible to .fm-head-wrap */
#foundation-models-section .fm-head-wrap.fm-header-visible .fm-eyebrow,
#foundation-models-section .fm-head-wrap.fm-header-visible .fm-heading,
#foundation-models-section .fm-head-wrap.fm-header-visible .fm-subtext {
  opacity: 1;
  transform: translateY(0);
}

/* ── ROW / BOOTSTRAP COMPAT ── */
#foundation-models-section .row {
  margin-left: -12px;
  margin-right: -12px;
}

#foundation-models-section .col-lg-3,
#foundation-models-section .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
}

#foundation-models-section .mb-4 {
  margin-bottom: 24px !important;
}

/* ── MODEL CARD ── */
.model-card {
  position: relative;
  background: linear-gradient(145deg, #0d1627 0%, #090f1e 100%);
  border: 1px solid rgba(30, 100, 255, 0.13);
  border-radius: 18px;
  padding: 36px 24px 30px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.model-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.model-card[data-delay="0"] {
  transition-delay: 0s;
}
.model-card[data-delay="1"] {
  transition-delay: 0.08s;
}
.model-card[data-delay="2"] {
  transition-delay: 0.16s;
}
.model-card[data-delay="3"] {
  transition-delay: 0.24s;
}
.model-card[data-delay="4"] {
  transition-delay: 0.32s;
}
.model-card[data-delay="5"] {
  transition-delay: 0.4s;
}
.model-card[data-delay="6"] {
  transition-delay: 0.48s;
}
.model-card[data-delay="7"] {
  transition-delay: 0.56s;
}

/* Inner top glow */
.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: radial-gradient(
    ellipse at 50% -20%,
    rgba(30, 100, 255, 0.14) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 18px;
}

/* Shine line on top */
.model-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(30, 100, 255, 0.7),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 1px;
}

.model-card:hover {
  border-color: rgba(30, 100, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(30, 100, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(30, 100, 255, 0.07);
  transform: translateY(-5px) scale(1.01);
}

.model-card:hover::before,
.model-card:hover::after {
  opacity: 1;
}

/* ── ICON WRAPPER ── */
.model-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid rgba(30, 100, 255, 0.25);
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.model-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}

.model-card:hover .model-icon img {
  filter: drop-shadow(0 0 8px rgba(94, 173, 255, 0.6));
}

/* ── TEXT ── */
.model-card .fm-card-title {
  font-size: 1rem;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.model-card:hover .fm-card-title {
  color: #5eadff !important;
}

.model-card .fm-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Section-5 Process Section */
#development-process-section {
  background: #050a14;

  position: relative;
  overflow: hidden;
}

/* Animated radial sweep background */
#development-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 40% at 50% 0%,
      rgba(30, 100, 255, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 30% at 80% 100%,
      rgba(30, 100, 255, 0.07) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

/* Horizontal scan line animation */
#development-process-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 100, 255, 0.5) 50%,
    transparent 100%
  );
  animation: dpScan 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes dpScan {
  0% {
    top: 10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

#development-process-section .container {
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
#development-process-section .process-header {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}

#development-process-section .process-title {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

#development-process-section .process-title span {
  background: linear-gradient(90deg, #1e64ff, #5eadff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#development-process-section .process-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;

  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease 0.15s,
    transform 0.7s ease 0.15s;
}

#development-process-section .process-header.dp-head-visible .process-title,
#development-process-section
  .process-header.dp-head-visible
  .process-description {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROCESS WRAPPER ── */
#development-process-section .process-wrapper {
  position: relative;
  padding-top: 20px;
}

/* connector line behind circles — hidden on mobile */
#development-process-section .process-line {
  display: none; /* replaced by CSS approach below */
}

/* ── STEP CARDS ── */
#development-process-section .process-step {
  position: relative;
  padding: 0 10px 48px;

  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

#development-process-section .process-step.dp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
#development-process-section .process-step[data-delay="0"] {
  transition-delay: 0s;
}
#development-process-section .process-step[data-delay="1"] {
  transition-delay: 0.1s;
}
#development-process-section .process-step[data-delay="2"] {
  transition-delay: 0.2s;
}
#development-process-section .process-step[data-delay="3"] {
  transition-delay: 0.3s;
}
#development-process-section .process-step[data-delay="4"] {
  transition-delay: 0.4s;
}
#development-process-section .process-step[data-delay="5"] {
  transition-delay: 0.5s;
}

/* Connector line between steps (desktop only) */
#development-process-section .process-step::before {
  content: "";
  position: absolute;
  top: 36px; /* vertically centered with circle */
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(30, 100, 255, 0.5),
    rgba(30, 100, 255, 0.1)
  );
  z-index: 0;
}

#development-process-section .process-step:last-child::before {
  display: none;
}

@media (max-width: 991px) {
  #development-process-section .process-step::before {
    display: none;
  }
}

/* ── STEP CIRCLE ── */
#development-process-section .step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;

  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  cursor: default;

  /* Default: outlined */
  background: transparent;
  border: 2px solid rgba(30, 100, 255, 0.4);
  color: rgba(255, 255, 255, 0.6);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

/* Active / filled */
#development-process-section .step-circle.active {
  background: linear-gradient(135deg, #1e64ff, #0047d4);
  border-color: transparent;
  color: #ffffff;
  box-shadow:
    0 0 0 6px rgba(30, 100, 255, 0.12),
    0 0 24px rgba(30, 100, 255, 0.35);
}

/* Hover on all */
#development-process-section .process-step:hover .step-circle {
  transform: scale(1.12);
  background: linear-gradient(135deg, #1e64ff, #0047d4);
  border-color: transparent;
  color: #ffffff;
  box-shadow:
    0 0 0 8px rgba(30, 100, 255, 0.15),
    0 0 32px rgba(30, 100, 255, 0.4);
}

/* Pulse ring on active circles */
#development-process-section .step-circle.active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(30, 100, 255, 0.3);
  animation: dpRingPulse 2.5s ease-in-out infinite;
}

@keyframes dpRingPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.18);
  }
}

/* ── STEP LABELS ── */
#development-process-section .dp-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e64ff;
  margin-bottom: 8px;
  display: block;
}

/* ── STEP HEADING ── */
#development-process-section .process_header {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

#development-process-section .process-step:hover .process_header {
  color: #5eadff;
}

/* ── STEP DESCRIPTION ── */
#development-process-section .dp-step-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ── CARD BG GLOW on hover ── */
#development-process-section .dp-step-inner {
  background: linear-gradient(145deg, #0d1627 0%, #090f1e 100%);
  border: 1px solid rgba(30, 100, 255, 0.1);
  border-radius: 16px;
  padding: 28px 18px 24px;
  margin-top: 16px;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

#development-process-section .process-step:hover .dp-step-inner {
  border-color: rgba(30, 100, 255, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(30, 100, 255, 0.07);
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  #development-process-section {
    /* padding: 60px 0 80px; */
  }

  #development-process-section .process-step {
    padding-bottom: 32px;
  }

  #development-process-section .step-circle {
    width: 58px;
    height: 58px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   FIX: Circles same line + Cards equal height
   ============================================================ */

/* Make all col wrappers flex so cards stretch equally */
#development-process-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Fix circle alignment — all circles on same baseline */
#development-process-section .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reserve fixed space for circle so pulse ring doesn't shift layout */
#development-process-section .step-circle-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

/* Circle itself — no margin, size fixed inside wrap */
#development-process-section .step-circle {
  width: 72px;
  height: 72px;
  margin: 0;
  flex-shrink: 0;
}

/* Card stretches to fill remaining space equally */
#development-process-section .dp-step-inner {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Equal height rows: each col stretches card to tallest */
#development-process-section .col-lg-2,
#development-process-section .col-md-4,
#development-process-section .col-6 {
  display: flex;
  flex-direction: column;
}

#development-process-section .process-step {
  height: 100%;
}

/* Connector line fix — align to fixed circle wrap top */
#development-process-section .process-step::before {
  top: 36px; /* center of 72px wrap */
}

@media (max-width: 767px) {
  #development-process-section .step-circle-wrap {
    width: 58px;
    height: 58px;
  }
  #development-process-section .step-circle {
    width: 58px;
    height: 58px;
    font-size: 0.95rem;
  }
  #development-process-section .process-step::before {
    top: 29px;
  }
}

/* Section6- industries Section  */
.ai_industires_section {
  --ai-black: #020408;
  --ai-dark: #080e18;
  --ai-card-bg: #0d1826;
  --ai-card-border: #1a2e4a;
  --ai-blue: #1a6ef5;
  --ai-blue-light: #3d8bff;
  --ai-blue-glow: rgba(26, 110, 245, 0.25);
  --ai-white: #ffffff;
  --ai-gray: #8ca0bc;
  --ai-accent: #00d4ff;

  background: var(--ai-black);
  padding: 30px 0;

  position: relative;
  overflow: hidden;
}

/* Background grid */
.ai_industires_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 110, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 110, 245, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow blob */
.ai_industires_section::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(26, 110, 245, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.ai_industires_section .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.ai_industires_section .ai_industires_head {
  text-align: center;
  margin-bottom: 64px;
}

.ai_industires_section .ai_industires_head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--ai-white);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.ai_industires_section .ai_industires_head h2 span.ai-highlight {
  background: linear-gradient(90deg, var(--ai-blue-light), var(--ai-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai_industires_section .ai_industires_head p {
  font-size: 1.05rem;
  color: var(--ai-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Animated underline bar */
.ai-head-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ai-head-bar span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ai-blue);
  animation: ai-bar-grow 1s ease forwards;
}

.ai-head-bar span:nth-child(1) {
  width: 40px;
  animation-delay: 0.1s;
  opacity: 0;
}
.ai-head-bar span:nth-child(2) {
  width: 12px;
  background: var(--ai-accent);
  animation-delay: 0.2s;
  opacity: 0;
}
.ai-head-bar span:nth-child(3) {
  width: 60px;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes ai-bar-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===== GRID ===== */
.ai_industires_section .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .ai_industires_section .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ai_industires_section .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .ai_industires_section .row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* col-lg-3 becomes grid cell */
.ai_industires_section .col-lg-3 {
  display: contents;
}

/* ===== CARD ===== */
.ai_industires_section .ai_industires_box {
  background: var(--ai-card-bg);
  border: 1px solid var(--ai-card-border);
  border-radius: 14px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;

  /* Lazy load hidden state */
  opacity: 0;
  transform: translateY(24px);
}

/* Shimmer overlay */
.ai_industires_section .ai_industires_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(26, 110, 245, 0.06) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

/* Top edge glow line */
.ai_industires_section .ai_industires_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ai-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.ai_industires_section .ai_industires_box:hover {
  border-color: var(--ai-blue);
  transform: translateY(-5px);
  box-shadow:
    0 12px 40px var(--ai-blue-glow),
    0 0 0 1px rgba(26, 110, 245, 0.2);
}

.ai_industires_section .ai_industires_box:hover::before,
.ai_industires_section .ai_industires_box:hover::after {
  opacity: 1;
}

/* Icon wrapper */
.ai-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(26, 110, 245, 0.1);
  border: 1px solid rgba(26, 110, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.ai_industires_section .ai_industires_box:hover .ai-icon-wrap {
  background: rgba(26, 110, 245, 0.2);
  border-color: var(--ai-blue);
}

.ai_industires_section .ai_industires_box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.75);
  transition:
    filter 0.3s,
    transform 0.3s;
}

.ai_industires_section .ai_industires_box:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(500%)
    hue-rotate(195deg) brightness(110%);
  transform: scale(1.1);
}

.ai_industires_section .ai_industires_box p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ai-gray);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.ai_industires_section .ai_industires_box:hover p {
  color: var(--ai-white);
}

/* Remove link styles */
.ai_industires_section a {
  display: contents;
  text-decoration: none;
}

/* ===== LAZY LOAD VISIBLE STATE ===== */
.ai_industires_section .ai_industires_box.ai-visible {
  animation: ai-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ai-card-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SECTION ENTRY ANIMATION ===== */
.ai_industires_section .ai_industires_head {
  opacity: 0;
  transform: translateY(30px);
  animation: ai-head-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes ai-head-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ACTIVE (SELECTED) CARD ===== */
.ai_industires_section .ai_industires_box.ai-active {
  background: var(--ai-blue);
  border-color: var(--ai-blue-light);
  box-shadow: 0 8px 32px var(--ai-blue-glow);
}

.ai_industires_section .ai_industires_box.ai-active img {
  filter: brightness(0) invert(1);
}

.ai_industires_section .ai_industires_box.ai-active p {
  color: var(--ai-white);
  font-weight: 600;
}

.ai_industires_section .ai_industires_box.ai-active .ai-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== PULSE DOT COUNT ===== */
.ai-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 110, 245, 0.12);
  border: 1px solid rgba(26, 110, 245, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--ai-blue-light);

  letter-spacing: 0.05em;
  font-weight: 500;
}

.ai-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ai-accent);
  animation: ai-pulse 1.5s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* Section7-why choose us */
.ai-leader {
  --al-black: #020408;
  --al-dark: #080e18;
  --al-card-bg: #0d1826;
  --al-card-border: #1a2e4a;
  --al-blue: #1a6ef5;
  --al-blue-light: #3d8bff;
  --al-blue-glow: rgba(26, 110, 245, 0.22);
  --al-white: #ffffff;
  --al-gray: #8ca0bc;
  --al-accent: #00d4ff;

  background: var(--al-black);
  position: relative;
  overflow: hidden;
}

/* ===== BAND (Header area) ===== */
.ai-leader__band {
  position: relative;
  padding: 90px 24px 80px;
  z-index: 1;
  text-align: center;
}

/* Mesh gradient background for band */
.ai-leader__band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 50% 0%,
      rgba(26, 110, 245, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #020408 0%, #060d1a 60%, #020408 100%);
  z-index: 0;
}

/* Grid lines */
.ai-leader__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 110, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 110, 245, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.ai-leader__band .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

/* Label chip */
.al-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 110, 245, 0.12);
  border: 1px solid rgba(26, 110, 245, 0.28);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.75rem;
  color: var(--al-blue-light);

  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 22px;

  opacity: 0;
  transform: translateY(16px);
}

.al-chip.al-visible {
  animation: al-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.al-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--al-accent);
  animation: al-pulse 1.6s ease-in-out infinite;
}

@keyframes al-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

.ai-leader__title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--al-white);
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.5px;

  opacity: 0;
  transform: translateY(24px);
}

.ai-leader__title.al-visible {
  animation: al-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.ai-leader__title .al-blue-word {
  background: linear-gradient(90deg, var(--al-blue-light), var(--al-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-leader__sub {
  font-size: 1rem;
  color: var(--al-gray);
  line-height: 1.75;
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto;

  opacity: 0;
  transform: translateY(20px);
}

.ai-leader__sub.al-visible {
  animation: al-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Divider line */
.al-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 40px;
}

.al-divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--al-blue), transparent);
  opacity: 0;
  transform: scaleX(0);
}

.al-divider span:nth-child(1) {
  width: 120px;
  animation: al-line-in 0.8s ease 0.4s forwards;
}
.al-divider span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: var(--al-accent);
  border-radius: 50%;
  animation: al-line-in 0.5s ease 0.5s forwards;
}
.al-divider span:nth-child(3) {
  width: 120px;
  animation: al-line-in 0.8s ease 0.6s forwards;
}

@keyframes al-line-in {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ===== CARDS AREA ===== */
.ai-leader__cards {
  padding: 0 24px 90px;
  position: relative;
  z-index: 1;
}

.ai-leader__cards .container {
  max-width: 1280px;
  margin: 0 auto;
}

.ai-leader__cards .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 !important;
  flex-wrap: unset;
}

@media (max-width: 1024px) {
  .ai-leader__cards .row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .ai-leader__cards .row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .ai-leader__band {
    padding: 64px 20px 52px;
  }
  .ai-leader__cards {
    padding: 0 16px 64px;
  }
}

/* col overrides — kill Bootstrap's flex sizing, let grid take over */
.ai-leader__cards .col-lg-4 {
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  flex: none !important;
  max-width: none !important;
}

/* ===== FEATURE CARD ===== */
.ai-feature-card {
  background: var(--al-card-bg);
  border: 1px solid var(--al-card-border);
  border-radius: 16px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
  width: 100%;
  box-sizing: border-box;
  height: 100%;

  /* Lazy load hidden */
  opacity: 0;
  transform: translateY(28px);
}

/* Number badge top-right */
.al-card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(26, 110, 245, 0.07);
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}

/* Left accent bar */
.ai-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, var(--al-blue), var(--al-accent));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition:
    opacity 0.35s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Top shimmer line */
.ai-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--al-blue-light),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.ai-feature-card:hover {
  border-color: rgba(26, 110, 245, 0.5);
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px var(--al-blue-glow),
    0 0 0 1px rgba(26, 110, 245, 0.15);
}

.ai-feature-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.ai-feature-card:hover::after {
  opacity: 1;
}

.ai-feature-card:hover .al-card-num {
  color: rgba(26, 110, 245, 0.14);
}

/* Icon circle */
.al-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(26, 110, 245, 0.1);
  border: 1px solid rgba(26, 110, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.35s,
    border-color 0.35s;
}

.ai-feature-card:hover .al-icon-circle {
  background: rgba(26, 110, 245, 0.2);
  border-color: var(--al-blue);
}

.al-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: var(--al-blue-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s;
}

.ai-feature-card:hover .al-icon-circle svg {
  stroke: var(--al-accent);
}

.ai-feature-card__title {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--al-white);
  margin: 0 0 14px;
  line-height: 1.3;
  padding-right: 30px;
  transition: color 0.3s;
}

.ai-feature-card:hover .ai-feature-card__title {
  color: var(--al-white);
}

.ai-feature-card__desc {
  font-size: 0.88rem;
  color: var(--al-gray);
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
  transition: color 0.3s;
}

.ai-feature-card:hover .ai-feature-card__desc {
  color: #a8bdd6;
}

/* ===== LAZY LOAD VISIBLE ===== */
.ai-feature-card.al-visible {
  animation: al-card-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes al-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes al-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== BOTTOM STATS BAR ===== */
.al-stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 48px 0 0;
  border: 1px solid var(--al-card-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--al-card-bg);

  opacity: 0;
  transform: translateY(20px);
}

.al-stats-bar.al-visible {
  animation: al-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.al-stat {
  flex: 1;
  min-width: 160px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--al-card-border);
  position: relative;
  transition: background 0.3s;
}

.al-stat:last-child {
  border-right: none;
}

.al-stat:hover {
  background: rgba(26, 110, 245, 0.07);
}

.al-stat__num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--al-white);
  line-height: 1;
  background: linear-gradient(135deg, var(--al-white), var(--al-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.al-stat__label {
  font-size: 0.75rem;
  color: var(--al-gray);
  margin-top: 6px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media (max-width: 640px) {
  .al-stat {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--al-card-border);
  }
  .al-stat:last-child {
    border-bottom: none;
  }
  .al-stats-bar {
    gap: 0;
  }
}

/* Section8-Technology Section */

.technology_sec {
  --ts-black: #020408;
  --ts-dark: #080e18;
  --ts-card-bg: #0d1826;
  --ts-card-border: #1a2e4a;
  --ts-blue: #1a6ef5;
  --ts-blue-light: #3d8bff;
  --ts-blue-glow: rgba(26, 110, 245, 0.2);
  --ts-white: #ffffff;
  --ts-gray: #8ca0bc;
  --ts-accent: #00d4ff;

  background: var(--ts-black);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  padding: 0!important;
}

/* Grid bg */
.technology_sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 110, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 110, 245, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.technology_sec::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(26, 110, 245, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.technology_sec .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADING ===== */
.technology_sec .technology_desp {
  text-align: center;
  margin-bottom: 52px;
  /* opacity: 0; */
  transform: translateY(28px);
}

.technology_sec .technology_desp.ts-visible {
  animation: ts-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.technology_desp {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.technology_desp h3 {
  color: #ffffff !important;
  display: block;
  visibility: visible;
  opacity: 1;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.technology_desp p {
  color: #cbd5e1 !important;
  display: block;
  visibility: visible;
  opacity: 1;
  font-size: 18px;
}

.technology_sec .technology_desp h3 span {
  background: linear-gradient(90deg, var(--ts-blue-light), var(--ts-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT WRAPPER ===== */
.ts-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .ts-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== TABS (LEFT SIDEBAR) ===== */
.technology_tab {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--ts-card-bg);
  border: 1px solid var(--ts-card-border);
  border-radius: 16px;
  padding: 12px;
  position: sticky;
  top: 100px;

  opacity: 0;
  transform: translateX(-24px);
}

.technology_tab.ts-visible {
  animation: ts-slide-right 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@media (max-width: 900px) {
  .technology_tab {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    gap: 8px;
    margin-bottom: 16px;
    border-radius: 14px;
  }
}

.technology_tablinks {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.technology_tablinks::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, var(--ts-blue), var(--ts-accent));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0);
  transition:
    opacity 0.25s,
    transform 0.3s;
}

.technology_tablinks:hover {
  background: rgba(26, 110, 245, 0.08);
  border-color: rgba(26, 110, 245, 0.15);
}

.technology_tablinks.active {
  background: rgba(26, 110, 245, 0.15);
  border-color: rgba(26, 110, 245, 0.35);
}

.technology_tablinks.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.technology_tablinks .desktop-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ts-gray);
  line-height: 1.35;
  font-family: "DM Sans", sans-serif;
  transition: color 0.25s;
}

.technology_tablinks.active .desktop-text,
.technology_tablinks:hover .desktop-text {
  color: var(--ts-white);
}

/* Mobile icon tab */
.technology_tablinks .mobile-text {
  display: none;
}

.technology_tablinks .mobile-text img {
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 0.25s;
}

.technology_tablinks.active .mobile-text img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(500%)
    hue-rotate(195deg) brightness(120%);
}

@media (max-width: 900px) {
  .technology_tablinks .desktop-text {
    display: none;
  }
  .technology_tablinks .mobile-text {
    display: flex;
  }
  .technology_tablinks {
    padding: 10px 14px;
    flex: 0 0 auto;
  }
  .technology_tablinks::before {
    display: none;
  }
}

/* ===== TAB CONTENT AREA ===== */
.technologyRighttab {
  min-height: 300px;
  opacity: 0;
  transform: translateX(24px);
}

.technologyRighttab.ts-visible {
  animation: ts-slide-left 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.technology_tabcontent {
  display: none;
}

.technology_tabcontent.ts-active {
  display: block;
  animation: ts-tab-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ts-tab-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TECH GRID ===== */
.technology_tabcontent .row {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0 !important;
}

@media (max-width: 1100px) {
  .technology_tabcontent .row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .technology_tabcontent .row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .technology_tabcontent .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.technology_tabcontent .col-lg-3 {
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  flex: none !important;
  max-width: none !important;
}

/* ===== TECH BOX ===== */
.hitech_box {
  background: var(--ts-card-bg);
  border: 1px solid var(--ts-card-border);
  border-radius: 12px;
  padding: 20px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: default;
  transition:
    border-color 0.28s,
    transform 0.28s,
    box-shadow 0.28s;
  position: relative;
  overflow: hidden;

  /* Lazy */
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

.hitech_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ts-blue-light),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.hitech_box:hover {
  border-color: rgba(26, 110, 245, 0.5);
  transform: translateY(-4px) scale(1);
  box-shadow: 0 10px 32px var(--ts-blue-glow);
}

.hitech_box:hover::after {
  opacity: 1;
}

.hitech_box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s;
}

.hitech_box:hover img {
  transform: scale(1.12);
}

.hitech_box p {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--ts-gray);
  margin: 0;
  line-height: 1.3;
  font-family: "DM Sans", sans-serif;
  transition: color 0.28s;
  letter-spacing: 0.01em;
}

.hitech_box:hover p {
  color: var(--ts-white);
}

.hitech_box.ts-box-visible {
  animation: ts-box-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes ts-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ts-slide-right {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ts-slide-left {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ts-box-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Section9-FAQ Section */

 .ai-faq-section {
      background: #0a0f1e;
      padding: 50px 0;
      font-family: 'DM Sans', sans-serif;
    }
 
    /* --- Title --- */
    .ai-faq-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: clamp(22px, 3vw, 32px);
      color: #ffffff;
      text-align: center;
      margin-bottom: 36px;
    }
 
    /* --- Left box --- */
    .ai_fa_box {
      background: #0d1630;
      border: 1px solid rgba(59, 143, 255, 0.2);
      border-radius: 12px;
      padding: 36px 24px;
      text-align: center;
      position: sticky;
      top: 20px;
    }
 
    .ai_fa_box img {
      width: 90px;
      height: auto;
      margin-bottom: 20px;
    }
 
    .ai_fa_box p {
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.5;
    }
 
    .ai_fa_box button {
      background: #3b8fff;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
    }
 
    .ai_fa_box button:hover {
      background: #2070e0;
    }
 
    /* --- FAQ list --- */
    .ai-faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    /* --- FAQ item --- */
    .ai-faq-item {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(59, 143, 255, 0.18);
      border-radius: 10px;
      overflow: hidden;
      opacity: 1;
      transform: translateY(16px);
      transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
    }
 
    .ai-faq-item.faq-visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .ai-faq-item.faq-open {
      border-color: rgba(59, 143, 255, 0.5);
    }
 
    /* --- Question --- */
    .ai-faq-question {
      margin: 0;
    }
 
    .ai-faq-toggle {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(13px, 1.5vw, 15px);
      font-weight: 500;
      color: #ffffff;
      text-align: left;
      cursor: pointer;
      transition: color 0.3s ease;
    }
 
    .ai-faq-toggle:hover {
      color: #3b8fff;
    }
 
    /* --- Plus/Minus icon --- */
    .ai-faq-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(59, 143, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: background 0.3s ease, border-color 0.3s ease;
    }
 
    .ai-faq-icon::before,
    .ai-faq-icon::after {
      content: '';
      position: absolute;
      background: #3b8fff;
      border-radius: 2px;
      transition: transform 0.35s ease, opacity 0.35s ease;
    }
 
    .ai-faq-icon::before {
      width: 10px;
      height: 1.5px;
    }
 
    .ai-faq-icon::after {
      width: 1.5px;
      height: 10px;
    }
 
    .ai-faq-item.faq-open .ai-faq-icon {
      background: #3b8fff;
      border-color: #3b8fff;
    }
 
    .ai-faq-item.faq-open .ai-faq-icon::before,
    .ai-faq-item.faq-open .ai-faq-icon::after {
      background: #ffffff;
    }
 
    .ai-faq-item.faq-open .ai-faq-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
 
    /* --- Answer --- */
    .ai-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}
 
    .ai-faq-answer p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
      padding: 0 18px 16px;
      margin: 0;
    }
 
    /* --- Responsive --- */
    @media (max-width: 991px) {
      .ai_fa_box {
        position: static;
        margin-bottom: 28px;
      }
    }
 
    @media (max-width: 575px) {
      .ai-faq-section {
        padding: 24px 0;
      }
      .ai-faq-title {
        font-size: 20px;
        margin-bottom: 24px;
      }
      .ai_fa_box {
        padding: 24px 16px;
      }
      .ai-faq-toggle {
        font-size: 13px;
        padding: 14px 14px;
      }
      .ai-faq-answer p {
        font-size: 13px;
        padding: 0 14px 14px;
      }
    }
    /* Sticky fix */
/* Sticky Left Box Fix */
.ai-faq-section .row{
    align-items: flex-start;
}

.ai_fa_box{
    position: sticky;
    top: 90px;
}
/* ai faq section end */

/* Technology stack section */
 .tech-section *,
  .tech-section *::before,
  .tech-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .tech-section {
    background: #050810;
    padding: 30px 0!important;
    position: relative;
    overflow: hidden;
  }

  .tech-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ts-blob1 8s ease-in-out infinite alternate;
  }

  .tech-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: ts-blob2 10s ease-in-out infinite alternate;
  }

  @keyframes ts-blob1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(60px, 80px) scale(1.15); }
  }
  @keyframes ts-blob2 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-50px, -60px) scale(1.2); }
  }

  .ts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .ts-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
  }

  .ts-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0052ff;
    background: rgba(0, 82, 255, 0.08);
    border: 1px solid rgba(0, 82, 255, 0.3);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    animation: ts-fadedown 0.6s ease both;
  }

  .ts-heading-wrap h3 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    animation: ts-fadedown 0.7s 0.1s ease both;
  }

  .ts-heading-wrap h3 span {
    color: #0052ff;
  }

  @keyframes ts-fadedown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* TABS */
  .ts-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    animation: ts-fadeup 0.6s 0.2s ease both;
  }

  @keyframes ts-fadeup {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .ts-tab-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7a99;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
  }

  .ts-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #0052ff;
    transition: width 0.3s ease;
  }

  .ts-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(0, 82, 255, 0.4);
    background: rgba(0, 82, 255, 0.07);
  }

  .ts-tab-btn:hover::after { width: 100%; }

  .ts-tab-btn.ts-active {
    color: #ffffff;
    background: rgba(0, 82, 255, 0.15);
    border-color: #0052ff;
  }

  .ts-tab-btn.ts-active::after { width: 100%; }

  /* PANEL */
  .ts-panel {
    display: none;
  }

  .ts-panel.ts-show {
    display: block;
    animation: ts-panelin 0.4s ease both;
  }

  @keyframes ts-panelin {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* GRID */
  .ts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  /* CARD */
  .ts-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 28px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    animation: ts-cardin 0.5s ease both;
  }

  .ts-card:nth-child(1)  { animation-delay: 0.00s; }
  .ts-card:nth-child(2)  { animation-delay: 0.04s; }
  .ts-card:nth-child(3)  { animation-delay: 0.08s; }
  .ts-card:nth-child(4)  { animation-delay: 0.12s; }
  .ts-card:nth-child(5)  { animation-delay: 0.16s; }
  .ts-card:nth-child(6)  { animation-delay: 0.20s; }
  .ts-card:nth-child(7)  { animation-delay: 0.24s; }
  .ts-card:nth-child(8)  { animation-delay: 0.28s; }
  .ts-card:nth-child(9)  { animation-delay: 0.32s; }
  .ts-card:nth-child(10) { animation-delay: 0.36s; }
  .ts-card:nth-child(11) { animation-delay: 0.40s; }
  .ts-card:nth-child(12) { animation-delay: 0.44s; }
  .ts-card:nth-child(13) { animation-delay: 0.48s; }
  .ts-card:nth-child(14) { animation-delay: 0.52s; }
  .ts-card:nth-child(15) { animation-delay: 0.56s; }

  @keyframes ts-cardin {
    from { opacity: 0; transform: translateY(18px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .ts-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,82,255,0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }

  .ts-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 255, 0.45);
    background: rgba(0, 82, 255, 0.07);
  }

  .ts-card:hover::before {
    transform: scaleX(1);
  }

  /* Icon wrapper — white bg for icons */
  .ts-icon-wrap {
    width: 100px;
    height: 56px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .ts-card:hover .ts-icon-wrap {
    box-shadow: 0 6px 28px rgba(0, 82, 255, 0.35);
    transform: scale(1.08);
  }

  .ts-icon-wrap img {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .ts-card p {
    font-size: 11px;
    font-weight: 400;
    color: #8a9bc2;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .ts-card:hover p {
    color: #c8d4f0;
  }

  /* Corner accent */
  .ts-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 20px; height: 20px;
    border-bottom: 1px solid rgba(0, 82, 255, 0.4);
    border-right: 1px solid rgba(0, 82, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 6px 0;
  }

  .ts-card:hover::after {
    opacity: 1;
  }

  /* Scanline overlay */
  .ts-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 0;
  }
.ts-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ts-card{
    flex: 0 0 calc(20% - 20px);
}

/* responsive */
@media(max-width:1200px){
    .ts-card{
        flex: 0 0 calc(25% - 20px);
    }
}

@media(max-width:991px){
    .ts-card{
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media(max-width:767px){
    .ts-card{
        flex: 0 0 calc(50% - 20px);
    }
}

@media(max-width:480px){
    .ts-card{
        flex: 0 0 100%;
    }
}
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .tech-section { padding: 60px 16px; }
    .ts-tab-btn { font-size: 10px; padding: 8px 12px; }
    .ts-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
    .ts-heading-wrap h3 { font-size: 22px; }
  }

  @media (max-width: 480px) {
    .ts-tabs { gap: 6px; }
    .ts-tab-btn { font-size: 9px; padding: 7px 10px; letter-spacing: 0.5px; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); }
  }

.cursor,
.cursor-ring,
#cursor,
#cursorRing {
  pointer-events: none !important;
}

/* section */
.ai-security-section{
    background:#050b14;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.ai-security-section:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top right,
    rgba(0,123,255,.18),
    transparent 45%);
    pointer-events:none;
}

.security-badge{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(0,123,255,.4);
    border-radius:50px;
    color:#4da3ff;
    background:rgba(0,123,255,.08);
    font-size:14px;
    margin-bottom:20px;
}

.security-title{
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

.security-desc{
    color:#b8c7d9;
    max-width:850px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
}

.security-card{
    background:linear-gradient(
    180deg,
    rgba(15,25,40,.95),
    rgba(8,15,25,.95));
    border:1px solid rgba(0,123,255,.2);
    border-radius:20px;
    padding:35px;
    transition:.4s;
}

.security-card:hover{
    transform:translateY(-8px);
    border-color:#007bff;
    box-shadow:0 20px 50px rgba(0,123,255,.18);
}

.card-icon{
    width:70px;
    height:70px;
    border-radius:15px;
    background:rgba(0,123,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.card-icon i{
    color:#1f8cff;
    font-size:30px;
}

.security-card h3{
    color:#fff;
    margin-bottom:20px;
    font-size:24px;
    font-weight:600;
}

.security-list{
    padding-left:18px;
    margin:0;
}

.security-list li{
    color:#c8d5e5;
    margin-bottom:15px;
    line-height:1.8;
}

.mini-security-box{
    background:#0b1320;
    border:1px solid rgba(0,123,255,.18);
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.mini-security-box:hover{
    border-color:#007bff;
    transform:translateY(-5px);
}

.mini-security-box i{
    font-size:32px;
    color:#1f8cff;
    margin-bottom:15px;
}

.mini-security-box h4{
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.mini-security-box p{
    color:#b8c7d9;
    margin-bottom:0;
}

@media(max-width:991px){
    .security-title{
        font-size:34px;
    }
}

@media(max-width:767px){
    .ai-security-section{
        padding:70px 0;
    }

    .security-title{
        font-size:28px;
    }

    .security-desc{
        font-size:16px;
    }

    .security-card{
        padding:25px;
    }
}
header, .header, nav, .navbar {
  background: transparent !important;
}
/* SECTION */
