.team-box {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  background: #fff;
  transition: 0.3s;
}

.team-box:hover {
  transform: translateY(-5px);
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-image img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s;
}

.team-image:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

.team-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  opacity: 0;
  transition: 0.4s;
  gap: 15px;
}

.team-image:hover .team-overlay {
  opacity: 1;
}

.team-overlay i {
  font-size: 22px;
  color: #fff;
  background: #007bff;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.team-overlay i:hover {
  background: #0056b3;
}

.pricing-tables {
  position: relative;
  padding: 100px 0;
  overflow: visible;
  z-index: 1;
}

/* Left Decoration */
.tables-left-dec {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.tables-left-dec img {
  width: 280px;
  opacity: 1;
  margin-top: -1000px;
}

/* Right Decoration */
.tables-right-dec {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.tables-right-dec img {
  width: 280px;
  opacity: 1;
}
