/* about_style.css */

/* Reset & base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* About Hero Section */
.about-hero {
  padding: 100px 0 40px;
  background-color: #1e3a8a;
  color: #fff;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.text-content {
  flex: 1;
  min-width: 280px;
}

.text-content h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.text-content span,
.text-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: block;
}

.text-content p.italic {
  font-style: italic;
  margin-bottom: 0;
}

.image-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.image-content img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
}

/* Mission Section */
.mission-section {
  background: #fff;
  padding: 80px 0 70px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

.mission-content .image-content {
  flex: 1 1 450px;
  max-width: 500px;
}

.mission-content .image-content img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-content .image-content img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-content .text-content {
  flex: 1 1 450px;
  max-width: 600px;
  margin-bottom: 40px;
}

.mission-section h2 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #1e1e2f;
  margin-bottom: 24px;
  line-height: 1.2;
}

.mission-section p {
  font-size: 1.125rem;
  color: #555;
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .mission-content {
    flex-direction: column;
    text-align: center;
    
  }

  .text-content,
  .image-content {
    max-width: 100%;
  }

  .mission-section {
    border-radius: 0 0 30px 30px;
  }
}

@media (max-width: 768px) {

  .text-content h1 {
    font-size: 1.8rem;
    
  }
    .mentor h2 span, .mentor h2{
        font-size: 8px;
    }
    .mentor img{
        height: 25px;
    }
  .mission-section h2 {
    font-size: 2rem;
  }
 
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.75rem;
  }

  .mission-section h2 {
    font-size: 1.6rem;
  }

  .text-content p,
  .mission-section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
}
