.boxed-link {
  background: #fff;
  color: #ff3500 !important;
  display: inline-block;
  padding: 10px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ff3500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.boxed-link:hover {
  background: #ff3500;
  color: #fff !important;
  border-color: #ff3500;
  text-decoration: none;
}
.single_team {
  height: 430px; /* same height for all cards */
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.single_team:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 230px; /* uniform image height */
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.mamber_inner {
  padding: 15px;
  height: 180px; /* equal text section height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* General anchor tag styles */
.link {
  color: #ff3500; /* your brand color */
  text-decoration: none;
  transition: all 0.3s ease;
}

.link:hover,
.link:focus {
  color: #fff;
  background-color: #ff3500;
  padding: 3px 6px;
  border-radius: 4px;
  text-decoration: none;
}
