/* our-story-section */

.our-story-section {
  padding: 80px 0;
}

.our-story-container {
  gap: 40px;
}

.our-story-title {
  font-weight: 700;
  font-size: 2rem;
  color: #00A64F;
  margin-bottom: 40px;
}

.our-story-text {
  font-weight: 400;
  font-size: 1rem;
}

.img-collage {
  box-shadow: 3.27px 3.27px 19.62px 0px #00853F1F;
  border-radius: 26.16px;
  padding: 18px;
}

.collage-img-card {
  margin-bottom: 18px;
}

.collage-img-name {
  font-weight: 700;
  font-size: 24px;
  color: #00A64F;
  margin-top: 12px;
}

.collage-img-desc {
  font-weight: 400;
  font-size: 18px;
}

.collage-imgs-body {
  justify-content: space-evenly;
  gap: 8px;
}

@media (max-width:1210px) {
  .collage-img-card {
    width: 30%;
  }

  .collage-imgs-body {
    justify-content: space-between;
  }
}

@media (max-width:990px) {
  .our-story-items {
    width: 100%;
  }

  .collage-img-name {
    font-size: 14px;
  }

  .collage-img-desc {
    font-size: 8px;
    margin: 0px;
  }
}


/* teamMembers-section */

.teamMembers-section {
  background-color: #FFFBF5;
  padding: 24px 0;
}

.team-mem-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px !important;
}

.imgS {
  margin: 16px 0;
}

@media (max-width: 402px) {
  .collage-imgs-body {
    justify-content: center;
    gap: 24px;
  }

  .collage-img-card {
    margin-bottom: 0px;
  }
}

@media (max-width:768px) {

  .img-collage {
    border-radius: 8px;
  }

  .collage-img-card {
    width: 40%;
  }


  .teamMembers-section {
    padding: 24px 0;
  }

  .our-story-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #00A64F;
    margin-bottom: 20px;
  }

  .our-story-text {
    font-weight: 400;
    font-size: 12px;
  }
}

.meet-team {
  color: #00A64F;
  font-weight: 700;
  font-size: 32px;
}

/* award section */

.award-section {
  padding: 80px 0;
}

.award-title {
  font-weight: 700;
  font-size: 32px;
  color: #00A64F;
  margin-bottom: 40px;
}

.award-sub-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.award-items {
  gap: 40px;
}

@media (max-width: 768px) {

  .award-section {
    padding: 24px 0;
  }

  .award-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .award-sub-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .award-items {
    gap: 20px;
  }

}

/* collage */

.our-team-collage {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.team-collage-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.team-grid {
  display: grid;
  gap: 15px;
  justify-content: center;
}

.team-card {
  background: #def4de;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 12px;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-img-container {
  /* width: 100%; */
  overflow: hidden;
  width: 137px;
  height: 137px;
  margin: 12px auto 0px auto;
}

.team-img-container img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-name {
  margin: 10px 0 3px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

.team-role {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  padding: 0 5px;
}

/* Mobile (2 columns) */
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-img-container {
    width: 135px;
    height: 135px;
  }
}

/* Tablet (3 columns) */
@media (min-width: 768px) and (max-width: 1227px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-img-container {
    width: 180px;
    height: 180px;
  }
}

/* Desktop (5 columns with fixed 180px images) */
@media (min-width: 1228px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .team-card {
    padding-bottom: 10px;
  }

  .team-img-container {
    width: 180px;
    height: 180px;
  }

  .team-name {
    font-size: 0.9rem;
  }

  .team-role {
    font-size: 0.75rem;
  }
}