/* ===== About Page Styles ===== */

.about-page {
  padding-top: 72px;
  min-height: 100vh;
  background: #fff;
}

/* Page Header */
.about-page-header {
  background: linear-gradient(135deg, #1a5f3a 0%, #2C3E50 100%);
  padding: 48px 0;
  text-align: center;
}

.about-page-title {
  font-family: 'Nasalization Rg', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.about-page-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Page Content */
.about-page-content {
  padding: 64px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Headings - Dark blue, bold, underlined */
.about-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2C3E50;
}

.about-section {
  margin-bottom: 48px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  font-family: 'Poppins', sans-serif;
  text-align: justify;
  margin-bottom: 16px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

/* Profile Section Headings */
.profile-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2C3E50;
}

.profile-section {
  margin-bottom: 64px;
}

/* Founders Profile */
.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.founder-image-wrapper {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-bio {
  max-width: 100%;
}

.founder-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

/* Partners Profile */
.partners-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}

.partner-image-wrapper {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.partner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-info-box {
  background: #f8f9fa;
  border: 2px solid #2C3E50;
  border-radius: 12px;
  padding: 24px;
}

.partner-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C3E50;
  text-decoration: underline;
  margin-bottom: 8px;
}

.partner-role {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.partner-qualification {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.partner-tenure {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0;
}

/* Placeholder for missing images */
.profile-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 0.95rem;
}

/* Related Pages Navigation */
.related-pages-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.related-pages-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: #2C3E50;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-pages-nav a:hover {
  background: #1a5f3a;
  color: #fff;
  transform: translateY(-2px);
}

.related-pages-nav a i {
  font-size: 1rem;
}

/* Values Grid */
.values-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #1a5f3a;
  box-shadow: 0 8px 24px rgba(26, 95, 58, 0.15);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a5f3a 0%, #2C3E50 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

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

  .partner-image-wrapper {
    margin: 0 auto;
  }

  .about-section p {
    text-align: left;
  }

  .founder-bio p {
    text-align: left;
  }
}
