/* Faculty Styles */
.faculty-card {
            position: relative;
            overflow: hidden;
        }
        .faculty-card img {
            transition: transform 0.3s ease;
            height:300px;
        }
        .faculty-card:hover img {
            transform: scale(1.05);
        }
        .faculty-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            padding: 10px;
            transition: bottom 0.3s ease;
        }
        .faculty-card:hover .faculty-social {
            bottom: 0;
        }