*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:tahoma;
}

body{

    direction:rtl;
    background:#eef2f5;
    color:#333;
    line-height:2;

}

.container{

    width:90%;
    max-width:1200px;
    margin:40px auto;

}

/****************************
            BACK
*****************************/

.back-btn{

    display:inline-block;

    background:#053734;
    color:#fff;

    padding:12px 25px;

    text-decoration:none;

    border-radius:8px;

    margin-bottom:25px;

    transition:.3s;

}

.back-btn:hover{

    background:#D4AF37;
    color:#053734;

}

/****************************
            HERO
*****************************/

.hero{

    height:420px;

    background:url("../../images/history.jpg") center center/cover no-repeat;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    margin-bottom:40px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.overlay{

    width:100%;
    height:100%;

    background:rgba(5,55,52,.72);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-align:center;

    padding:20px;

}

.overlay h1{

    font-size:58px;

    margin-bottom:15px;

    color:#D4AF37;

}

.overlay p{

    font-size:24px;

}

/****************************
          SECTIONS
*****************************/

.section{

    background:#fff;

    padding:35px;

    border-radius:18px;

    margin-bottom:35px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.section h2{

    color:#053734;

    margin-bottom:20px;

    font-size:34px;

    border-right:6px solid #D4AF37;

    padding-right:15px;

}

.section p{

    font-size:18px;

    text-align:justify;

    color:#555;

}

/****************************
          TIMELINE
*****************************/

.timeline{

    position:relative;

    margin-top:20px;

}

.timeline::before{

    content:"";

    position:absolute;

    right:90px;

    top:0;

    width:4px;

    height:100%;

    background:#D4AF37;

}

.timeline-item{

    display:flex;

    gap:25px;

    margin-bottom:30px;

    align-items:center;

}

.year{

    width:90px;

    min-width:90px;

    height:90px;

    background:#053734;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    font-weight:bold;

    z-index:2;

}

.timeline .content{

    flex:1;

    background:#f8f9fa;

    padding:18px;

    border-radius:12px;

    box-shadow:0 3px 10px rgba(0,0,0,.05);

    font-size:17px;

}

/****************************
          CARDS
*****************************/

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.card{

    background:#fafafa;

    border-radius:15px;

    padding:30px;

    text-align:center;

    transition:.3s;

    border-top:5px solid #D4AF37;

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.icon{

    font-size:55px;

    margin-bottom:15px;

}

.card h3{

    color:#053734;

    margin-bottom:12px;

    font-size:24px;

}

.card p{

    text-align:center;

}

/****************************
        ACHIEVEMENTS
*****************************/

.achievement-list{

    list-style:none;

}

.achievement-list li{

    background:#fafafa;

    margin-bottom:15px;

    padding:18px;

    border-radius:10px;

    border-right:6px solid #053734;

    font-size:18px;

    transition:.3s;

}

.achievement-list li:hover{

    background:#eef7f5;

    transform:translateX(-5px);

}

/****************************
        STATISTICS
*****************************/

.statistics{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.stat-box{

    background:#053734;

    color:#fff;

    text-align:center;

    padding:35px 20px;

    border-radius:15px;

    transition:.3s;

}

.stat-box:hover{

    background:#07524d;

    transform:translateY(-5px);

}

.stat-box h3{

    font-size:46px;

    color:#D4AF37;

    margin-bottom:10px;

}

.stat-box span{

    font-size:18px;

}

/****************************
        RESPONSIVE
*****************************/

@media(max-width:900px){

.hero{

    height:320px;

}

.overlay h1{

    font-size:42px;

}

.overlay p{

    font-size:18px;

}

.timeline::before{

    display:none;

}

.timeline-item{

    flex-direction:column;

    text-align:center;

}

.year{

    width:75px;
    height:75px;
    font-size:18px;

}

}

@media(max-width:600px){

.container{

    width:95%;

}

.hero{

    height:250px;

}

.overlay h1{

    font-size:34px;

}

.overlay p{

    font-size:16px;

}

.section{

    padding:22px;

}

.section h2{

    font-size:26px;

}

.card{

    padding:20px;

}

.icon{

    font-size:42px;

}

.stat-box h3{

    font-size:34px;

}

}