

/*=============== TEAM SECTION ===============*/
.team {
  padding: 5rem 0 3rem;
  background-color: var(--body-color);
  text-align: center;
}

.team .section__title {
  margin-bottom: 2rem;
  position: relative;
}

.team .section__title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--first-color);
  border-radius: 3px;
}

/*.team_section__subtitle{*/
/*  text-align: center;*/
/*  font-size: 1rem;*/
 /* color: #ddd;  soft gray for elegant look */
/*  margin-top: 0.5rem;*/
/*  margin-bottom: 2.5rem;*/
/*  font-weight: 100;*/
/*  letter-spacing: 0.5px;*/
/*  max-width: 600px;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*  line-height: 1.6;*/
/*}*/

.team_section__subtitle {
  text-align: center;
  font-size: 1rem;
  /*color: #ddd;*/
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-weight: 100;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}



.team__container {
  display: grid;
  gap: 2.5rem;
  justify-content: center;
}

.team__card {
  /* background-color: var(--container-color); */
  border-radius: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1.2s ease-in-out;
}

.team__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--first-color);
  transition: transform 0.4s ease;
}

.team__card:hover .team__img {
  transform: scale(1.1);
}

.team__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-top: 0.5rem;
}

.team__role {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 0.2rem;
}

/*=============== RESPONSIVE ===============*/
@media screen and (min-width: 576px) {
  .team__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .team__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .team__card {
    padding: 2.5rem 2rem;
  }

  .team__img {
    width: 140px;
    height: 140px;
  }
}





/*=============== OUR MISSION SECTION ===============*/
.mission {
  padding: 5rem 0 3rem;
  background-color: var(--body-color);
}

.mission__container {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.mission__data {
  text-align: left;
}

.mission__data .section__title {
  margin-bottom: 1rem;
}

.mission__description {
  color: var(--text-color-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mission__list li {
  color: var(--text-color);
  margin-bottom: 0.6rem;
  font-size: var(--normal-font-size);
}

.mission__list i {
  color: var(--first-color);
  margin-right: 8px;
  font-size: 1.2rem;
}

.mission__img {
  text-align: center;
}

.mission__photo {
  width: 100%;
  max-width: 480px;
  border-radius: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.mission__photo:hover {
  transform: scale(1.05);
}

/*=============== WHY CHOOSE US SECTION ===============*/
.whyus {
  padding: 5rem 0 3rem;
  /* background-color: var(--container-color); */
  text-align: center;
}

.whyus .section__title {
  margin-bottom: 2.5rem;
}

.whyus__container {
  display: grid;
  gap: 2rem;
  justify-content: center;
}

.whyus__card {
  background-color: var(--body-color);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid white;
}

.whyus__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.whyus__icon {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.whyus__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.whyus__description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

/*=============== RESPONSIVE ===============*/
@media screen and (min-width: 768px) {
  .mission__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyus__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
