/* ABOUT PAGE STYLES - NEXTGEN ENTERPRISES */

.about-banner {
  background: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.15) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 7rem 0;
  text-align: center;
}

.about-banner h1 {
  color: var(--white);
  font-size: 3.4rem;
  margin-bottom: 1.2rem;
}

.about-banner p {
  font-size: 1.2rem;
  color: #CBD5E1;
}

/* STORY SECTION */
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: var(--white);
  padding: 0.5rem;
}

.story-img-box img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.philosophy-banner {
  background: rgba(30, 64, 175, 0.04);
  border-left: 5px solid var(--accent);
  padding: 2.2rem;
  border-radius: var(--radius-sm);
  margin: 2.2rem 0;
}

/* MISSION & VISION */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* CORE VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.value-card {
  padding: 3rem 2.4rem;
  border-top: 4px solid var(--highlight);
}

/* OPERATIONAL COMMITMENT */
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.commitment-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: var(--white);
  padding: 0.5rem;
}

.commitment-img-box img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
  .story-grid, .commitment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-banner h1 {
    font-size: 2.6rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
