/* Teachers Section on Home Page */
.teachers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.teachers-section h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.teachers-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    font-style: italic;
}

.faculty-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.faculty-photo {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faculty-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faculty-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.faculty-message {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.faculty-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.faculty-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 25px;
    text-align: justify;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faculty-message p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .teachers-section {
        padding: 60px 0;
    }
    
    .teachers-section h2 {
        font-size: 2rem;
    }
    
    .faculty-photos {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faculty-photo img {
        height: 300px;
    }
    
    .faculty-message {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .faculty-message h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .faculty-message p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}