html {
    scroll-behavior: smooth;
}

.navbarLayout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contacts_header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B2540;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 5px 5%;
    gap: 20px;

}

.contacts_header a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: #fff;
    margin-inline-end: 10px;
    vertical-align: middle;
}

.contacts_header .viewLinks {
    display: flex;
    gap: 10px;
}

.banned_slider {
    min-height: 100svh;
}

.banned_slider .innerSlide {
    min-height: 100svh;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banned_slider .innerSlide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.596);
    z-index: 1;
}

.banned_slider .innerSlide .dataBox {
    position: relative;
    z-index: 2;
    max-width: 80%;
    translate: 0 30%;
    opacity: 0;
    transition: 0.6s 0.3s all ease-in-out;
}

.banned_slider .innerSlide .dataBox.active {
    translate: 0 0;
    opacity: 1;
}

.banned_slider .innerSlide .dataBox > * {
    text-align: center;
    color: #fff;
}

.banned_slider .innerSlide .dataBox p {
    font-size: 1.5rem;
    margin-bottom: 0px;
}

.banned_slider .innerSlide .dataBox h2 {
    font-size: 4rem;
}

.banned_slider .innerSlide .dataBox .viewBTNs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    margin-top: 20px;
    align-items: stretch;
    gap: 50px;
    transition: inherit;
}

.banned_slider .innerSlide .dataBox.active .viewBTNs {
    gap: 10px;
}

.banned_slider .innerSlide .dataBox .viewBTNs a {
    padding: 10px;
    font-size: 1.1rem;
    border: 2px solid currentColor;
    color: #fff;
    text-decoration: none;
}

.banned_slider .innerSlide .dataBox .viewBTNs a.active,
.banned_slider .innerSlide .dataBox .viewBTNs a:hover {
    background-color: #1B2540;
    border-color: #1B2540;
    width: 50%;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 0 auto;
}

.services_Sec {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2rem 0;
    flex-wrap: wrap;
}

.services_Sec .service_innerView {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px 0;
    padding-bottom: 0;
    height: 100%;
    border-radius: 10px;
}

.services_Sec .service_innerView h3 {
    font-weight: 700;
}

.services_Sec .service_innerView .iconIMG {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #1b2540;
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 5px;
    overflow: hidden;
    margin-block: 10px;
}

.services_Sec .service_innerView .iconIMG::before {
    position: absolute;
    top: 50%;
    left: -30px;
    translate: 0 -50%;
    rotate: 15deg;
    content: "";
    display: block;
    width: 25px;
    height: 150%;
    background-color: #fff;
    filter: blur(5px);
    opacity: 0.3;
    animation: repeater 2s ease-in-out infinite;
}

.services_Sec .service_innerView .iconIMG img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.services_Sec .service_innerView h3 {
    margin: 0;
}

.services_Sec .service_innerView .service_desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;

    padding-inline: 10%;
    text-align: justify;
    margin-bottom: 5px;
}

.services_Sec .service_innerView .linker {
    border-top: inherit;
    width: 100%;
    color: inherit;
    text-decoration: none;
    padding: 10px;
}

.choose-box-layout1 > .icon {
    display: inline-flex;
    aspect-ratio: 1/1;
    width: 80px;
    border-radius: 50%;
    padding: 20px;
}

.contact_form_section {
    position: relative;
    margin-top: 5svh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: #4f5b7f;
    background-blend-mode: multiply;
}

.contact_form_section .overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
}

.contact_form_section .contact_icon {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 50%;
    translate: -50% -50%;
    z-index: 5;
    font-size: 2rem;
    color: #000;
}

.contact_form_section::before {
    content: "";
    display: inline-block;
    aspect-ratio: 1/1;
    width: 90px;
    rotate: 45deg;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    top: 0;
    z-index: 2;
}

.contact_form_section form {
    position: relative;
    z-index: 2;
    padding: 5svh 5svh 3svh;
    max-width: 70%;
    background-color: #1b2540eb;
    color: #fff;
    border-radius: 5px;
}

.servicesPagination {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 1svh;
    padding: 10px 15px;
}

.servicesPagination::-webkit-scrollbar {
    height: 3px;
}

.servicesPagination .serviceBTN {
    background-color: #ffffff46;
    border: 1px solid currentColor;
    text-align: center;
    border-radius: 5px;
    padding: 2px;
    white-space: nowrap;
}

.footer-area-bottom p {
    border-top: 1px solid #e48e28;
    padding-top: 30px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: #fff;
    background-color: #1B2540;
    padding: 18px;
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: #fff;
}


@keyframes repeater {
    100%,
    0% {
        visibility: visible;
        left: -30px;
    }
    97% {
        visibility: visible;
        left: 100px;
    }
    98% {
        visibility: hidden;
        left: 100px;
    }
    99% {
        visibility: hidden;
        left: -30px;
    }
}

@media (width<=800px) {
    .servicesPagination {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (width<=450px) {
    :root {
        --swiper-navigation-size: 30px;
    }

    .contact_form_section form {
        max-width: none;
        width: 90%;
        margin-bottom: -5svh;
    }

    .banned_slider .innerSlide .dataBox h2 {
        font-size: 3rem;
    }

    .servicesPagination {
        grid-template-columns: repeat(1, 1fr);
    }
}

.contacts{
    display: flex;
    align-items: center;
    gap: 20px;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 250px);
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 250px);
    right: auto;
}


@media(max-width:991px){
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: var(--swiper-navigation-sides-offset, 10px);
        left: auto;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 10px);
        right: auto;
    }
}




.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 13px !important;
    color: #fff;
    font-weight: 600;
}


.stats-section {
    background: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-box {
    text-align: center;
    padding: 15px 0;
}

.stat-box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #1B2540;
}

.stat-box p {
    font-size: 16px;
    color: #1B2540;
    margin-top: -20px;
    font-weight: bold;
}
.stats-wrapper {
    display: flex;
    gap: 160px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    padding-bottom: 10px;
}

@media(max-width:768px){
    .stats-wrapper {
        display: flex;
        /* gap: 60px; */
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .stats-wrapper {
        display: flex;
        gap: 60px;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: center;
        padding-bottom: 10px;
    }
}

.stat-box {
    min-width: 150px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;

}

.stats-wrapper::-webkit-scrollbar {
    height: 6px;
}

.stats-wrapper::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}



.img-icon-slider img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.img-card-slider img {
    width: 100%;
    height: 230px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media(max-width:767px) {

    .img-card-slider img {
        width: 100%;
    }

    .main-hero-section {
        padding-top: 0;
    }
}


.title-slider-tow {
    padding-top: 5px;
}

.title-slider-tow h3{
    text-align:center;
}

.title-slider-tow h3 a {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    color: #050505;
}

.title-slider-tow p {
    font-size: 15px;
    color: var(--main-text-color);
}

.main-card-slider {
    position: relative;
}


.lifet-postion {
    position: absolute;
    color: #ffffff;
    top: 20px;
    left: 20px;
    background-color:#1B2540;
    padding: 5px 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-size: 14px;
}

.btn-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-slider button {
    font-size: 15px;
    color: #050505;
    background-color: #B8B6B6;
    padding: 6px 30px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: none;
}

.main-slery {
    line-height: 1px;
}

.main-slery p {
    color: #000000;
    font-size: 15px;
}

.main-slery del {
    font-size: 12px;
}

.card-footer-slider {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* height: 145px; */
    z-index: 111111111;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-card-slider {
    height: 300px;
    margin: 0 10px;
}

.slick-dots {
    position: absolute;
    bottom: -70px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color:#1B2540;
    z-index: 999999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dotted.slick-slider {
    margin-top: 25px !important;
}

.slick-dots {
    display: none !important;
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    color: #fff !important;
    height: 40px;
    background:#1B2540 !important;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px soli #1B2540;
    outline: none;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    z-index: 99999999999;
}

.slick-prev:hover, .slick-next:hover {
    background:#1B2540 !important;
    border-color: #fff;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 22px;
    line-height: 1;
    padding-top: 2px;
    opacity: 1;
    color: var(--main-bg-color);
    transition: color 0.3s ease-in-out;
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #fff;
}

/* .slick-prev {
    left: -260px !important;
}

.slick-next {
    right: -60px;
} */

.courses-section {
    background: #f8f9fa;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.course-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08), 0px 10px 10px rgba(0, 0, 0, 0.05);

    margin: 10px 10px;
    transition: 0.3s;
    height: 375px;
}

.icon-box {
    width: 60px;
    height: 70px;
}

.icon-box img {
    width: 100%;
    height:60px !important;
    object-fit: contain;
}
.section-title-light h2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #959595;
    font-weight: bold;
}

.section-title-light h2::before,
.section-title-light h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #959595;
    margin: 0 10px;
}



.course-title {
    font-size: 19px;
    font-weight:600;
    color: #111;
    margin-bottom: 10px;
}

.course-description {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-more {
    display: inline-block;
    padding: 5px 30px;
    background: #0d1b34;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 13px;
}

.btn-more:hover {
    background:#1B2540;
    color: #fff;
}


.title-one p{
    padding: 2px 180px;
    font-size: 13px;
}


@media(max-width:991px){
    .title-one p{
        padding: 1px 10px;
        font-size: 13px;
    }
}


.title-one h2 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight:400;
    padding: 0 20px;
    color: #959595;
}

.title-one h2::before,
.title-one h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #959595;
}

.title-one h2::before {
    right: 100%;
    margin-right: 10px;
}

.title-one h2::after {
    left: 100%;
    margin-left: 10px;
}


.course-card {
    overflow: hidden;
}


.main-tow-section {
    margin-top: 50px;
}


.main-tow-section .title-one {
    margin-bottom: 50px !important;
}


.main-card-main {
    margin-bottom: 50px;
    margin-top: 50px;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.service_icon {
    max-width: 100%;
    height: auto;
    display: block;
}


.course-card p{
    margin-right: 0 !important;
}

.course-card p span{
    margin-right: 0 !important;
    font-size: 14px !important;
}



.main-card-main .course-card{
    height: 330px !important;
}




.course-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.course-description {
    font-size: 14px;
    color: #555;
    flex-grow: 1;
    max-height:100px;
}







.knowledge-section {
    background: url('../img/new_header.png') no-repeat center center/cover;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

/* لون تغطية للخلفية */
.knowledge-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
}

/* العنوان والفقرات */
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.section-description {
    font-size: 16px;
    margin-bottom: 40px;
    color:#fff;
}

/* تصميم البطاقات */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    color: #000;
    padding: 20px;
    width: calc(33.333% - 20px);
    min-height: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}
.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}


.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 280px;
    transition: 0.3s;
}

.contact-card i {
    font-size: 40px;
    color:#1B2540;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-card ul {
    list-style: none;
    padding: 0;
}

.contact-card li {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.service-box-layout3 {
    background-color: #fff;
    box-shadow:3px 5px 10px rgba(0, 0, 0, 0.1);
    margin-top:20px;
    margin-inline: 20px;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
    margin-bottom: 40px;
}



/*  ====================== FOOTER =======================  */
footer {
    padding: 2rem !important;
    background-color:#1B2540;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer .footerInner {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr) 2fr;
    gap: 40px;
    color:#fff;
}



/*
footer .footerInner .main .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #fff;
}
*/




footer .footerInner .main .logo img {
    width:200px;
    height: 170px;
}

footer .footerInner .main .logo span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: var(--theme-color);
    aspect-ratio: 1/1;
    width: 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-inline-end: 3px;
}

footer .footerInner .main .logo span:last-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

footer .footerInner .main p {
    padding: 20px 0 !important;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px !important;
    line-height: 30px !important;
}

footer .footerInner .main .social a {
    background-color: transparent;
    border: 1px solid #fff;
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 5px;
    color:#fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem !important;
    margin-inline-end: 10px !important;
    margin-top: 30px !important;
    transition: 0.3s all ease-in-out;
    text-transform: capitalize;
}

footer .footerInner .main .social a:hover {
    background-color:#fff;
    border: 1px solid var(--theme-color);
    color:var(--main-bg-color);
}

footer .footerInner h4 {
    font-size: 1.5rem;
    font-weight: 100;
    text-transform: uppercase;
}

footer .footerInner .line {
    height: 3px;
    width: 30%;
    border-radius: 5px;
    background-color: var(--theme-color);
    margin-bottom: 10px;
}

footer .footerInner .links ul>li>a {
    display: inline-flex;
    padding: 10px 0 !important;
    padding-inline-start: 0;
    color: #fff;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover {
    color:#fff;
}

footer .footerInner .links ul>li>a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.5rem;
    vertical-align: middle;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover::before {
    margin-inline-end: 15px;
    font-size: 0.6rem;
}

footer .footerInner .contact ul>li>a {
    padding: 10px 0 !important;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    color: #fff;
    gap: 10px;
    transition: 0.3s all ease-in-out;
}

footer .footerInner .contact ul>li>a:hover {
    color: var(--theme-color);
}

footer .footerInner .contact ul>li>a i {
    aspect-ratio: 1/1;
    background-color:#fff;
    color:#1B2540;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

footer .footerInner .contact ul>li>a>span {
    font-size: 1.1rem;
    font-weight: 200;
}

footer .footerInner .contact ul>li>a>span span {
    color: var(--theme-color);
    font-weight: 400;
}

footer .lowerFooter {
    color: var(--main-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-block: 20px !important;
    padding-inline: 20px !important;
    margin-top: 3rem !important;
    background-color: #fff;
    text-transform: capitalize;
    border-radius: 9px !important;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

footer .lowerFooter a {
    color: var(--theme-color);
}

footer .lowerFooter ul {
    display: inline-flex;
}

footer .lowerFooter ul a {
    padding: 2px 10px !important;
}

@media (width <=800px) {
    footer .footerInner {
        grid-template-columns: 2fr 1fr;
    }

    footer .lowerFooter ul a {
        padding: 3px 7px !important;
    }


    footer .footerInner .main {
        order: -1;
    }

    footer .footerInner .contact {
        order: -1;
    }

    footer .footerInner .important {
        order: -1;
    }

    footer .lowerFooter,
    footer .lowerFooter ul {
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    footer .lowerFooter ul {
        margin-top: 10px;
    }
}

@media (width <=500px) {
    footer .footerInner {
        grid-template-columns: 1fr;
    }

    footer .footerInner .contact {
        order: 3;
    }
}


footer .footerInner .links ul>li>a::before {
    position: relative;
    top: 5px;
    transform: rotateY(180deg);
}


.section-space-contact {
    background-color:#fff;
}



.main-contect {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding-top: 40px;
    font-weight: 400;
    color: #959595;
}

.main-contect::before,
.main-contect::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #959595;
    margin: 0 10px;
}



.section-title-dark {
    text-align: center;
    position: relative;
}

.section-title-dark h2 {
    display: inline-block;
    position: relative;
    font-size: 23px;
    color: #959595;
    font-weight: 500;
    padding: 0 20px;
}

.section-title-dark h2::before,
.section-title-dark h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #959595;
}

.section-title-dark h2::before {
    left: -60px;
}

.section-title-dark h2::after {
    right: -60px;
}

.statistics-section {
    background: url('../img/main.png') center/cover no-repeat; /* استبدل بالصورة الخلفية الخاصة بك */
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.statistics-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.384);
}

.stats-container {
    position: relative;
    z-index: 2;
}

.statistics-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.statistics-item {
    color: #fff;
    text-align: center;
}

.statistics-item h3 {
    font-size: 28px;
    font-weight: bold;
}

.statistics-item p {
    font-size: 16px;
    color: #fff;
}

.gmrel {
    position: relative;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.gmrel::before,
.gmrel::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #ffffff;
    margin: 0 15px;
}


.btn-fill-primary22 {
    display: inline-block;
    padding: 5px 34px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color:#1B2540;
    border: 2px solid #1b2540;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-fill-primary22:hover {
    background-color: #fff;
    border-color: #1b2540;
    transform: translateY(-2px);
    color: #1B2540;
}

.btn-fill-primary22:active {
    transform: translateY(1px);
}
.services-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.services-box h4{
    font-weight: 600;
    font-size: 22px;
    color: #0d1b34;
}


.services-box h5{
    font-weight: 600;
    font-size: 22px;
    color: #0d1b34;
}

.list-group-item {
    background: #162a52;
    color: white;
    border: none;
    margin-bottom: 5px;
    height: 50px;
    transition: 0.3s;
}

.list-group-item a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 13px;
}

.list-group-item:hover {
    background: #0d1c3a;
}

.latest-articles {
    margin-top: 15px;
}

.article-item {
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.article-img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.date {
    font-size: 12px;
    color: gray;
    margin-bottom: 0;
}

.article-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding:40px;
}

.article-box h3 {
    color: #162a52;
    font-weight: bold;
}


.man-blog {
    margin-top: 40px;
}


.man-blog-titel{
    padding: 20px;
}


.article-box {
    margin-bottom: 40px;
}
