/* Highlight one specific square */

.hero {
    background-image: url('../../images/hero.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
    z-index: 1;
    padding: 7% 20px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: rgba(0, 0, 0, 0.568);
    z-index: -1;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rounded-image {
    width: 100%;
    max-width: 500px;
    height: 460px;
    object-fit: cover;
    border-radius: 48px;
    z-index: 2;
    position: relative;
}

/* الركن الأزرق خلف الصورة */
.blue-corner {
    position: absolute;
    bottom: -33px;
    right: -38px;
    width: 61%;
    height: 46%;
    background-color: #0056a6;
    border-radius: 40px;
    z-index: 1;
}



/*articles*/
.articles {
    background-color: #015AAA;
}

.articles .span_articel {
    background-color: #1F86FF40;
    color: var(--white);
}

.articels_btn {
    background-color: var(--white);
    color: var(--main);
    border: 1px solid var(--white);
    position: absolute;
    bottom: -26px;

}

.articels_btn:hover {
    border: 1px solid var(--white);
    background-color: var(--main);
    color: var(--white);


}

.articel_btn {
    color: #fff;
}

.articel_btn i:lang(en) {
    transform: scaleX(-1);
}

.articel_btn:hover {
    color: #fff;
}