/* ABOUT PAGE CSS */
.pageHeader {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  /* margin-top: var(--header-height); */
}

.pageTitle {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.pageSubtitle {
  color: #cbd5e1;
  font-size: 1.125rem;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .aboutGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.aboutContent p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.statCard {
  background-color: var(--background-color);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border-color);
}

.statCard h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.statCard p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

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

  .statCard {
    padding: 1.25rem 1rem;
  }
}

.imageWrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.aboutGridImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imagePlaceholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.missionVisionSection {
  background-color: var(--background-color);
  position: relative;
}

.missionVisionSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--primary-color);
  z-index: 0;
}

.missionGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .missionGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.missionCard {
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.icon {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.missionCard h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.whyGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .whyGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .whyGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.whyCard {
  padding: 2rem;
  text-align: center;
  background-color: var(--background-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.whyCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.whyCard h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.whyCard p {
  font-size: 0.875rem;
}

.abt-cont {
  line-height: 35px;
  text-align: justify;
}