/* Team Card Style - same as contact cards */
.team-card {
  background: #FFFFFF;                /* White background */
  padding: 45px 40px;                 /* Inner spacing */
  border-radius: 18px;                /* Rounded corners */
  border: 1px solid #F9E8CE;         /* Soft golden border */
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),
    0 20px 40px rgba(232,168,32,0.35); /* Strong golden glow */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 25px 50px rgba(232,168,32,0.45);
}

/* Center the image */
.team-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-col {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-col:hover {
    transform: translateY(-12px);
}

