body {
  background: var(--lightbg);
  font-family: "Poppins", sans-serif;
}

.team-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 28px;
  overflow: hidden;
  padding-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.17);
}

.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
}
@media (max-width: 767px) {
  .team-img {
    height: 300px;
  }
}

.team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s ease;
}

.team-card:hover img {
  transform: scale(1.12);
}

.shape-decor {
  position: absolute;
  width: 130%;
  height: 80px;
  bottom: -52px;
  left: -15%;
  transform: rotate(-7deg);
  background: linear-gradient(45deg, #3a10b9, #055050);
  border-radius: 50%;
  filter: blur(8px);
}

.social-floating {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-floating a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--darkclr);
  font-size: 15px;
  transition: 0.3s;
}

.social-floating a:hover {
  background: var(--themehoverclr);
  color: var(--darkclr);
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.team-role {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--bodyclr);
}

.glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  top: -50px;
  left: -50px;
  filter: blur(20px);
}/*# sourceMappingURL=team.css.map */