/* 1. Curriculum Section */
.curriculum-section {
  background-color: #4b0082;
  margin-top: 100px;

  width: 100%;
  color: #fff;
  padding: 50px 0;
}

.curriculum-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* Content*/
.curriculum-title {
  letter-spacing: -0.24px;
  font-size: 24px;
  font-weight: 700;
}

.curriculum-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin-top: 1rem;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
}

.curriculum-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.curriculum-icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 40px;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .curriculum-content {
    padding: 0 10%;
  }

  .curriculum-features {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .curriculum-item {
    flex-direction: column;
    align-items: start;
  }

  .curriculum-text {
    font-size: 16px;
    font-weight: 400;
  }
}

/* 2. Education Section */
.education-section {
  background-color: rgba(216, 185, 255, 0.4);
  width: 100%;
  padding: 100px 0;
}

.education-content {
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.education-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 3rem;
}

.education-row {
  display: flex;
  gap: 3rem;

  width: 100%;
  margin-left: 0;
}

/* 2.1 The Education card */
.education-card {
  border-radius: 10px;
  background-color: #fff;

  width: 100%;
  padding: 50px 50px;

  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: start;
  flex-basis: 0;
}

.education-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.education-card-title {
  color: #4b0082;
  letter-spacing: -0.32px;
  font: bold;
  font-size: 28px;
  margin: 0 0;
}

.education-card-icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 72px;
}

.education-card-text {
  color: #000;
  letter-spacing: -0.22px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .education-row {
    flex-direction: column;
  }
}

/* 3. Interest Pathway Section */
.pathway-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.pathway-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 0 0;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

/* Individual Item */
.pathway-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pathway-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pathway-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #4b0082;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
}

.pathway-content {
  padding: 20px;
}

.pathway-content p {
  margin: 10px 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card img {
    height: 200px;
  }
}

/* 5. Starseek Section */
.starseek-section {
  background-color: #4b0082;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 100%;
  padding: 100px 0;
  color: #4b0082;
}

.starseek-content {
  display: flex;
  flex-direction: column;
}

.starseek-title {
  text-align: center;
  color: #fff;
}

.starseek-description {
  color: #fff;
  letter-spacing: -0.48px;
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
}

/* Feature Grid */
.starseek-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;

  width: 100%;
  margin-top: 24px;
}

.starseek-feature {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;

  width: 70%;
  padding: 20px 40px;

  border-radius: 10px;
  background-color: #fff;
}

.starseek-feature-title {
  letter-spacing: -0.56px;
  font-size: 24px;
  font-weight: 700;
}

.starseek-feature-description {
  font-size: 20px;
}

.left {
  margin-right: auto;
}

.right {
  margin-left: auto;
}

@media (max-width: 768px) {
  .starseek-feature-grid {
    padding: 0 5%;
    gap: 2rem;
  }
  .starseek-feature {
    width: 82%;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .startseek-feature-grid {
    align-items: center;
  }

  .starseek-feature {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  .starseek-feature-title {
    margin-bottom: 0;
    text-align: center;
  }

  .starseek-feature-description {
    text-align: center;
    font-size: 16px;
  }

  .left,
  .right {
    margin: 0 0;
  }
}

/* #6 Course Showcase Section */

.course-showcase-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.course-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-showcase-title {
  text-align: center;
}

.course-showcase-description {
  color: #000;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 80%;
  font-size: 20px;
  text-align: center;
}

/* Course Features */
.course-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  width: 100%;
}

.course-features-row {
  display: flex;
  gap: 20px;
  flex: 1;
}

.course-feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 22%;

  flex-grow: 1;
  flex-shrink: 0;
}

.course-feature-content {
  flex-grow: 1;
  flex-shrink: 0;

  color: #4b0082;
  width: 100%;
  padding: 35px 20px;
  border-radius: 10px;

  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  text-align: center;

  display: flex;
  align-items: center;
}

.course-feature-purple {
  background-color: rgba(216, 185, 255, 0.4);
}

.course-feature-indigo {
  background-color: #4b0082;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
  .course-feature-content {
    font-size: 18px;
  }

  .course-showcase-description {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .course-feature-content {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .course-features-row {
    flex-wrap: wrap;
  }

  .course-feature-item {
    width: 45%;
  }
}
