/* about.css */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero .tagline {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content Container */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Section Styling */
.story-section,
.mission-section,
.values-section,
.cta-section {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.story-section.visible,
.mission-section.visible,
.values-section.visible,
.cta-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
}

/* Achievements Section */
.achievements-section {
  background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.achievements-section.visible {
  opacity: 1;
  transform: scale(1);
}

.achievements-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.achievements-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.achievement-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.achievement-card:hover::before {
  transform: scaleX(1);
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.achievement-card p {
  font-size: 0.95rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.values-list li {
  font-size: 1.1rem;
  color: #4a5568;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
  border-left: 5px solid #667eea;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.values-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.values-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
  border-left-color: #764ba2;
}

.values-list li strong {
  color: #2d3748;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #f7fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero .tagline {
    font-size: 1.1rem;
  }

  .about-hero {
    padding: 60px 20px 40px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-number {
    font-size: 2.5rem;
  }

  .achievements-section {
    padding: 40px 20px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .values-list li {
    font-size: 1rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .tagline {
    font-size: 1rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .achievement-number {
    font-size: 2rem;
  }

  .achievement-label {
    font-size: 1rem;
  }
}