/* Add your custom styles here */
#operation-team-section {
  background-color: #f8f9fa;
}

.operation-team-heading {
  color: #343a40;
}

.operation-team-text {
  color: #6c757d;
}

.operation-team-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.operation-team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #5cb8b2; /* Adjusted the neon color */
}

.operation-team-img {
  border-radius: 10px;
  transition: transform 0.3s;
}

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