/* ===== Board of Directors Section Styling ===== */
.board-member-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 60px;
}

.board-member-box:hover {
    transform: translateY(-5px);
}

/* Board Member Image */
.board-member-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
    border: 4px solid #007bff;
}

.board-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Board Member Text */
.board-member-name {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.board-member-title {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 10px;
}

.board-member-message {
    font-size: 14px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .board-member-box {
        margin-bottom: 30px;
    }
}
