
.program-box {
    height: 120px; 
    text-align: center;
    color: white;
    border-radius: 5px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; 
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.program-box i {
    font-size: 30px;
}


.bachelor {
    background-color: #1e3d6e; 
}

.master {
    background-color: #2c6b48; 
}

.phd {
    background-color: #4b2c64; 
}


.program-box:hover {
    background-color: #244082; 
    color: white;
    text-decoration: none;
}

.program-box h4 {
    margin-left: 10px;
}


.program-box h4, .program-box i {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: white;
}


@media (max-width: 768px) {
    .program-box {
        height: 100px; 
        font-size: 14px; 
    }

    .program-box i {
        font-size: 24px; 
    }
}

@media (max-width: 480px) {
    .program-box {
        height: 80px; 
        font-size: 12px; 
    }

    .program-box i {
        font-size: 20px; 
    }

    .col-xs-4 {
        padding-left: 5px; 
        padding-right: 5px;
    }
}

/* Alumni  */        
.alumni-title{
    color: #333333;
    margin-bottom: 20px;
}
.profile-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
    height: 100%; 
}

.profile-card img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile-card .name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.profile-card .degree {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.profile-card .quote {
    font-size: 14px;
    font-style: italic;
    color: #555;
    padding: 15px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}


.profile-card a {
    text-decoration: none !important; 
    color: inherit !important; 
    display: block;
    height: 100%;
}


.profile-card a:focus, a:hover  {
    text-decoration: none !important; 
}


.alumni-news-wrapper {
    display: flex;
    justify-content: space-between;
}

.alumni-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
