/* ── Founder card with social hover ── */
.founder-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.founder-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.founder-wrap:hover .founder-img { transform: scale(1.04); }
.founder-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,45,0.92) 0%, rgba(5,15,45,0.3) 50%, transparent 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.founder-wrap:hover .founder-social-overlay { opacity: 1; }
.founder-social-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.founder-social-title {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.founder-social-links {
  display: flex;
  gap: 10px;
}
.founder-social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.founder-social-link:hover { transform: translateY(-3px) scale(1.1); }
.founder-social-link.linkedin  { background: #0A66C2; }
.founder-social-link.whatsapp  { background: #25D366; }
.founder-social-link.instagram { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.founder-social-link.facebook  { background: #1877F2; }
.founder-social-link svg { width:18px; height:18px; fill:white; }

/* ── Stats band ── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: 16px;
  padding: 25px 15px;          /* generous inner padding */
  max-width: 100%;
  /* Space above + below, and pulled in from edges like other sections */
  margin: 32px 20px;
  /* Subtle shadow so it lifts off the background */
  box-shadow: 0 8px 32px rgba(13,43,107,0.18);
}
.stat-cell {
  padding: 20px 16px;          /* more space inside each cell */
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-cell:last-child { border-right: none; }
.stat-cell-icon { font-size: 28px; margin-bottom: 12px; opacity: 0.8; }
.stat-cell-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-cell-num em {
  color: var(--gold);
  font-style: normal;
}
.stat-cell-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}
.stat-cell-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── Values ── */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value-card  {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.value-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(13,43,107,0.10); border-color:transparent; }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
}
.value-card:nth-child(1)::before { background:var(--royal); }
.value-card:nth-child(2)::before { background:var(--red); }
.value-card:nth-child(3)::before { background:var(--gold); }
.value-card:nth-child(4)::before { background:#16A34A; }
.value-card:nth-child(5)::before { background:#7C3AED; }
.value-card:nth-child(6)::before { background:var(--navy); }
.value-icon  { font-size:32px; margin-bottom:14px; }
.value-title { font-family:'Playfair Display',serif; font-size:17px; color:var(--navy); margin-bottom:8px; font-weight:700; }
.value-desc  { font-size:13px; color:var(--text-muted); line-height:1.75; }

/* ── Testimonials ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card {
  background: white;
  border-radius: 18px;
  padding: 28px 24px 22px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(13,43,107,0.10); }
.testi-stars { display:flex; gap:3px; }
.testi-star  { color: var(--gold); font-size: 15px; }
.testi-text  {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.82;
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}
.testi-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--light-blue);
  line-height: 1;
  font-style: normal;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.testi-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--light-blue);
  flex-shrink: 0;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid var(--light-blue);
}
.testi-name  { font-weight:700; font-size:14px; color:var(--navy); }
.testi-prog  { font-size:11px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:0.4px; margin-top:2px; }

@media(max-width:960px) {
  .stats-band    { grid-template-columns:1fr 1fr; }
  .values-grid   { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .testi-grid    { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
}
 

  /* RESPONSIVE: About Page  */

  @media (max-width: 900px) {
    /* Founder section: stack photo then text */
    #founder-grid,
    [style*="grid-template-columns:1fr 1.3fr"] {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
    .founder-img,
    [style*="height:480px"][style*="object-fit:cover"] {
      height: 320px !important;
      max-width: 380px;
      margin: 0 auto;
      display: block;
    }
    /* Stats band */
    .stats-band { grid-template-columns: 1fr 1fr !important; }
    /* Values */
    .values-grid { grid-template-columns: 1fr 1fr !important; }
    /* Achievement badges row */
    [style*="display:flex"][style*="flex-wrap:wrap"][style*="gap:12px"] {
      flex-direction: column !important;
      gap: 10px !important;
    }
  }
  @media (max-width: 560px) {
    .stats-band   { grid-template-columns: 1fr !important; }
    .values-grid  { grid-template-columns: 1fr !important; }
    .testi-grid   { grid-template-columns: 1fr !important; }
    .stat-cell-num { font-size: 36px !important; }
  }