@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    direction: rtl;
    list-style: none;
    transition: 0.3s;
    font-family: "Noto Kufi Arabic", sans-serif;
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
}

:root {
    --bg-color-1: #262c8a;
    --bg-color-2: #f0f0f0;
    --text-weight: 600;
    --btn-bg: #12d6dc;
}

ul {
    margin: 0 !important;
}

a {
    text-decoration: none !important;
}

.navbar.show {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    right: 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    animation: anim ease forwards 0.5s;
}

@keyframes anim {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.container {
    max-width: 1300px !important;
    padding: 0 !important;
    overflow: hidden;
}

.header_top {
    background-color: #f0f0f0;
    padding: 15px;
}

.box_haeder {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--bg-color-1);
}

.icon_header {
    width: 30px;
    height: 30px;
    padding: 3px;
    background-color: var(--bg-color-1);
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single {
    gap: 8px;
    color: var(--bg-color-1);
    font-weight: var(--text-weight);
    font-size: 14px;
}

.social_icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_iconsItems {
    font-size: 20px;
    color: var(--bg-color-1);
    cursor: pointer;
}

/* nav */
.navbar-brand figure {
    width: 60px;
    background-color: var(--bg-color-2);
    border-radius: 6px;
}

nav {
    background-color: var(--bg-color-1);
    border-bottom: solid 1px #9d9d9d;
}


.collapse {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--bg-color-2);
    font-weight: 400;
    font-size: 14px;
}

    .nav-link:hover {
        color: var(--btn-bg);
    }

.nav_btn {
    background-color: var(--btn-bg);
    font-size: 19px;
    font-weight: var(--text-weight);
    border: none;
    border: solid 2px var(--btn-bg);
    padding: 8px 35px;
}

    .nav_btn:hover {
        background-color: transparent;
    }

        .nav_btn:hover a {
            color: #fff;
        }

    .nav_btn a {
        color: var(--bg-color-1);
    }

/* main */
.hero {
    position: relative;
    overflow: hidden;
}

.main_vid {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: scaleX(-1);
    z-index: -99;
    height: fit-content;
}

.main_bg_overlay {
    position: absolute;
    inset: 0;
    background-color: var(--bg-color-1);
    opacity: 0.7;
}

.main_circle_right {
    position: absolute;
    right: -15%;
    top: 10%;
    width: 250px;
    height: 80%;
    border-radius: 100%;
    background-color: #12d6dc;
    filter: blur(100px);
}

.main_circle_left {
    position: absolute;
    left: -15%;
    top: 10%;
    width: 250px;
    height: 80%;
    border-radius: 100%;
    background-color: #12d6dc;
    filter: blur(150px);
}

.hero .row {
    padding-top: 30px;
    text-align: right;
}

.hero figure {
    width: 70%;
}

.hero h3 {
    color: #fff;
    width: 100%;
    line-height: 70px;
    font-size: 2rem;
    font-weight: var(--text-weight);
}

.hero .col-xl-6:nth-of-type(1) {
    margin-top: 120px;
}

.hero h1 {
    font-size: 3.7rem;
    font-weight: var(--text-weight);
    color: var(--btn-bg);
}

.hero .nav_btn:nth-of-type(1) {
    border: 2px solid var(--btn-bg);
}

.hero .nav_btn:nth-of-type(2) {
    border: 2px solid var(--btn-bg);
    background-color: transparent;
    color: #fff;
}

.hero .nav_btn:nth-of-type(1):hover {
    background-color: transparent;
    color: #fff;
}

.hero .nav_btn:nth-of-type(2):hover {
    border: 2px solid var(--btn-bg);
    background-color: var(--btn-bg);
    color: var(--bg-color-1);
}

/* about us  */

.about_us {
    overflow: hidden;
    text-align: right;
    padding-top: 20px;
    position: relative;
}

    .about_us .row {
        align-items: center;
    }

    .about_us .col-xl-6:nth-of-type(1) {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about_us .col-xl-6:nth-of-type(2) {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .about_us figure {
        width: 60%;
    }

.about_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: repeating-radial-gradient( circle, transparent 0px, transparent 50px, rgba(0, 0, 0, 0.12) 51px );
    z-index: -1;
}

.h4 {
    color: var(--bg-color-1);
    background-color: var(--btn-bg);
    width: fit-content;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.4rem;
    font-weight: var(--text-weight);
}

.about_us h3 {
    line-height: 50px;
    color: var(--bg-color-1);
    font-weight: var(--text-weight);
}

.li {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: var(--text-weight);
    color: var(--bg-color-1);
    position: relative;
    display: flex;
    padding-right: 20px;
    width: 80%;
}

    .li::before {
        content: "";
        position: absolute;
        right: 0;
        top: 8px;
        width: 10px;
        height: 10px;
        background-color: var(--btn-bg);
        border-radius: 50%;
        display: flex;
    }

.about_us .about_circle_right {
    position: absolute;
    left: 50%;
    bottom: -80%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    border-radius: 100%;
    background-color: #12d6dc;
    filter: blur(100px);
}

/* expertise */

.expertise {
    position: relative;
    padding: 80px 0;
    background-image: url(../Asstes/pic4.jpg);
    background-repeat: no-repeat;
    background-position: bottom -200px right 0;
    background-size: cover;
}

    .expertise .container {
        display: flex;
        justify-content: end;
        height: 100%;
    }

    .expertise .row {
        gap: 25px 0;
    }

    .expertise h2 {
        font-weight: var(--text-weight);
        color: #fff;
        margin-bottom: 40px;
    }

    .expertise h3 {
        font-size: 1.1rem;
        color: #fff;
        padding: 12px;
        border: solid 2px var(--btn-bg);
        border-radius: 15px;
        line-height: 30px;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .expertise .nav_btn {
        width: 100%;
        padding: 10px 0;
        border: solid 2px var(--btn-bg);
    }

.btn1 {
    background-color: var(--btn-bg);
}

.btn2 {
    background-color: transparent;
    color: #fff;
}

.btn1:hover {
    background-color: transparent;
    color: #fff;
}

.btn2:hover {
    background-color: var(--btn-bg);
    color: var(--bg-color-1);
}

/* backnormal */
.backnormal {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
}

    .backnormal h2:first-of-type {
        text-align: center;
        width: 70%;
        line-height: 50px;
        color: var(--bg-color-1);
    }

    .backnormal h2 span {
        font-weight: 700;
    }

    .backnormal .li {
        width: 100%;
        font-size: 1.2rem;
    }

        .backnormal .li::before {
            width: 8px;
            height: 8px;
            top: 10px;
            background-color: var(--bg-color-1);
        }

.backnormal_btn {
    width: 100%;
    color: #fff;
    border-radius: 15px;
    background-color: var(--bg-color-1);
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: var(--text-weight);
    padding: 15px 0;
}

    .backnormal_btn:hover a {
        color: #000;
    }

    .backnormal_btn a {
        color: #fff;
    }
    .backnormal_btn:hover {
        color: #ffff;
        text-decoration: none;
        border: solid 2px #212529;
        background-color: #12d6dc;
    }
   
    .backnormal_img {
        overflow: hidden;
        border-radius: 35px;
        border: solid 3px var(--bg-color-1);
        display: flex;
        justify-content: center;
        width: 400px;
        height: 400px;
    }

    .backnormal_img img {
        object-fit: cover;
    }

.allsection2 {
    margin-top: 150px;
}

.allsection_edit .backnormal_img {
    justify-content: end;
    align-items: end;
    width: 400px;
    height: 300px;
}

.backnormal .backnormal_circle_left {
    position: absolute;
    left: 0%;
    bottom: -75%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    border-radius: 100%;
    background-color: #12d6dc;
    filter: blur(300px);
}

/* why us */
.why_us {
    position: relative;
    padding: 80px 0;
    background: url(../Asstes/pic8.png) no-repeat;
    background-size: cover;
}

    .why_us .main_bg_overlay {
        background-color: #000766;
        opacity: 0.85;
    }

.why_text li {
    color: #fff;
    font-size: 1.3rem;
    width: 90%;
}

    .why_text li::before {
        width: 7px;
        height: 7px;
        background-color: #fff;
    }

.why_text h2 {
    margin-bottom: 30px;
}

.why_img figure {
    overflow: hidden;
    border-radius: 35px;
    border: solid 3px var(--btn-bg);
    display: flex;
    justify-content: end;
    width: 400px;
    height: 350px;
    box-shadow: 5px 7px 20px rgba(0, 0, 0, 0.5);
}

.why_img img {
    object-fit: cover;
    object-position: left -50%;
}

/* articles */
.articles {
    overflow: hidden;
    padding: 70px 0;
}

    .articles .container {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

.article_single {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: solid 2px rgba(0, 0, 0, 0.12);
    padding: 30px;
    border-radius: 15px;
    text-align: right;
}

    .article_single .article_card {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        border: solid 1px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        box-shadow: 5px 7px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        padding-bottom: 20px;
        cursor: pointer;
    }

.h2 {
    background-color: var(--bg-color-1);
    text-align: center;
    color: #fff;
    padding: 20px 0;
    border-radius: 20px;
    width: 100%;
}

.article_single figure {
    position: relative;
    overflow: hidden;
}

.article_single .date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(to left, #262c8a 20%, #000dbe 100%);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

    .article_single .date h2 {
        font-weight: var(--text-weight);
    }

    .article_single .date p {
        font-weight: 400;
    }

.article_single h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 35px;
}

.article_single .name {
    color: grey;
}

.article_single .card-btn {
    background: linear-gradient(to left, #262c8a 20%, #000dbe 100%);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
}

    .article_single .card-btn:hover {
        color: var(--btn-bg);
    }

.article_single .article_card:hover {
    box-shadow: none;
}

.article_single .last {
    width: fit-content;
    font-size: 30px;
    border-radius: 15px;
    border: solid 3px var(--bg-color-1);
    background-color: transparent;
    font-weight: var(--text-weight);
    color: var(--bg-color-1);
    padding: 15px 20px 15px 70px;
    position: relative;
}

    .article_single .last:hover {
        background-color: var(--bg-color-1);
        color: #fff;
    }

    .article_single .last i {
        position: absolute;
        transition: 0.3s ease;
        left: 20px;
        transition: all ease 0.3s;
        font-weight: 800;
    }

    .article_single .last:hover i {
        left: 15px;
    }

.article_single .image:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.articles .top-img iframe {
    width: 100%;
}

.articles .thumb {
    height: 100%;
}
/* comments */

.comments {
    padding: 50px 0;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
    background-color: #000766;
    width: 20px;
    height: 20px;
}

.swiper-pagination-bullets-dynamic {
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-wrapper {
    padding-bottom: 70px;
}

.swiper-slide {
    border: 1.5px solid rgba(188, 190, 219, 1);
    background: rgba(233, 234, 243, 1);
    font-weight: var(--text-weight);
    text-align: right;
    border-radius: 15px;
    padding: 15px;
    line-height: 35px;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* form */
.consult-form {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

    .consult-form .container {
        background: #fff;
        border-radius: 15px;
        padding: 30px !important;
        text-align: center;
        border: 2px solid #d9ddf2;
        box-shadow: 0px 0px 25px rgba(0, 43, 130, 0.1);
    }

.title {
    background: #192f9c;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.subtitle {
    color: #1f1f1f;
    font-size: 18px;
    margin-bottom: 15px;
}

.consult-form textarea {
    height: 30vh;
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    border: 2px solid #d9ddf2;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    outline: none;
    margin-bottom: 15px;
    background: #f7f8ff;
}

    .consult-form input::placeholder,
    .consult-form textarea::placeholder {
        color: #8c91b3;
    }

.consult-form button {
    width: 100%;
    padding: 12px;
    background: #192f9c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

    .consult-form button:hover {
        background: #14257a;
        transform: translateY(-2px);
    }

/* locations */
.locations {
    padding: 30px 0;
}

    .locations .row {
        gap: 30px 0;
        text-align: right;
    }

.header-bar {
    background-color: var(--bg-color-1);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
}

.contact-info {
    background-color: white;
    border-bottom: 2px dashed #002b46;
}

.contact-info-item span {
    font-weight: bold;
    color: #333;
}

.contact-info a {
    color: #002b46;
    margin-right: 5px;
}

    .contact-info a:hover {
        text-decoration: underline !important;
    }

.location-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    }

.map-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.card-title {
    font-size: 22px;
    font-weight: bold;
    color: #002b46;
}

.card-address {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.card-appointment {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.phone-button {
    background-color: #002b46;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .phone-button:hover {
        background-color: #004066;
        color: white;
    }

/* regetration */
.form-container {
    background-color: #283593;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    background-color: #e3f2fd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

    .form-header h1 {
        color: #283593;
        font-size: 28px;
        font-weight: bold;
        margin: 0;
    }

.form-subtitle {
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}

.form-group input {
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    padding: 12px 15px;
    text-align: right;
    font-size: 16px;
}

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
        text-align: right;
    }

    .form-control:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #90caf9;
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(144, 202, 249, 0.25);
    }

.form-select {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    padding: 12px 15px;
    text-align: right;
    font-size: 16px;
    width: 100%;
}

    .form-select:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: #90caf9;
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(144, 202, 249, 0.25);
    }

    .form-select option {
        background-color: #283593;
        color: white;
    }

.btn-submit {
    background-color: white;
    color: #283593;
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background-color: #e3f2fd;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-submit:active {
        transform: translateY(0);
    }
/* footer */

footer {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background: rgba(222, 222, 222, 1);
    border-top: solid 2px rgba(0, 0, 0, 0.12);
    margin-top: 200px;
}

    footer p {
        color: grey;
    }
