.faculty-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.faculty-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 250px;
    overflow: hidden;
    transition: transform 0.3s;
}

.faculty-card:hover {
    transform: translateY(-10px);
}

.faculty-card img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #28669c;
}

.faculty-card h3 {
    margin: 15px 0 5px;
}

.faculty-card p {
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}

.view-more {
    display: inline-block;
    background-color: #28669c;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #ff6f4f;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .faculty-container {
        flex-direction: column;
        align-items: center;
    }
}



