/*=========================================
        Achievement Section
=========================================*/

.achievement-section{
    position: relative;
    padding: 20px 8% 35;
    background: #ffffff;
    overflow: hidden;
}

/*==============================
        Heading
==============================*/

.achievement-heading{
    text-align: center;
    margin-bottom: 70px;
}

.achievement-heading span{
    color: #1E3A8A;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.achievement-heading h2{
    font-size: 48px;
    margin: 18px 0;
    font-weight: 700;
    color: #1f2937;
}

.achievement-heading p{
    width: 650px;
    max-width: 100%;
    margin: auto;
    color: #6b7280;
    line-height: 1.7;
}

/*==============================
        Blue Background
==============================*/

.achievement-bg{
    height: 190px;
    background: linear-gradient(135deg,#1E3A8A,#06466b);
    border-radius: 12px 12px 0 0;
}

/*==============================
        Cards
==============================*/

.achievement-cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -120px;
    position: relative;
    z-index: 7;
    flex-wrap: nowrap;
}

.achievement-card{
    width: 330px;
    min-height: 240px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    transition: all .45s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover */

.achievement-card:hover{
    transform: translateY(-18px);
    box-shadow: 0 30px 60px rgba(30,58,138,.25);
}

/* Bottom Line */

.achievement-card::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #06466b;
    transition: .45s ease;
}

.achievement-card:hover::after{
    width: 100%;
}

/*==============================
        Icon
==============================*/

.icon-circle{
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #1E3A8A;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 30px;
    transition: .5s ease;
    box-shadow: 0 10px 25px rgba(30,58,138,.25);
}

.achievement-card:hover .icon-circle{
    background: #06466b;
    transform: rotate(360deg) scale(1.1);
}

/*==============================
        Text
==============================*/

.achievement-card h3{
    margin-top: 25px;
    font-size: 21px;
    color: #1f2937;
    transition: .4s;
    font-weight: 700;
}

.achievement-card h4{
    margin-top: 10px;
    color: #1E3A8A;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.achievement-card:hover h3{
    color: #06466b;
}

.achievement-card:hover h4{
    color: #1E3A8A;
}

/*==============================
        Responsive
==============================*/

@media(max-width:991px){

    .achievement-section{
        padding: 20px 5% 0;
    }

    .achievement-cards{
        gap: 25px;
    }

    .achievement-card{
        width: 300px;
    }

}

@media(max-width:768px){

    .achievement-bg{
        height: 140px;
    }

    .achievement-cards{
        flex-direction: column;
        align-items: center;
        margin-top: -80px;
        margin-bottom: 18px;
    }

    .achievement-card{
        width: 100%;
        max-width: 380px;
    }

    .achievement-heading h2{
        font-size: 36px;
    }

}

@media(max-width:480px){

    .achievement-heading h2{
        font-size: 30px;
    }

    .achievement-card{
        padding: 28px;
    }

    .achievement-card h3{
        font-size: 22px;
    }

    .achievement-card h4{
        font-size: 18px;
    }

}