/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #133C72 0%, #1f3a8a 100%);
  padding: 55px 5% 120px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
  background-size: 100% 100px;
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.about-hero-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.about-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.hero-stat h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.hero-stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-hero-image:hover {
  transform: translateY(-10px);
}

.about-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Story Section */
.story-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #162c6b;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle {
  color: #4a5568;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h3 {
  font-size: 28px;
  color: #162c6b;
  margin-bottom: 20px;
  font-weight: 600;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.story-image:hover {
  transform: translateY(-5px);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mission & Vision */
.mission-vision {
  padding: 100px 5%;
  background-color: #f9fbfe;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.mv-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to bottom, #1f3a8a, #133C72);
}

.mv-card.vision::before {
  background: linear-gradient(to bottom, #2a4ea8, #1f3a8a);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1f3a8a, #133C72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  color: white;
  font-size: 28px;
}

.mv-card.vision .mv-icon {
  background: linear-gradient(135deg, #2a4ea8, #1f3a8a);
}

.mv-card h3 {
  font-size: 24px;
  color: #162c6b;
  margin-bottom: 20px;
  font-weight: 600;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 25px;
}

.mv-list {
  list-style: none;
  padding: 0;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #162c6b;
}

.mv-list i {
  color: #1f3a8a;
  font-size: 14px;
}

/* Values Section */
.values-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #1f3a8a;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f7ff, #e1eeff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #1f3a8a;
  font-size: 32px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #1f3a8a, #133C72);
  color: white;
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 20px;
  color: #162c6b;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Team Section */
.team-section {
  padding: 100px 5%;
  background-color: #f9fbfe;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.team-member {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  font-size: 20px;
  color: #162c6b;
  margin-bottom: 5px;
  font-weight: 600;
}

.member-role {
  color: #1f3a8a;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  width: 36px;
  height: 36px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f3a8a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: #1f3a8a;
  color: white;
  transform: translateY(-3px);
}

/* CTA Section */
.about-cta {
  padding: 100px 5%;
  background: linear-gradient(135deg, #1f3a8a 0%, #133C72 100%);
  color: white;
  text-align: center;
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.about-cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 55px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.primary-btn {
  background: white;
  color: #1f3a8a;
  padding-bottom: 30px;
}

.primary-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding-bottom: 30px;
}

.secondary-btn:hover {
  background: white;
  color: #1f3a8a;
  transform: translateY(-3px);
}

/* Active Link */
.nav-links a.active {
  color: #1f3a8a;
  font-weight: 600;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1f3a8a;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-content {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-hero-stats {
    justify-content: center;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 5% 80px;
  }
  
  .about-hero-content h1 {
    font-size: 36px;
  }
  
  .about-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-content h2 {
    font-size: 28px;
  }
  
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .story-section,
  .mission-vision,
  .values-section,
  .team-section,
  .about-cta {
    padding: 60px 5%;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 28px;
  }
  
  .about-hero-content p {
    font-size: 16px;
  }
  
  .mv-card,
  .value-card {
    padding: 25px;
  }
  
  .member-info {
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
}