

/* ---- Base / Variables ---- */
:root {
  --bg: #fff;
  --card: rgba(255, 255, 255, 0.8);
  --text: #0b0b0b;
  --muted: #505050;
  --accent1: #f58529;
  --accent2: #dd2a7b;
  --accent3: #515bd4;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 6px 22px rgba(16, 16, 16, 0.12);
  --radius: 14px;
  --gap: 1rem;
  --max-width: 1200px;
  --mono: "Segoe UI", Roboto, system-ui, -apple-system, "Helvetica Neue", Arial;
}



/* Global */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--mono);
  background: radial-gradient(1200px 400px at 10% 10%, rgba(245, 133, 41, 0.06), transparent 10%),
    linear-gradient(180deg, var(--bg), var(--bg));
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  transition: background .45s ease, color .35s ease;
  -webkit-tap-highlight-color: transparent;
}


a {
  text-decoration: none;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .6rem 1rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--text)
}

.logo-svg {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: var(--shadow)
}

.brand {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: .2px;
  text-align: center;

}

.brand p {
  margin: 0;
  line-height: 1;
  /* or 1.1 if you want a little breathing space */
  font-size: 10px;
}

@media (max-width: 480px) {
  .brand p {
    font-size: 6px;
  }
}


/* nav */
/* NAV WRAPPER */
.nav {
  display: flex;
  align-items: center;
  position: relative;
}

/* TOGGLE BUTTON (MOBILE) */
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MAIN LIST */
.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a:hover {
  background: var(--glass);
  color: var(--text);
}

/* ARROW */
.arrow {
  font-size: 0.7rem;
}

/* SUBMENU */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  padding: 0.6rem;
  list-style: none;
  display: none;
  min-width: 220px;
  z-index: 1000;
}

.submenu li a {
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .has-submenu:hover .submenu {
    display: block;
  }
}

/* ===============================
   MOBILE & TABLET
================================ */
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    /* width: 100%; */
    max-width: 320px;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .nav-list.show {
    display: flex;
  }

  .submenu {
    position: static;
    box-shadow: none;
    padding-left: 0.8rem;
    margin-top: 0.4rem;
  }

  .has-submenu.open .submenu {
    display: block;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 1.5rem 1rem 3.5rem;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background: linear-gradient(120deg, var(--accent1), var(--accent2), var(--accent3)); */
  filter: blur(36px) saturate(1.1);
  opacity: 0.12;
  animation: bgShift 10s linear infinite;
}

@keyframes bgShift {
  0% {
    transform: translateX(-10%) scale(1)
  }

  50% {
    transform: translateX(10%) scale(1.02)
  }

  100% {
    transform: translateX(-10%) scale(1)
  }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center
}

.hero-left {

  border-radius: 12px
}

.hero-left h1 {


  font-size: 1.4rem;
  margin: -16px 0 .6rem 0;
  line-height: 1.5;
  color: var(--muted);
  font-family: emoji;
}



.subheading-hero {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--muted);
  font-family: 'Fredoka', 'Baloo 2', cursive;
}

/* Tablets & small screens */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .subheading-hero {
    font-size: 1.1rem;
    font-weight: 800;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 0.45rem;
    text-align: center;
  }

  .subheading-hero {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
  }
}




.gradient-text {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent
}

.tagline {
  color: var(--muted);
  margin-bottom: .9rem;
  line-height: 2;
}

.hero-points {
  line-height: 2;
}

.cta-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 12px;
  padding: .55rem .9rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: white;
  box-shadow: var(--shadow);

}

.btn.primary-big {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: white;
  box-shadow: var(--shadow);
  width: 100%;
  /* button fills parent width */
  text-align: center;
  /* centers text inside */
  display: block;
  /* makes button act like block element */
}

.btn.primary-mid {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: white;
  box-shadow: var(--shadow);
  width: 50%;
  /* button fills parent width */
  text-align: center;
  /* centers text inside */
  display: block;
  /* makes button act like block element */
}



.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text)
}

.purpose-list {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  color: var(--muted)
}

.purpose-list li {
  padding: .25rem 0
}

/* Auth card */




/* --- Hero Wave Background --- */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: -1;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}





/* --- Enhanced Auth Card (glassmorphism + glow) --- */
.auth-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 420px;
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Animated glowing border */
.auth-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, #f58529, #dd2a7b, #515bd4, #f58529);
  background-size: 300% 300%;
  animation: glow 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes glow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

/* Input fields with icons */
.field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: .8rem;
}

.field .icon {
  position: absolute;
  left: 21.6rem;
  font-size: .95rem;
  color: var(--muted);
}

.field input {
  width: 100%;
  padding: .65rem .65rem .65rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: .9rem;
  outline: none;
  transition: border .25s;
}

.field input:focus {
  border: 1px solid var(--accent2);
  background: rgba(255, 255, 255, 0.1);
}

/* Tabs transition */
.tab-panels .panel {
  animation: fade .4s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}



.tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: .6rem
}

.tab {
  flex: 1;
  padding: .55rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700
}

.tab.active {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: #fff
}

.panel {
  display: none
}

.panel.active {
  display: block
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .6rem;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #fff, #fff);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.04);
  color: var(--muted);
}

.g-icon {
  font-size: 1.1rem;
  font-weight: 900;
}

.or {
  text-align: center;
  color: var(--muted);
  padding: .5rem 0;
  font-size: .9rem
}

.field input {
  width: 100%;
  padding: .6rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: .6rem;
  background: transparent
}

.split {
  display: flex;
  gap: .6rem
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: .35rem
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  color: var(--accent3)
}

.small {
  font-size: .8rem;
  color: var(--accent3);
  background: transparent;
  border: 0;
  font-weight: 600;
  text-decoration: none;
}

/* ═══════════════════════════════════════
   HERO — CTA BUTTONS (light theme)
═══════════════════════════════════════ */

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
  align-items: center;
}

/* Primary login button */
.hero-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  color: #374151;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 0.72rem 1.6rem;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.hero-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}
.hero-login-btn i { font-size: 1rem; }

/* Google login button */
.hero-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.72rem 1.4rem;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero-google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}
.g-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Reassurance note */
.hero-cta-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-cta-note i { color: #515bd4; font-size: 0.8rem; }

/* ═══════════════════════════════════════
   HERO RIGHT — Illustration panel
═══════════════════════════════════════ */

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.hero-illustration {
  position: relative;
  width: 100%;
}

.hero-illustration .circle_connect {
  display: block;
  width: 100%;
}
.hero-illustration .circle_connect img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating stat badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #f0f0f5;
  border-radius: 50px;
  padding: 0.45rem 0.9rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  font-size: 0.78rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}
.hero-badge i { font-size: 0.9rem; }
.hero-badge span strong { display: block; font-size: 0.85rem; }

.hero-badge--tl { top: 12%;  left: -8%;  animation-delay: 0s; }
.hero-badge--tr { top: 8%;   right: -6%; animation-delay: 0.7s; }
.hero-badge--bl { bottom: 14%; left: -8%; animation-delay: 1.4s; }
.hero-badge--br { bottom: 8%;  right: -6%; animation-delay: 2.1s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════
   HERO — two-column layout fix
═══════════════════════════════════════ */

@media (min-width: 760px) {
  .hero-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (max-width: 759px) {
  .hero-right { margin-top: 1.5rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.65rem; }
  .hero-badge--tl { left: 0; }
  .hero-badge--bl { left: 0; }
  .hero-badge--tr { right: 0; }
  .hero-badge--br { right: 0; }
}

/* ═══════════════════════════════════════
   NAVBAR — Login button
═══════════════════════════════════════ */

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #dd2a7b, #515bd4);
  color: #fff !important;
  font-size: 0.83rem;
  font-weight: 800;
  padding: 0.48rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(221,42,123,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.nav-login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(221,42,123,0.35);
}
.nav-login-btn i { font-size: 0.85rem; }

@media (max-width: 760px) {
  .nav-login-btn span { display: none; }
  .nav-login-btn {
    padding: 0.45rem 0.65rem;
    border-radius: 50%;
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════
   HERO — MVP Strip (inside hero, full-width)
═══════════════════════════════════════ */

.hero-mvp-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  box-sizing: border-box;
}

/* Left — heading + points */
.mvp-heading {
  margin-bottom: 0.6rem;
}
.mvp-heading h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 900;
  color: #111827;
  margin: 0 0 0.3rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.mvp-rocket {
  color: #f58529;
  font-size: 1em;
}

/* 45 Days pill badge */
.mvp-days-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  margin-right: 0.35rem;
  vertical-align: middle;
  box-shadow: 0 2px 10px rgba(221,42,123,0.3);
  position: relative;
  top: -1px;
}

/* "Guaranteed." styled word */
.mvp-guarantee {
  color: #374151;
  font-style: italic;
  font-weight: 700;
}
.mvp-heading p {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.mvp-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.mvp-points li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #374151;
  font-weight: 600;
}
.mvp-points li i {
  color: #515bd4;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Right — CTAs */
.mvp-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
}
.mvp-btn:hover { transform: translateY(-2px); }

.mvp-btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37,211,102,0.28);
}
.mvp-btn--wa:hover { box-shadow: 0 6px 18px rgba(37,211,102,0.38); }

.mvp-btn--call {
  background: linear-gradient(135deg, #dd2a7b, #515bd4);
  color: #fff;
  box-shadow: 0 3px 12px rgba(221,42,123,0.22);
}
.mvp-btn--call:hover { box-shadow: 0 6px 18px rgba(221,42,123,0.32); }

.mvp-note {
  width: 100%;
  font-size: 0.67rem;
  color: #9ca3af;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-mvp-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .mvp-right {
    width: 100%;
    justify-content: flex-start;
  }
  .mvp-note { text-align: left; }
}

/* sections */
.section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .section-title {
    font-size: .9rem;
  }
}


.section-sub {
  color: #6c757d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* feature cards grid */

/* Tick List */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.tick-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.4;
}

/* Green Tick Icon */
.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #16a34a;
  /* green */
  font-size: 0.9rem;
  font-weight: 700;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* individual card styling */
.card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.15);
}

/* icon styling */
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
  /* display: inline-block;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* card header */
.card-header {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

/* card description */
.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a4a;
}

/* ── section spacing (legacy .section.why kept as no-op) ── */
.section.why { padding: 0; }

.section-sub {
  text-align: center;
  color: #6c757d;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* legacy grid layout (used on older templates) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(2, 6, 23, 0.15);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.why-card ul {
  padding-left: 1.2rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.infographic {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  flex: 1 1 120px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
}

.info-item .big {
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: ruby-text;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════
   WHY SECTION — two-column light theme
   ════════════════════════════════════════════════════ */
.why-section {
  background: #f8f9fc;
  padding: 4.5rem 1.5rem 3.5rem;
  max-width: 100%;
}

/* ── Top header (centred) ── */
.why-top-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  background: rgba(221,42,123,0.08);
  border: 1px solid rgba(221,42,123,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}
.why-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  margin: 0;
}

/* ── Two-column body ── */
.why-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  align-items: start;
}

/* ════ LEFT COLUMN — timeline ════ */
.why-left {
  display: flex;
  flex-direction: column;
}

/* Each step */
.wl-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

/* Vertical connector line between steps */
.wl-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.04));
  margin-left: 21px;   /* aligns with centre of 44px icon */
  flex-shrink: 0;
}

/* Icon circle */
.wl-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.wl-ic1 { background: linear-gradient(135deg, #f58529, #dd2a7b); }
.wl-ic2 { background: linear-gradient(135deg, #515bd4, #6a11cb); }
.wl-ic3 { background: linear-gradient(135deg, #16a34a, #0d9488); }

/* Step text */
.wl-content { padding-bottom: 0.5rem; }
.wl-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.55rem;
}

/* Bullet points inside each step */
.wl-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.wl-points li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.835rem;
  line-height: 1.55;
  color: #4b5563;
}
.wl-points li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* ════ RIGHT COLUMN — who it's for ════ */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wr-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin: 0;
}
.wr-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.4;
}

/* List of solutions */
.wr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.wr-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

/* Colour dot icon */
.wr-dot {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Text beside the dot */
.wr-item div {
  font-size: 0.83rem;
  line-height: 1.6;
  color: #4b5563;
}
.wr-item div strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.1rem;
}

/* ── Inline CTA at bottom of left column ── */
.wl-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.wl-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0 0 0.4rem;
}
.wl-cta-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.wl-cta-highlight {
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.wl-cta-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wl-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent3);
  transition: gap 0.18s, color 0.18s;
}
.wl-cta-link:hover { gap: 0.65rem; color: var(--accent2); }
.wl-cta-muted {
  color: #6b7280;
  font-weight: 600;
  -webkit-text-fill-color: #6b7280;
}
.wl-cta-muted:hover { color: var(--accent3); -webkit-text-fill-color: var(--accent3); }
.wl-cta-sep { color: #e5e7eb; font-size: 0.9rem; font-weight: 300; }

/* ── Always light — override dark mode for this section ── */
body.dark .why-section    { background: #f8f9fc; }
body.dark .why-headline   { color: #111827; }
body.dark .why-badge      { color: var(--accent2); background: rgba(221,42,123,0.08); border-color: rgba(221,42,123,0.2); }
body.dark .wl-title         { color: #111827; }
body.dark .wl-points li     { color: #4b5563; }
body.dark .wl-connector   { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.04)); }
body.dark .wr-heading     { color: #9ca3af; }
body.dark .wr-sub         { color: #111827; }
body.dark .wr-item div    { color: #4b5563; }
body.dark .wr-item div strong { color: #111827; }
body.dark .wl-cta         { border-top-color: rgba(0,0,0,0.07); }
body.dark .wl-cta-text    { color: #374151; }
body.dark .wl-cta-muted   { color: #6b7280; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .why-body           { grid-template-columns: 1fr; gap: 2rem; }
  .why-cta-strip      { flex-direction: column; text-align: center; }
  .why-cta-text       { text-align: center; }
}
@media (max-width: 560px) {
  .why-section        { padding: 3rem 1rem 2.5rem; }
  .why-headline       { font-size: 1.5rem; }
  .wr-block           { padding: 1.2rem 1.1rem; }
  .why-cta-strip      { padding: 1.5rem 1rem; border-radius: 14px; }
}



/* Talent Grid */

/* Button wrapper */
.details-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  /* space between buttons */
  margin-top: 1rem;
  font-size: 0.9rem;
  /* 10px was too small */
}

@media (max-width: 768px) {
  .details-btn {
    font-size: 0.6rem;
  }
}


/* Common button styles */
.details-btn a {
  padding: 0.3rem .5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  /* remove underline */
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* View Profile button */
.btn-view {
  color: var(--accent2);
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: #fff;
}

/* Connect button */
.btn-connect {
  border: 1px solid var(--accent3);
  color: var(--accent3);
  background: transparent;
}

/* Hover effects */
.btn-view:hover {
  background: var(--accent2);
  color: #ffffff;
}

.btn-connect:hover {
  background: var(--accent3);
  border-color: var(--accent3);
  color: #ffffff;
}


/* Social Media Container */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  /* proper spacing between icons */
  margin: 1.2rem 0;
}

.social-icons a {
  color: var(--muted);
}

/* Social Icon Link */
.social-icon-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #6b7280;
  background-color: #f3f4f6;
  text-decoration: none;
  /* remove underline */
  transition: all 0.3s ease;
}

/* Remove underline in all states */
.social-icon-link:link,
.social-icon-link:visited,
.social-icon-link:hover,
.social-icon-link:active {
  text-decoration: none;
}

/* SVG Icon Size */
.social-icon-link svg {
  width: 18px;
  height: 18px;
}

/* Hover Effect */
.social-icon-link:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

/* Community Start Code */





/* New Community Css */
.hub-section {
  position: relative;
}

.hub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1rem 0 1.2rem;
}

.hub-tab {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
  color: var(--muted);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hub-tab.active,
.hub-tab:hover {
  background: linear-gradient(135deg, var(--accent1), var(--accent2), var(--accent3));
  color: #fff;
  box-shadow: var(--shadow);
}

.hub-panel {
  display: none;
}

.hub-panel.active {
  display: block;
  animation: hubFade 0.35s ease;
}

@keyframes hubFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.hub-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hub-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  margin-top: auto;
  justify-content: center;
}

.btn.sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.hub-tags span {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
}

/* Talent Card */
.card-talent .talent-banner {
  height: 90px;
  background-size: cover;
  background-position: center;
}

.talent-avatar-wrap {
    margin-top: -50px;
    padding-left: 6rem;
}

.talent-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.talent-body {
  padding: 0 1rem 0.6rem;
}

.talent-body h4 ,p {
  margin: 0.4rem 0 0.2rem;
  text-align: center;
}

.talent-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.talent-stats {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0;
  justify-content: center;
}

/* Company Card */
.card-company .company-cover {
  height: 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.company-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 12px;
  bottom: -22px;
  box-shadow: var(--shadow);
}

.company-body {
  padding: 1.4rem 1rem 0.6rem;
  text-align: center;
}

.company-body p {
  color: var(--muted);
  font-size: 0.85rem;
}

.company-metrics {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0;
  justify-content: center;
}

/* Project Card */
.card-project {
  padding: 1rem;
}

.project-head {
  display: flex;
  justify-content:center;
  gap: 0.8rem;
}



.project-budget {
  background: var(--accent1);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  margin-left: 70%;
  color: var(--text);
}

.project-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.project-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  justify-content: center;
}

/* Job Card */
.card-job {
  padding: 1rem;
}

.job-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-type {
  background: #eef2ff;
  color: var(--accent3);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.job-company {
  color: var(--muted);
  font-size: 0.85rem;
}

.job-salary {
  font-weight: 800;
  margin: 0.4rem 0;
}

/* Mentor Card */
.card-mentor {
  padding: 1rem;
}

.mentor-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mentor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-rate {
  margin-left: auto;
  background: #111827;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.mentor-stats {
  display: flex;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.6rem 0;
}

/* Course Card */
.card-course .course-cover {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.course-body {
  padding: 1rem;
}

.course-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.course-price {
  color: var(--accent2);
  font-weight: 800;
  margin-top: 0.4rem;
}

/* HR Card */
.card-hr {
  padding: 1rem;
}

.hr-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hr-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.hr-metrics div {
  background: #f8fafc;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
}

.hr-metrics strong {
  display: block;
  font-size: 0.95rem;
}

.hr-metrics span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Post Card */
.card-post .post-cover img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 1rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

.post-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Login bar */
.hub-login-bar {
  margin-top: 2rem;
  text-align: center;
  padding: 1.2rem;
  background: rgba(81, 91, 212, 0.06);
  border: 1px solid rgba(81, 91, 212, 0.15);
  border-radius: 16px;
}

.hub-login-bar p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .hub-actions {
    flex-direction: column;
  }

  .hub-tab {
    font-size: 0.8rem;
  }
}



.ai-marketing {
  max-width: 1100px;
  margin: 3rem auto;
  text-align: center;
}

.ai-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary, #111827);
}

/* Lead paragraph */
.ai-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.ai-lead strong {
  color: var(--muted);
}

/* Description */
.ai-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.8rem;
}


/* ===============================
   DESKTOP / LAPTOP (≤1200px)
================================ */
@media (max-width: 1200px) {
  .ai-marketing {
    max-width: 900px;
    margin: 2.2rem auto;
  }

  .ai-title {
    font-size: 1.6rem;
  }
}

/* ===============================
   TABLET LANDSCAPE (≤992px)
================================ */
@media (max-width: 992px) {
  .ai-marketing {
    padding: 0 1rem;
    margin: 2rem auto;
  }

  .ai-title {
    font-size: 1.5rem;
  }

  .ai-lead {
    font-size: 1rem;
  }

  .ai-desc {
    font-size: 0.95rem;
  }
}

/* ===============================
   TABLET / MOBILE (≤768px)
================================ */
@media (max-width: 768px) {
  .ai-marketing {
    margin: 1.8rem auto;
    padding: 0 1rem;
  }

  .ai-title {
    font-size: 1.35rem;
    line-height: 1.4;
  }

  .ai-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .ai-desc {
    font-size: 0.9rem;
  }
}

/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {
  .ai-marketing {
    margin: 1.5rem auto;
    padding: 0 0.8rem;
  }

  .ai-title {
    font-size: 1.2rem;
  }

  .ai-lead {
    font-size: 0.9rem;
  }

  .ai-desc {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}

/* community Section End */



/* Team Section Code Start */




.social-links {
  margin: 1.2rem 0;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.social-links a {
  font-size: 1.2rem;
  color: #6b7280;
  transition: color 0.3s ease, transform 0.3s ease;
}


.social-links a:hover {
  color: #2563eb;
  transform: scale(1.2);
}





/* Section Header Team */
/* ════════════════════════════════════════
   FOUNDING TEAM  — full redesign
   ════════════════════════════════════════ */

/* Scope section-title & section-sub inside team to left-align */
.team .section-title {
  font-size: 1.65rem;
  text-align: left;
  margin-bottom: 0;
  font-weight: 900;
}
.team .section-sub {
  text-align: left;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0.3rem 0 1.8rem;
  -webkit-text-fill-color: unset;
  background: none;
  color: #6b7280;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* "View All Team" pill button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #515bd4;
  background: #eef0fd;
  border: 1.5px solid rgba(81,91,212,0.18);
  padding: 0.42rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-view-all::after {
  content: '→';
  transition: transform 0.22s;
  display: inline-block;
}
.btn-view-all:hover {
  background: linear-gradient(90deg, #dd2a7b, #515bd4);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(81,91,212,0.22);
}
.btn-view-all:hover::after {
  transform: translateX(3px);
}

/* Section sub-headline */
.section-sub {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0.4rem 0 2rem;
}

/* Carousel wrapper */
.team-carousel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0;
}

.team-wrapper {
  display: flex;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.2rem;
  padding: 0.5rem 0.25rem 1.2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.team-wrapper::-webkit-scrollbar { display: none; }

/* ── Team Card ── */
.team-card {
  flex: 0 0 calc(33.33% - 0.82rem);
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eff0f5;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  text-align: center;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(81,91,212,0.13);
}

/* Banner */
.team-banner {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
  flex-shrink: 0;
}
.team-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.03));
}

/* Avatar overlapping banner */
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  background: #fff;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card text content */
.team-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0.65rem 1rem 0.15rem;
  line-height: 1.3;
  color: #111827;
}

.designation {
  font-size: 0.73rem;
  color: #6b7280;
  margin: 0 1rem 0.5rem;
}

.desc {
  font-size: 0.74rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 1rem 0.75rem;
  flex: 1;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 1rem 0.75rem;
}
.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f4fb;
  color: #515bd4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-links a:hover {
  background: #515bd4;
  color: #fff;
  transform: translateY(-2px);
}

/* Action buttons */
.team-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  margin-top: auto;
}
.btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  background: linear-gradient(90deg, #dd2a7b, #515bd4);
  color: #fff;
  border: none;
  transition: opacity 0.18s, transform 0.18s;
}
.btn-primary:hover:not(.clrs) {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-primary.clrs {
  background: #fff;
  color: #374151;
  border: 1.5px solid #d1d5db;
}
.btn-primary.clrs:hover {
  border-color: #515bd4;
  color: #515bd4;
  background: #f0f2ff;
}

/* Carousel arrow buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #515bd4;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: all 0.2s;
  padding: 0;
}
.carousel-btn:hover {
  background: #515bd4;
  color: #fff;
  border-color: #515bd4;
}

/* Skills (if present) */
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 1rem 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-card { flex: 0 0 calc(50% - 0.62rem); }
}

@media (max-width: 640px) {
  .team-card { flex: 0 0 calc(100% - 0.3rem); }
  .section-sub { font-size: 1.15rem; }
  .team-banner { height: 90px; }
  .avatar { width: 64px; height: 64px; margin-top: -32px; }
  .team-card h4 { font-size: 0.88rem; }
  .designation { font-size: 0.7rem; }
  .desc { font-size: 0.71rem; }
  .carousel-btn { display: none; }
  .team-wrapper { gap: 1rem; padding: 0.5rem 0.1rem 1rem; }
}

@media (max-width: 420px) {
  .team-header { flex-direction: column; align-items: flex-start; }
  .btn-view-all { font-size: 0.72rem; }
  .section-sub { font-size: 1rem; }
}

@media (max-width: 420px) {
  .team-banner {
    height: 80px;
  }

  .avatar {
    margin-top: -34px;
  }
}






/* End Code */





/* FOOTER */
/* ════════════════════════════════════════
   FOOTER  —  Modern dark multi-column
   ════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, #1e1250 0%, #2d1b69 50%, #1a0f3d 100%);
  color: #cbd5e1;
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
}

/* subtle gradient top-edge glow */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
}

/* ── Top newsletter band ── */
.footer-newsletter {
  background: linear-gradient(135deg, #160d40, #251660);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem 1.5rem;
}
.footer-newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fn-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 0.2rem;
}
.fn-text p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}
.fn-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.fn-form input {
  width: 240px;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #f1f5f9;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.fn-form input::placeholder { color: #64748b; }
.fn-form input:focus { border-color: #515bd4; }
.fn-form button {
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #dd2a7b, #515bd4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.fn-form button:hover { opacity: 0.88; }

/* ── Main columns ── */
.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Brand col */
.footer-brand .ft-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.ft-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ft-logo-sub {
  font-size: 0.6rem;
  color: #64748b;
  display: block;
  margin-top: 0.1rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0 0 1.4rem;
  max-width: 280px;
}

/* Social row */
.ft-socials {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.ft-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}
.ft-socials a:hover { background: linear-gradient(135deg,#dd2a7b,#515bd4); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* Column headings */
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8fafc;
  margin: 0 0 1.1rem;
  position: relative;
  padding-bottom: 0.55rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, #dd2a7b, #515bd4);
  border-radius: 2px;
}

/* Links */
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ft-links a {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.18s, gap 0.18s;
}
.ft-links a::before {
  content: '›';
  font-size: 0.9rem;
  color: #515bd4;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s, transform 0.18s;
}
.ft-links a:hover { color: #f8fafc; gap: 0.55rem; }
.ft-links a:hover::before { opacity: 1; transform: translateX(0); }

/* Contact column */
.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.ft-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(81,91,212,0.12);
  color: #515bd4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.ft-contact-text { font-size: 0.78rem; color: #94a3b8; line-height: 1.55; }
.ft-contact-text a { color: #94a3b8; text-decoration: none; transition: color 0.18s; }
.ft-contact-text a:hover { color: #f58529; }
.ft-contact-label { display: block; font-size: 0.65rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.1rem; }

/* Map */
.ft-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.8rem;
}
.ft-map iframe {
  width: 100%;
  height: 140px;
  border: 0;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 1.5rem;
}
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-inner p {
  font-size: 0.75rem;
  color: #475569;
  margin: 0;
}
.ft-legal {
  display: flex;
  gap: 1.2rem;
}
.ft-legal a {
  font-size: 0.72rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.18s;
}
.ft-legal a:hover { color: #94a3b8; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem 1.2rem; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .fn-form { width: 100%; }
  .fn-form input { flex: 1; width: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}


/* Basic centered captcha (horizontal center) */
.captcha {
  width: 100%;
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* center vertically within the captcha container */
  padding-bottom: .7rem;
}

/* Small card around the widget for visual polish */
.captcha-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  /* subtle card background */
  padding: 12px;
  /* space around widget */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.18);
  max-width: 480px;
  width: 100%;
}

/* Make sure the embedded widget is treated as a block and centered */
.captcha-box .cf-turnstile {
  display: block;
  margin: 0 auto;
  transform-origin: center;
}

/* Optional: vertically center captcha inside a full-height form
   Add the class `form-center-vertical` to your form element to use it. */
.form-center-vertical {
  display: flex;
  align-items: center;
  /* vertical centering */
  justify-content: center;
  min-height: 60vh;
  /* adjust as needed (or use 100vh) */
  padding: 2rem;
}

/* Responsive tweaks for small screens */
@media (max-width: 420px) {
  .captcha-box {
    padding: 8px;
    max-width: 360px;
  }

  /* Slightly shrink the widget if it overflows on very small screens */
  .captcha-box .cf-turnstile {
    transform: scale(0.92);
  }
}

/* about us */
.about-us {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #fbd4b4, #e6d6d6, #ededf8); */
  color: #1f221d;
  text-align: center;
  border-radius: 20px;
  margin-left: 80px;
  max-width: 1100px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-header .highlight {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.about-header p {
  font-size: 1.2rem;
  line-height: 1.6;

  margin: 0 auto 40px;
}

/* New About Cards Layout */
.about-cards-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 50px 0px 30px 0px;
}

/* Card */
.about-card-alt {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  position: relative;
}

.about-card-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg,
      rgba(245, 133, 41, 0.08),
      rgba(81, 91, 212, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.about-card-alt:hover::after {
  opacity: 1;
}

.about-card-alt:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-head {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2563eb;
  background: #eef2ff;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.card-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
}

/* Text */
.about-card-alt p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Points */
.card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.card-points span {
  font-size: 0.75rem;
  font-weight: 600;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 999px;
  color: #374151;
  border: 1px solid #e5e7eb;
}

/* about us media query */
@media (max-width: 1024px) {
  .about-us {
    margin-left: 0;
    padding: 70px 24px;
    max-width: 100%;
  }

  .about-header h2 {
    font-size: 2.1rem;
  }

  .about-header p {
    font-size: 1.1rem;
  }

  .about-cards-alt {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


@media (max-width: 768px) {
  .about-us {
    padding: 60px 18px;
    border-radius: 16px;
  }

  .about-header h2 {
    font-size: 1.85rem;
  }

  .about-header p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-card-alt {
    padding: 24px 20px;
  }

  .card-head h3 {
    font-size: 1.1rem;
  }

  .about-card-alt p {
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .about-us {
    padding: 50px 14px;
  }

  .about-header h2 {
    font-size: 1.6rem;
  }

  .card-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .card-points {
    gap: 8px;
  }

  .card-points span {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}






.cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 6px 28px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: .01px solid #dedfe3;
}

@media (max-width: 768px) {

  .btn-primary,
  .btn-secondary {
    font-size: 0.7rem;
  }
}

.btn-primary {
  background: #fff;
  color: #dd2a7b;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #f9f9f9;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: #a43d21;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #dd2a7b;
}

/* ===============================
   LARGE DESKTOP (≤1400px)
================================ */
/* @media (max-width: 1400px) {
  .about-us {
    margin-left: 40px;
    max-width: 1000px;
  }
} */

/* ===============================
   DESKTOP / LAPTOP (≤1200px)
================================ */
@media (max-width: 1200px) {
  .about-us {
    margin-left: auto;
    margin-right: auto;
    padding: 70px 30px;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

  .about-header p {
    font-size: 1.1rem;
  }
}

/* ===============================
   TABLET LANDSCAPE (≤992px)
================================ */
@media (max-width: 992px) {
  .about-us {
    padding: 60px 25px;
    border-radius: 16px;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .about-header p {
    font-size: 1.05rem;
  }

  .about-cards {
    gap: 20px;
  }

  .card {
    max-width: 100%;
  }
}

/* ===============================
   TABLET / MOBILE (≤768px)
================================ */
@media (max-width: 768px) {
  .about-us {
    padding: 50px 20px;
    text-align: center;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-header p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .about-cards {
    flex-direction: column;
    gap: 18px;
  }

  .card {
    padding: 22px;
  }

  .card .icon {
    font-size: 2.2rem;
  }
}

/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {
  .about-us {
    padding: 40px 15px;
    border-radius: 14px;
  }

  .about-header h2 {
    font-size: 1.6rem;
  }

  .about-header p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .card {
    padding: 20px;
  }

  .card .icon {
    font-size: 2rem;
  }
}



/* General style for select boxes */
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: transparent;
  color: #333;
  appearance: none;
  /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Add custom arrow */
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23777' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  padding-right: 36px;
  /* space for arrow */
}

/* Hover + focus effects */
.field select:hover {
  border-color: #888;
}

.field select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Disabled state */
.field select:disabled {
  background-color: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
}


/* Style date input */
.field input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: transparent;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover + focus */
.field input[type="date"]:hover {
  border-color: #888;
}

.field input[type="date"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* For dark mode support */
body.dark .field input[type="date"] {
  background-color: #222;
  border-color: #444;
  color: #eee;
}


/* Responsive layout (mobile-first) */
@media(min-width:760px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: start
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .talent-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .community-top {
    grid-template-columns: 1fr 320px
  }

  .pool {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-list {
    display: flex
  }
}

/* Larger screens */
@media(min-width:1100px) {
  .cards {
    grid-template-columns: repeat(4, 1fr)
  }

  .pool {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* small micro-animations */
button,
.btn {
  transition: transform .18s ease, box-shadow .18s ease
}

button:active,
.btn:active {
  transform: translateY(2px)
}







/* form validation error messages */
/* Error messages */
.error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* Field wrapper */
.field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-direction: column;
  /* ⬅️ added */
}

/* Inputs & select box */
.field input,
.field select {
  width: 100%;
  padding: 10px 40px 10px 35px;
  /* space for icons */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Left icons (📝 📧 etc.) */
.field .icon {
  position: absolute;
  left: 10px;
  font-size: 16px;
  pointer-events: none;
  padding-top: .5rem;
}

/* Password eye icon */
.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  padding-top: 8px;
}

.toggle-password:hover {
  color: #000;
}






/* Our vision  */
/* ===============================
   OUR VISION SECTION — light theme
================================ */
.vision-section {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background: #fff;
  overflow: hidden;
}

/* Blobs */
.vs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.vs-blob-l {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,133,41,0.08), transparent 65%);
  top: -150px; left: -180px;
}
.vs-blob-r {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(81,91,212,0.08), transparent 65%);
  bottom: -100px; right: -120px;
}

.vs-wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Badge ── */
.vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent3);
  background: rgba(81,91,212,0.08);
  border: 1px solid rgba(81,91,212,0.2);
  padding: 0.32rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── Header ── */
.vs-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.vs-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 1rem;
}
.vs-sub {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
}

/* ── Statement divider ── */
.vs-statement {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  max-width: 820px;
}
.vs-statement-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}
.vs-statement-text {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: #6b7280;
  font-style: italic;
  white-space: nowrap;
  margin: 0;
}

/* ── 3-col card grid ── */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card */
.vs-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.vs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  opacity: 0;
  transition: opacity 0.25s;
}
.vs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.vs-card:hover::before { opacity: 1; }

/* Icon */
.vs-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.vsi-1 { background: linear-gradient(135deg, #f58529, #dd2a7b); }
.vsi-2 { background: linear-gradient(135deg, #dd2a7b, #515bd4); }
.vsi-3 { background: linear-gradient(135deg, #515bd4, #0891b2); }
.vsi-4 { background: linear-gradient(135deg, #9333ea, #6a11cb); }
.vsi-5 { background: linear-gradient(135deg, #d97706, #f58529); }
.vsi-6 { background: linear-gradient(135deg, #16a34a, #0d9488); }

/* Card text */
.vs-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}
.vs-card-text {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  flex: 1;
}

/* Check list */
.vs-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 0.75rem;
}
.vs-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #374151;
  font-weight: 500;
}
.vs-card-list li i {
  font-size: 0.6rem;
  color: #16a34a;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vs-grid           { grid-template-columns: repeat(2, 1fr); }
  .vs-statement-text { white-space: normal; text-align: center; }
}
@media (max-width: 560px) {
  .vs-grid           { grid-template-columns: 1fr; }
  .vision-section    { padding: 3.5rem 1rem 3rem; }
  .vs-statement      { flex-direction: column; gap: 0.75rem; }
  .vs-statement-line { width: 80px; height: 1px; flex: none; }
  .vs-card           { padding: 1.4rem 1.2rem; }
}

/* Legacy section-title / section-sub kept for other sections */
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted, #6b7280);

  .vcard p {
    font-size: 0.9rem;
  }
}








/* whatapp link */
/* ===============================
   SOCIAL FLOATING RADIAL MENU
================================ */

.social-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 9999;
}

/* ===============================
   MAIN TOGGLE BUTTON
================================ */

.fab-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(37, 211, 102, 0.5);

  animation: fabPulse 2.4s infinite;
  transition: transform 0.35s ease;
}

.fab-toggle i {
  font-size: 26px;
  color: #2563eb;
  transition: transform 0.4s ease;
}

/* Rotate icon on open */
.social-fab.open .fab-toggle i {
  transform: rotate(135deg);
}

/* ===============================
   SOCIAL ICONS
================================ */

.fab-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) scale(0.5);

  transition:
    transform 0.45s cubic-bezier(.4, 1.6, .6, 1),
    opacity 0.3s ease;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.fab-item i {
  font-size: 22px;
}

/* Enable interaction */
.social-fab.open .fab-item {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   PERFECT LEFT-SIDE SEMI CIRCLE
================================ */

.social-fab.open .fab-item.whatsapp {
  transform: translate(-95px, -30px) scale(1);
}

.social-fab.open .fab-item.facebook {
  transform: translate(-125px, -75px) scale(1);
}

.social-fab.open .fab-item.instagram {
  transform: translate(-110px, -129px) scale(1);
}

.social-fab.open .fab-item.linkedin {
  transform: translate(-60px, -155px) scale(1);
}

.social-fab.open .fab-item.mail {
  transform: translate(-5px, -140px) scale(1);
}

/* ===============================
   BRAND COLORS
================================ */

.whatsapp i {
  color: #25D366;
}

.facebook i {
  color: #1877F2;
}

.instagram i {
  color: #E1306C;
}

.linkedin i {
  color: #0A66C2;
}

.mail i {
  color: #EA4335;
}

/* Hover feedback */


/* ===============================
   ANIMATIONS
================================ */

@keyframes fabPulse {
  0% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.2),
      0 0 0 24px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 480px) {
  .social-fab {
    right: 16px;
    bottom: 16px;
  }

  .fab-toggle {
    width: 58px;
    height: 58px;
  }

  .fab-item {
    width: 46px;
    height: 46px;
  }

  .fab-item i {
    font-size: 20px;
  }

  .social-fab.open .fab-item.whatsapp {
    transform: translate(-95px, 0) scale(1);
  }

  .social-fab.open .fab-item.facebook {
    transform: translate(-80px, -60px) scale(1);
  }

  .social-fab.open .fab-item.instagram {
    transform: translate(-50px, -105px) scale(1);
  }

  .social-fab.open .fab-item.linkedin {
    transform: translate(-5px, -120px) scale(1);
  }

  .social-fab.open .fab-item.mail {
    transform: translate(45px, -110px) scale(1);
  }
}


/* Contact us  */

/* CONTACT SECTION */

.socials-contact {
  display: flex;
  gap: 1rem;
}

.socials-contact a {

  color: white;
}

.contact-section {
  position: relative;
  padding: 110px 20px;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1920") center / cover no-repeat;
  overflow: hidden;
}

/* Overlay */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.75);
}

/* Container */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
}

/* LEFT CONTENT */
.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-info .highlight {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 22px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-points i {
  color: #22c55e;
  font-size: 1rem;
}

.contact-trust {
  font-size: 0.8rem;
  color: #cbd5f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  color: #111827;
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
}

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

/* BUTTON */
.contact-btn {
  width: 100%;
  margin-top: 12px;
  padding: 0.95rem;
  border-radius: 14px;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.contact-note {
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
  margin-top: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-points {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 1.9rem;
  }

  .contact-form-box {
    padding: 30px 22px;
  }
}



/* Start Css */
.star {
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 2px;
  position: relative;
}

/* Full star */
.star.full {
  color: #fbbf24;
  /* gold */
}

/* Empty star */
.star.empty {
  color: #e5e7eb;
  /* gray */
}

/* Half star */
.star.half {
  color: #e5e7eb;
  /* base gray */
}

.star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbf24;
  /* gold half */
}




/* Start End Css */



/* Captch css */

.robot-verify {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.robot-box {
  width: 30px;
  height: 30px;
  border: 2px solid #9ca3af;
  border-radius: 25px;
  background: #fff;
  position: relative;
}

.spinner {
  position: absolute;
  inset: 4px;
  border: 2px solid #e5e7eb;
  border-top-color: #22c55e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.checkmark {
  position: absolute;
  width: 8px;
  height: 14px;
  border-right: 3px solid #22c55e;
  border-bottom: 3px solid #22c55e;
  transform: rotate(45deg) scale(0);
  left: 9px;
  top: 4px;
  transition: transform 0.3s ease;
}

/* States */
.robot-verify.verifying .spinner {
  display: block;
}

.robot-verify.verified .checkmark {
  transform: rotate(45deg) scale(1);
}

.robot-verify.verified .robot-box {
  border-color: #22c55e;
  background: #ecfdf5;
}

.robot-verify.verified {
  cursor: default;
}

.robot-text {
  font-size: 0.95rem;
  font-weight: bold;
}

.captcha-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 6px;
}

.retry-btn {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
}

.contact-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .robot-text {
    font-size: 0.85rem;
  }
}



/* for career section  */


/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg,
      var(--accent1),
      var(--accent2),
      var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO */
.career-hero {
  text-align: center;
}

.career-container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
  font-family: var(--mono);
}

.career-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.career-stats div {
  background: var(--glass);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* MAIN LAYOUT */
.career-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: auto;
  min-height: 100vh;
}

.career-left {
  padding: 4rem 3rem;
}

.career-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

/* OPPORTUNITIES */
.opportunity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.op-card {
  background: var(--glass);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.op-card:hover {
  transform: translateY(-6px);
}

/* FORM */
.career-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.career-form {
  width: 100%;
  max-width: 520px;
  background: var(--glass);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* INPUTS */
.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  font-family: var(--mono);
}

/* FULL WIDTH FIX */
.full-width {
  margin-top: 1rem;
}

/* UPLOAD */
.upload-box {
  margin: 1.2rem 0;
  padding: 1.6rem;
  border: 2px dashed var(--accent3);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  background: rgba(81, 91, 212, 0.05);
}

.upload-box span {
  color: var(--accent2);
  font-weight: 600;
}

/* BUTTON */
.primary-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  background: linear-gradient(90deg,
      var(--accent1),
      var(--accent2),
      var(--accent3));
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .career-wrapper {
    grid-template-columns: 1fr;
  }

  .career-left {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .circle_connect {
    display: none;
  }

  .row-between a {
    font-size: smaller;
  }

  .row-between .tab {
    margin-left: 8%;
  }

  .row-between .small {
    font-size: 12px;
  }
}



@media (min-width: 799px) {

  .row-between .tab {
    margin-left: 20%;
  }

}









/* New Css  */

/* SECTION BASE */
.contact-strip-pro {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

/* CONTAINER */
.contact-container-conect {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* CONTENT */
.contact-content h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.contact-content h3 span {
  color: #2563eb;
}

.contact-content p {
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin-bottom: 18px;
}

/* TRUST LIST */
.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

.trust-points i {
  color: #16a34a;
  font-size: 16px;
}

/* CTA */
.contact-cta {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

/* WHATSAPP */
.cta-btn.whatsapp {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.cta-btn.whatsapp:hover {
  background: #dcfce7;
  transform: translateY(-2px);
}

/* CALL */
.cta-btn.call {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.cta-btn.call:hover {
  background: #dbeafe;
  transform: translateY(-2px);
}

/* CTA NOTE */
.cta-note {
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container-conect {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta {
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-content h3 {
    font-size: 22px;
  }

  .contact-content p {
    font-size: 15px;
  }
}





/* ============================================================
   JOIN ECOSYSTEM — Modern Persona Tab Switcher + Auto-Carousel
   ============================================================ */

/* ── Section wrapper ── */
.join-ecosystem {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.join-ecosystem::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(81,91,212,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 100% 80%, rgba(221,42,123,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Header ── */
.join-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 1.75rem;
  position: relative;
}

/* .join-overline removed — element deleted from HTML */

.join-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.3rem 0 0;
}

/* keep section-sub compact inside join */
.join-ecosystem .section-sub {
  font-size: 0.88rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── Stats wrapper — breaks out of join-head max-width ── */
.join-stats-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.5rem;
  box-sizing: border-box;
  margin-top: 1.25rem;
}

/* ── Stats section title ── */
.join-stats-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1f2937;
  margin: 0 0 0.6rem;
  text-align: center;
  display: block;
}

/* ── Stats row ── */
.join-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.3rem, 1.2vw, 1.2rem);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.join-stats-row::-webkit-scrollbar { display: none; }

/* Pill — sizes to fit its own content */
.jstat-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, 0.5vw, 0.5rem);
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: clamp(0.22rem, 0.4vw, 0.35rem) clamp(0.45rem, 0.8vw, 0.8rem) clamp(0.22rem, 0.4vw, 0.35rem) clamp(0.22rem, 0.4vw, 0.35rem);
  box-shadow: none;
  flex: 0 0 auto;
  width: fit-content;
  transition: transform 0.18s, box-shadow 0.18s;
}
.jstat-pill:hover {
  transform: translateY(-2px);
}

/* Icon */
.jstat-icon {
  width: clamp(20px, 2.2vw, 28px);
  height: clamp(20px, 2.2vw, 28px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.5rem, 0.65vw, 0.72rem);
  flex-shrink: 0;
  color: #ffffff;
}
.jstat-c1 { background: linear-gradient(135deg, #515bd4, #3a4fcf); }
.jstat-c2 { background: linear-gradient(135deg, #f58529, #e06b12); }
.jstat-c3 { background: linear-gradient(135deg, #16a34a, #15803d); }
.jstat-c4 { background: linear-gradient(135deg, #d97706, #b45309); }
.jstat-c5 { background: linear-gradient(135deg, #9333ea, #7c3aed); }
.jstat-c6 { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.jstat-c7 { background: linear-gradient(135deg, #dd2a7b, #be185d); }
.jstat-c8 { background: linear-gradient(135deg, #0891b2, #0e7490); }

/* Text block */
.jstat-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

/* Number — gradient */
.jstat-num {
  font-size: clamp(0.68rem, 0.85vw, 0.9rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(90deg, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label — always solid dark, full name visible */
.jstat-label {
  font-size: clamp(0.46rem, 0.52vw, 0.6rem);
  font-weight: 600;
  color: #374151 !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* Separator dot */
.jstat-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
}

/* ── Tab Selector ── */
.join-selector {
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.join-selector::-webkit-scrollbar { display: none; }

/* Tab bar — strong gradient band, impossible to miss */
.join-tabs {
  display: flex;
  gap: 0.3rem;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(135deg, #1e1245 0%, #2d1b6e 40%, #1a2a6e 100%);
  border-radius: 14px 14px 0 0;
  width: max-content;
  min-width: 100%;
  box-shadow: 0 -2px 0 rgba(0,0,0,0.05);
}

/* ── Inactive tab — light frosted pill on dark band ── */
.join-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.44rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: var(--mono);
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.join-tab i {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.join-tab:hover {
  background: rgba(255,255,255,0.24);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.join-tab:hover i { color: #fff; }

/* ── Active tab — bright white pill with gradient text ── */
.join-tab.active {
  background: #fff;
  color: #0f0f0f;
  border-color: transparent;
  box-shadow: 0 3px 14px rgba(0,0,0,0.25);
  font-weight: 700;
}

.join-tab.active i {
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent2); /* fallback */
}

/* ── Progress bar — sits flush under the dark tab band ── */
.join-progress-bar {
  height: 3px;
  background: rgba(0,0,0,0.12);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.join-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  border-radius: 3px;
}

.join-progress-fill.running {
  animation: joinProgressRun 5s linear forwards;
}

@keyframes joinProgressRun {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Carousel wrapper ── */
.join-carousel { position: relative; }

/* ── Prev / Next arrow buttons ── */
.join-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  box-shadow: 0 3px 14px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.join-carousel-btn:hover {
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 18px rgba(221,42,123,0.4);
  transform: translateY(-50%) scale(1.06);
}

.join-prev { left: -19px; }
.join-next { right: -19px; }

/* ── Panels container ── */
.join-panels { position: relative; }

/* ── Individual panel ── */
.join-panel {
  display: none;
  grid-template-columns: 52% 1fr;
  align-items: stretch;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  animation: joinFadeUp 0.35s cubic-bezier(0.22,1,0.36,1) both;
}

.join-panel.active { display: grid; }

@keyframes joinFadeUp {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* ── Image side ── */
.join-panel-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  max-height: 420px;
}

.join-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.join-panel.active .join-panel-visual img {
  transform: scale(1.03);
}

.join-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(221,42,123,0.15) 0%,
    rgba(81,91,212,0.2)   100%
  );
  pointer-events: none;
}

.join-panel-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
}

.join-panel-badge i {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Content side — always light/white ── */
.join-panel-body {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  color: #0b0b0b;
  overflow-y: auto;
}

.join-panel-intro {
  font-size: 0.76rem;
  font-weight: 500;
  color: #505050;
  line-height: 1.45;
  margin: 0;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* ── Pain ➜ Solution columns ── */
.join-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.7rem;
  align-items: start;
  flex: 1;
}

.join-transform-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
}

.join-transform-arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  color: #fff;
  font-size: 0.68rem;
  box-shadow: 0 3px 10px rgba(221,42,123,0.3);
  flex-shrink: 0;
}

.join-transform-head {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.pain-col     .join-transform-head { color: #dc2626; }
.solution-col .join-transform-head { color: #16a34a; }

.join-transform-icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.pain-icon     { background: rgba(220,38,38,0.1); color: #dc2626; }
.solution-icon { background: rgba(22,163,74,0.1); color: #16a34a; }

.join-transform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.join-transform-list li {
  font-size: 0.72rem;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 0.38rem;
  color: #1a1a1a;
}

.join-transform-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

.pain-item::before {
  background-color: rgba(220,38,38,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.solution-item::before {
  background-color: rgba(22,163,74,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

/* ── Live social-proof strip ── */
.join-live-strip {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.7rem;
  color: #505050;
  font-weight: 500;
  line-height: 1.4;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
}

.join-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  margin-top: 0.28rem;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0);    }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);    }
}

.join-live-strip strong { color: #16a34a; }

/* ── CTA actions ── */
.join-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.join-actions .btn {
  font-size: 0.75rem;
  padding: 0.45rem 1rem;
}

/* ── Dot indicators ── */
.join-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.join-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

.join-dot.active {
  width: 24px;
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
}

/* ── Dark mode ── */
/* Tab bar already dark by design — same in light and dark mode */
body.dark .join-tabs              { background: linear-gradient(135deg, #0f0a2a 0%, #1a0f4a 40%, #0f1f4a 100%); }
body.dark .join-tab               { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.14); }
body.dark .join-tab i             { color: rgba(255,255,255,0.5); }
body.dark .join-tab:hover         { background: rgba(255,255,255,0.2); color: #fff; }
body.dark .join-tab.active        { background: #fff; color: #0f0f0f; }
/* Active tab icon stays gradient */
body.dark .jstat-pill              { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
body.dark .jstat-sep              { background: rgba(255,255,255,0.18); }
/* body.dark .join-overline — removed */
body.dark .join-progress-bar      { background: rgba(255,255,255,0.08); }
body.dark .join-carousel-btn      { background: #252540; border-color: rgba(255,255,255,0.1); color: #fff; }
body.dark .join-panel             { border-color: rgba(255,255,255,0.07); }
/* Panel body always white regardless of dark mode */
body.dark .join-panel-body        { background: #fff; color: #0b0b0b; }
body.dark .join-dot               { background: rgba(255,255,255,0.22); }

/* ── Responsive: between 1100-1200px (edge case) ── */
@media (max-width: 1180px) {
  .join-prev { left: -10px; }
  .join-next { right: -10px; }
}

/* ── Responsive: tablet ── */
@media (max-width: 1024px) {
  .join-panel.active          { grid-template-columns: 1fr; }
  .join-panel-visual          { min-height: 240px; max-height: 280px; }
  .join-panel-body            { padding: 1.4rem; }
  .join-carousel-btn          { display: none; }
}

/* ── Responsive: mobile ── */
@media (max-width: 768px) {
  .join-transform             { grid-template-columns: 1fr; gap: 0.6rem; }
  .join-transform-divider     { display: none; }
  .join-panel-body            { padding: 1.2rem; gap: 0.6rem; }
  /* pills scale via clamp — no override needed at this breakpoint */
  .join-actions               { flex-direction: column; }
}

@media (max-width: 480px) {
  .jstat-sep                  { display: none; }   /* hide dot dividers on mobile */
  .join-panel-visual          { min-height: 180px; max-height: 220px; }
  .join-ecosystem             { padding-top: 2rem; padding-bottom: 2rem; }
}

