/* ============================================
   ABOUT SECTION — Full Layout
   Intro + Stats + Why Choose Us
   ============================================ */

#about {
  padding: 50px 0 60px;
  background: var(--bg-secondary);
  overflow: hidden;
}
#about .container {
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
/* ============================================
   PART 1 — IMAGE + INTRO TEXT
   ============================================ */
.about-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* ── Image Col ── */
.about-img-col {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#about.in-view .about-img-col {
  opacity: 1;
  transform: translateX(0);
}

.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
}

.about-img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

.about-img-frame:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
#about.in-view .about-img-badge {
  opacity: 1;
  transform: translateY(0);
}
.about-text-col p span {
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.badge-number {
  display: block;
  font-size: 26px;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── Text Col ── */
.about-text-col {
  width: 100%;
  padding-left: 50px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
#about.in-view .about-text-col {
  opacity: 1;
  transform: translateX(0);
}

.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 12px;
}

.govt-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #fff3e8, #ffe0b2);
  border: 1.5px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #7a3d00;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.govt-badge .gstin {
  font-size: 11px;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.about-text-col h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.about-lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-text-col p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 15px;
  text-align: justify;
}

/* ── Owner ── */
.about-owner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 10px 18px;
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.about-owner:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.owner-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-primary);
  flex-shrink: 0;
}

.about-owner strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Raleway", sans-serif;
}

.about-owner span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   PART 2 — STATS (slim horizontal strip)
   ============================================ */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #2c1505 0%, #4a2008 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(44, 21, 5, 0.22);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
#about.in-view .about-stats-row {
  opacity: 1;
  transform: translateY(0);
}

.about-stat-card {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  animation: statEnter 0.5s ease forwards;
  animation-play-state: paused;
}
#about.in-view .about-stat-card {
  animation-play-state: running;
}
.about-stat-card:nth-child(1) { animation-delay: 0.1s; }
.about-stat-card:nth-child(2) { animation-delay: 0.2s; }
.about-stat-card:nth-child(3) { animation-delay: 0.3s; }
.about-stat-card:nth-child(4) { animation-delay: 0.4s; }

.about-stat-card:last-child {
  border-right: none;
}

.about-stat-card:hover {
  background: rgba(255, 107, 0, 0.12);
  transform: translateY(-3px);
}

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

.stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
  transition: transform 0.3s ease;
}

.about-stat-card:hover .stat-icon {
  transform: scale(1.2) rotate(-5deg);
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Raleway", sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.stat-tamil {
  font-size: 10px;
  color: rgba(255, 204, 0, 0.7);
}

/* ============================================
   PART 3 — WHY CHOOSE US (left icon, right text)
   ============================================ */
.why-section {
  padding-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
#about.in-view .why-section {
  opacity: 1;
  transform: translateY(0);
}

.why-section .section-title {
  margin-bottom: 30px;
}

.why-section .section-title h2 {
  color: var(--text-primary);
}

.why-section .section-title p {
  color: var(--text-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  animation: whyEnter 0.5s ease forwards;
  animation-play-state: paused;
  position: relative;
  overflow: hidden;
}
#about.in-view .why-card {
  animation-play-state: running;
}
.why-card:nth-child(1) { animation-delay: 0.05s; }
.why-card:nth-child(2) { animation-delay: 0.10s; }
.why-card:nth-child(3) { animation-delay: 0.15s; }
.why-card:nth-child(4) { animation-delay: 0.20s; }
.why-card:nth-child(5) { animation-delay: 0.25s; }
.why-card:nth-child(6) { animation-delay: 0.30s; }

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

/* Orange left border line on hover */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b00, #ffcc00);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 3px 0 0 3px;
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

/* ── Icon box ── */
.why-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff3e8, #ffe0b2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
}

/* ── Text content ── */
.why-content { flex: 1; }

.why-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Raleway", sans-serif;
  margin-bottom: 2px;
}

.why-sub {
  font-size: 11px;
  color: var(--orange-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ── Desktop 2 col split ── */
@media (min-width: 992px) {
  .about-img-col { width: 50%; }
  .about-text-col { width: 50%; }
}

/* ── Tablet ── */
@media (max-width: 991px) {
  .about-text-col { padding-left: 0; margin-top: 30px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-stat-card { border-right: 1px solid rgba(255,255,255,0.07); }
  .about-stat-card:nth-child(2) { border-right: none; }
  .about-stat-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); border-top: 1px solid rgba(255,255,255,0.07); }
  .about-stat-card:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #about { padding: 40px 0 40px; }
  .about-row { margin-bottom: 30px; }
  .about-img { height: 250px; }
  .about-text-col { padding-left: 8px; margin-top: 20px; }
  .about-text-col h2 { font-size: 22px; }
  .about-lead{
    font-size: 14px !important;
    font-weight: 950 !important;
  }
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  .stat-number { font-size: 24px; }
  .stat-icon { font-size: 18px; }
  .about-stat-card { padding: 20px 12px; }
  .why-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
  .why-card { padding: 16px; }
  .why-icon { width: 42px; height: 42px; font-size: 20px; }
  .why-title { font-size: 14px; }
  .why-desc { font-size: 12px; }

  .about-img-badge {
    padding: 8px 12px;
    bottom: 10px;
    left: 10px;
    border-radius: 8px;
  }

  .badge-number {
    font-size: 18px;
  }

  .badge-text {
    font-size: 8px;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }
}
@media (max-width: 480px) {
  .about-img { height: 200px; }
  .govt-badge { font-size: 9px; }
  .about-stats-row { border-radius: 12px; }
}
/* ══════════════════════════
   Horizontal / Vertical Timeline
══════════════════════════ */

.generation-section {
  margin: 40px 0 20px;
}

.hv-timeline {
  position: relative;
  margin-top: 40px;
}

/* ── Center horizontal line ── */
.hv-timeline::before {
  top: 36px; /* sits between year badge and card top */
  left: 0;
  right: 0;
  height: 2px;
  transform: none; /* remove translateY(-50%) */
  background: linear-gradient(to right, #ff6b00, #ffcc00);
}

/* ── Track ── */
.hv-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ── Each item ── */
.hv-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#about.in-view .hv-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
#about.in-view .hv-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
#about.in-view .hv-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* ── Inner wrapper keeps order clean ── */
.hv-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── Year badge — above line ── */
.hv-year {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
  order: 1;
  position: relative;
  z-index: 2;
}

/* ── Dot — sits on center line ── */
.hv-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--orange-primary);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin: 0 auto 10px;
  transition: transform 0.3s;
}

.hv-item:hover .hv-dot {
  transform: scale(1.3);
}
/* ── Content box — below line ── */
.hv-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  width: 100%;
  margin-top: 12px;
  order: 3;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.hv-item:hover .hv-content {
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-orange);
  transform: translateY(4px);
}

/* Top accent bar inside content */
.hv-content::before {
  display: none;
}

.hv-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.hv-title {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.hv-tamil {
  font-size: 11px;
  color: var(--orange-primary);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.hv-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* ══════════════════════════
   MOBILE — Vertical
══════════════════════════ */
@media (max-width: 768px) {

  /* Remove vertical line on mobile */
  .hv-timeline::before {
    display: none;
  }

  .hv-track {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-left: 0;
  }

  /* Each item centered */
  .hv-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    width: 100%;
    transform: translateY(20px);
  }

  #about.in-view .hv-item {
    transform: translateY(0);
  }

  .hv-item-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Year badge centered */
  .hv-year {
    order: 1;
    margin-bottom: 10px;
    font-size: 12px;
    padding: 4px 16px;
  }

  /* Dot centered */
  .hv-dot {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 10px;
    order: 2;
  }

  /* Content full width centered */
  .hv-content {
    order: 3;
    margin-top: 0;
    padding: 16px 14px;
    text-align: center;
    width: 100%;
  }

  .hv-item:hover .hv-content {
    transform: translateY(4px);
  }

  .hv-icon {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .hv-title {
    font-size: 14px;
  }

  .hv-desc {
    font-size: 12px;
  }

  /* Keep badge fixes */
  .about-img-badge {
    padding: 8px 12px;
    bottom: 10px;
    left: 10px;
    border-radius: 8px;
  }

  .badge-number {
    font-size: 18px;
  }

  .badge-text {
    font-size: 8px;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }
}
/* ── Legacy Closing ── */
.legacy-closing {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Left panel — quote/tagline */
.legacy-left {
 background: #2c1505;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative large quote mark */
.legacy-left::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Raleway", sans-serif;
  line-height: 1;
  pointer-events: none;
}

.legacy-left-title {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 204, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.legacy-quote {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.legacy-quote span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  line-height: 1.6;
}

.legacy-values {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.legacy-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.legacy-value-pill::before {
  content: "✦";
  font-size: 10px;
  opacity: 0.7;
}

/* Right panel — content */
.legacy-right {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.legacy-right-heading {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.legacy-right p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.legacy-right p strong {
  color: var(--orange-primary);
  font-weight: 700;
}

.legacy-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 4px 0;
}

.legacy-final-line {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.legacy-final-line span {
  background: linear-gradient(135deg, #ff6b00, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .legacy-closing {
    grid-template-columns: 1fr;
  }

  .legacy-left {
    padding: 24px 20px;
  }

  .legacy-quote {
    font-size: 15px;
  }

  .legacy-right {
    padding: 24px 20px;
  }
}
/* ══════════════════════════
   LEGACY CLOSING ANIMATIONS
══════════════════════════ */
.legacy-closing {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

#about.in-view .legacy-closing {
  opacity: 1;
  transform: translateY(0);
}

.legacy-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

#about.in-view .legacy-left {
  opacity: 1;
  transform: translateX(0);
}

.legacy-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

#about.in-view .legacy-right {
  opacity: 1;
  transform: translateX(0);
}

.legacy-quote {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

#about.in-view .legacy-quote {
  opacity: 1;
  transform: translateY(0);
}

.legacy-value-pill {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#about.in-view .legacy-value-pill:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

#about.in-view .legacy-value-pill:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

#about.in-view .legacy-value-pill:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.legacy-right-heading {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

#about.in-view .legacy-right-heading {
  opacity: 1;
  transform: translateY(0);
}

.legacy-right p,
.legacy-final-line {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}

#about.in-view .legacy-right p,
#about.in-view .legacy-final-line {
  opacity: 1;
  transform: translateY(0);
}

#about.in-view .legacy-final-line {
  transition-delay: 0.7s;
}

/* ══════════════════════════
   GENERATION SECTION ANIMATIONS
══════════════════════════ */
.generation-section .section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

#about.in-view .generation-section .section-title {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════
   WHY CHOOSE US ANIMATIONS
══════════════════════════ */
.why-section .section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

#about.in-view .why-section .section-title {
  opacity: 1;
  transform: translateY(0);
}

.why-card {
  opacity: 0;
  transform: translateY(20px);
  animation: whyEnter 0.5s ease forwards;
  animation-play-state: paused;
}

#about.in-view .why-card {
  animation-play-state: running;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.18s; }
.why-card:nth-child(3) { animation-delay: 0.26s; }
.why-card:nth-child(4) { animation-delay: 0.34s; }
.why-card:nth-child(5) { animation-delay: 0.42s; }
.why-card:nth-child(6) { animation-delay: 0.50s; }

/* Why card icon bounce on enter */
#about.in-view .why-card .why-icon {
  animation: iconBounce 0.5s ease forwards;
  animation-play-state: running;
}

.why-card:nth-child(1) .why-icon { animation-delay: 0.2s; }
.why-card:nth-child(2) .why-icon { animation-delay: 0.28s; }
.why-card:nth-child(3) .why-icon { animation-delay: 0.36s; }
.why-card:nth-child(4) .why-icon { animation-delay: 0.44s; }
.why-card:nth-child(5) .why-icon { animation-delay: 0.52s; }
.why-card:nth-child(6) .why-icon { animation-delay: 0.60s; }

@keyframes iconBounce {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}