.about-hero-section {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  overflow: hidden;

  /* Background image */
  background:
    linear-gradient(
      120deg,
      rgba(11,27,36,0.92) 55%,
      rgba(15,36,48,0.88) 100%
    ),
    url("assets/images/about-hero-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero-section {
  background-attachment: fixed;
}


.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../assets/images/about-hero-bg.webp");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.about-breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.about-breadcrumb span {
  margin: 0 6px;
  color: rgba(255,255,255,0.4);
}

.about-breadcrumb .current {
  color: var(--blue);
}


/* Diagonal accent overlay */
.about-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -140px;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(30,111,185,0.35)
  );
  transform: skewX(-12deg);
  pointer-events: none;
}

/* Ensure content stays above background */
.about-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Diagonal cut for dynamic feel */
.about-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -140px;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(30,111,185,0.25)
  );
  transform: skewX(-12deg);
}

/* Badge */
.about-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

/* Title */
.about-title {
  font-size: 2.6rem;
  font-weight: 700;
  max-width: 540px;
}

/* Text */
.about-text {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-top: 1rem;
}

/* Stats row */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-box h4 {
  margin: 0;
  font-weight: 700;
  color: var(--green);
}

.stat-box span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Image side */
.about-media {
  position: relative;
  z-index: 1;
}

.about-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.12);
}

/* Subtle glow */
.about-media-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle at center,
    rgba(30,111,185,0.35),
    transparent 70%
  );
  z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero-section {
    padding: 4rem 0;
  }

  .about-hero-section::after {
    display: none;
  }

  .about-stats {
    justify-content: space-between;
  }
}


.mv-card {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.mv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30,111,185,0.25));
}

.mv-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: #fff;
}

.mv-image {
  position: absolute;
  right: -20%;
  width: 60%;
  height: 100%;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}


.compliance-badge {
  padding: 1.2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.partner-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(30,111,185,0.3);
}
.timeline {
  max-width: 700px;
  margin: auto;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 2rem;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.year {
  font-weight: 700;
  color: var(--green);
}



.mv-icon {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle at center,
    rgba(30,111,185,0.35),
    transparent 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.mv-icon i {
  font-size: 4.5rem;
  color: rgba(255,255,255,0.35);
}

/* Slight variation for Vision */
.vision-card .mv-icon {
  background: radial-gradient(
    circle at center,
    rgba(42,160,90,0.35),
    transparent 70%
  );
}

.vision-card .mv-icon i {
  color: rgba(255,255,255,0.4);
}
