/* =========================================================
   FR. AGNEL SCHOOL - ACHIEVEMENTS
========================================================= */


.achievement-page {

    min-height: 100vh;

    background: #f7f9fc;

    font-family: 'Inter', sans-serif;

}


.achievement-container {

    width: 90%;

    max-width: 1100px;

    margin: auto;

}


/* HERO */

.achievement-hero {

    padding: 180px 0 70px;

    background: linear-gradient(
        135deg,
        #0f3d91,
        #174fae
    );

    color: white;

    text-align: center;

}


.page-tag {

    display: inline-block;

    padding: 6px 14px;

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 20px;

    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 700;

}


.achievement-hero h1 {

    margin-top: 18px;

    font-size: 42px;

    font-weight: 800;

}


.achievement-hero p {

    margin-top: 15px;

    font-size: 16px;

}



/* MESSAGE */


.achievement-message {

    padding: 100px 0;

}


.achievement-card {


    max-width: 650px;

    margin: auto;


    background: white;


    padding: 55px 45px;


    text-align: center;


    border-radius: 18px;


    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);


}



.achievement-icon {


    width: 70px;

    height: 70px;


    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;


    background: #f2f6ff;

    border-radius: 50%;


    font-size: 30px;


}



.achievement-card h2 {


    margin-top: 25px;


    color: #0f3d91;


    font-size: 28px;


}



.gold-line {


    width: 55px;

    height: 3px;


    margin: 18px auto 25px;


    background: #d6a63a;

    border-radius: 10px;


}



.achievement-card p {


    color: #555;


    line-height: 1.8;


    font-size: 15px;


}



/* MOBILE */


@media(max-width:700px){


    .achievement-hero {

        padding: 100px 0 55px;

    }


    .achievement-hero h1 {

        font-size: 32px;

    }


    .achievement-card {

        padding: 40px 25px;

    }


}



@media(max-width:390px){


    .achievement-hero h1 {

        font-size: 28px;

    }


    .achievement-card h2 {

        font-size: 22px;

    }


}