/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   Tech Wizards Academy
   ============================================ */

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero-content {
  animation: fadeInUp 1s ease;
}

.about-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   STATS SECTION (LARGE)
   ============================================ */
.stats-section {
  padding: 4rem 2rem;
  background: white;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  transition: var(--transition-base);
}

.stat-card-large:nth-child(odd) .stat-icon-large{
  background: green;
}
.stat-card-large:nth-child(odd) .stat-icon-large ion-icon{
  color: rgb(98, 218, 98);
}

.stat-card-large:nth-child(even) .stat-icon-large{
  background: lightcoral;
}
.stat-card-large:nth-child(even) .stat-icon-large ion-icon{
  color: lightpink;
}







.stat-card-large:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.stat-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: red;
  background-color: aqua;
  border-radius: 10%;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-large h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-card-large p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-detail {
  font-size: 0.875rem;
  color: var(--text-light);
  display: block;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  background: var(--background-alt);
  padding: 5rem 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image {
  position: relative;
}

.mission-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.mission-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  color: var(--primary-color);
}

.mission-badge ion-icon {
  font-size: 1.5rem;
}

.mission-content {
  padding: 2rem 0;
}

.mission-text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-point {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 128, 128, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.point-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.point-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.difference-section {
  padding: 5rem 2rem;
  background: white;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.difference-card {
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
  text-align: center;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.difference-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 2rem;
}

.difference-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.difference-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
  padding: 5rem 2rem;
  background: var(--background-alt);
}

.impact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.impact-text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.impact-stat {
  text-align: center;
}

.impact-stat h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    padding-top: 80px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .stats-grid-large {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .stat-card-large h3 {
    font-size: 2rem;
  }
  
  .difference-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .impact-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.75rem;
  }
  
  .mission-badge {
    bottom: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .mission-badge ion-icon {
    font-size: 1.25rem;
  }
  .stat-card-large {
    padding: 2rem 1rem;
  } 
}