/* Container for the teacher cards */
.teacher-card {
    background-color: #006852;
    border-radius: 10px;
    padding: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

/* Make image circular and add border */
.teacher-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #e4a108;
}

/* Hover effect for the card */
.teacher-card:hover {
    transform: scale(1.05);
}

/* Teacher name and subject styling */
.teacher-card p {
    font-size: 16px;
    margin-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .teacher-card {
        padding: 10px;
    }
    .teacher-card img {
        width: 100px;
        height: 100px;
    }
    .teacher-card p {
        font-size: 14px;
    }
}
