.team-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .block-38-img img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }
  .team-card:hover img {
    transform: scale(1.05);
  }
  .block-38-body p {
    font-size: 15px;
    color: #555;
  }
  .block-38-subheading {
    color: #888;
    font-style: italic;
  }

  
  .block-38-img img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 255, 255, 0); /* No shadow initially */
  }
  
  .team-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7),
                0 0 30px rgba(0, 255, 255, 0.5),
                0 0 45px rgba(0, 255, 255, 0.3);
  }
  .site-section{
    margin: 0px;
  }