* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}


.about-section {
  position: relative;
  text-align: center;
  color: white;
  padding: 8rem 2rem;
  overflow: hidden;
}

.background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.75;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.about-container h1 span {
  color: #00aaff;
}

.about-container p {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 1rem;
}

/* ===== Mission Section ===== */
.mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 125px 30px;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* Left Image */
.mission-image {
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 500px;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.since-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
}

.since-tag span {
  font-size: 16px;
  opacity: 0.85;
}

.since-tag h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}

/* Right Text */
.mission-content {
  flex: 1;
  max-width: 550px;
}

.mission-content h2 {
  font-family: "Figtree", sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Points */
.mission-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}

.mission-points div {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.mission-points span {
  color: #1d65d1;
  font-size: 20px;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
    max-width: 380px;
  }

  .mission-content {
    max-width: 100%;
  }

  .mission-content h2 {
    font-size: 29px;
    text-align: left;
  }

  .mission-content p {
    font-size: 15px;
    text-align: justify;
  }

  .mission-points {
    grid-template-columns: 1fr;
  }

  .since-tag {
    left: 20px;
    bottom: 20px;
  }
}


/* ===== Learning Section ===== */
.learning-section {
  background-color: #fae6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 60px;
  padding: 125px 30px;
  box-sizing: border-box;
  overflow: hidden;
  font-family: "Figtree", sans-serif;
}

/* Header */
.learning-header {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

.learning-title {
  flex: 1;
  min-width: 300px;
}

.learning-desc {
  flex: 1;
  min-width: 300px;
}

.learning-title h2 {
  font-size: 55px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  text-align: left;
}

.learning-desc p {
  font-size: 17px;
  text-align: left;
  color: #444;
  line-height: 1.7;
  max-width: 550px;
}


/* Cards Container */
.learning-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

/* Each Card */
.learning-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

}

.learning-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}



/* Responsive */
@media (max-width: 900px) {
  .learning-header {
    text-align: left;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
  }

  .learning-title h2 {
    font-size: 35px;
  }

  .learning-desc p {
    font-size: 16px;
    text-align: justify;
  }

  .learning-cards {
    gap: 30px;
  }

  .learning-card {
    width: 90%;
    max-width: 380px;
  }
}
