/* About Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.about-hero .hero-content {
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: #fff;
}

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

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mission-box,
.vision-box {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-10px);
}

.mission-box i,
.vision-box i {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

.mission-box p,
.vision-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Board of Directors Section */
.board-directors {
  padding: 5rem 0;
  background-color: #fff;
}

.board-directors h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

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

.director-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.director-card:hover {
  transform: translateY(-10px);
}

.director-image {
  height: 300px;
  overflow: hidden;
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.director-card:hover .director-image img {
  transform: scale(1.1);
}

.director-info {
  padding: 2rem;
  text-align: center;
}

.director-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.director-info .position {
  color: #ff6b6b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.director-info .bio {
  color: #666;
  line-height: 1.6;
}

/* Management Team Section */
.management-team {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.management-team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

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

.management-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.management-card:hover {
  transform: translateY(-10px);
}

.management-image {
  height: 300px;
  overflow: hidden;
}

.management-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.management-card:hover .management-image img {
  transform: scale(1.1);
}

.management-info {
  padding: 2rem;
  text-align: center;
}

.management-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.management-info .position {
  color: #ff6b6b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.management-info .bio {
  color: #666;
  line-height: 1.6;
}

/* Student Spotlight Section */
.student-spotlight {
  padding: 5rem 0;
  background-color: #fff;
}

.student-spotlight h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

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

.student-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.student-card:hover {
  transform: translateY(-10px);
}

.student-image {
  height: 250px;
  overflow: hidden;
}

.student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.student-card:hover .student-image img {
  transform: scale(1.1);
}

.student-info {
  padding: 2rem;
  text-align: center;
}

.student-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.student-info p {
  color: #666;
  line-height: 1.6;
}

/* Achievements Section */
.achievements {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.achievements h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-family: "Playfair Display", serif;
}

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

.achievement-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
}

.achievement-card i {
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.achievement-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.achievement-card p {
  color: #666;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .story-text h2,
  .board-directors h2,
  .management-team h2,
  .student-spotlight h2,
  .achievements h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .directors-grid,
  .management-grid,
  .student-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    padding: 1.5rem;
  }
}
