@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* SECTION */
.faculty-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 32px;
    color: #1e8449;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* GRID */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.faculty-card {
    background: #ffffff;
    border-radius: 15px;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.faculty-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1e8449;
    margin-bottom: 15px;
}

.faculty-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.faculty-card span {
    font-size: 14px;
    color: #1e8449;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .section-header h1 {
        font-size: 26px;
    }
}
