/* ===========================================
   PRESIDENT SECTION
=========================================== */

.president-section{

    background:#f8fafc;

}

.president-image{

    position:relative;

}

.president-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.president-badge{

    position:absolute;

    left:25px;

    bottom:25px;

    background:#0b4ea2;

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

}

.president-message{

    position:relative;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.quote-icon{

    font-size:42px;

    color:#0b4ea2;

    margin-bottom:20px;

}

.president-message p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.president-info{

    margin-top:30px;

}

.president-info h4{

    margin:0;

    font-size:24px;

    font-weight:700;

    color:#111;

}

.president-info span{

    color:#777;

}

.president-sign{

    margin-top:20px;

}

.president-sign img{

    max-width:180px;

}

.president-social{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.president-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#0b4ea2;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

}

.president-social a:hover{

    background:#ffc107;

    color:#111;

    transform:translateY(-5px);

}

@media(max-width:991px){

    .president-image{

        margin-bottom:20px;

    }

}

@media(max-width:576px){

    .president-message{

        padding:25px;

    }

    .president-info h4{

        font-size:20px;

    }

}