/*=========================================
 ABOUT HERO
=========================================*/

.about-hero{

    margin-top:94px;

    padding:80px 0;

    background:
        linear-gradient(
            135deg,
            #3F3A5F 0%,
            #302b4d 100%
        );

    position:relative;

    overflow:hidden;

}


.about-hero::before{

    content:"";

    position:absolute;

    width:360px;
    height:360px;

    right:-170px;
    top:-170px;

    border:50px solid rgba(212,165,55,.08);

    border-radius:50%;

}


.about-hero::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-130px;
    bottom:-140px;

    border:35px solid rgba(139,0,0,.15);

    border-radius:50%;

}


.about-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    text-align:center;

}


.about-badge{

    display:inline-block;

    padding:7px 17px;

    background:rgba(212,165,55,.12);

    color:#D4A537;

    border:1px solid rgba(212,165,55,.3);

    border-radius:30px;

    font-size:11px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}


.about-hero h1{

    color:#fff;

    font-size:48px;

    line-height:1.25;

    font-weight:700;

    margin:0 0 15px;

}


.about-hero h1 span{

    display:block;

    color:#D4A537;

}


.about-hero-content > p{

    max-width:650px;

    margin:0 auto 20px;

    color:rgba(255,255,255,.72);

    font-size:14px;

    line-height:1.8;

}


.about-breadcrumb{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-size:12px;

}


.about-breadcrumb a{

    color:#D4A537;

    text-decoration:none;

}


.about-breadcrumb i{

    color:rgba(255,255,255,.4);

    font-size:9px;

}


.about-breadcrumb span{

    color:rgba(255,255,255,.6);

}


/*=========================================
 ABOUT INTRO
=========================================*/

.about-intro-section{

    padding:90px 0;

    background:#fff;

}


.about-image-wrapper{

    position:relative;

    padding-right:25px;

    padding-bottom:25px;

}


.about-main-image{

    height:470px;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.1);

}


.about-main-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


.about-experience-box{

    position:absolute;

    right:0;

    bottom:0;

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 22px;

    background:#3F3A5F;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}


.about-experience-box > i{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#D4A537;

    color:#3F3A5F;

    border-radius:10px;

}


.about-experience-box div{

    display:flex;

    flex-direction:column;

}


.about-experience-box strong{

    color:#fff;

    font-size:13px;

}


.about-experience-box span{

    color:rgba(255,255,255,.6);

    font-size:9px;

    margin-top:2px;

}


.about-section-label{

    color:#8B0000;

    font-size:11px;

    font-weight:600;

    letter-spacing:1px;

}


.about-content h2{

    color:#3F3A5F;

    font-size:36px;

    font-weight:700;

    margin:7px 0 15px;

}


.about-content h2 strong{

    color:#8B0000;

}


.about-content p{

    color:#777;

    font-size:12px;

    line-height:1.9;

    margin-bottom:14px;

}


.about-content .about-lead{

    color:#555;

    font-size:14px;

    line-height:1.8;

}


.about-check-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    margin-top:22px;

}


.about-check-list div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#555;

    font-size:11px;

}


.about-check-list i{

    color:#D4A537;

    font-size:13px;

}


/*=========================================
 VISION MISSION
=========================================*/

.vision-mission-section{

    padding:85px 0;

    background:#fafafa;

}


.vision-mission-card{

    height:100%;

    display:flex;

    gap:20px;

    padding:32px;

    background:#fff;

    border:1px solid #eeeeee;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.04);

    transition:.35s ease;

}


.vision-mission-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}


.vm-icon{

    flex-shrink:0;

    width:55px;
    height:55px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:rgba(212,165,55,.12);

    color:#D4A537;

    border-radius:14px;

    font-size:20px;

}


.vision-mission-card > div:last-child > span{

    color:#8B0000;

    font-size:9px;

    font-weight:600;

    letter-spacing:1px;

}


.vision-mission-card h3{

    color:#3F3A5F;

    font-size:20px;

    line-height:1.4;

    font-weight:700;

    margin:6px 0 10px;

}


.vision-mission-card p{

    color:#777;

    font-size:11px;

    line-height:1.8;

    margin:0;

}


/*=========================================
 OBJECTIVES
=========================================*/

.objectives-section{

    padding:90px 0;

    background:#fff;

}


.objective-card{

    height:100%;

    padding:28px 22px;

    background:#fafafa;

    border:1px solid #eeeeee;

    border-radius:17px;

    text-align:center;

    transition:.35s ease;

}


.objective-card:hover{

    background:#3F3A5F;

    transform:translateY(-6px);

}


.objective-icon{

    width:52px;
    height:52px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 15px;

    background:rgba(212,165,55,.12);

    color:#D4A537;

    border-radius:13px;

    font-size:19px;

}


.objective-card h3{

    color:#3F3A5F;

    font-size:16px;

    font-weight:650;

    margin-bottom:9px;

}


.objective-card p{

    color:#777;

    font-size:10px;

    line-height:1.7;

    margin:0;

}


.objective-card:hover h3{

    color:#fff;

}


.objective-card:hover p{

    color:rgba(255,255,255,.6);

}


/*=========================================
 WHY MAEAF
=========================================*/

.why-maeaf-section{

    padding:90px 0;

    background:#3F3A5F;

}


.why-maeaf-title{

    color:#fff;

    font-size:36px;

    line-height:1.3;

    font-weight:700;

    margin:7px 0 15px;

}


.why-maeaf-title strong{

    color:#D4A537;

}


.why-maeaf-text{

    max-width:470px;

    color:rgba(255,255,255,.62);

    font-size:12px;

    line-height:1.9;

    margin-bottom:25px;

}


.why-maeaf-section .about-section-label{

    color:#D4A537;

}


.why-maeaf-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

}


.why-item{

    display:flex;

    gap:14px;

    padding:22px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    transition:.3s ease;

}


.why-item:hover{

    background:rgba(255,255,255,.1);

    transform:translateY(-4px);

}


.why-icon{

    flex-shrink:0;

    width:38px;
    height:38px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:rgba(212,165,55,.12);

    color:#D4A537;

    border-radius:9px;

    font-size:14px;

}


.why-item h3{

    color:#fff;

    font-size:13px;

    font-weight:600;

    margin:0 0 5px;

}


.why-item p{

    color:rgba(255,255,255,.5);

    font-size:9px;

    line-height:1.7;

    margin:0;

}


/*=========================================
 FOCUS AREAS
=========================================*/

.about-focus-section{

    padding:80px 0;

    background:#fafafa;

}


.about-focus-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

    max-width:900px;

    margin:auto;

}


.focus-pill{

    display:flex;

    align-items:center;

    gap:9px;

    padding:12px 18px;

    background:#fff;

    color:#3F3A5F;

    border:1px solid #eeeeee;

    border-radius:30px;

    font-size:11px;

    font-weight:600;

    box-shadow:0 5px 20px rgba(0,0,0,.03);

    transition:.3s ease;

}


.focus-pill i{

    color:#D4A537;

    font-size:13px;

}


.focus-pill:hover{

    background:#3F3A5F;

    color:#fff;

    transform:translateY(-3px);

}


/*=========================================
 ABOUT CTA
=========================================*/

.about-cta-section{

    padding:80px 0;

    background:#fff;

}


.about-cta{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding:45px 50px;

    background:#fafafa;

    border:1px solid #eeeeee;

    border-radius:22px;

}


.about-cta > div:first-child{

    max-width:650px;

}


.about-cta > div:first-child > span{

    color:#8B0000;

    font-size:10px;

    font-weight:600;

    letter-spacing:1px;

}


.about-cta h2{

    color:#3F3A5F;

    font-size:30px;

    font-weight:700;

    margin:7px 0 8px;

}


.about-cta h2 strong{

    color:#8B0000;

}


.about-cta p{

    color:#777;

    font-size:12px;

    margin:0;

}


.about-cta-buttons{

    display:flex;

    gap:10px;

    flex-shrink:0;

}


.about-cta-outline,
.about-cta-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 20px;

    border-radius:30px;

    text-decoration:none;

    font-size:11px;

    font-weight:600;

    transition:.3s ease;

}


.about-cta-outline{

    color:#3F3A5F;

    border:1px solid #3F3A5F;

}


.about-cta-outline:hover{

    background:#3F3A5F;

    color:#fff;

}


.about-cta-button{

    background:#8B0000;

    color:#fff;

}


.about-cta-button:hover{

    background:#D4A537;

    color:#171717;

}


/*=========================================
 ABOUT RESPONSIVE
=========================================*/

@media(max-width:991px){

    .about-hero{

        margin-top:90px;

        padding:70px 0;

    }


    .about-hero h1{

        font-size:42px;

    }


    .about-intro-section,
    .vision-mission-section,
    .objectives-section,
    .why-maeaf-section{

        padding:70px 0;

    }


    .about-main-image{

        height:400px;

    }


    .about-cta{

        flex-direction:column;

        align-items:flex-start;

    }

}


@media(max-width:767px){

    .about-hero{

        margin-top:82px;

        padding:60px 20px;

    }


    .about-hero h1{

        font-size:34px;

    }


    .about-hero h1 span{

        display:inline;

    }


    .about-content h2,
    .why-maeaf-title{

        font-size:30px;

    }


    .about-main-image{

        height:330px;

    }


    .about-check-list{

        grid-template-columns:1fr;

    }


    .vision-mission-card{

        padding:25px;

    }


    .why-maeaf-grid{

        grid-template-columns:1fr;

    }


    .about-cta{

        padding:35px 25px;

    }


    .about-cta h2{

        font-size:26px;

    }


    .about-cta-buttons{

        width:100%;

        flex-direction:column;

    }


    .about-cta-outline,
    .about-cta-button{

        width:100%;

    }

}


@media(max-width:480px){

    .about-hero h1{

        font-size:29px;

    }


    .about-main-image{

        height:280px;

    }


    .about-experience-box{

        padding:14px;

    }

}