/* assets/css/team.css */

  
  /* Blue frame and title for team members */
.team-box {
    border: 4px solid #0dcaf0; /* Bootstrap 'info' blue */
    background-color: #1c1c1c;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    color: #ffffff;
  }
  
  .team-box:hover {
    transform: translateY(-4px);
  }
  
  .team-title {
    color: #0dcaf0; /* Blue title */
  }
  

  