#alumni {
    background-color: #fff;
    padding: 0px 0;
    text-align: center;
}

#alumni h2 {
    margin-top: 0px;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.alumni-scroll {
    display: flex;
    overflow: hidden; /* Hide scrollbar */
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; /* For smooth scrolling */
    position: relative; /* Ensure child elements are correctly positioned */
    justify-content: flex-start; /* Align items to the left */
}

.alumni-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    flex: 0 0 auto; /* Prevent shrinking */
}

.alumni-card img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.alumni-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.alumni-card p {
    color: #666;
    text-align: left; /* Align text to the left for better readability */
}

.alumni-card.duplicate-card {
    display: none;
}
