/* ============================================================
   ABOUT PAGE — SkilledWebinar
============================================================ */

/* ── Shared section spacing ── */
.ab-section { padding: 80px 0; }

/* ── Section heading ── */
.ab-section-head { margin-bottom: 52px; }
.ab-section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin: 12px 0 10px;
}
.ab-section-head h2 span { color: var(--primary); }
.ab-section-head p {
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0;
}

/* ── Badge ── */
.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.ab-badge-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

/* ════════════════════════════════════════
   1. HERO
════════════════════════════════════════ */
.ab-hero {
  position: relative;
  background: var(--bg-section);
  padding: 90px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(124,77,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(168,85,247,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ab-hero-inner { position: relative; z-index: 1; }

.ab-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 20px 0 18px;
}

.ab-hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-hero-sub {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.ab-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  border: none;
}
.ab-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all 0.25s ease;
}
.ab-btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-section); }

/* ════════════════════════════════════════
   2. MISSION & VISION
════════════════════════════════════════ */
.ab-mv { background: #fff; }

.ab-mv-card {
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-mv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.ab-mv-mission { background: var(--bg-soft); }
.ab-mv-vision  { background: var(--bg-section); }

.ab-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.ab-mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.ab-mv-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ab-mv-card p {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
}

/* ════════════════════════════════════════
   3. WHAT WE OFFER
════════════════════════════════════════ */
.ab-offer { background: var(--bg-soft); }

.ab-offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ab-offer-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.25s ease, color 0.25s ease;
}
.ab-offer-card:hover .ab-offer-icon { background: var(--primary); color: #fff; }

.ab-offer-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.ab-offer-card p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════
   4. WHY CHOOSE US
════════════════════════════════════════ */
.ab-why { background: #fff; }

.ab-why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ab-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.ab-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ab-why-card:hover::before { transform: translateX(0); }

.ab-why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}
.ab-why-card:hover .ab-why-icon { background: var(--primary); color: #fff; }

.ab-why-card h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.ab-why-card p  { font-size: 0.88rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════
   5. VALUES
════════════════════════════════════════ */
.ab-values { background: var(--bg-section); }

.ab-value-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-value-pill:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ab-value-pill i { font-size: 1.5rem; color: var(--primary); }
.ab-value-pill span { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

/* ════════════════════════════════════════
   6. TRUST
════════════════════════════════════════ */
.ab-trust { background: #fff; }

.ab-trust-desc {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 22px;
}

.ab-trust-list { display: flex; flex-direction: column; gap: 10px; }

.ab-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.ab-trust-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

.ab-trust-stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-trust-stat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.ab-trust-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.ab-trust-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

/* ════════════════════════════════════════
   7. IMPACT
════════════════════════════════════════ */
.ab-impact {
  background: #6236E8;
  background: -webkit-linear-gradient(135deg, #6236E8 0%, #7C3AED 50%, #9333EA 100%);
  background: linear-gradient(135deg, #6236E8 0%, #7C3AED 50%, #9333EA 100%);
  position: relative;
  overflow: hidden;
}

.ab-impact .ab-section-head h2 { color: #ffffff; }
.ab-impact .ab-section-head h2 span { color: #F4C542; -webkit-text-fill-color: #F4C542; }

.ab-impact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
          transition: background 0.25s ease, transform 0.25s ease;
}
.ab-impact-card:hover { background: rgba(255,255,255,0.2); -webkit-transform: translateY(-4px); -ms-transform: translateY(-4px); transform: translateY(-4px); }

.ab-impact-card i { font-size: 1.8rem; color: #F4C542; margin-bottom: 14px; display: block; }

.ab-impact-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.ab-impact-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ════════════════════════════════════════
   8. HOW IT WORKS
════════════════════════════════════════ */
.ab-how { background: var(--bg-soft); }

.ab-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.ab-step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ab-step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg-section);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ab-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.ab-step-card:hover .ab-step-icon { background: var(--primary); color: #fff; }

.ab-step-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.ab-step-card p  { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════
   9. CATEGORIES
════════════════════════════════════════ */
.ab-cats { background: #fff; }

.ab-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
  cursor: default;
}
.ab-cat-card:hover {
  background: var(--bg-section);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.ab-cat-card i { font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.ab-cat-card span { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

/* ════════════════════════════════════════
   10. PLATFORM FEATURES
════════════════════════════════════════ */
.ab-features { background: var(--bg-soft); }

.ab-feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ab-feat-card > i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.25s ease;
}
.ab-feat-card:hover > i { transform: scale(1.1); }

.ab-feat-card h6 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.ab-feat-card p  { font-size: 0.87rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════
   11. TESTIMONIALS
════════════════════════════════════════ */
.ab-testi { background: var(--bg-section); }

.ab-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.ab-testi-stars { display: flex; gap: 3px; }
.ab-testi-stars i { color: var(--accent-dark); font-size: 0.85rem; }

.ab-testi-card > p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.ab-testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.ab-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-testi-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.ab-testi-role { font-size: 0.78rem; color: var(--text-light); }

/* ════════════════════════════════════════
   12. FAQ
════════════════════════════════════════ */
.ab-faq { background: #fff; }

.ab-faq-list { display: flex; flex-direction: column; gap: 10px; }

.ab-faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}
.ab-faq-item.open { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }

.ab-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s ease;
}
.ab-faq-q:hover { color: var(--primary); }

.ab-faq-q i {
  font-size: 0.85rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ab-faq-item.open .ab-faq-q i { transform: rotate(45deg); }

.ab-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  padding: 0 20px;
}
.ab-faq-item.open .ab-faq-a { padding: 0 20px 18px; }

/* ════════════════════════════════════════
   13. COMMUNITY (CTA)
════════════════════════════════════════ */
.ab-community {
  position: relative;
  background: var(--gradient-primary);
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
}

.ab-community-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.ab-community-inner { position: relative; z-index: 1; }

.ab-community-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
  margin: 18px 0 16px;
}
.ab-community-title span { color: var(--accent); }

.ab-community-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.ab-community-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.ab-btn-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}
.ab-btn-white:hover { color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.ab-btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  transition: all 0.25s ease;
}
.ab-btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

.ab-community-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991px) {
  .ab-section    { padding: 60px 0; }
  .ab-hero       { padding: 70px 0 60px; }
  .ab-community  { padding: 70px 0; }
}

@media (max-width: 767px) {
  .ab-section       { padding: 50px 0; }
  .ab-section-head  { margin-bottom: 36px; }
  .ab-hero          { padding: 56px 0 48px; }
  .ab-mv-card       { padding: 26px 22px; }
  .ab-trust-stat    { padding: 18px 14px; }
  .ab-trust-num     { font-size: 1.6rem; }
  .ab-community     { padding: 56px 0; }
  .ab-hero-cta,
  .ab-community-cta { flex-direction: column; align-items: center; }
  .ab-btn-primary, .ab-btn-ghost,
  .ab-btn-white, .ab-btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .ab-step-num  { font-size: 2.8rem; }
  .ab-impact-num { font-size: 1.8rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
