/* ===== Corporate Premium UI - Core Committee ===== */

.teacher-area {
    background: #f4f6f9;
    padding: 80px 0;
}

/* ===== Featured Card (Founder) ===== */
.featured-member {
    border: 2px solid #0d6efd;
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.15);
    transform: scale(1.02);
}

/* ===== Card Base ===== */
.single-teacher-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e5e8ec;
    text-align: center;
}

/* Hover Effect */
.single-teacher-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== Image ===== */
.single-teacher-box .image {
    padding: 25px 20px 10px;
}

.single-teacher-box .image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #eef1f5;
    transition: 0.3s;
}

/* Hover Zoom */
.single-teacher-box:hover .image img {
    transform: scale(1.05);
}

/* ===== Content ===== */
.single-teacher-box .content {
    padding: 20px;
}

/* Name */
.single-teacher-box .content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a2b49;
    margin-bottom: 6px;
}

/* Role */
.single-teacher-box .content span,
.single-teacher-box .content h6 {
    font-size: 14px;
    color: #6c757d;
    display: block;
}

/* Highlight Role */
.single-teacher-box .content h4 span {
    color: #0d6efd;
    font-weight: 600;
}

/* ===== Divider Line ===== */
.single-teacher-box .content::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 15px;
    opacity: 0.3;
}

/* ===== Social Icons (Below Name & Designation) ===== */
.single-teacher-box .content .social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 0;
}

.single-teacher-box .content .social li {
    list-style: none;
}

.single-teacher-box .content .social li a {
    width: 36px;
    height: 36px;
    background: #f1f3f7;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.single-teacher-box .content .social li a:hover {
    background: #0d6efd;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== Grid spacing ===== */
.teacher-area .row > div {
    margin-bottom: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .featured-member {
        transform: none;
    }

    .single-teacher-box .image img {
        width: 120px;
        height: 120px;
    }
}