/* =========================================
   ACADEMY FOUNDER SECTION
========================================= */


.academy-founder{

    padding:90px 20px;

    background:#fffaf2;

}



/* MAIN CONTAINER */

.founder-container{

    max-width:1180px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



/* =========================================
   IMAGE AREA
========================================= */


.founder-image{

    display:flex;

    justify-content:center;

}


.founder-frame{

    background:#ffffff;

    padding:20px;

    border-radius:35px;

    border:1px solid #eadfc8;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);

    max-width:420px;

}



.founder-frame img{

    width:100%;

    display:block;

    border-radius:25px;

}





/* =========================================
   CONTENT AREA
========================================= */


.founder-content{

    text-align:left;

}



.section-badge{

    display:inline-block;

    background:#650000;

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}





.founder-content h2{

    margin-top:25px;

    font-size:42px;

    line-height:1.2;

    font-weight:900;

    color:#4d0000;

}





.founder-content h3{

    margin-top:25px;

    font-size:30px;

    font-weight:900;

    color:#650000;

}





.founder-content h4{

    margin-top:8px;

    color:#d4af37;

    font-size:18px;

    font-weight:700;

}





.founder-content p{

    margin-top:20px;

    color:#666;

    font-size:16px;

    line-height:1.8;

}





/* =========================================
   SKILLS TAGS
========================================= */


.founder-skills{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;

}





.founder-skills span{

    background:#650000;

    color:#ffffff;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}





/* =========================================
   MOBILE RESPONSIVE
========================================= */


@media(max-width:900px){


    .founder-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:40px;

    }



    .founder-content{

        text-align:center;

    }



    .founder-content h2{

        font-size:32px;

    }



    .founder-content h3{

        font-size:25px;

    }



    .founder-skills{

        justify-content:center;

    }


}



@media(max-width:480px){


    .academy-founder{

        padding:60px 15px;

    }



    .founder-frame{

        padding:12px;

    }



    .founder-content h2{

        font-size:26px;

    }



    .founder-content p{

        font-size:15px;

    }


}