
/* About Page Styles */
.about-hero {
  min-height: 100vh;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, white, var(--crystal-aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-crystal);
  background: rgba(255, 255, 255, 0.15);
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--crystal-aqua);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.about-stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

.about-section {
  padding: 5rem 0;
}

.about-section:nth-child(even) {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.about-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 229, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover::before {
  opacity: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(31, 75, 153, 0.2);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--crystal-aqua), var(--primary-blue));
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--crystal-aqua), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-crystal);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-card p {
  line-height: 1.6;
  color: #666;
}

.team-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  position: relative;
}

.team-section .about-text h2,
.team-section .about-text p {
  color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--dark-blue);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-crystal);
  background: white;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--crystal-aqua);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.team-card .role {
  color: var(--crystal-aqua);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}

.timeline-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--crystal-aqua), var(--primary-blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-glow);
  width: 45%;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: 100%;
  border-left-color: white;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: 100%;
  border-right-color: white;
  transform: translateY(-50%);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--crystal-aqua), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-crystal);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.timeline-content p {
  line-height: 1.6;
  color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 70px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-content::before {
    right: 100% !important;
    left: auto !important;
    border-right-color: white !important;
    border-left-color: transparent !important;
  }
  
  .timeline-year {
    left: 30px;
  }
}