.team-circle-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

.central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #ccc;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.central-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100px;
  margin-left: -50px;
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.team-member:hover img {
  transform: scale(1.3);
}

.member-name,
.member-role {
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .team-circle-container {
    height: 350px;
  }

  .central-logo {
    width: 70px;
    height: 70px;
  }

  .team-member {
    width: 80px;
    margin-left: -40px;
  }

  .team-member img {
    width: 60px;
    height: 60px;
  }
}
