body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .team-section {
    background-color: #fff;
  }
  
  .team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.05);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
  }
  
  .team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .socials a {
    color: #007bff;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .socials a:hover {
    color: #0056b3;
  }

  .team-hover-card {
    height: 340px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .team-hover-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }
  
  .team-hover-card:hover img {
    transform: scale(1.05);
  }
  
  .hover-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 123, 255, 0.85);
    transition: bottom 0.3s ease;
    text-align: center;
  }
  
  .team-hover-card:hover .hover-overlay {
    bottom: 0;
  }
  