/* ==============================================
   About Us Page — Stylesheet
   Online Scrap Dealer
   ============================================== */

/* ============================================
   HERO
   ============================================ */
#about-hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(22, 163, 74, 0.75) 60%,
    rgba(15, 23, 42, 0.9) 100%
  );
}

.about-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Floating icons */
.about-float-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ab-fi {
  position: absolute;
  color: rgba(134, 239, 172, 0.12);
  animation: abFloat 7s ease-in-out infinite;
}

.ab-fi-1 {
  font-size: 4rem;
  top: 12%;
  left: 4%;
  animation-delay: 0s;
}
.ab-fi-2 {
  font-size: 2.5rem;
  top: 22%;
  left: 22%;
  animation-delay: 1s;
}
.ab-fi-3 {
  font-size: 3rem;
  top: 65%;
  left: 6%;
  animation-delay: 2s;
}
.ab-fi-4 {
  font-size: 2rem;
  top: 78%;
  left: 32%;
  animation-delay: 0.5s;
}
.ab-fi-5 {
  font-size: 3.5rem;
  top: 10%;
  right: 8%;
  animation-delay: 1.5s;
}
.ab-fi-6 {
  font-size: 2.5rem;
  top: 55%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes abFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(10deg);
  }
  66% {
    transform: translateY(10px) rotate(-6deg);
  }
}

/* Hero inner */
.about-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.about-hero-content {
  color: var(--white);
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
}

.ab-highlight {
  color: #4ade80;
}

.ab-highlight-grad {
  background: linear-gradient(90deg, #22c55e, #86efac, #22c55e);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: abGrad 3s linear infinite;
}

@keyframes abGrad {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}

.about-hero-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.about-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

.about-hero-pills span i {
  color: #4ade80;
}

.about-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ab-outline {
  border: 2px solid rgba(255, 255, 255, 0.45) !important;
  color: var(--white) !important;
}

.ab-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

/* Image collage */
.ab-collage {
  position: relative;
  display: flex;
  gap: 12px;
  height: 420px;
}

.ab-col-main {
  flex: 1.4;
  border-radius: 20px;
  overflow: hidden;
}

.ab-col-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-col-sm1,
.ab-col-sm2 {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.ab-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ab-col-img:hover img {
  transform: scale(1.06);
}

/* Floating stat badges */
.ab-stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius);
  color: var(--white);
  animation: abFloat 4s ease-in-out infinite;
}

.ab-stat-badge i {
  font-size: 1.5rem;
  color: #4ade80;
}
.ab-stat-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.ab-stat-badge small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.ab-stat-1 {
  top: -16px;
  left: -20px;
  animation-delay: 0s;
}
.ab-stat-2 {
  bottom: 20px;
  right: -20px;
  animation-delay: 1.5s;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.ab-marquee-strip {
  background: linear-gradient(90deg, #166534, #15803d, #166534);
  padding: 14px 0;
  overflow: hidden;
}

.ab-marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: abTicker 35s linear infinite;
  width: max-content;
}

.ab-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.ab-marquee-track span i {
  color: #86efac;
}

@keyframes abTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   OUR STORY
   ============================================ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Left — stacked images */
.story-imgs {
  position: relative;
  height: 500px;
}

.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img-sm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.story-img-main img,
.story-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-img-main:hover img,
.story-img-sm:hover img {
  transform: scale(1.06);
}

.story-year-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  animation: abFloat 4s ease-in-out infinite;
  z-index: 2;
}

.story-year-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.story-year-badge small {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* Right — content */
.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin: 12px 0 20px;
}

.story-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.story-content em {
  color: var(--green-dark);
  font-style: italic;
  font-weight: 600;
}

/* Milestones */
.story-milestones {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--green-light);
  padding-left: 24px;
}

.milestone {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--gray-light);
  position: relative;
  transition: var(--transition);
}

.milestone:last-child {
  border-bottom: none;
}

.milestone::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.milestone:hover {
  padding-left: 8px;
}

.m-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  min-width: 44px;
  padding-top: 2px;
}

.m-content h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.m-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   MISSION VISION VALUES
   ============================================ */
.ab-mvv-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a2f 50%, #0f172a 100%);
}

.ab-mvv-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(34, 197, 94, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(34, 197, 94, 0.06) 0%,
      transparent 40%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2322c55e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
  animation: mvvBg 25s linear infinite;
}

@keyframes mvvBg {
  from {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      0 0,
      0 0,
      60px 60px;
  }
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(34, 197, 94, 0.3);
}

/* Top accent bar */
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card:nth-child(1)::before {
  background: linear-gradient(90deg, #22c55e, #86efac);
}
.mvv-card:nth-child(2)::before {
  background: linear-gradient(90deg, #3b82f6, #93c5fd);
}
.mvv-card:nth-child(3)::before {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}

/* Glow backgrounds */
.mvv-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  bottom: -60px;
  right: -60px;
}

.mvv-card:hover .mvv-glow {
  opacity: 0.15;
}
.mission-glow {
  background: #22c55e;
}
.vision-glow {
  background: #3b82f6;
}
.values-glow {
  background: #f59e0b;
}

/* Icons */
.mvv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon-wrap {
  transform: scale(1.12) rotate(-5deg);
}

.mission {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(34, 197, 94, 0.1)
  );
  color: #4ade80;
}
.vision {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1)
  );
  color: #60a5fa;
}
.values {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(245, 158, 11, 0.1)
  );
  color: #fbbf24;
}

.mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.mvv-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.mvv-list li i {
  color: #4ade80;
  font-size: 0.75rem;
}

/* ============================================
   IMPACT STATS WITH RINGS
   ============================================ */
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.ab-stat-card {
  text-align: center;
  padding: 24px 16px;
  transition: var(--transition);
}

.ab-stat-card:hover {
  transform: translateY(-6px);
}

/* SVG ring */
.ab-stat-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}

.ab-stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--gray-light);
  stroke-width: 7;
}

.ring-fill {
  fill: none;
  stroke: url(#greenGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: calc(2 * 3.14159 * 42);
  stroke-dashoffset: calc(2 * 3.14159 * 42 * (1 - var(--pct) / 100));
  transition: stroke-dashoffset 1.5s ease;
  stroke: var(--green);
}

.ab-stat-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ab-stat-inner i {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 4px;
}

.ab-stat-inner strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}

.ab-stat-inner span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
}

.ab-stat-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ab-stat-card p {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.team-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

/* Social overlay */
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 163, 74, 0.9),
    rgba(22, 163, 74, 0.4) 50%,
    transparent
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-overlay a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
  transform: translateY(10px);
}

.team-card:hover .team-social-overlay a {
  transform: translateY(0);
}
.team-social-overlay a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.team-content {
  padding: 22px 20px;
}

.team-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.team-content p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.team-tags span {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  transition: var(--transition);
}

.team-card:hover .team-tags span {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--green-dark);
}

/* ============================================
   WHY US — IMAGE CARDS
   ============================================ */
.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ab-why-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.ab-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.ab-why-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.ab-why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ab-why-card:hover .ab-why-img img {
  transform: scale(1.08);
}

.ab-why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent 60%);
}

.ab-why-content {
  padding: 24px;
  position: relative;
}

.ab-why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-top: -44px;
  position: relative;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  transition: var(--transition);
}

.ab-why-card:hover .ab-why-icon {
  transform: scale(1.1);
}

.ab-why-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ab-why-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CERTIFICATIONS TIMELINE
   ============================================ */
.cert-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.cert-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
  transform: translateX(-50%);
}

.cert-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.cert-tl-item:nth-child(odd) {
  flex-direction: row;
}
.cert-tl-item.right {
  flex-direction: row-reverse;
}

.cert-tl-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  top: 16px;
}

.cert-tl-card {
  width: calc(50% - 52px);
  padding: 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.cert-tl-item:nth-child(odd) .cert-tl-card {
  margin-right: auto;
}
.cert-tl-item.right .cert-tl-card {
  margin-left: auto;
}

.cert-tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-tl-year {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(34, 197, 94, 0.15);
  line-height: 1;
  margin-bottom: 4px;
}

.cert-tl-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cert-tl-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.cert-tl-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ============================================
   CSR SECTION
   ============================================ */
.ab-csr-section {
  position: relative;
  overflow: hidden;
}

.ab-csr-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #14532d 50%, #0f172a 100%);
}

.ab-csr-bg-anim::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 60%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 30%,
      rgba(34, 197, 94, 0.07) 0%,
      transparent 40%
    );
  animation: csrPulse 8s ease-in-out infinite alternate;
}

@keyframes csrPulse {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

.ab-csr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* CSR cards */
.csr-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 36px;
}

.csr-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}

.csr-card:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(6px);
}

.csr-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #4ade80;
  flex-shrink: 0;
  transition: var(--transition);
}

.csr-card:hover .csr-card-icon {
  background: rgba(34, 197, 94, 0.25);
  transform: scale(1.1);
}

.csr-card h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.csr-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

/* CSR visual */
.csr-img-stack {
  position: relative;
  height: 460px;
}

.csr-main-img {
  width: 80%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(34, 197, 94, 0.2);
}

.csr-sm-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.csr-impact-badge {
  position: absolute;
  top: 24px;
  right: -10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  animation: abFloat 4s ease-in-out infinite;
}

.csr-impact-badge i {
  font-size: 1.5rem;
  color: #4ade80;
}
.csr-impact-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #4ade80;
}
.csr-impact-badge small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.partner-card i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
}

.partner-card:hover i {
  transform: scale(1.2);
}

.partner-card h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.partner-card p {
  color: var(--gray);
  font-size: 0.78rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ab-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ab-testi-card {
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.ab-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ab-testi-quote {
  font-size: 2rem;
  color: var(--green-light);
  margin-bottom: 16px;
  line-height: 1;
}

.ab-testi-card > p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.ab-testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
}

.ab-testi-footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-light);
}

.ab-testi-footer strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.ab-testi-footer span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   JOIN CTA SECTION
   ============================================ */
.ab-join-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #166534, #15803d, #166534);
  text-align: center;
  color: var(--white);
}

.ab-join-bg-anim {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  animation: joinBg 20s linear infinite;
}

@keyframes joinBg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.ab-join-inner {
  position: relative;
  z-index: 1;
}

.ab-join-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 28px;
  animation: abFloat 4s ease-in-out infinite;
}

.ab-join-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 16px;
}

.ab-join-inner h2 span {
  color: #bbf7d0;
}

.ab-join-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.ab-join-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ab-join-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 36px;
}

.ab-join-stats div {
  text-align: center;
}

.ab-join-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #bbf7d0;
}

.ab-join-stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .ab-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-why-grid {
    grid-template-columns: 1fr;
  }
  .story-split {
    grid-template-columns: 1fr;
  }
  .story-imgs {
    height: 280px;
  }
  .ab-csr-split {
    grid-template-columns: 1fr;
  }
  .ab-csr-visual {
    display: none;
  }
  .ab-testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .about-hero-visual {
    display: none;
  }
  .cert-timeline::before {
    left: 28px;
  }
  .cert-tl-item,
  .cert-tl-item.right {
    flex-direction: row;
  }
  .cert-tl-icon {
    left: 28px;
    transform: translateX(-50%);
    top: 12px;
  }
  .cert-tl-card {
    width: calc(100% - 70px);
    margin-left: auto !important;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .story-imgs {
    display: none;
  }
  .story-split {
    grid-template-columns: 1fr;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-join-stats {
    gap: 28px;
  }
  .about-hero-pills {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  #about-hero {
    min-height: auto;
  }

  .about-hero-inner {
    padding: 40px 20px;
  }

  .about-hero-content {
    padding: 0 12px;
  }

  .about-hero-content h1 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .about-hero-content > p {
    font-size: 1rem;
  }

  .about-hero-pills {
    gap: 8px;
  }

  .about-hero-pills span {
    font-size: 0.75rem;
  }

  .about-hero-btns {
    flex-direction: column;
  }

  .about-hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}
