* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7f7f7;
}

.teachers-section {
    padding: 70px 5%;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #003060;
    margin-bottom: 40px;
}

/* Teacher Card */
.teacher-card {
    background: #fff;
    border-radius: 14px;
    padding-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.teacher-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.teacher-card h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #003060;
}

.teacher-card span {
    font-size: 14px;
    color: #777;
}

/* Hover */
.teacher-card:hover {
    transform: translateY(-8px);
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #003060;
}

