/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero .stat-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.mission-section .card {
  transition: transform 0.3s;
}

.mission-section .card:hover {
  transform: translateY(-10px);
}

.story-section img {
  border-radius: 15px;
}

.feature-box {
  background: white;
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.team-card {
  transition: all 0.3s;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card img {
  transition: transform 0.3s;
}

.team-card:hover img {
  transform: scale(1.1);
}

.testimonial-card {
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-buttons .btn {
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .about-hero .stat-item h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons .btn {
    display: block;
    margin-bottom: 1rem;
  }
  
  .cta-buttons .btn.me-3 {
    margin-right: 0 !important;
  }
}