.team-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  width: calc(25% - 23px); /* 4 per row */
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .team-card {
    width: calc(50% - 15px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-card {
    width: 100%;
  }
}


/* Fix footer link visibility */

.footer_widget_nav li a {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.footer_widget_nav li a:hover {
  color: #ffd133 !important;   /* nice yellow hover */
}

.footer_bottom a {
  color: #333 !important;
}

.footer_bottom a:hover {
  color: #000 !important;
}

.footer_bottom {
    padding: 0 !important;
	text-align: center !important;
}

.footer_bottom p {
    margin: 0;
}