/* About Page Specific Styles */
.about-hero {
  height: 100vh;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  padding: 100px 0;
  background-color: #111;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 100px 0;
  background-color: #000;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.vision-content h2,
.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.vision-text,
.mission-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

/* Values Section */
.values {
  padding: 100px 0;
  background-color: #111;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: #000;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #ffd700;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.value-description {
  margin-bottom: 1rem;
  color: #ccc;
  font-style: italic;
  line-height: 1.6;
}

.value-author {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Timeline Section */
.timeline {
  padding: 100px 0;
  background-color: #000;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ffd700;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background-color: #ffd700;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background-color: #111;
  padding: 2rem;
  border-radius: 15px;
  margin: 0 2rem;
  flex: 1;
  border: 1px solid #ffd700;
}

.timeline-content h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.timeline-content p {
  color: #ccc;
  line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-container::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 60px;
    padding: 0.5rem;
    font-size: 1rem;
  }

  .timeline-content {
    margin: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .about-content h2,
  .vision-content h2,
  .mission-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-content h2,
  .vision-content h2,
  .mission-content h2 {
    font-size: 1.8rem;
  }
}
