/* ======================================================
   ABOUT PAGE – CORE DESIGN SYSTEM (VARIABLE BASED)
====================================================== */

/* -------- RESET -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

/* -------- LAYOUT -------- */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}
.container p{
  padding: 1rem 0rem 1rem 0rem;

}

.section {
  padding: 30px 0;
}

/* ======================================================
   HERO
====================================================== */
.about-hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, var(--accent-soft), transparent 60%),
    var(--bg-dark);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ---------- HERO TEXT ---------- */
/* ===============================
   ABOUT HERO – ELITE AGENCY
================================ */

.about-hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: #ffffff;
}

/* Background */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.blob-1 {
  background: var(--accent);
  top: -120px;
  left: -120px;
}

.blob-2 {
  background: var(--dark);
  bottom: -140px;
  right: -140px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,45,82,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,45,82,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Layout */
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */
.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
}

.about-hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 16px 0 20px;
  color: var(--dark);
}

.about-hero-text h1 span {
  color: var(--accent);
}

.about-hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--dark);
}

.about-hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
}

/* Pillars */
.about-pillars {
  display: flex;
  gap: 26px;
  margin-top: 32px;
}

.about-pillars div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
}

.about-pillars i {
  color: var(--accent);
}

/* RIGHT */
.about-hero-proof {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.65)
  );
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(11,45,82,0.15);
  box-shadow: 0 30px 80px rgba(11,45,82,0.18);
}

/* Proof header */
.proof-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-header h4 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dark);
}

.proof-desc {
  margin: 18px 0 26px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Stats */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proof-stat strong {
  font-size: 1.6rem;
  color: var(--accent);
}

.proof-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}
/* ===============================
   ABOUT HERO PROOF – HERO LEVEL
================================ */

.about-hero-proof {
  position: relative;
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

/* Floating motion */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Soft glow */
.about-hero-proof::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255,122,24,0.18),
    transparent 60%
  );
  opacity: 0.4;
  pointer-events: none;
}

/* Stats grid */
.proof-stats {
  position: relative;
  z-index: 1;
}

/* Individual stat */
.proof-stat {
  position: relative;
  padding-top: 14px;
  overflow: hidden;
}

/* Animated bar */
.stat-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--accent),
    rgba(255,122,24,0.4)
  );
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* Activate bar when visible */
.reveal.active .stat-bar {
  width: 100%;
}

/* Number emphasis */
.proof-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Subtle hover */
.proof-stat:hover strong {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-pillars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .proof-stats {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   QUICK FACTS
====================================================== */
.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.fact-card {
  position: relative;
  text-align: center;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  transition: transform var(--transition-med);
}

.fact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.fact-card:hover {
  transform: translateY(-10px);
}

.fact-card:hover::before {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.fact-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
/* ===============================
   ABOUT KEYS – STRATEGIC PILLARS
================================ */

.about-keys {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

/* Header */
.about-keys-header {
  max-width: 620px;
  margin-bottom: 70px;
}

.about-keys-header h2 {
  font-size: 2.6rem;
  margin: 14px 0;
  color: var(--dark);
}

.about-keys-header p {
  font-size: 1.05rem;
  color: var(--muted);
}
.section-label{
  color:var(--accent);
}

/* Grid */
.about-keys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Single key */
.about-key {
  position: relative;
  padding: 36px 32px 38px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.65)
    );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(11,45,82,0.12);
  box-shadow: 0 20px 50px rgba(11,45,82,0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}



/* ================= CTA BUTTONS ================= */
.cta-action {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 0.8rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cta-btn-outline {
  padding: 0.8rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cta-btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Accent line */
.about-key::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent),
    transparent
  );
  border-radius: 999px;
}

.about-key:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(11,45,82,0.22);
}

/* Icon */
.about-key-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,24,0.12);
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Content */
.about-key-content h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--dark);
}

.about-key-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Link */
.about-key-content a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-key-content a i {
  font-size: 0.85rem;
}

.about-key-content a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-keys-grid {
    grid-template-columns: 1fr;
  }

  .about-keys-header {
    text-align: center;
    margin-inline: auto;
  }
}
/* ===============================
   ABOUT STORY – CENTERED ELITE
================================ */

.about-story {
  padding: 90px 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(255,122,24,0.08),
      transparent 55%
    ),
    #ffffff;
}

/* Center helper */
.center {
  text-align: center;
}

/* Header */
.about-story-header h2 {
  font-size: 2.7rem;
  margin-top: 14px;
  color: var(--dark);
}

/* Narrative text – centered width */
.about-story-lead,
.about-story-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 25px;
}

/* Timeline container */
.story-timeline.centered {
  position: relative;
  margin: 70px auto 0;
  max-width: 720px;
  padding-top: 10px;
}

/* Center vertical line */
.story-timeline.centered::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    var(--accent),
    rgba(255,122,24,0.15),
    transparent
  );
}

/* Story point */
.story-timeline.centered .story-point {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 28px 0;
}

/* Dot */
.story-timeline.centered .story-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--accent);
  z-index: 2;
  transition: transform 0.4s ease, background 0.4s ease;
}

.story-point:hover .story-dot {
  background: var(--accent);
  transform: translateX(-50%) scale(1.15);
}

/* Content block */
.story-timeline.centered .story-content {
  margin-top: 30px;
  max-width: 520px;
  text-align: center;
}

/* Headings */
.story-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--dark);
}

/* Text */
.story-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .story-timeline.centered::before {
    display: none;
  }

  .story-dot {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 12px;
  }

  .story-point {
    flex-direction: column;
  }
}


/* ======================================================
   STORY
====================================================== */
.story-text {
  max-width: 760px;
  margin: 1rem auto 3rem;
  text-align: center;
  color: var(--text-muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.story-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
}

/* ======================================================
   PEOPLE
====================================================== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.people-card {
  position: relative;
  text-align: center;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
}

.people-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
}

.people-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border: 2px solid var(--accent-soft);
}

/* ======================================================
   ANIMATIONS
====================================================== */
.fade-in,
.slide-up,
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.is-visible,
.slide-up.is-visible,
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991px) {
  .about-hero-grid,
  .quick-facts-grid,
  .about-keys-grid,
  .story-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-text h1 {
    font-size: 2.4rem;
  }

  .about-hero-stats {
    justify-content: center;
  }
}


/* ======================================================
   WHY CHOOSE US – PREMIUM SECTION
====================================================== */

.about-why {
  background:white;
}

/* Section title spacing refinement */
.about-why .section-title {
  margin-bottom: 2.2rem;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* Card */
.why-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  text-align: left;
  transition: transform var(--transition-med);
}

/* Border layer (premium hover effect) */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-8px);
}

.why-card:hover::before {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* Icon */
.why-card i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: inline-block;
}

/* Title */
.why-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--text-strong);
}

/* Text */
.why-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ======================================================
   REVEAL ANIMATION SUPPORT
====================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= APPROACH – NON BOXY PREMIUM ================= */
.wc-approach-minimal {
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 60%),
    var(--bg-dark);
}

.approach-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.approach-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: -1rem;
  padding-top: 1.5rem;
}

/* ================= APPROACH – NON BOXY PREMIUM ================= */
.wc-approach-minimal {
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 60%),
    var(--bg-dark);
}

.approach-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.approach-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: -1rem;
}

/* FLOW */
.approach-flow {
  max-width: 820px;
  margin: 0 auto 3rem;
  position: relative;
}

.approach-flow::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
}

/* ROW */
.approach-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.4rem 0;
  position: relative;
}

.approach-step {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--bg-light);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.approach-row p {
  font-size: 1.05rem;
  color: var(--text-strong);
}

/* FOOTER */
.approach-footer {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .approach-flow::before {
    left: 20px;
  }

  .approach-row p {
    font-size: 1rem;
  }
}




/* List Container */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each List Item */
.features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Custom Check Icon */
.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);   /* change color if needed */
  font-weight: bold;
}
