/* Staff Section Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #181818;
    color: #fff;
  }
  
  .container {
    text-align: center;
    padding: 50px 20px;
    /* padding-top: 140px; */
  }
  
  .staff-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  
  }
  
  .staff-description {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .staff-card {
    background: #fff;
    color: #333;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(241, 68, 68, 0.2);
    transition: transform 0.3s ease-in-out;
  }
  
  .staff-card:hover {
    transform: translateY(-10px);
  }
  
  .staff-card img {
    width: 80%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-info {
    padding: 20px;
  }
  
  .card-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  
  .staff-role {
    color: #888;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .social-icons a {
    margin: 0 5px;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #007bff;
  }
  