/* About Page Specific Styles */

.page-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
   background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  

}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: slideInUp 1s ease 0.3s both;
}

/* Story Section */
.story-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2b48ca;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
 background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color:white;
  margin-bottom: 1rem;
}

.value-card p {
  color: white;
  line-height: 1.6;
}

/* Awards Section */
.awards-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #374aa1 0%, #0b0a0c 100%);
  color: white;
}

.awards-section .section-title {
  color: white;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.award-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.award-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.award-card p {
  opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2b48ca;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  text-align: left;
  padding-left: 2rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #2b48ca;
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -60px;
}

.timeline-content h3 {
  color:#2b48ca;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  color: #2d3748;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #718096;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Intersection Observer Animations */
.story-content,
.story-image,
.value-card,
.award-card,
.timeline-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.story-content.animate-in,
.story-image.animate-in,
.value-card.animate-in,
.award-card.animate-in,
.timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for grid items */
.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

.award-card:nth-child(1) { transition-delay: 0.1s; }
.award-card:nth-child(2) { transition-delay: 0.2s; }
.award-card:nth-child(3) { transition-delay: 0.3s; }
.award-card:nth-child(4) { transition-delay: 0.4s; }

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; } 