/*Alumni CSS*/

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #121212;
  }
       
  .alumni {
    background-color: #121212;
    color: #ffffff;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin-top: 80px; /* Adjust this value according to your navbar height */
    box-sizing: border-box;
  }
  
  .alumni-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .meetup-button {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.75);
  }
  
  .meetup-button:hover {
    background: linear-gradient(135deg, #feb47b, #ff7e5f);
    transform: translateY(-2px);
  }
  
  .alumni-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .alumni-year {
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
  }
  
  .alumni-year h2 {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .alumni-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .alumni-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    width: 200px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
  }
  
  .alumni-card:hover {
    transform: scale(1.05);
  }
  
  .alumni-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .alumni-info h3 {
    margin: 10px 0 5px;
  }
  
  .alumni-info p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .social-icons a {
    color: #ffffff;
    margin: 0 5px;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #007bff;
  }
  
  @media (max-width: 600px) {
    .alumni-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
  
    .alumni-card {
        width: 100%;
    }
  }