/* ============================================================
   hero-section.css  –  AdMediaX Hero & Navbar Scroll Styles
   Import this file in your main index.html alongside your
   existing navbar.css / styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ----------------------------------------------------------
   NAVBAR — transparent on top, frosted on scroll
   These rules layer on top of your existing navbar styles.
   ---------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Transparent by default */
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Class added by JS when user scrolls */
.navbar.nav-scrolled {
  background: rgba(8, 8, 8, 0.75) !important;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(101, 234, 44, 0.12) !important;
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Remove any old bg color */
  background: #060606;
}

/* ── Background Photo ── */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  /* Slightly dark + desaturate so text pops */
  filter: brightness(0.38) saturate(0.75);
  /* Subtle Ken Burns zoom on load */
  animation: heroZoom 16s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* ── Dark Gradient Overlay ── */
/* Heavier at bottom and center so centered text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 80% at 50% 60%,
      rgba(6, 6, 6, 0.72) 0%,
      rgba(6, 6, 6, 0.28) 100%),
    linear-gradient(to top,
      rgba(6, 6, 6, 0.80) 0%,
      rgba(6, 6, 6, 0.0) 50%),
    linear-gradient(to bottom,
      rgba(6, 6, 6, 0.55) 0%,
      rgba(6, 6, 6, 0.0) 35%);
}

/* ── Center Content Wrapper ── */
/* Remove old hero-container / hero-content layout */
.hero .hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.hero .hero-content {
  /* Override existing split layout — go full centered */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  max-width: 860px;
  width: 100%;
  gap: 0;
}

/* Hide the old hero-image (gif) — we replaced it with photo bg */
.hero .hero-image {
  display: none !important;
}

/* ── Small Label above headline ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #65ea2c;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.15s ease forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #65ea2c;
  opacity: 0.7;
}

/* ── Main Headline ── */
.hero .hero-text .hero-title {
  /* font-family: 'Syne', sans-serif !important; */
  font-size: clamp(2.4rem, 5vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  color: #ffffff !important;
  margin-bottom: 1.4rem !important;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
}

/* Accent words in green */
.hero .hero-text .hero-title .accent {
  color: #65ea2c;
}

/* ── Subtitle ── */
.hero .hero-text .hero-subtitle {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
  font-weight: 300 !important;
  line-height: 1.78 !important;
  color: rgba(255, 255, 255, 0.60) !important;
  max-width: 580px !important;
  margin: 0 auto 2.4rem !important;
  opacity: 0;
  animation: fadeUp 0.9s 0.46s ease forwards;
}

/* ── Buttons ── */
.hero .hero-buttons {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  opacity: 0;
  animation: fadeUp 0.9s 0.62s ease forwards;
}

/* Override existing btn-primary for hero */
.hero .btn.btn-primary {
  background: #65ea2c !important;
  color: #000 !important;
  border: none !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
.hero .btn.btn-primary:hover {
  background: #85ff40 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(101, 234, 44, 0.30) !important;
}

/* Override existing btn-secondary for hero */
.hero .btn.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.30) !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
.hero .btn.btn-secondary:hover {
  border-color: #65ea2c !important;
  color: #65ea2c !important;
  transform: translateY(-2px) !important;
}

/* ── Scroll Indicator (bottom center) ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 0.2rem;
  /* left: 50%; */
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.0s ease forwards;
}

.hero-scroll-hint span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Replace mouse icon with a simple animated line */
.scroll-mouse-icon {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, #65ea2c, transparent);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.scroll-mouse-icon::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #65ea2c);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; opacity: 1; }
  100% { top: 100%;  opacity: 0; }
}

/* ── Particles canvas (keep existing) ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── Fade-up keyframe ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   RESPONSIVE — only hero overrides needed
   (Navbar responsive already handled by your existing CSS)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .hero .hero-text .hero-title {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }
  .hero .hero-text .hero-subtitle {
    font-size: 0.95rem !important;
  }
  .hero .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero .btn.btn-primary,
  .hero .btn.btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    max-width: 300px !important;
  }
}




/* State Style */


.impact-section {
  position: relative;
  background: #080808;
  padding: 100px 0 80px;
  overflow: hidden;
}
 
.impact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101,234,44,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101,234,44,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
 
/* Eyebrow divider */
.impact-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 40px;
}
.eyebrow-line {
  flex: 1;
  max-width: 160px;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(101,234,44,0.4));
}
.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(101,234,44,0.4));
}
.eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #65ea2c;
  white-space: nowrap;
}
 
.impact-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* Heading area */
.impact-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
 
.impact-title {
  font-family: 'DM sans';
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
}
.impact-accent {
  color: #65ea2c;
}
 
.impact-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  font-weight: 300;
  max-width: 380px;
}
 
/* ─── STAT CARDS ─── */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
 
.istat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 24px 22px 22px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.istat-card:hover {
  border-color: rgba(101,234,44,0.3);
  transform: translateY(-4px);
}
.istat-card:hover .istat-glow {
  opacity: 1;
}
 
.istat-card.featured {
  background: rgba(101,234,44,0.05);
  border-color: rgba(101,234,44,0.2);
}
.istat-card.featured .istat-glow {
  opacity: 0.6;
}
 
.istat-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: radial-gradient(circle, rgba(101,234,44,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
 
/* Card top row */
.istat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
 
.istat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(101,234,44,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
/* Mini bar chart */
.istat-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
}
.istat-bar {
  width: 8px;
  height: var(--bar-h);
  background: rgba(101,234,44,0.12);
  border-radius: 2px 2px 0 0;
  transition: height 0.6s ease;
}
.istat-bar.hi {
  background: #65ea2c;
}
 
/* Tag pill */
.istat-tag {
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #65ea2c;
  background: rgba(101,234,44,0.1);
  border: 0.5px solid rgba(101,234,44,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
 
/* Progress bar */
.istat-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.istat-progress-track {
  width: 72px;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.istat-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(101,234,44,0.5), #65ea2c);
  border-radius: 100px;
  transition: width 1.4s ease 0.4s;
}
.istat-progress-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
}
 
/* Dot grid (team card) */
.istat-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.istat-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(101,234,44,0.2);
  display: block;
  transition: background 0.3s;
}
.istat-card:hover .istat-dots span {
  background: rgba(101,234,44,0.5);
}
 
/* Number */
.istat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}
.istat-num {
  font-family: 'Syne', sans-serif;
  /* font-weight: 800; */
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
}
.istat-card.featured .istat-num { color: #65ea2c; }
 
.istat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #65ea2c;
  letter-spacing: -1px;
}
 
.istat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
 
/* ─── TRUST BAR ─── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 32px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}
 
/* ─── COUNTER ANIMATION ─── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* Responsive */
@media (max-width: 900px) {
  .impact-heading { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { flex-direction: column; gap: 14px; }
  .trust-sep { width: 40px; height: 1px; }
}
@media (max-width: 500px) {
  .impact-stats { grid-template-columns: 1fr; }
  .impact-inner { padding: 0 20px; }
}





/* How we work */



.hww-section {
  position: relative;
  background: #080808;
  padding: 100px 0 80px;
  overflow: hidden;
}
 
/* Subtle offset grid */
.hww-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101,234,44,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101,234,44,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -20px -20px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 90%);
}
 
/* Eyebrow */
.hww-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 40px;
}
.hww-eyebrow-line {
  flex: 1;
  max-width: 140px;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(101,234,44,0.35));
}
.hww-eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, rgba(101,234,44,0.35));
}
.hww-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #65ea2c;
  white-space: nowrap;
}
 
.hww-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* Heading row */
.hww-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}
.hww-title {
  font-family: 'DM Sans';
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hww-accent { color: #65ea2c; }
.hww-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  max-width: 400px;
  font-weight: 300;
}
 
.hww-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #65ea2c;
  color: #080808;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(101,234,44,0.2);
}
.hww-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(101,234,44,0.35);
}
 
/* ─── STEPS WRAPPER ─── */
.hww-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 40px;
}
 
/* Animated connector line */
.hww-connector {
    display: none;
  position: absolute;
  top: 52px; 
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 1px;
  background: rgba(255,255,255,0.06);
  z-index: 0;
  overflow: hidden;
}
.hww-connector-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #65ea2c, rgba(101,234,44,0.3));
  transition: width 1.6s ease 0.5s;
}
.hww-connector-fill.animated { width: 100%; }
 
/* Individual step */
.hww-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
 
/* Big step number (background) */
.hww-step-number {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(101,234,44,0.04);
  letter-spacing: -4px;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 16px;
  pointer-events: none;
  user-select: none;
}
 
/* Node dot on connector */
.hww-node {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.hww-node-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #65ea2c;
  box-shadow: 0 0 10px rgba(101,234,44,0.5);
  position: relative;
  z-index: 2;
}
.hww-node-inner.featured-node {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 20px rgba(101,234,44,0.8);
}
.hww-node-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(101,234,44,0.25);
  animation: hwwRingPulse 2.5s ease-in-out infinite;
}
@keyframes hwwRingPulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(2); opacity: 0; }
}
 
/* ─── STEP CARD ─── */
.hww-step-card {
  background: rgba(255,255,255,0.03);
  /* border: 0.5px solid rgba(255,255,255,0.08); */
  border-radius: 16px;
  padding: 26px 22px 22px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.hww-step-card:hover {
  border-color: rgba(101,234,44,0.25);
  transform: translateY(-5px);
}
.hww-step-card:hover .hww-card-glow { opacity: 1; }
 
.hww-step-card.featured {
  background: rgba(101,234,44,0.04);
  border-color: rgba(101,234,44,0.18);
}
.hww-step-card.featured .hww-card-glow { opacity: 0.7; }
 
.hww-card-glow {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 100px;
  background: radial-gradient(circle, rgba(101,234,44,0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
 
/* Card top row */
.hww-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
 
/* Icon ring */
.hww-icon-ring {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(101,234,44,0.07);
  border: 0.5px solid rgba(101,234,44,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hww-icon-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 1px solid transparent;
  /* border: none !important; */
  animation: hwwIconPulse 3s ease-in-out infinite;
}
@keyframes hwwIconPulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.15); }
}
 
/* Badge */
.hww-step-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}
.featured-badge {
  color: #65ea2c;
  background: rgba(101,234,44,0.08);
  border-color: rgba(101,234,44,0.2);
}
 
.hww-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
 
.hww-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
 
/* Tags */
.hww-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.hww-step-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
}
 
/* Design card progress bars */
.hww-design-preview { margin-top: 4px; }
.dp-bar {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 5px;
  margin-top: 8px;
}
.dp-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 2px;
}
.dp-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(101,234,44,0.5), #65ea2c);
  border-radius: 100px;
  transition: width 1.4s ease 0.7s;
}
.dp-fill.animated { width: var(--w); }
 
/* Deliver metric */
.hww-deliver-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: rgba(101,234,44,0.06);
  border-radius: 8px;
  padding: 8px 12px;
}
.hww-metric-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #65ea2c;
  box-shadow: 0 0 8px rgba(101,234,44,0.6);
  animation: hwwMetricPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes hwwMetricPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hww-metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex: 1;
}
.hww-metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #65ea2c;
}
 
/* ─── GUARANTEE STRIP ─── */
.hww-guarantee {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 12px;
  background: rgba(101,234,44,0.03);
}
.hww-g-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(101,234,44,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hww-guarantee p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
}
.hww-guarantee strong {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
 
/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hww-connector { display: none; }
  .hww-steps { grid-template-columns: 1fr; gap: 32px; }
  .hww-step { flex-direction: row; gap: 20px; align-items: flex-start; }
  .hww-node { margin-bottom: 0; margin-top: 8px; }
  .hww-step-number { display: none; }
  .hww-heading { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hww-inner { padding: 0 20px; }
  .hww-step { flex-direction: column; }
}




/* about preview */


/* ============================================================
   AdMediaX — About Section Styles
   File: about-section.css
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #0d0d0d;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
}

/* --- Section Wrapper --- */
.about-preview {
    position: relative;
    background: #0d0d0d;
    padding: 100px 0;
    overflow: hidden;
}

/* Ambient glow blob */
.about-bg-glow {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 255, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* --- Container --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* --- Two-Column Layout --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================================
   TEXT SIDE
   ============================================================ */

/* Tag pill */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(150, 255, 80, 0.08);
    border: 1px solid rgba(150, 255, 80, 0.22);
    color: #96ff50;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #96ff50;
    border-radius: 50%;
    flex-shrink: 0;
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(1.4); }
}

/* Heading */
.about-heading {
    font-family: inherit;
    /* font-size: clamp(38px, 4.5vw, 56px); */
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.07;
    letter-spacing: -1.8px;
    margin-bottom: 28px;
}

.heading-accent {
    color: #96ff50;
    position: relative;
    display: inline-block;
}

.heading-accent::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #96ff50;
    border-radius: 2px;
    opacity: 0.35;
}

/* Body copy */
.about-body {
    color: #888;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-body strong {
    color: #bbb;
    font-weight: 400;
}

/* Divider */
.about-divider {
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, #96ff50, transparent);
    border-radius: 2px;
    margin: 32px 0;
}

/* --- Stats Row --- */
.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 4px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #96ff50;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
}

/* --- CTA Button --- */
.btn-primary-preview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #96ff50;
    color: #0d0d0d;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary-preview:hover {
    background: #b0ff70;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
}

/* ============================================================
   IMAGE SIDE
   ============================================================ */

.about-image {
    position: relative;
    padding: 24px 24px 24px 0;
}

/* Main image frame */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(150, 255, 80, 0.14);
    background: #111;
    aspect-ratio: 4 / 3;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Corner accent dots */
.corner-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #96ff50;
    border-radius: 50%;
    z-index: 2;
}

.dot-tl { top: 14px; left: 14px; }
.dot-tr { top: 14px; right: 14px; }

/* Bottom overlay bar */
.image-overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
    padding: 28px 18px 14px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.overlay-dot {
    width: 6px;
    height: 6px;
    background: #96ff50;
    border-radius: 50%;
    display: inline-block;
}

/* --- Floating Cards --- */
.float-card {
    position: absolute;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 3;
    min-width: 160px;
    animation: floatY 4s ease-in-out infinite;
}

.float-card--bottom {
    bottom: 8px;
    left: -28px;
    animation-delay: 0s;
}

.float-card--top {
    top: 8px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
}

.float-icon {
    width: 34px;
    height: 34px;
    background: rgba(150, 255, 80, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.float-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.float-label {
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.float-value {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        padding: 30px 28px 30px 0;
        order: -1;
    }

    .float-card--bottom {
        left: 8px;
    }

    .float-card--top {
        right: 8px;
    }
}

@media (max-width: 600px) {
    .about-preview {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .about-heading {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-sep {
        display: none;
    }

    .stat-item {
        flex: 1 1 33%;
    }

    .float-card {
        position: static;
        margin-top: 12px;
        animation: none;
        min-width: unset;
        width: 100%;
    }

    .about-image {
        padding: 0;
    }
}



/* Clients */


/* ===== CLIENT SECTION ===== */
.clients {
    background: #0a0a0a;
    padding: 80px 0;
}

.clients .container {
    width: 90%;
    margin: auto;
    text-align: center;
}

/* ===== TITLE ===== */
.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

/* underline effect */
.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #39ff14; /* neon green */
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

/* ===== GRID LAYOUT ===== */
/* .clients-carousel { */
.clients-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    align-items: center;
}

/* ===== CARD DESIGN ===== */
.client-logo {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    transition: all 0.3s ease;
    cursor: pointer;

    /* glass + subtle glow */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

/* ===== IMAGE ===== */
.client-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background: #111;
    /* border: 1px solid #39ff14; */
    text-shadow: 0 10px 25px rgba(57, 255, 20, 0.15);
    cursor: auto;
}

.client-logo:hover img {
    filter: grayscale(30%);
    opacity: 0.5;
}

/* ===== SPECIAL FIX (your grey logo issue) ===== */
#grych {
    filter: none !important;
    opacity: 1 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .client-logo {
        height: 90px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 40px;
    }
}



/* home page blogs */



/* ===== SECTION ===== */
.insights-section {
    background: #050505;
    padding: 100px 0;
}

.insights-container {
    width: 90%;
    margin: auto;
    text-align: center;
}

/* ===== TITLE ===== */
.insights-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.insights-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #39ff14;
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

/* ===== GRID ===== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ===== CARD ===== */
.insight-card {
    position: relative;
    background: linear-gradient(145deg, #0a0a0a, #111);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    padding-bottom: 20px;

    /* border: 1px solid rgba(255,255,255,0.05); */
}

/* glow bottom effect */
.insight-card::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(circle, #469638, transparent);
    filter: blur(20px);
    opacity: 0;
    transition: 0.4s;
}

/* ===== IMAGE ===== */
.insight-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* ===== CONTENT ===== */
.insight-content {
    padding: 20px;
    text-align: left;
}

.insight-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.insight-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ===== LINK ===== */
.insight-link {
    color: #39ff14;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    position: absolute;
    bottom: 23px;
}

.insight-link::after {
    content: " →";
    transition: 0.3s;
}

.insight-link:hover::after {
    margin-left: 5px;
}

/* ===== HOVER ===== */
.insight-card:hover {
    /* transform: translateY(-12px) scale(1.03); */
    /* border: 1px solid #39ff14; */
    /* box-shadow: 0 15px 40px rgba(57,255,20,0.15); */
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card:hover img {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .insights-title {
        font-size: 2rem;
    }

    .insight-img-box {
        height: 180px;
    }
}




.clients-track {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Logo box */
.client-logo {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
}

/* MOBILE ONLY */
@media (max-width: 900px) {

  .clients-carousel {
    overflow: hidden;
    width: 100%;
  }

  .clients-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scrollClients 20s linear infinite;
  }

  .client-logo {
    min-width: 110px;
    padding: 10px;
  }

  .client-logo img {
    max-height: 35px;
  }

  @keyframes scrollClients {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}