/*
 * about.css — Dedicated styles for the /about page.
 * Depends on: variables.css and style.css loaded before this file.
 * Brand colors: Navy #1A2B5E · Blue #1565C8 · Green #2E9E3E
 */

/* ─── GLOBAL TYPOGRAPHY RESTRICTION: MAX WEIGHT 600 ───────────────────── */
b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0b1329;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/about_hero_bg.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  transition: transform 9s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.about-hero.in-view .about-hero-bg {
  transform: scale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 35%, rgba(21, 101, 200, 0.35) 0%, rgba(15, 26, 61, 0) 70%),
    radial-gradient(circle at 15% 85%, rgba(46, 158, 62, 0.22) 0%, rgba(11, 19, 41, 0) 60%),
    linear-gradient(135deg, rgba(10, 18, 42, 0.94) 0%, rgba(15, 26, 61, 0.84) 45%, rgba(10, 18, 42, 0.92) 100%);
  pointer-events: none;
}

/* ── Floating Glow Orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: opacity 1s ease;
}

.hero-orb-1 {
  top: 8%;
  right: 12%;
  width: 44rem;
  height: 44rem;
  background: radial-gradient(circle, rgba(21, 101, 200, 0.5) 0%, rgba(21, 101, 200, 0) 70%);
  animation: floatOrb1 16s ease-in-out infinite alternate;
}

.hero-orb-2 {
  bottom: 18%;
  left: 2%;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(46, 158, 62, 0.45) 0%, rgba(46, 158, 62, 0) 70%);
  animation: floatOrb2 20s ease-in-out infinite alternate;
}

.hero-orb-3 {
  top: 40%;
  left: 35%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(245, 158, 11, 0) 70%);
  animation: floatOrb3 14s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 25px) scale(1.08);
  }

  100% {
    transform: translate(20px, -20px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(25px, -30px) scale(1.1);
  }

  100% {
    transform: translate(-15px, 20px) scale(0.92);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, 25px) scale(1.15);
  }

  100% {
    transform: translate(-25px, -15px) scale(0.9);
  }
}

/* ── Main Hero Body ── */
.about-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 0 4rem;
}



/* ── Eyebrow Pill ── */
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(46, 158, 62, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.38);
  color: #7ced93;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 5rem;
  margin-bottom: 2.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(46, 158, 62, 0.2);
}

.eyebrow-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    box-shadow: 0 0 0 0.8rem rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* ── Hero Title ── */
.about-hero-title {
  font-size: clamp(3.0rem, 4.2vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  margin-bottom: 2.2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 800;
  filter: drop-shadow(0 2px 10px rgba(52, 211, 153, 0.3));
}

.hero-title-white {
  color: #ffffff;
  font-weight: 800;
}

/* ── Hero Subtitle ── */
.about-hero-subtitle {
  font-size: clamp(1.45rem, 1.5vw, 1.65rem);
  color: rgba(235, 243, 255, 0.86);
  line-height: 1.7;
  max-width: 58rem;
  margin-bottom: 2.8rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}



/* ── Hero CTA Buttons ── */
.about-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 3rem 1.3rem 2.8rem;
  background: linear-gradient(135deg, #2e9e3e 0%, #1a7a28 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(46, 158, 62, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-about-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46, 158, 62, 0.6);
  background: linear-gradient(135deg, #34b347 0%, #1e872e 100%);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.1rem;
  margin-left: 0.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-about-primary:hover .btn-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.35);
}

.btn-about-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 600;
  border-radius: 5rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.btn-about-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ── RIGHT COLUMN: Hero Showcase Image with Floating Glass Badges ── */
.hero-showcase-wrap {
  position: relative;
  max-width: 52rem;
  margin: 3.5rem auto;
  padding: 2.2rem 1.5rem;
}

.hero-showcase-wrap::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(21, 101, 200, 0.35) 0%, rgba(46, 158, 62, 0.22) 50%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-card {
  position: relative;
  border-radius: 2.6rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 25px 65px rgba(5, 12, 30, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 1;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.hero-showcase-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow:
    0 35px 80px rgba(5, 12, 30, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-showcase-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.hero-showcase-card:hover .hero-showcase-img {
  transform: scale(1.04);
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 18, 42, 0.25) 0%,
      rgba(10, 18, 42, 0.0) 35%,
      rgba(10, 18, 42, 0.55) 100%);
  pointer-events: none;
}

.hero-showcase-tag {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 18, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-showcase-tag i {
  color: #fb923c;
  font-size: 1.1rem;
}

/* ── Floating Stats Badges Over Image (Reduced & Compact) ── */
.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.3rem;
  background: rgba(10, 18, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.3rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(5, 12, 30, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
  min-width: 13rem;
}

.hero-float-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 18px 36px rgba(5, 12, 30, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(10, 18, 42, 0.92);
}

/* Individual Corner Placements */
.hero-float-card-tl {
  top: -1.2rem;
  left: -1.5rem;
  animation: floatCardTL 7s ease-in-out infinite alternate;
}

.hero-float-card-tr {
  top: 1.2rem;
  right: -1.6rem;
  animation: floatCardTR 8s ease-in-out infinite alternate;
}

.hero-float-card-bl {
  bottom: 1.4rem;
  left: -1.6rem;
  animation: floatCardBL 7.5s ease-in-out infinite alternate;
}

.hero-float-card-br {
  bottom: -1.2rem;
  right: -1.4rem;
  animation: floatCardBR 8.5s ease-in-out infinite alternate;
}

@keyframes floatCardTL {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-4px, -5px);
  }
}

@keyframes floatCardTR {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(4px, -5px);
  }
}

@keyframes floatCardBL {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-4px, 5px);
  }
}

@keyframes floatCardBR {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(4px, 5px);
  }
}

.hfc-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Card color themes */
.hero-float-card-blue .hfc-icon {
  background: linear-gradient(135deg, rgba(21, 101, 200, 0.4) 0%, rgba(59, 130, 246, 0.55) 100%);
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: #60a5fa;
}

.hero-float-card-green .hfc-icon {
  background: linear-gradient(135deg, rgba(46, 158, 62, 0.4) 0%, rgba(16, 185, 129, 0.55) 100%);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: #4ade80;
}

.hero-float-card-navy .hfc-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(129, 140, 248, 0.55) 100%);
  border: 1px solid rgba(165, 180, 252, 0.5);
  color: #a5b4fc;
}

.hero-float-card-gold .hfc-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, rgba(251, 191, 36, 0.55) 100%);
  border: 1px solid rgba(252, 211, 77, 0.5);
  color: #fbbf24;
}

.hfc-body {
  display: flex;
  flex-direction: column;
}

.hfc-num {
  display: block;
  font-size: 1.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hfc-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.25;
  margin-top: 0.15rem;
}





/* ─── HERO RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-showcase-wrap {
    max-width: 44rem;
  }

  .hero-float-card {
    padding: 0.75rem 1.1rem;
    min-width: 11.5rem;
    gap: 0.75rem;
  }

  .hero-float-card-tl {
    left: -1rem;
    top: -1rem;
  }

  .hero-float-card-tr {
    right: -1rem;
    top: 1rem;
  }

  .hero-float-card-bl {
    left: -1rem;
    bottom: 1.2rem;
  }

  .hero-float-card-br {
    right: -1rem;
    bottom: -1rem;
  }

  .hfc-icon {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.35rem;
  }

  .hfc-num {
    font-size: 1.65rem;
  }

  .hfc-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-body {
    padding: 7rem 0 3.5rem;
  }

  .about-hero-title {
    font-size: clamp(2.6rem, 5.2vw, 3.8rem);
  }
}

@media (max-width: 575px) {
  .about-hero-body {
    padding: 6rem 0 3rem;
  }

  .about-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-about-primary,
  .btn-about-outline {
    justify-content: center;
    width: 100%;
  }
}

/* ─── SECTION HEADERS (reused across sections) ──────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46, 158, 62, 0.09);
  border: 1px solid rgba(46, 158, 62, 0.28);
  color: #1e7a2e;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 5rem;
  margin-bottom: 1.4rem;
}

.section-heading-main {
  font-size: var(--fluid-section-title, clamp(2.0rem, 2.2vw + 0.2rem, 2.8rem));
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section-heading-main span {
  color: var(--color-blue);
}

.section-lead {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 64rem;
}

/* ─── OUR STORY SECTION ─────────────────────────────────────────────────── */
.about-story-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: #f8fafc;
  position: relative;
}

.about-story-card {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ── Asymmetric Overlapping Photo Gallery ── */
.story-gallery-wrap {
  position: relative;
  padding-bottom: 6.5rem;
  padding-right: 1.5rem;
  min-height: 48rem;
  display: flex;
  align-items: flex-start;
}

/* Floating Establishment Pill */
.story-floating-tag {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(135deg, #1A2B5E 0%, #1565C8 100%);
  color: #ffffff;
  padding: 0.9rem 1.6rem;
  border-radius: 1.4rem;
  box-shadow: 0 12px 30px rgba(26, 43, 94, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  animation: storyTagFloat 4s ease-in-out infinite alternate;
}

@keyframes storyTagFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

.story-tag-icon {
  width: 3.4rem;
  height: 3.4rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6edc84;
}

.story-tag-meta {
  display: flex;
  flex-direction: column;
}

.story-tag-title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.story-tag-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* Primary Portrait Photo (Kedarnath) */
.story-photo-main {
  position: relative;
  width: 82%;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 26, 61, 0.14);
  border: 1px solid rgba(26, 43, 94, 0.08);
  background: #e2e8f0;
  aspect-ratio: 3 / 4;
}

.story-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-gallery-wrap:hover .story-photo-main img {
  transform: scale(1.04);
}

.story-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.8rem 1.8rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 26, 61, 0.88) 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.story-photo-caption i {
  color: #6edc84;
  font-size: 1.4rem;
}

/* Secondary Overlapping Photo (Rajasthan Heritage Family) */
.story-photo-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  border-radius: 2rem;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 50px rgba(15, 26, 61, 0.22);
  z-index: 3;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-photo-sub:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 26, 61, 0.28);
}

.story-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-photo-sub:hover img {
  transform: scale(1.04);
}

.story-photo-sub-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(26, 43, 94, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 3rem;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-photo-sub-badge i {
  color: #ff5252;
}

/* ── Story Content & Lead ── */
.about-story-content {
  padding-left: 1.5rem;
}

.about-story-lead {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── Milestone Timeline ── */
.story-timeline {
  position: relative;
  margin: 2.4rem 0 0;
  padding-left: 4.4rem;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 1.8rem;
  bottom: 1.8rem;
  left: 1.7rem;
  width: 2px;
  background: linear-gradient(180deg, #1565C8 0%, #2E9E3E 50%, #1A2B5E 100%);
  opacity: 0.35;
}

.story-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.story-timeline-item:last-child {
  margin-bottom: 0;
}

.story-timeline-dot {
  position: absolute;
  left: -4.4rem;
  top: 0.4rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1565C8;
  color: #1565C8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(21, 101, 200, 0.16);
  z-index: 2;
  transition: all 0.3s ease;
}

.story-timeline-item:hover .story-timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(21, 101, 200, 0.28);
}

.story-timeline-dot.is-green {
  border-color: #2E9E3E;
  color: #2E9E3E;
  box-shadow: 0 6px 18px rgba(46, 158, 62, 0.16);
}

.story-timeline-dot.is-navy {
  border-color: #1A2B5E;
  color: #1A2B5E;
  background: #f0fdf4;
  box-shadow: 0 6px 18px rgba(26, 43, 94, 0.16);
}

.story-timeline-body {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 1.6rem;
  padding: 1.5rem 1.8rem;
  transition: all 0.25s ease;
}

.story-timeline-item:hover .story-timeline-body {
  background: #ffffff;
  border-color: rgba(21, 101, 200, 0.3);
  box-shadow: 0 8px 24px rgba(15, 26, 61, 0.06);
  transform: translateX(4px);
}

.story-timeline-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}

.story-timeline-year {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  background: #e3f2fd;
  color: #1565C8;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.story-timeline-year.is-green {
  background: #e8f5e9;
  color: #2E9E3E;
}

.story-timeline-year.is-today {
  background: linear-gradient(135deg, #1A2B5E 0%, #1565C8 100%);
  color: #ffffff;
}

.story-timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.story-timeline-desc {
  font-size: 1.38rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .about-story-card {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }

  .about-story-content {
    padding-left: 0;
    margin-top: 2.5rem;
  }

  .story-gallery-wrap {
    padding-bottom: 4rem;
    padding-right: 0;
    max-width: 46rem;
    margin: 0 auto;
    min-height: auto;
  }

  .story-floating-tag {
    left: 1rem;
    top: 1rem;
  }
}

@media (max-width: 575px) {
  .story-timeline {
    padding-left: 3.6rem;
  }

  .story-timeline::before {
    left: 1.4rem;
  }

  .story-timeline-dot {
    left: -3.6rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .story-timeline-body {
    padding: 1.3rem 1.4rem;
  }

  .story-timeline-header {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .story-timeline-title {
    font-size: 1.45rem;
  }
}

/* ─── CORE VALUES SECTION ───────────────────────────────────────────────── */
.about-values-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: #f8fafc;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 3.5rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 2.4rem;
  padding: 3.4rem 2.8rem 2.8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 26, 61, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
}

/* Top Accent Glow Bar */
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 26, 61, 0.12);
}

.value-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Header: Icon Box + Number Watermark */
.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.value-icon-box {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.value-card:hover .value-icon-box {
  transform: scale(1.08) rotate(3deg);
}

.value-card-num {
  font-size: 3.2rem;
  font-weight: 600;
  color: #0f172a;
  opacity: 0.10;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-card-num {
  opacity: 0.22;
  transform: translateY(-2px);
}

/* Content Body */
.value-card-body {
  flex: 1;
}

.value-card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.9rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.value-card-desc {
  font-size: 1.48rem;
  color: #64748b;
  line-height: 1.68;
  margin: 0;
}

/* Footer Tag */
.value-card-footer {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
}

.value-tag {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #f8fafc;
  padding: 0.45rem 1.1rem;
  border-radius: 3rem;
  border: 1px solid #eef2f6;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.value-card:hover .value-tag {
  background: #ffffff;
}

/* ── Color Themes ── */
/* 01 Blue */
.value-card--blue::before {
  background: linear-gradient(90deg, #1565C8, #42A5F5);
}

.value-card--blue .value-icon-box {
  background: linear-gradient(135deg, #1565C8 0%, #0D47A1 100%);
  box-shadow: 0 10px 24px rgba(21, 101, 200, 0.32);
}

.value-card--blue .value-tag i {
  color: #1565C8;
}

.value-card--blue:hover {
  border-color: rgba(21, 101, 200, 0.3);
}

/* 02 Green */
.value-card--green::before {
  background: linear-gradient(90deg, #2E9E3E, #6EDC84);
}

.value-card--green .value-icon-box {
  background: linear-gradient(135deg, #2E9E3E 0%, #1B5E20 100%);
  box-shadow: 0 10px 24px rgba(46, 158, 62, 0.32);
}

.value-card--green .value-tag i {
  color: #2E9E3E;
}

.value-card--green:hover {
  border-color: rgba(46, 158, 62, 0.3);
}

/* 03 Amber */
.value-card--amber::before {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.value-card--amber .value-icon-box {
  background: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.32);
}

.value-card--amber .value-tag i {
  color: #D97706;
}

.value-card--amber:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

/* 04 Cyan */
.value-card--cyan::before {
  background: linear-gradient(90deg, #0EA5E9, #38BDF8);
}

.value-card--cyan .value-icon-box {
  background: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.32);
}

.value-card--cyan .value-tag i {
  color: #0284C7;
}

.value-card--cyan:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

/* 05 Emerald */
.value-card--emerald::before {
  background: linear-gradient(90deg, #10B981, #34D399);
}

.value-card--emerald .value-icon-box {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.32);
}

.value-card--emerald .value-tag i {
  color: #059669;
}

.value-card--emerald:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

/* 06 Indigo */
.value-card--indigo::before {
  background: linear-gradient(90deg, #6366F1, #818CF8);
}

.value-card--indigo .value-icon-box {
  background: linear-gradient(135deg, #6366F1 0%, #312E81 100%);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.32);
}

.value-card--indigo .value-tag i {
  color: #4F46E5;
}

.value-card--indigo:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }

  .value-card {
    padding: 2.8rem 2.4rem;
  }
}

@media (max-width: 575px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .value-card {
    padding: 2.4rem 2rem;
    border-radius: 2rem;
  }

  .value-card-title {
    font-size: 1.65rem;
  }

  .value-icon-box {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 2rem;
  }

  .value-card-num {
    font-size: 2.8rem;
  }
}

/* ─── TEAM SECTION ───────────────────────────────────────────────────────── */
.about-team-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
}

.about-team-img-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2rem 6rem rgba(26, 43, 94, 0.2);
}

.about-team-img {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
  transition: transform 0.7s ease;
}

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

.team-content-side {
  padding-left: 5rem;
}

.team-feature-list {
  list-style: none;
  margin: 3rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.team-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.team-feature-list li .tfl-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1A2B5E, #1565C8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.team-feature-list li .tfl-body strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.3rem;
}

.team-feature-list li .tfl-body span {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .team-content-side {
    padding-left: 0;
    padding-top: 3.5rem;
  }
}

/* ─── WHY CHOOSE US SECTION ─────────────────────────────────────────────── */
.about-why-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: linear-gradient(135deg, #0f1a3d 0%, #1a2b5e 60%, #1565C8 100%);
  position: relative;
  overflow: hidden;
}

.about-why-section::before {
  content: '';
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: rgba(46, 158, 62, 0.07);
  pointer-events: none;
}

.about-why-section::after {
  content: '';
  position: absolute;
  bottom: -10rem;
  left: -8rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.about-why-header .section-eyebrow {
  background: rgba(110, 220, 132, 0.15);
  border-color: rgba(110, 220, 132, 0.35);
  color: #6edc84;
}

.about-why-header .section-heading-main {
  color: #ffffff;
}

.about-why-header .section-heading-main span {
  color: #6edc84;
}

.about-why-header .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  padding: 2.8rem 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(110, 220, 132, 0.35);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(46, 158, 62, 0.25), rgba(21, 101, 200, 0.25));
  border: 1px solid rgba(110, 220, 132, 0.35);
  color: #6edc84;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, rgba(46, 158, 62, 0.45), rgba(21, 101, 200, 0.35));
}

.why-card-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.why-card-desc {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── MILESTONES / TIMELINE SECTION ─────────────────────────────────────── */
.about-milestones-section {
  padding: clamp(3.5rem, 4.5vw, 4.8rem) 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
}

.milestones-timeline {
  position: relative;
  margin-top: 3.5rem;
}

.milestones-timeline::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-blue), var(--color-green));
  border-radius: 3px;
}

.milestone-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}

.milestone-item {
  position: relative;
  padding-top: 5.6rem;
  text-align: center;
}

.milestone-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-navy));
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

.milestone-item:hover .milestone-dot {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 0 5px rgba(21, 101, 200, 0.35);
}

.milestone-year {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.milestone-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.milestone-desc {
  font-size: 1.28rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

@media (max-width: 991px) {
  .milestones-timeline::before {
    display: none;
  }

  .milestone-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .milestone-item {
    padding-top: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .milestone-dot {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-top: 0.3rem;
  }

  .milestone-item:hover .milestone-dot {
    transform: scale(1.1);
  }
}

@media (max-width: 575px) {
  .milestone-items {
    grid-template-columns: 1fr;
  }
}


/* ─── CTA SECTION ───────────────────────────────────────────────────────── */
.about-cta-section {
  padding: clamp(3.8rem, 4.8vw, 5.2rem) 0;
  background: linear-gradient(135deg, #1A2B5E 0%, #1565C8 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.about-cta-label {
  display: inline-block;
  background: rgba(110, 220, 132, 0.18);
  border: 1px solid rgba(110, 220, 132, 0.40);
  color: #6edc84;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 5rem;
  margin-bottom: 2rem;
}

.about-cta-title {
  font-size: clamp(2.2rem, 2.8vw, 3.0rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.about-cta-desc {
  font-size: clamp(1.45rem, 1.5vw, 1.65rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 54rem;
  margin: 0 auto 3.5rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3rem;
  background: #ffffff;
  color: var(--color-navy);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  color: var(--color-blue);
}

.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, #2e9e3e 0%, #1e7a2e 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 5rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(46, 158, 62, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-green:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 158, 62, 0.55);
}

/* ─── BREADCRUMB ────────────────────────────────────────────────────────── */
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumb a:hover {
  color: #6edc84;
}

.about-breadcrumb .sep {
  opacity: 0.45;
}