/* About Page Modern Styles */

.about-hero {
  padding: 180px 0 100px;
  background-color: #F8FAFC;
  background-image:
    linear-gradient(rgba(248, 250, 252, 0.3), rgba(248, 250, 252, 0.5)),
    url('../images/img8.jpg');
  background-size: cover;
  background-position: center;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 24px;
}

.about-hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.about-hero p {
  font-size: 1.15rem;
  color: var(--text-main);
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.years-badge {
  position: absolute;
  bottom: -30px;
  left: 40px;
  background: var(--bg-white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.years-badge strong {
  display: block;
  font-size: 2.5rem;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.years-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Stats */
.stats-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-white);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Mission Vision */
.mv-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  padding: 60px;
  border-radius: var(--radius-xl);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.mv-icon svg {
  color: white;
  width: 32px;
  height: 32px;
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
}

.mv-mission {
  background: linear-gradient(rgba(15, 118, 110, 0.9), rgba(15, 118, 110, 0.9)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.mv-vision {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1542744094-3a31f272c490?q=80&w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.mv-card h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Core Values */
.values-section {
  padding: 100px 0;
  background-color: #e2e8f0;
  /* Darker slate-grey for extremely visible contrast */
}

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

.value-item {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-item .icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item .icon svg {
  color: white !important;
  width: 32px;
  height: 32px;
}

.value-item:hover .icon {
  transform: rotate(-5deg) scale(1.1);
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.value-item p {
  color: var(--text-main);
  line-height: 1.7;
}

/* Leadership */
.leadership-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.leader-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.leader-card h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.leader-card span {
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blue CTA */
.blue-cta {
  padding: 80px 0;
  background: var(--bg-white);
}

.blue-cta-card {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1586075010923-2dd4570fb338?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon-wrapper svg {
  color: white;
  width: 40px;
  height: 40px;
}

.blue-cta-card h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.blue-cta-card p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .years-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -30px;
    display: inline-block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}