/* About Page Specific Styles */

/* Active nav link */
.nav-link.active {
  color: #000;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 12px 0;
  font-size: 13px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #999;
}

.breadcrumb .current {
  color: #000;
  font-weight: 500;
}

/* About Main */
.about-main {
  padding: 40px 0;
}

/* Hero Section */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 12px;
  padding-left: 60px;
  padding-right: 60px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  margin-bottom: 80px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.mission-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.mission-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.mission-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
  padding: 60px 0;
  margin: 80px -30px;
  border-radius: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  font-family: "Arial", sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* Team Section */
.team-section {
  margin: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f8f9fa;
}

.team-member h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.member-role {
  font-size: 14px;
  color: #667eea;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
}

.value-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.value-item p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .stats-section {
    margin: 60px -20px;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .about-main {
    padding: 24px 0;
  }

  .about-hero {
    padding: 30px 20px;
    margin-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-image img {
    height: 200px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .mission-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stats-section {
    margin: 40px -16px;
    padding: 30px 16px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mission-item,
  .team-member,
  .value-item {
    padding: 20px;
  }
}
