
:root {
  --purple-deep: #5A2D82;
  --purple-mid:  #7B2CBF;
  --magenta:     #C9184A;
  --red-pink:    #FF4D6D;
  --dark-bg:     #FFFFFF;
  --card-bg:     #937df4;
  --card-border: rgba(90,45,130,0.3);
  --text-muted:  #6C757D;
  --grad-main:   linear-gradient(135deg, #5A2D82 0%, #C9184A 60%, #FF4D6D 100%);
  --grad-btn:    linear-gradient(90deg, #5A2D82, #C9184A, #FF4D6D);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-display: 'Space Grotesk', sans-serif;
  --shadow-soft: 0 20px 45px -22px rgba(90, 45, 130, .18);
  --shadow-glow: 0 25px 60px -15px rgba(124, 58, 237, .25);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark-bg);
  color: #1A1A1A;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Every <section> sits on a plain white page background.
   Dark "box" elements (.product-card, .testi-card, .faq-item, etc.)
   define their own backgrounds and stay unchanged. */
section { background: #FFFFFF; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F1F0F5; }
::-webkit-scrollbar-thumb { background: var(--purple-deep); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: rgba(201,24,74,0.25); color: #1A1A1A; }

/* ─────────────────────────────── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(90,45,130,0.12);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.88);
  border-bottom-color: rgba(90,45,130,0.2);
}
.navbar-brand {
  font-size: 1.4rem; font-weight: 800;
  background: var(--grad-btn);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-link {
  color: rgba(26,26,26,0.65) !important;
  font-size: 0.875rem; font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.25s;
}
.nav-link:hover { color: #1A1A1A !important; background: rgba(90,45,130,0.08); }
.nav-cta {
  background: var(--grad-btn) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 24px rgba(201,24,74,0.45) !important; }

/* ─────────────────────────────── BUTTONS ─────────────────────────────── */
.btn-grad {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-btn);
  color: #fff; border: none; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; cursor: pointer;
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s;
  text-decoration: none;
}
.btn-grad:hover {
  transform: scale(1.05);
  box-shadow: 0 0 36px rgba(201,24,74,0.4);
  color: #fff;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,26,26,0.04);
  color: #1A1A1A; border: 1px solid rgba(26,26,26,0.14);
  border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(26,26,26,0.08); border-color: rgba(201,24,74,0.5); color: #1A1A1A; }

.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgb(90, 1, 168);
  border: 1px solid rgba(90,45,130,0.25);
  color: #ffffff; border-radius: 100px;
  font-size: 1rem; font-weight: 600;
  padding: 5px 14px; margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #7B2CBF 0%, #C9184A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text2 {
  background: linear-gradient(90deg, #7102d2 0%, #03a386 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text3 {
  background: linear-gradient(90deg, #6302d2 0%, #03a386 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─────────────────────────────── HERO ─────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}

.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.35;
  animation: blobFloat 10s ease-in-out infinite;
}
.hero-blob-1 { width: 500px; height: 500px; background: #5A2D82; top: -10%; left: -8%; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: #C9184A; bottom: -5%; right: -5%; animation-delay: 3s; }
.hero-blob-3 { width: 300px; height: 300px; background: #7B2CBF; top: 40%; right: 15%; animation-delay: 6s; opacity: 0.22; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 25px) scale(0.97); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(90,45,130,0.12) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(90,45,130,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(140, 100, 255, 0.1) 0px,
    rgba(140, 100, 255, 0.1) 1px,
    transparent 1px,
    transparent 30px
  );

  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero1-holo-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(80, 100, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 100, 180, 0.08) 1px, transparent 1px);

  background-size: 60px 60px;

  transform: perspective(900px) rotateX(60deg) scale(1.2);
  transform-origin: center;

  opacity: 0.5;

  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}
.hero1-scan {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(100, 120, 200, 0.08) 50%,
    transparent 100%
  );

  animation: scanMove 8s linear infinite;
}


@keyframes scanMove {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.hero1-rings {
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at center,
    rgba(120, 140, 255, 0.12) 0%,
    rgba(120, 140, 255, 0.06) 25%,
    transparent 60%
  );

  filter: blur(80px);
  opacity: 0.7;
}

.hero1-noise {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
}
.hero-holo-grid {
  animation: gridFloat 10s ease-in-out infinite;
}

@keyframes gridFloat {
  0%,100% { transform: perspective(900px) rotateX(60deg) translateY(0); }
  50% { transform: perspective(900px) rotateX(60deg) translateY(-20px); }
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(120, 50, 255, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 80, 120, 0.2), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(80, 120, 255, 0.2), transparent 50%);
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(90,45,130,0.08);
  border: 1px solid rgba(90,45,130,0.25);
  color: #7B2CBF; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; margin-bottom: 28px;
}
.hero-pill .dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.6;transform:scale(1.3);} }

#hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; line-height: 1.08; letter-spacing: -2px; margin-bottom: 22px; color: #1A1A1A; }
#hero p.lead { font-size: 1.2rem; color: rgba(26,26,26,0.6); line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }



/* ─────────────────────────────── MARQUEE ─────────────────────────────── */
.marquee-wrap { overflow: hidden; padding: 20px 0; border-top: 1px solid rgba(90,45,130,0.15); border-bottom: 1px solid rgba(90,45,130,0.15); background: linear-gradient(120deg, #8201f9, #ff0000); }
.marquee-track { display: flex; gap: 60px; animation: marquee 22s linear infinite; width: max-content; }
/* .marquee-item { display: flex; align-items: center; gap: 10px; color: rgba(26,26,26,0.45); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; background: #f0fcf8; } */
.marquee-item {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 22px;
  border-radius: 100px;
  background: #fffafa;
  border: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--text-muted);
  box-shadow: 0 2px 12px rgba(245, 242, 251, 0.04);
  backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.marquee-item i { color: #036510;; font-size: 1rem; }
.marquee-item:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────── SECTION COMMON ─────────────────────────────── */
section { padding: 30px 0; }
.section-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; color: #1A1A1A; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; line-height: 1.7; }


.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; line-height: 1.7; }
/* ══════════════════════════════ PRODUCT CARDS (3D tilt) ══════════════════════════════ */
.product-card{
  position:relative; height:100%; padding:30px 26px; border-radius:22px;
  background:#ffffff;
  backdrop-filter:blur(16px);
  transform-style:preserve-3d; transition:transform .15s ease-out, box-shadow .35s var(--ease), border-color .35s;
  overflow:hidden;
}
.product-card::before{
  content:""; position:absolute; inset:0; border-radius:inherit; opacity:0; pointer-events:none;
  background:radial-gradient(340px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.14), transparent 60%);
  transition:opacity .3s;
}
.product-card:hover::before{opacity:1;}
.product-card:hover{box-shadow:0 30px 60px -20px rgba(0,0,0,.65); border-color:rgba(255,255,255,.18);}
.tag-pill{display:inline-block; font-family:var(--font-mono); font-size:.68rem; padding:5px 12px; border-radius:100px; margin-bottom:18px; letter-spacing:.03em;}
.product-icon{
  width:180px; height:138px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; margin-bottom:18px; transform:translateZ(30px);
  box-shadow:0 12px 24px -10px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.15);
  animation: float 3.6s ease-in-out infinite;
}
.product-card h4{font-size:1.2rem; margin-bottom:10px; transform:translateZ(20px);}
.product-card p{font-size:.9rem; margin-bottom:16px; transform:translateZ(15px);}
.product-link{
  display:inline-flex; align-items:center; gap:6px; font-family:var(--font-display); font-weight:600;
  font-size:.85rem; color:var(--text); text-decoration:none; transform:translateZ(20px);
}
.product-link i{transition:transform .3s;}
.product-link:hover i{transform:translateX(5px);}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
/* ─────────────────────────────── SERVICES ─────────────────────────────── */
#services { background: var(--dark-bg); }

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  color: #fff;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(201,24,74,0.45); box-shadow: 0 28px 56px rgba(201,24,74,0.14); }
.service-num { font-size: 4rem; font-weight: 900; line-height: 1; opacity: 0.06; position: absolute; top: 16px; right: 24px; font-variant-numeric: tabular-nums; }
.service-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 22px; }
.service-learn { color: var(--red-pink); font-size: 0.82rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; border-bottom: 1px solid transparent; transition: border-color 0.2s, gap 0.2s; }
.service-learn:hover { border-bottom-color: var(--red-pink); gap: 8px; color: var(--red-pink); }

/* ─────────────────────────────── WHY US ─────────────────────────────── */
#why {
  position: relative;
  overflow: hidden;
  background: #FFF0F7;
}

#why.container {
  position: relative;
  z-index: 2;
}


.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(90,45,130,0.15); border-radius: 20px; overflow: hidden; }
.why-item {  background: linear-gradient(135deg, #8201fa, #fa0202); padding: 36px 32px; transition: background 0.3s; color: #f1feff; }
.why-item:hover { background: #d6ccf0; }
.why-item i { font-size: 2rem; margin-bottom: 14px; background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why-item h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin: 0; }

.tech-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(90,45,130,0.08); border: 1px solid rgba(90,45,130,0.3); color: #7B2CBF; border-radius: 8px; font-size: 0.8rem; font-weight: 600; padding: 6px 12px; }
/* keep content above background */

/* why us background */

/* .tech-circuit {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(120,140,200,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,140,200,0.10) 1px, transparent 1px);

  background-size: 80px 80px;
  opacity: 0.6;
}

/* nodes (chip dots) */
/* .tech-circuit::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(
    rgba(120,140,255,0.35) 2px,
    transparent 2px
  );

  background-size: 80px 80px;
  opacity: 0.5;
}

.tech-data-flow {
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(120,140,255,0.25) 52px,
    transparent 54px
  );

  animation: dataMove 8s linear infinite;
  opacity: 0.35;
}

@keyframes dataMove {
  0% { background-position: 0 0; }
  100% { background-position: 300px 0; }
}

.tech-core {
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 50% 50%,
    rgba(120,140,255,0.12) 0%,
    rgba(120,140,255,0.06) 25%,
    transparent 60%
  );

  filter: blur(70px);
  opacity: 0.8;
}

.tech-particles {
  position: absolute;
  inset: 0;
}

.tech-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(120,140,255,0.6);
  border-radius: 50%;

  animation: floatDot 12s linear infinite;
}

@keyframes floatDot {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20%);
    opacity: 0;
  }
} */


/* .circuit-board {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(120,140,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,140,255,0.08) 1px, transparent 1px);

  background-size: 80px 80px;
}

.circuit-lines {
  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(120,140,255,0.25) 62px,
      transparent 64px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(120,140,255,0.18) 62px,
      transparent 64px
    );

  animation: circuitFlow 10s linear infinite;
  opacity: 0.5;
}

@keyframes circuitFlow {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 300px 0, 0 300px;
  }
}

.circuit-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(120,140,255,0.9);
  border-radius: 50%;

  box-shadow: 0 0 10px rgba(120,140,255,0.8);

  animation: moveData 6s linear infinite;
}

@keyframes moveData {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(120px) translateY(-40px);
  }
  100% {
    transform: translateX(250px) translateY(60px);
    opacity: 0;
  }
}

.circuit-core {
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 50% 50%,
    rgba(120,140,255,0.18),
    transparent 60%
  );

  filter: blur(80px);
}

.circuit-board,
.circuit-lines {
  mask-image: radial-gradient(circle at center, black 0%, transparent 85%);
} */


/* ─────────────────────────────── STATS ─────────────────────────────── */
#stats { background: #034b61; padding: 72px 0; }
.stats-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(90,45,130,0.2); border-radius: 20px; overflow: hidden; border: 1px solid rgba(90,45,130,0.25); }
.stat-block { background: #ffffff; padding: 40px 24px; text-align: center; transition: background 0.3s; color: #fff; border: 1px solid #fbb7b7}
.stat-block:hover { background: #033a3c; }
.stat-block .big { font-size: 3rem; font-weight: 900; letter-spacing: -2px; background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; }
.stat-block .lbl { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ─────────────────────────────── TESTIMONIALS ─────────────────────────────── */
#testimonials { background:linear-gradient(120deg, #f3fefc, #e6f6fd, #e8fff6); }

.testi-card {
  background:linear-gradient(120deg, #007767, #025c7f, #03653c);
  border: 1px solid rgba(90,45,130,0.25);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  color: #fff;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.testi-card::after { content: '"'; position: absolute; top: 8px; right: 20px; font-size: 7rem; line-height: 1; background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.4; font-family: Georgia, serif; }
.testi-card:hover { transform: translateY(-8px); border-color: rgba(201,24,74,0.4); box-shadow: 0 24px 48px rgba(201,24,74,0.1); }
.stars { color: #FF4D6D; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,24,74,0.4); }
.testi-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; background: linear-gradient(135deg, #5A2D82, #C9184A); flex-shrink: 0; }
.testi-footer h6 { font-size: 0.9rem; font-weight: 700; margin: 0; }
.testi-footer small { color: var(--text-muted); font-size: 0.78rem; }

/* ─────────────────────────────── FAQ ─────────────────────────────── */
#faq { background: var(--dark-bg); }
.faq-item { background: var(--card-bg); border: 1px solid rgba(90,45,130,0.2); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; color: #fff; }
.faq-item.open { border-color: rgba(201,24,74,0.4); }
.faq-btn { width: 100%; background: none; border: none; color: #fff; font-size: 1rem; font-weight: 600; text-align: left; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: inherit; gap: 16px; }
.faq-btn .faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: rgba(90,45,130,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.3s, transform 0.3s; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, #5A2D82, #C9184A); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(.22,1,.36,1); }
.faq-body.open { max-height: 200px; }
.faq-body p { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.fqhi{display:inline-block;background:rgba(124,58,237,.09);border:1px solid rgba(124,58,237,.2);color:#5B21B6;border-radius:6px;padding:1px 7px;font-size:.82rem;font-weight:700;margin:0 2px}
/* ─────────────────────────────── BLOG ─────────────────────────────── */
#blog { background: #fce1e1; }
.blog-card { background: var(--card-bg); border: 1px solid rgba(90,45,130,0.2); border-radius: 20px; overflow: hidden; height: 100%; transition: all 0.4s cubic-bezier(.22,1,.36,1); display: block; text-decoration: none; color: #fff; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(201,24,74,0.4); box-shadow: 0 24px 48px rgba(201,24,74,0.1); color: #fff; }
.blog-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.blog-body { padding: 24px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.78rem; }

/* ─────────────────────────────── CTA ─────────────────────────────── */
#cta { background: #f1eefb; padding: 120px 0; position: relative; overflow: hidden; }
.cta-blob-1 { position: absolute; width: 500px; height: 500px; background: #5A2D82; border-radius: 50%; filter: blur(100px); opacity: 0.18; top: -30%; left: -10%; animation: blobFloat 12s ease-in-out infinite; }
.cta-blob-2 { position: absolute; width: 400px; height: 400px; background: #C9184A; border-radius: 50%; filter: blur(80px); opacity: 0.15; bottom: -20%; right: -5%; animation: blobFloat 9s ease-in-out infinite reverse; }
#cta h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 18px; color: #1A1A1A; }

/* ─────────────────────────────── FOOTER (intentionally dark) ─────────────────────────────── */
footer {
  background: #030208;
  border-top: 1px solid rgba(90,45,130,0.2);
  padding: 64px 0 32px;
  color: #fff;
}
.footer-brand { font-size: 1.3rem; font-weight: 800; background: var(--grad-btn); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; max-width: 240px; line-height: 1.6; margin-bottom: 24px; }
.social-link { width: 36px; height: 36px; border-radius: 10px; background: rgba(90,45,130,0.2); border: 1px solid rgba(90,45,130,0.35); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.25s; font-size: 0.9rem; }
.social-link:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; transform: translateY(-2px); }
.footer-heading { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-link { display: block; color: rgba(255,255,255,0.55); font-size: 0.875rem; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin: 0; }

/* ─────────────────────────────── CONTACT FORM ─────────────────────────────── */
#contact { background: #07050F; }
.contact-form-wrap { background: var(--card-bg); border: 1px solid rgba(90,45,130,0.25); border-radius: 24px; padding: 48px; color: #fff; }
.form-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.form-control, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,45,130,0.3);
  border-radius: 12px;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(201,24,74,0.15);
  color: #fff;
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; background: rgba(90,45,130,0.1); border: 1px solid rgba(90,45,130,0.3); color: #7B2CBF; }
.contact-info-item h6 { font-size: 0.82rem; font-weight: 700; color: rgba(26,26,26,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-item p { color: rgba(26,26,26,0.85); font-size: 0.9rem; margin: 0; }

/* ─────────────────────────────── UTILITIES ─────────────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(90,45,130,0.4), transparent); margin: 0; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hero-divider { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 576px) {
  .stats-wrap { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

/* ===== BLOG SPECIFIC ===== */

/* Blob animations */
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-15px) scale(1.04); }
  66% { transform: translate(-10px,20px) scale(.97); }
}

/* Filter pills active state */
.filter-pill.active {
  background: linear-gradient(135deg, #5A2D82, #C9184A) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.filter-pill:hover {
  background: linear-gradient(135deg, #5A2D82, #C9184A) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* Blog cards */
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90, 45, 130, 0.35);
  box-shadow: 0 16px 40px rgba(90, 45, 130, 0.1);
}
.featured-card:hover {
  box-shadow: 0 16px 48px rgba(90, 45, 130, 0.14);
  transform: translateY(-4px);
}
.rel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(90, 45, 130, 0.1);
}

/* TOC scroll-spy */
.toc-link.active {
  color: #5A2D82 !important;
  border-left-color: #C9184A !important;
}

/* Newsletter form */
.nl-input:focus {
  outline: none;
  border-color: #5A2D82;
  box-shadow: 0 0 0 3px rgba(90, 45, 130, 0.1);
}
.btn-grad:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}

/* Pagination */
.pg-btn.active {
  background: linear-gradient(135deg, #5A2D82, #C9184A);
  color: #fff;
  border-color: transparent;
}
.pg-btn:hover:not(.active):not(:disabled) {
  background: linear-gradient(135deg, #5A2D82, #C9184A);
  color: #fff;
  border-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .featured-card {
    grid-template-columns: 1fr !important;
  }
  .featured-body {
    padding: 28px 24px !important;
  }
  .post-cover {
    min-height: 180px !important;
    font-size: 3.5rem !important;
  }
  .author-box {
    flex-direction: column;
  }
  .nl-row {
    flex-direction: column;
  }
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #5A2D82, #C9184A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section badge (reusable) */
/* .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgb(255, 253, 253);
  border: 1px solid rgb(209, 1, 1);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8d0303;
} */


/* ── Contact page specific styles ── */

/* Hero blobs */
#hero {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 90px 0 64px;
  text-align: center;
}
.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(80px);
  animation: blobFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.b1 {
  width: 440px;
  height: 440px;
  background: #5A2D82;
  opacity: .10;
  top: -20%;
  left: -8%;
}
.b2 {
  width: 360px;
  height: 360px;
  background: #C9184A;
  opacity: .08;
  bottom: -20%;
  right: -5%;
  animation-delay: 5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(20px,-15px); }
  66% { transform: translate(-10px,20px); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(90,45,130,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,45,130,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 100%);
}

/* Info cards */
#contact-info { background: #F8F6FF; padding: 60px 0; }
.info-card {
  background: #fff;
  border: 1px solid rgba(90,45,130,.14);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 2px 16px rgba(90,45,130,.05);
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(90,45,130,.10);
  border-color: rgba(90,45,130,.30);
}
.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(90,45,130,.12), rgba(201,24,74,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.info-card h5 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(26,26,26,.5);
  margin-bottom: 8px;
}
.info-card p { font-size: .95rem; font-weight: 600; color: #1A1A1A; margin: 0; line-height: 1.6; }
.info-card a { color: #C9184A; text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* Form card */
#contact-form { background: #FFFFFF; }
.form-card {
  background: #fff;
  border: 1px solid rgba(90,45,130,.14);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(90,45,130,.06);
}
@media (max-width:576px) { .form-card { padding: 28px 20px; } }
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(26,26,26,.7);
  margin-bottom: 7px;
}
.form-control, .form-select {
  background: #F8F6FF;
  border: 1.5px solid rgba(90,45,130,.18);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .9rem;
  font-family: inherit;
  color: #1A1A1A;
  transition: all .25s;
}
.form-control:focus, .form-select:focus {
  background: #fff;
  border-color: #5A2D82;
  box-shadow: 0 0 0 3px rgba(90,45,130,.10);
  outline: none;
  color: #1A1A1A;
}
.form-control::placeholder { color: rgba(26,26,26,.35); }
.form-select option { background: #fff; color: #1A1A1A; }
.char-count {
  font-size: .72rem;
  color: rgba(26,26,26,.4);
  text-align: right;
  margin-top: 4px;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #5A2D82 0%, #C9184A 100%);
  color: #fff;
  transition: transform .25s, box-shadow .25s;
  font-family: inherit;
}
.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(201,24,74,.35);
}
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.success-msg {
  display: none;
  background: linear-gradient(135deg, rgba(5,150,105,.08), rgba(16,185,129,.05));
  border: 1px solid rgba(5,150,105,.25);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: #059669;
}
.success-msg i { font-size: 2rem; margin-bottom: 10px; display: block; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F8F6FF;
  border: 1px solid rgba(90,45,130,.14);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(26,26,26,.6);
  padding: 7px 16px;
}
.trust-badge i { color: #5A2D82; }

/* Map */
#map-section { background: #F8F6FF; padding: 0 0 80px; }
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(90,45,130,.10);
}
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #5A2D82, #C9184A);
  color: #fff;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow .3s, transform .25s;
  border: none;
  font-family: inherit;
  font-size: .9rem;
}
.btn-grad:hover { color: #fff; box-shadow: 0 8px 28px rgba(201,24,74,.35); transform: translateY(-2px); }

/* FAQ overrides (already in main.css but we keep consistency) */
#faq { background: #FFFFFF; padding: 64px 0; }
.faq-item {
  background: #F8F6FF;
  border: 1px solid rgba(90,45,130,.14);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(90,45,130,.40); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: #1A1A1A;
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  gap: 14px;
}
.faq-icon {
  font-size: 1.1rem;
  color: rgba(26,26,26,.4);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: #C9184A; }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1);
}
.faq-body.open { max-height: 200px; }
.faq-body p {
  padding: 0 22px 18px;
  color: rgba(26,26,26,.65);
  font-size: .875rem;
  line-height: 1.75;
  margin: 0;
}

/* Error state */
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,.10);
}
.invalid-feedback {
  display: none;
  font-size: .78rem;
  color: #dc3545;
  margin-top: 4px;
}
.form-control.is-invalid + .invalid-feedback,
.form-select.is-invalid + .invalid-feedback {
  display: block;
}


/* ============================================================
   CONTACT MODAL
   ============================================================ */
   .modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-container {
    background: #fff;
    border-radius: 28px;
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.35s ease;
    opacity: 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 5;
  }
  .modal-close:hover {
    color: #1A1A1A;
    transform: rotate(90deg);
  }
  .modal-content {
    padding: 40px 36px 36px;
  }
  .modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.25);
    color: #5B21B6;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    margin-bottom: 12px;
  }
  .modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #1A1A1A;
  }
  .modal-title .gt {
    background: linear-gradient(135deg, #5A2D82, #C9184A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .modal-sub {
    color: rgba(24,6,90,0.58);
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .modal-form-group {
    margin-bottom: 18px;
  }
  .modal-form-row {
    display: flex;
    gap: 16px;
  }
  @media (max-width: 480px) {
    .modal-form-row {
      flex-direction: column;
      gap: 0;
    }
  }
  .modal-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(24,6,90,0.7);
    margin-bottom: 5px;
  }
  .modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #F8F6FF;
    transition: border-color 0.25s, box-shadow 0.25s;
    color: #1A1A1A;
  }
  .modal-input:focus {
    border-color: #5A2D82;
    box-shadow: 0 0 0 3px rgba(90,45,130,0.1);
    outline: none;
  }
  .modal-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
  }
  .modal-error {
    display: none;
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 4px;
  }
  .modal-input.error + .modal-error {
    display: block;
  }
  .modal-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #5A2D82 0%, #C9184A 100%);
    color: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    font-family: inherit;
    margin-top: 6px;
  }
  .modal-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 32px rgba(201,24,74,0.35);
  }
  .modal-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  .modal-success {
    background: rgba(5,150,105,0.08);
    border: 1px solid rgba(5,150,105,0.25);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    color: #059669;
    margin-top: 12px;
  }
  .modal-success i {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
  }

/* three js animation on hero section */

#three-canvas-container {
  position: absolute;          /* not fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#three-canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* ─── Hero Content ───
       Positioned on top of the Three.js canvas.
    */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    max-width: 720px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(30, 15, 60, 0.08);
    box-shadow: 0 20px 60px -20px rgba(90, 45, 130, 0.15);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px -20px rgba(124, 58, 237, 0.20);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero .gradient-text {
    background: linear-gradient(120deg, var(--purple), var(--pink), var(--crimson));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
/* ─── HERO STATS (enhanced 3D + glass) ─── */
.hero-stats-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 64px;
  padding: 10px 10px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 45px -22px rgba(90, 45, 130, 0.18);

  /* ── initial: a tiny circle in the center ── */
  opacity: 0;
  transform: scale(0.1);
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 15, 60, 0.09);

  transform-origin: center center;

  /* ── expand + morph animation ── */
  animation: expandMorph 2.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;

  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, border-radius, background;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: -10px;
  padding: 0px 10px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 45px -22px rgba(90, 45, 130, 0.18);

  /* ── initial: a tiny circle in the center ── */
  opacity: 0;
  transform: scale(0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 15, 60, 0.09);

  transform-origin: center center;

  /* ── expand + morph animation ── */
  animation: expandMorph 2.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;

  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, border-radius, background;
}

/* ── hover – 3D lift ── */
.hero-stats:hover {
  transform: perspective(800px) rotateX(0deg) translateY(-4px) scale(1.01);
  box-shadow: 0 25px 60px -15px rgba(124, 58, 237, 0.25);
}

.hero-stat {
  padding: 6px 28px;
  text-align: center;
}
.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(120deg, #7C3AED, #C9184A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat .lbl {
  font-size: 0.74rem;
  color: #9089A3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(30, 15, 60, 0.09);
}
/* ── keyframes ── */
@keyframes expandMorph {
  0% {
    opacity: 0;
    transform: scale(0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);          /* overshoot for a springy feel */
    border-radius: 16px;             /* becoming rectangular */
    background: rgba(255, 255, 255, 0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    border-radius: 24px;             /* final card shape */
    background: rgba(255, 255, 255, 0.75);
  }
}


/* Responsive: hide dividers on small screens */
@media (max-width: 640px) {
  .hero-divider { display: none; }
  .hero-stat { flex: 0 0 30%; }
}
@media (max-width: 400px) {
  .hero-stat { flex: 0 0 100%; }
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* .btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(115deg, var(--purple), var(--crimson));
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(124, 58, 237, 0.45);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    box-shadow: none;
    border: 1px solid rgba(30, 15, 60, 0.12);
    margin-left: 12px;
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: var(--purple);
    box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.15);
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
} */



/* ─── Responsive ─── */
@media (max-width: 640px) {
    .hero-stats {
        gap: 16px;
    }
    .hero-stat .num {
        font-size: 1.4rem;
    }
    .btn {
        display: block;
        width: 100%;
        margin: 6px 0;
    }
    .btn-outline {
        margin-left: 0;
    }
    .hero-content {
        padding: 28px 18px;
    }
}



/* index file animation css */

/* ════════════════════════════════════════════════════════════════
   STEPPED SHAPE LAYOUT — from stats-shapes.css (unchanged)
   ════════════════════════════════════════════════════════════════ */

:root {
  --stats-blush:      #EAAEC3;
  --stats-blush-deep: #DE93AC;
  --stats-wine:       #7C1F3E;
  --stats-cta:        #C9184A;
  --stats-cta-deep:   #970E37;
}

.stats-shape-wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.stats-shape-banner {
  position: relative;
  border: 2px solid var(--stats-wine);
  border-radius: 28px;
  background: linear-gradient(175deg, var(--stats-blush) 0%, var(--stats-blush-deep) 100%);
  box-shadow: 0 24px 50px -26px rgba(124, 31, 62, 0.55);
}

.stats-shape-banner--head {
  margin: 0 9% 0 15%;
  padding: 5px;
  z-index: 2;
}

.stats-shape-banner--body {
  margin: -28px 4% 0 0;
  padding: 60px 32px 40px;
  z-index: 1;
}

.stats-shape-cta {
  position: absolute;
  top: -14px;
  right: 3%;
  z-index: 3;
  min-width: 108px;
  padding: 40px 16px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(155deg, #7C3AED, #C9184A 100%);
  box-shadow: 0 18px 36px -14px rgba(151, 14, 55, 0.65);
}

@media (max-width: 900px) {
  .stats-shape-banner--head { margin-left: 7%; margin-right: 5%; }
  .stats-shape-banner--body { margin-right: 3%; }
}

@media (max-width: 760px) {
  .stats-shape-banner--head,
  .stats-shape-banner--body {
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
  }
  .stats-shape-banner--body { margin-top: 14px; }
  .stats-shape-cta {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 20px;
    border-radius: 100px;
    margin-top: 14px;
  }
}


/* ════════════════════════════════════════════════════════════════
   CONTENT STYLES — glassmorphic + positioning + animations
   ════════════════════════════════════════════════════════════════ */

/* ── Head panel: relative anchor for corner texts ── */
.stats-shape-banner--head {
  position: relative;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* glass overlay on top of the shape background */
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px; /* keep rounded corners */
}

/* ── Corner: "বাংলাদেশের সেরা" (top-left) ── */
.stats-shape-banner--head .ecom01 {
  position: absolute;
  top: 12px;
  left: 18px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: clamp(1.2rem, 1.2vw, 1rem);
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  background: rgb(245, 106, 13);
  padding: 4px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  border: 1px solid rgb(255, 217, 217);
  z-index: 2;
}

/* ── Corner: "SOLUTION" (bottom-right) ── */
.stats-shape-banner--head .ecom-solution {
  position: absolute;
  bottom: 10px;
  right: 18px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: rgb(65, 2, 147);
  text-transform: uppercase;
  background: rgba(231, 217, 248, 0.4);
  padding: 4px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(91, 4, 240, 0.578);
  z-index: 2;
}

/* ── Centered animated text ── */
.stats-shape-banner--head .hero-anim-word-custom {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  padding: 0 8px;
  z-index: 1;
}

/* ── Body panel: glass overlay + stats grid ── */
.stats-shape-banner--body {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
}

.stats-shape-banner--body .hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.stats-shape-banner--body .hero-stat {
  text-align: center;
  flex: 1 0 auto;
  min-width: 70px;
  padding: 4px 6px;
}

.stats-shape-banner--body .hero-stat .num {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stats-shape-banner--body .hero-stat .lbl {
  font-size: clamp(0.55rem, 0.8vw, 0.72rem);
  color: rgba(26, 26, 26, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.stats-shape-banner--body .hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* ── CTA chip: override placeholder size, add content styling ── */
.stats-shape-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  gap: 8px;
  letter-spacing: 0.3px;
  background: linear-gradient(120deg,  #7C3AED, #C9184A 100%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(248, 193, 193, 0.596);
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  padding: 12px 22px;          /* override large placeholder padding */
  min-width: auto;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(151, 14, 55, 0.4);
  top: -18px;                  /* fine-tune overlap */
  right: 4%;
}

.stats-shape-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(151, 14, 55, 0.5);
}


/* ════════════════════════════════════════════════════════════════
   ANIMATED WORD PIECES (haw-word, shimmer, sparks, cursor)
   ════════════════════════════════════════════════════════════════ */

.stats-shape-banner--head .haw-word {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: perspective(600px) rotateX(90deg) translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats-shape-banner--head .haw-word.go {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

.stats-shape-banner--head .haw-word-inner {
  display: inline-block;
  background: linear-gradient(90deg, #7C3AED, #C9184A, #EC4899, #7C3AED);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradShift 4s ease infinite;
}

.stats-shape-banner--head .haw-word::before {
  content: '';
  position: absolute;
  inset: -10px -14px;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}
.stats-shape-banner--head .haw-word.go::before {
  opacity: 1;
  animation: wordGlowPulse 3s ease-in-out 0.1s infinite;
}

.stats-shape-banner--head .haw-spc {
  display: inline-block;
  width: 0.28em;
  vertical-align: middle;
}

.stats-shape-banner--head .hero-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: heroShimmerPass 1s ease-in-out 1.8s 1 forwards;
  pointer-events: none;
  z-index: 2;
}

.stats-shape-banner--head .hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}
.stats-shape-banner--head .hero-spark.s1 { background: #7C3AED; top: -12px; left: 10%; animation: sparkFloat 2.2s ease-out 1.5s 1 forwards; }
.stats-shape-banner--head .hero-spark.s2 { background: #C9184A; top: -6px; left: 35%; animation: sparkFloat 1.9s ease-out 1.7s 1 forwards; }
.stats-shape-banner--head .hero-spark.s3 { background: #EC4899; top: -14px; left: 60%; animation: sparkFloat 2.5s ease-out 1.6s 1 forwards; }
.stats-shape-banner--head .hero-spark.s4 { background: #7C3AED; top: -8px; left: 82%; animation: sparkFloat 2.0s ease-out 1.9s 1 forwards; }
.stats-shape-banner--head .hero-spark.s5 { background: #C9184A; top: -4px; left: 48%; animation: sparkFloat 1.7s ease-out 2.0s 1 forwards; }

.stats-shape-banner--head .hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background: linear-gradient(180deg, #7C3AED, #C9184A);
  vertical-align: middle;
  border-radius: 2px;
  margin-left: 4px;
  opacity: 0;
  animation: cursorAppear 0.2s ease 1.3s forwards,
             cursorBlink 1s step-end 1.5s 6;
}

/* ── Animation for corner pills ── */
.stats-shape-banner--head .ecom01,
.stats-shape-banner--head .ecom-solution {
  opacity: 0; /* start hidden */
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Top-left: slides in from left */
.stats-shape-banner--head .ecom01 {
  transform: translateX(-30px) scale(0.9);
}

.stats-shape-banner--head .ecom01.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Bottom-right: slides in from right */
.stats-shape-banner--head .ecom-solution {
  transform: translateX(30px) scale(0.9);
}

.stats-shape-banner--head .ecom-solution.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ── Optional: subtle hover lift ── */
.stats-shape-banner--head .ecom01:hover,
.stats-shape-banner--head .ecom-solution:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-shape-cta {
  cursor: pointer;          /* overrides default */
  text-decoration: none;    /* remove underline */
  color: #fff;              /* keep text white */
}

.stats-shape-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(151, 14, 55, 0.5);
  color: #fff;              /* keep white on hover */
}



/* ════════════════════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════════════════════ */

@keyframes heroGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroShimmerPass {
  0%   { left: -100%; opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

@keyframes wordGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.04); }
}

@keyframes sparkFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  15%  { opacity: 1; transform: translateY(-8px) scale(1); }
  60%  { opacity: 0.9; transform: translateY(-28px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-52px) scale(0.3); }
}

@keyframes cursorAppear {
  to { opacity: 1; }
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}


/* ── Page demo styling ── */

/* ── Horizontal stat with icon on the left ── */
.hero-stat--horizontal {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 6px 12px;
  flex: 1 0 auto;
  min-width: 160px;
}

/* ── Icon styling ── */
.hero-stat--horizontal .stat-icon {
  flex-shrink: 0;
  font-size: 2rem;
  color: #7C3AED;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* ── Hover effect on icon ── */
.hero-stat--horizontal:hover .stat-icon {
  background: rgba(124, 58, 237, 0.15);
  transform: scale(1.05);
}

/* ── Content wrapper (number, label, description) ── */
.hero-stat--horizontal .stat-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* ── Number ── */
.hero-stat--horizontal .num {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* ── Label ── */
.hero-stat--horizontal .lbl {
  font-size: clamp(0.65rem, 0.85vw, 0.85rem);
  color: rgba(26, 26, 26, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Description (subtitle) ── */
.hero-stat--horizontal .stat-desc {
  font-size: clamp(0.55rem, 0.7vw, 0.7rem);
  color: rgba(26, 26, 26, 0.35);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Divider between stats ── */
.hero-divider {
  width: 1px;
  height: 56px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-stat--horizontal {
    min-width: 130px;
    gap: 10px;
    padding: 4px 8px;
  }
  .hero-stat--horizontal .stat-icon {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .hero-stat--horizontal .num {
    font-size: 1.1rem;
  }
  .hero-stat--horizontal .lbl {
    font-size: 0.6rem;
  }
  .hero-stat--horizontal .stat-desc {
    font-size: 0.5rem;
  }
  .hero-divider {
    height: 44px;
  }
}

@media (max-width: 500px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .hero-divider {
    display: none;
  }
  .hero-stat--horizontal {
    width: 100%;
    min-width: 0;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .hero-stat--horizontal:last-child {
    border-bottom: none;
  }
}


/* ── Body panel as flex container ── */
.stats-shape-banner--body {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 45px 20px 20px 20px; /* adjust as needed */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
}

/* ── Left Image ── */
.stats-image-left {
  flex-shrink: 0;
  width: 130px;  /* adjust to your image size */
  height: auto;
}

.stats-image-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px; /* optional: rounded corners */
}

/* ── Stats grid takes remaining space ── */
.stats-shape-banner--body .hero-stats {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px 12px;
}

/* ── Ensure CTA stays on the right ── */
.stats-shape-cta {
  right: 3%;
  left: auto; /* ensure left is auto */
}

/* ── Responsive: stack on mobile ── */
@media (max-width: 768px) {
  .stats-shape-banner--body {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }

  .stats-image-left {
    width: 80px; /* smaller on mobile */
  }

  .stats-shape-banner--body .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-image-left {
    width: 60px;
  }
}


/* ── Wrapper must be relative for absolute positioning ── */
.stats-shape-wrapper {
  position: relative;
}

/* ── Floating image overlays everything ── */
.floating-image {
  position: absolute;
  top: -10%;     /* adjust vertical position */
  left: -70px;  /* adjust horizontal, can be negative to bleed outside */
  z-index: 10;  /* above everything */
  width: 320px; /* adjust to your image size */
  height: auto;
  pointer-events: none; /* so it doesn't block clicks on CTAs */
  opacity: 0.9; /* optional */
}

.floating-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════
   ZOOM IN ANIMATION — Floating Image
   ═══════════════════════════════════════════════════ */

@keyframes zoomInRotate {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-40deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.floating-image {
  animation: zoomInRotate 0.9s cubic-bezier(0.40, 1, 0.36, 1) forwards;
}

 /* why us premium design */


 
/* product card css */

.dark-solutions-section {
  background-color: #050810; /* Deep space background */
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}



.section-badge1 {
  display: inline-block;
  padding: 4px 12px;
  background: rgb(250, 2, 2);
  border: 1px solid rgb(244, 2, 2);
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}



/* Flex Layout for Icon Left, Content Right */
.card-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 576px) {
  .card-layout {
      flex-direction: column;
  }
}

/* --- Typography inside Card --- */
.content-column h4 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.content-column p {
  color: #a0aec0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.feature-list li {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Thematic Colors & Glows --- */
/* Theme Purple (eCommerce) */
.theme-purple {
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: inset 0 0 40px rgba(139, 92, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.theme-purple .product-icon-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.theme-purple .bi-check-circle-fill { color: #a78bfa; }
.theme-purple .btn-glow {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid #8b5cf6;
  color: #ddd6fe;
}

/* Theme Red (POS) */
.theme-red {
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: inset 0 0 40px rgba(239, 68, 68, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.theme-red .product-icon-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}
.theme-red .bi-check-circle-fill { color: #f87171; }
.theme-red .btn-glow {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #fecaca;
}

/* Theme Green (Pharmacy) */
.theme-green {
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: inset 0 0 40px rgba(16, 185, 129, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.theme-green .product-icon-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
.theme-green .bi-check-circle-fill { color: #34d399; }
.theme-green .btn-glow {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #a7f3d0;
}

/* Theme Blue (Custom) */
.theme-blue {
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: inset 0 0 40px rgba(59, 130, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.theme-blue .product-icon-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.theme-blue .bi-check-circle-fill { color: #60a5fa; }
.theme-blue .btn-glow {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid #3b82f6;
  color: #bfdbfe;
}

/* --- Common Icon Box & Buttons --- */
.product-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link:hover {
  filter: brightness(1.2);
  transform: translateX(3px);
}


/* --- Footer Features --- */
.features-footer {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.footer-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-item i {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.footer-item h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .footer-item:not(:last-child) { border-right: none; }
}




/* whu us */



/* ── GRID OVERLAY ── */
.why-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,45,130,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,45,130,0.06) 1px, transparent 1px);
  background-size: 56px 56px;

  mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 38%, black 0%, transparent 100%);
}
 
/* ── Signature element: WordPress vs CyberNetic comparator bar ── */
.why-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgb(90, 45, 130), rgb(201, 24, 74));
  border: 1px solid rgba(90,45,130,0.14);
  border-radius: 24px;
  padding: 20px 36px;
  margin-bottom: 48px;
  overflow: hidden;
}
.why-compare-side { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.why-compare-side--old { justify-content: flex-start; }
.why-compare-side--new { justify-content: flex-end; }
.why-compare-label {
  width: 100%;
  background-color: #ffffff;
  font-size: 1rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 2px;
  border-radius: 25px;
  padding: 5px 10px;
}
.why-compare-side--new .why-compare-label {
 
  text-align: center;
  color: #027f6e;
  border: 1px solid #027f6e;
}
.why-compare-side--old .why-compare-label { text-align: center; color: #7f0402;border: 1px solid #7f0202;}
 
.why-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; line-height: 1.3;
  padding: 8px 13px; border-radius: 10px; white-space: nowrap;
}
.why-chip--old { color: var(--why-ink-muted); background: rgb(255, 255, 255); border: 1px solid rgba(248,113,113,0.25); }
.why-chip--old i { color: #F87171; font-size: 0.9rem; }
.why-chip--new { color: #3D1E57; background: rgb(255, 255, 255); border: 1px solid rgba(90,45,130,0.22); }
.why-chip--new i { color: #22C55E; font-size: 0.95rem; }
 
.why-compare-badge {
  position: relative; z-index: 1;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-btn); color: #fff;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.02em;
  box-shadow: 0 8px 22px -6px rgba(201,24,74,0.5), 0 0 0 6px rgba(255,255,255,0.75);
  animation: whyBadgePulse 1.6s ease-in-out infinite;
}
@keyframes whyBadgePulse {
  0%, 100% { box-shadow: 0 8px 22px -6px rgba(201,24,74,0.5), 0 0 0 6px rgba(255,255,255,0.75); }
  50% { box-shadow: 0 8px 30px -4px rgba(201,24,74,0.7), 0 0 0 9px rgba(255,255,255,0.55); }
}
 
/* ── Left column: compact trust strip (reuses the existing .stat-block
     count-up mechanism in function.js — no JS changes needed) ── */
.why-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.why-trust .stat-block.why-trust-chip {
  flex: 0 0 auto; padding: 14px 20px; border-radius: 14px; text-align: left;
}
.why-trust .stat-block.why-trust-chip .big { font-size: 1.6rem; letter-spacing: -1px; margin-bottom: 2px; }
.why-trust .stat-block.why-trust-chip .lbl { font-size: 0.72rem; }
 
/* ── CTA polish (scoped to #why only) ── */
#why .why-cta-btn { position: relative; }
#why .why-cta-btn i { transition: transform 0.25s; }
#why .why-cta-btn:hover i { transform: translateX(3px); }
#why .tech-pill { transition: transform 0.2s, background 0.2s; }
#why .tech-pill:hover { transform: translateY(-2px); background: rgba(90,45,130,0.14); }
 
/* ── Right column: premium dark-glass proof cards ── */
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
 
.why-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px 26px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s, box-shadow 0.35s var(--ease);
  will-change: transform;
}
.why-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; pointer-events: none;
  background: radial-gradient(360px circle at var(--wx, 50%) var(--wy, 50%), rgba(255,255,255,0.12), transparent 60%);
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover { box-shadow: 0 30px 60px -24px rgba(90,45,130,0.55); }
 
.why-card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 18px;
  transform: translateZ(24px);
  box-shadow: 0 10px 22px -10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: float 3.6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}

.why-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; transform: translateZ(18px); }
.why-card p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.62); margin-bottom: 16px; transform: translateZ(12px); }
.why-card-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.74rem; color: rgba(255,255,255,0.5);
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08);
}
.why-card-note i { color: #F87171; font-size: 0.85rem; flex-shrink: 0; }
 
/* Accent rotation — mirrors the exact 6 colors used on the Services
   cards directly above this section, in the same order, so the two
   sections visually rhyme. */
.why-card.c-purple  { border-color: rgba(90,45,130,0.32); }
.why-card.c-purple:hover  { border-color: rgba(90,45,130,0.6); }
.why-card.c-purple  .why-card-icon { background: linear-gradient(135deg, rgba(90,45,130,0.65), rgba(90,45,130,0.2)); }
 
.why-card.c-crimson { border-color: rgba(201,24,74,0.32); }
.why-card.c-crimson:hover { border-color: rgba(201,24,74,0.6); }
.why-card.c-crimson .why-card-icon { background: linear-gradient(135deg, rgba(201,24,74,0.65), rgba(201,24,74,0.2)); }
 
.why-card.c-green   { border-color: rgba(5,150,105,0.32); }
.why-card.c-green:hover   { border-color: rgba(5,150,105,0.6); }
.why-card.c-green   .why-card-icon { background: linear-gradient(135deg, rgba(5,150,105,0.65), rgba(5,150,105,0.2)); }
 
.why-card.c-amber   { border-color: rgba(245,158,11,0.32); }
.why-card.c-amber:hover   { border-color: rgba(245,158,11,0.6); }
.why-card.c-amber   .why-card-icon { background: linear-gradient(135deg, rgba(245,158,11,0.65), rgba(245,158,11,0.2)); }
 
.why-card.c-blue    { border-color: rgba(59,130,246,0.32); }
.why-card.c-blue:hover    { border-color: rgba(59,130,246,0.6); }
.why-card.c-blue    .why-card-icon { background: linear-gradient(135deg, rgba(59,130,246,0.65), rgba(59,130,246,0.2)); }
 
.why-card.c-pink    { border-color: rgba(236,72,153,0.32); }
.why-card.c-pink:hover    { border-color: rgba(236,72,153,0.6); }
.why-card.c-pink    .why-card-icon { background: linear-gradient(135deg, rgba(236,72,153,0.65), rgba(236,72,153,0.2)); }
 
/* ── Responsive ── */
@media (max-width: 992px) {
  #why { padding: 88px 0 80px; }
  .why-compare-side--new { justify-content: flex-start; }
  .why-compare-side--new .why-compare-label { text-align: left; }
}
 
@media (max-width: 768px) {
  .why-cards { grid-template-columns: 1fr; }
  .why-compare {
    grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 26px 22px; gap: 16px;
  }
  .why-compare-side, .why-compare-side--old, .why-compare-side--new {
    justify-content: center;
  }
  .why-compare-label, .why-compare-side--old .why-compare-label, .why-compare-side--new .why-compare-label {
    text-align: center;
  }
}
 
@media (max-width: 576px) {
  #why { padding: 72px 0 64px; }
  .why-compare { padding: 22px 18px; margin-bottom: 48px; }
  .why-chip { font-size: 0.78rem; padding: 7px 11px; }
  .why-orb-1, .why-orb-2 { width: 260px; height: 260px; }
}
 
/* ── Respect reduced-motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .why-orb, .why-compare-badge { animation: none; }
  .why-card { transition: none; }
}

.hero-bg1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}


/* product card - solution  */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #ebdbf9; border: 1px solid #ddbaf7; color: var(--ink); font-size: .78rem; font-weight: 600; padding: 5px 14px 5px 5px; border-radius: 999px; margin: 0; }
.eyebrow1 { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #f9e6db; border: 1px solid #fb5d02; color: #983f03; font-size: .78rem; font-weight: 600; padding: 5px 14px 5px 5px; border-radius: 999px; margin: 0; }
.eyebrow2 { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #dbf9f8; border: 1px solid #03837f; color: #025755; font-size: .78rem; font-weight: 600; padding: 5px 14px 5px 5px; border-radius: 999px; margin: 0; }
.eyebrow3 { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: #ebfce1; border: 1px solid #358606; color: #245c03; font-size: .78rem; font-weight: 600; padding: 5px 14px 5px 5px; border-radius: 999px; margin: 0; }
  .eyebrow-icon { width: 22px; height: 22px; border-radius: 50%; background: #8b08e9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .eyebrow-icon1 { width: 22px; height: 22px; border-radius: 50%; background: #e94808; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .eyebrow-icon2 { width: 22px; height: 22px; border-radius: 50%; background: #03808c; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .eyebrow-icon3 { width: 22px; height: 22px; border-radius: 50%; background: #358606; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .eyebrow-icon svg { width: 10px; height: 10px; }
  .eyebrow .bn { font-family: 'Hind Siliguri', sans-serif; font-weight: 600; }
  .eyebrow strong { color: #470193; font-weight: 800; }
  .eyebrow1 strong { color:#e94808; font-weight: 800; }
  .eyebrow strong { color: #470193; font-weight: 800; }
  .eyebrow strong { color: #470193; font-weight: 800; }

.dark-solutions-section {
  background: linear-gradient(120deg, #470193,#950101); /* Deep space background */
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}
#products .solution-card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  padding: 38px 34px;
  background: linear-gradient(155deg, var(--accent-bg) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(6, 7, 13, 0.55) 100%);
  border: 1px solid var(--accent-glow);
  box-shadow: 0 20px 60px -32px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
 
/* cursor-follow spotlight, position driven by --mx / --my from JS */
#products .solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), var(--accent-bg), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
 
#products .solution-card:hover::before {
  opacity: 1;
}
 
#products .solution-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 70px -28px var(--accent-glow);
}
 
#products .solution-card__inner {
  position: relative;
  z-index: 1;
}
 
#products .solution-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 26px -10px var(--accent-glow);
  margin-bottom: 22px;
}
 
#products .solution-card__title {
  font-size: 1.28rem;
  font-weight: 700;
  color: #f6f6fb;
  margin-bottom: 10px;
}
 
#products .solution-card__desc {
  color: var(--text-muted, #97a0b8);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
 
#products .solution-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
#products .solution-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.89rem;
  color: #dddde6;
}
 
#products .solution-card__check {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
}
 
#products .solution-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px var(--accent-glow);
  transition: gap 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
 
#products .solution-card__btn:hover {
  gap: 12px;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px var(--accent-glow);
}
 
#products .solution-card__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
 
#products .solution-card__btn i {
  transition: transform 0.25s ease;
}
 
#products .solution-card__btn:hover i {
  transform: translateX(3px);
}
 
@media (prefers-reduced-motion: reduce) {
  #products .solution-card,
  #products .solution-card__btn,
  #products .solution-card__btn i {
    transition: none !important;
  }
}




/* ---------- buttons ---------- */
.actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: clamp(10px, 1.8vh, 20px); }
.btn {
  font-family: inherit;
  font-size: .92rem; 
  font-weight: 700; 
  border-radius: 999px; 
  padding: 11px 32px; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  cursor: pointer; 
  border: none; 
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: 20px;
 }

.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }

.btn-fill1 { background: linear-gradient(120deg, #8002c9,#fe1212, #da0275); color: #fff; box-shadow: 0 14px 26px -10px rgba(124,58,237,.45); --bs-btn-hover-color: #fff; }
.btn-fill2 { background: linear-gradient(120deg, #f56803,#8002c9, #02c051); color: #fff; box-shadow: 0 14px 26px -10px rgba(237, 153, 58, 0.45); --bs-btn-hover-color: #fff; }
.btn-fill3 { background: linear-gradient(120deg, #03e4cd,#8002c9, #04a5f6); color: #fff; box-shadow: 0 14px 26px -10px rgba(58, 234, 237, 0.45); --bs-btn-hover-color: #fff; }
.btn-fill4 { background: linear-gradient(120deg, #02c051,#8002c9, #eb8704); color: #fff; box-shadow: 0 14px 26px -10px rgba(70, 237, 58, 0.45); --bs-btn-hover-color: #fff; }
.btn-fill { background: #fff; color: #8002c9;border: 1px solid #8002c9; box-shadow: 0 14px 26px -10px rgba(124,58,237,.45); --bs-btn-hover-color: #8002c9; }
.btn-fill21 { background: #fff; color: #cc4603;border: 1px solid #cc4603; box-shadow: 0 14px 26px -10px rgba(124,58,237,.45); --bs-btn-hover-color: #cc4603; }
.btn-fill31 { background: #fff; color: #03e4cd;border: 1px solid #03e4cd; box-shadow: 0 14px 26px -10px rgba(58, 219, 237, 0.45); --bs-btn-hover-color: #03e4cd; }
.btn-fill41 { background: #fff; color: #02c051;border: 1px solid #02c051; box-shadow: 0 14px 26px -10px rgba(79, 237, 58, 0.45); --bs-btn-hover-color: #02c051; }
.btn-fill2 svg { width: 25px; height: 25px; }
.btn-fill1 svg { width: 25px; height: 25px; }
.btn-fill3 svg { width: 25px; height: 25px; }
.btn-fill4 svg { width: 25px; height: 25px; }
.btn-arrow-dot { width: 21px; height: 21px; border-radius: 50%;  display: flex; align-items: center; justify-content: center; margin-left: 1px; }
.btn-arrow-dot svg { width: 15px; height: 15px; }
.btn-line { background: #df7a7a; color: #b80404; border: 2px solid #037d18; }
.btn-line svg { width: 14px; height: 14px; transition: transform .2s ease; }

/* Hover Effects */
.btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.btn:hover .btn-arrow-dot svg {
  transform: translateX(6px);
}

.btn:hover .btn-glow {
  left: 100%;
}
/* Active Click */
.btn:active {
  transform: scale(0.97);
}


.serviceHeading{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background: linear-gradient(90deg, #4e01b9 0%, #027f6e 45%, #a80202 100%);
  color:#fff;border:none;
  border-radius:100px;padding:10px 22px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s,box-shadow .2s;font-family:inherit;
  box-shadow:0 4px 18px #064E3B44;
  margin: 18px 0 14px;
  line-height: 1.3;
}
.serviceHeading2{
  
  align-items:center;
  gap:7px;
  background: linear-gradient(90deg, transparent, rgba(201,168,255,.7));
  color:#fff;border:none;
  border-radius:100px;padding:10px 22px;
  font-size: clamp(.9rem, 4vw, 1.8rem);
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s,box-shadow .2s;font-family:inherit;
  box-shadow:0 4px 18px #064E3B44;
  margin: 18px 0 14px;
  line-height: 1.3;
}


.sol-sub {
  color: #fefcd8;
  font-size: 1.2rem;
  max-width: 560px;
  font-weight:700;
  margin: 0 auto;
}



/* ── Signature element: WordPress vs CyberNetic comparator bar ── */
.why-compare1 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  /* background: linear-gradient(135deg, rgba(90,45,130,0.05), rgba(201,24,74,0.05));
  border: 1px solid rgba(90,45,130,0.14); */
  border-radius: 24px;
  padding: 30px 36px;
  margin-bottom: 68px;
  overflow: hidden;
}
.why-compare1-side { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.why-compare1-side--new { justify-content: flex-start; }


 
.why-chip1 {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; line-height: 1.3;
  padding: 8px 13px; border-radius: 10px; white-space: nowrap;
}

.why-chip1--new { color: #59069d; background: rgba(90,45,130,0.07); border: 1px solid rgba(127, 9, 230, 0.22); }
.why-chip1--new i { color: #8909e5; font-size: 0.95rem; }
 
.why-chip1--new2 { color: #000000; background-color: #fff3ef; border: 1px solid rgba(230, 79, 9, 0.22); }
.why-chip1--new2 i { color: #e55209; font-size: 0.95rem; }

.why-chip1--new3 { color: #000000; background-color: #effffe; border: 1px solid rgba(9, 208, 230, 0.22); }
.why-chip1--new3 i { color: #09e5cf; font-size: 0.95rem; }

.why-chip1--new4 { color: #000000; background-color: #ebfce1; border: 1px solid rgba(9, 230, 53, 0.22); }
.why-chip1--new4 i { color: #296c02; font-size: 0.95rem; }

/* cta button for product summery */

.cta-btn {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;

  color: #fff;
  font-weight: 600;
  font-size: 16px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
  border: none !important;
 
}

.ctabg1{
  background: linear-gradient(120deg, #6803f5,#e50404, #02bef2);
  
}

/* Content Layout */
.cta-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Icon */
.cta-icon {
  width: 18px;
  height: 18px;
}

/* Arrow */
.cta-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

/* Glow Effect */
.cta-glow {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.cta-btn:hover .cta-arrow svg {
  transform: translateX(6px);
}

.cta-btn:hover .cta-glow {
  left: 100%;
}

/* Active Click */
.cta-btn:active {
  transform: scale(0.97);
}

/* Remove default link styles */
.cta-btn:link,
.cta-btn:visited,
.cta-btn:hover,
.cta-btn:active {
  text-decoration: none;
  color: #fff;
}


