/*! ===================== Intro =====================*/
.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(135deg, #111, #333); */
    background-image: url("../assets/images/Rectangle 9456.svg");
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;

    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-image: url("../assets/images/victor.svg");*/
    /*background-position: 0;*/
    /*background-repeat: repeat;*/
    /*background-size: contain;*/
    background: radial-gradient(circle, #f1dcba 0%, #4c360e 100%);
    opacity: 0.2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    /*animation: moveTop 4s ease-in ;*/
}

@keyframes moveTop {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn-mouse {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green-color);

    border-radius: 50%;
    isolation: isolate;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.intro .btn-scroll {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(201, 170, 121, 1);
    border-radius: 50%;
}

.intro .bulse {
    width: 130%;
    height: 130%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #4c857066;
    border-radius: 50%;
    z-index: 1;
    /* animation: bulse 2s ease-out infinite; */

    transform-origin: center;
}

.intro .bulse::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: bulse 3s ease-out infinite;
    border: 1px solid var(--green-color);
}

.intro .bulse::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: bulse 4s ease-in infinite;
    animation-delay: 1s;
    border: 1px solid var(--green-color);
}

@keyframes bulse {
    0% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}

.intro .btn-scroll img {
    width: 90%;
    height: 70%;
}

@keyframes scroll-arrow {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 8px);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.intro img {
    /* width: 120px; */
    width: clamp(250px, 30vw, 400px);
    margin-bottom: 0px;
    animation: zoomin 2.5s ease;
}

@keyframes zoomin {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.intro h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.intro p {
    font-size: 18px;
    opacity: 0.8;
}

/* ===== المحتوى ===== */
.site-content {
    position: relative;
    z-index: 2;
    background: #fff;
    margin-top: 100vh;
    /* المفتاح */
}

.navbar.fixed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadein 0.7s ease;
}

@keyframes fadein {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: 0.3s ease;
}

#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.loader .spinner {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*! ===================== Header =====================*/
header#header {
    min-height: 100vh;
    padding-bottom: 50px;
    background-color: rgba(253, 249, 241, 1);

    position: relative;
}

header#header::before {
    content: "";
    position: absolute;
    background-image: url("../assets/images/pattern2.svg");
    background-position: top;
    background-size: cover;
    width: 50%;
    height: 100%;
    opacity: 0.4;
}

header .hero {
    padding-block: 40px;
    margin-top: 70px;
}

header .row-header {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}

header .caption {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
}

header .caption h1 {
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 700;
    color: var(--main-color);
    font-family: "font_GE-SS ";
}

header .images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header .images .images-row {
    display: flex;
    align-items: end;
    gap: 15px;
}

header .images .images-row .image-box {
    width: 50%;
    position: relative;
}

header .images .icon-img {
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgb(200 169 119 / 40%);
    position: absolute;
    top: 0;
    right: 0;
    top: -15px;
    right: -10px;
    --animate-duration: 2s;
    display: grid;
    place-items: center;
}

header .images img {
    border-radius: 15px;
}

header .images img.twoImg {
    width: 50%;
    height: 370px;
}

header .images img.oneImg {
    height: 330px;
    object-fit: cover;
}

header .images img.threeImg {
    height: 310px;
    width: 100%;
    object-fit: cover;
}

/*! ===================== Vision =====================*/
#vision {
    background-image: url("../assets/images/bg-vision.svg");
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    /* margin-top: 100px; */
    position: relative;
    overflow: hidden;
    z-index: 5;
}

#vision::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/victor.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    /* transform: rotate(185deg); */
    z-index: -1;
}

#vision .vision-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: auto;
    text-align: center;
    color: var(--white-color);
}

#vision .vision-content h2 {
    font-weight: 800;
    font-size: clamp(23px, 5vw, 32px);
}

/*! ===================== Objectives =====================*/
#objectives {
    background-color: var(--white-color);

    position: relative;
}

#objectives::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-image: url("../assets/images/pattern.svg");
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -7%;
    right: -26%;
    z-index: 0;
    opacity: 0.1;

    /* animation: spin 5s linear infinite; */
    /* transform-origin: center center; */
}

/* @keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */

#objectives .objectives-content {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#objectives .objectives-content h2 {
    color: var(--main-color);
    font-weight: 700;
}

#objectives .objective-card h3 {
    font-size: clamp(13px, 5vw, 24px);
    font-weight: 700;
    color: var(--main-color);
    padding-left: 30px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 15px;
}

#objectives .objective-card p {
    padding-top: 15px;
}

#objectives .objective-card {
    background-color: rgba(253, 249, 241, 1);
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
    position: relative;
    background-color: rgba(253, 249, 241, 1);
    padding: 25px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
    z-index: 1;
}

/* Hover Card */
#objectives .objective-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(201, 170, 121, 1),
            rgba(170, 140, 95, 1));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
    z-index: -1;
}

#objectives .objective-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: 0.6s ease;
    z-index: 0;
}

#objectives .objective-card h3,
#objectives .objective-card p {
    transition: 0.3s;
}

#objectives .objective-card:hover {
    transform: translateY(-8px);
}

#objectives .objective-card:hover::before {
    transform: scaleY(1);
}

#objectives .objective-card:hover::after {
    left: 120%;
}

#objectives .objective-card:hover h3,
#objectives .objective-card:hover p {
    color: #fff;
}

/* End Hover Card */

/*! ===================== Latest News =====================*/
#latest-news {
    background-color: rgba(253, 249, 241, 1);
    padding: 70px 0;

    position: relative;
}

#latest-news::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/vector-4.svg");
    background-size: 140%;
    background-position: center;
    top: 0;
    z-index: 0;
    opacity: 0.5;
}

#latest-news .latest-news-carousel {
    height: 500px;
}

.news-card {
    background-color: var(--white-color);
    border-radius: 10px;
    transition: all 0.5s ease;
    overflow: hidden;
    max-height: 400px;
}

.news-card .image {
    height: 270px;
}

.news-card .image img {
    object-fit: cover;
}

.news-card .text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.news-card .text h3 {
    font-size: clamp(13px, 3vw, 20px);
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card .text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 300;
}

.news-card .main-btn {
    opacity: 0;
    transition: opacity 0.4s ease;
    align-self: flex-start;
    font-weight: 500;
}

.news-card:hover {
    background-color: var(--main-color);
    max-height: 450px;
}

.news-card h3,
.news-car p {
    transition: 0.5s;
}

.news-card:hover h3,
.news-card:hover p {
    color: var(--white-color);
}

.news-card:hover .main-btn {
    opacity: 1;
    transform: translateY(0);
}

.news-card .main-btn {
    max-height: 450px;
}

/*! ===================== Contact-cta =====================*/
#contact-cta {
    background-color: var(--white-color);
    position: relative;
}

#contact-cta::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 150%;
    background-image: url(../assets/images/pattern.svg);
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    top: -30%;
    right: -25%;
    opacity: 0.1;
}

#contact-cta .contact-content {
    width: 50%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-cta h4 {
    font-size: clamp(20px, 5vw, 35px);
    color: var(--main-color);
    font-weight: 700;
}

#contact-cta .group-btn,
.contact-cta .group-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#contact-cta .group-btn .main-btn,
.contact-cta .group-btn .main-btn {
    width: 200px;
}

#contact-cta .group-btn .main-btn.whatsapp,
.contact-cta .group-btn .main-btn.whatsapp {
    background: linear-gradient(45deg,
            rgba(31, 175, 56, 1),
            rgba(96, 214, 105, 1));
}

/*! ===================== About =====================*/
#about {
    display: flex;
    padding-block: 70px;
    align-items: center;
    gap: 20px;
    /* background-color: rgba(253, 249, 241, 1); */
    background-image: url("../assets/images/Rectangle 9456.svg");
    background-size: cover;
    background-position: center;
    color: var(--white-color) !important;

    position: relative;
}

#about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/vector-4.svg");
    background-size: 140%;
    background-position: center;
    top: 0;
    z-index: 0;
    opacity: 0.5;
}

#about .committee-head {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

#about .committee-member figure {
    text-align: center;
}

#about .committee-member .image {
    width: 250px;
    height: 280px;
    margin: auto;
    position: relative;
}

#about .committee-member .image img {
    position: relative;
    top: -26px;
    z-index: 0;
    left: 50%;
    transform: translateX(-52%);
    border-radius: 50%;
}

#about .committee-member .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 105%;
    height: 92%;
    border: 4px solid var(--main-color);
    border-radius: 50%;
    box-sizing: border-box;
    z-index: -1;
}

#about .committee-member figcaption {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

#about .committee-member figcaption h3 {
    font-size: 20px;
    font-weight: 800;
}

#about .committee-member figcaption p {
    /* color: var(--text-color); */
    color: var(--white-color);
}

#about .committee-member figcaption .contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#about .committee-member figcaption .contact-icons img {
    background-image: linear-gradient(45deg,
            rgba(239, 201, 140, 1),
            rgba(200, 169, 119, 1));
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 6px;
    transition: 0.5s;
}

#about .committee-member figcaption .contact-icons img:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#about .committee-member .contact-icons {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#about .committee-member:hover .contact-icons {
    opacity: 1;
    transform: translateY(0);
}

#about .owl-nav {
    display: none;
}

/*! ===================== Blog Details =====================*/
#blog,
#blog-details,
#faqs {
    background-color: var(--white-color);
}

section {
    overflow: hidden;
}

#blog-details,
.arbitration,
.systems {
    padding-bottom: 80px;
}

#blog .col-md-4 {
    height: 450px;
}

#blog .news-card {
    border: 1px solid rgba(201, 170, 121, 1);
}

#blog-details .blog-content .image img {
    border-radius: 5px 5px 0 0;
}

#blog-details .news-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#blog-details .news-card {
    display: flex;
    background-color: rgba(253, 249, 241, 1);
}

#blog-details .news-card .image {
    width: clamp(120px, 38vw, 155px);
    height: clamp(120px, 38vw, 155px);
}

#blog-details .news-card .text {
    flex: 1;
}

#blog-details .news-card:hover h3,
#blog-details .news-card:hover p {
    color: inherit;
}

#blog-details .show-details {
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: clamp(10px, 3vw, 14px);
    transition: 0.3s;
}

#blog-details .show-details:hover {
    transform: translateX(5px);
}

#blog-details .show-details i {
    transition: transform 0.3s ease;
}

#blog-details .show-details:hover i {
    transform: rotate(-45deg);
}

#blog-details .blog-content .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

#blog-details .blog-content .blog-header h4 {
    font-size: clamp(13px, 5vw, 24px);
    font-weight: 700;
}

#blog-details .blog-content .blog-header span {
    font-size: 12px;
    font-weight: 400;
}

#blog-details .blog-content .desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-color);
    padding-top: 20px;
}

#blog-details .contact-cta {
    background-image: url("../assets/images/bg-contact-cta-box.svg");
    background-position: center;
    background-size: cover;
    color: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    margin-block: 20px;
    position: relative;
    z-index: 1;
}

#blog-details .contact-cta::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/victor.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    transform: rotate(185deg);
    z-index: -1;
}

#blog-details .contact-cta .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#blog-details .contact-cta h5 {
    font-size: clamp(13px, 4vw, 24px);
    font-weight: 700;
}

#blog-details .contact-cta p {
    color: rgba(229, 229, 229, 1);
    font-size: clamp(10px, 3vw, 14px);
}

#blog-details .contact-cta .group-btn {
    margin-top: 30px;
}

#blog-details .social-section {
    /* font-size: clamp(12px, 2.5vw, 20px); */
    font-size: 20px;
}

#blog-details .social-section .social-label {
    font-weight: 700;
}

#blog-details .social-section .social-icon {
    font-size: clamp(16px, 5vw, 22px);
}

/*! ===================== FAQS =====================*/
#faqs .accordion-button::after {
    content: none;
}

#faqs .accordion-button p {
    font-weight: 700;
    color: var(--black-color);
    transition: color 0.3s;
    text-align: start;
    font-size: clamp(11px, 2vw, 16px);
}

#faqs .accordion-item {
    border: 2px solid var(--main-color);
}

#faqs .accordion-icon {
    font-size: clamp(13px, 3vw, 18px);
    margin-right: 10px;
}

#faqs .accordion-button:focus {
    box-shadow: none;
}

#faqs #contact-cta .group-btn .main-btn {
    width: 200px;
}

#faqs #contact-cta .group-btn .main-btn.whatsapp {
    background: linear-gradient(45deg,
            rgba(31, 175, 56, 1),
            rgba(96, 214, 105, 1));
}

/* المحتوى مفتوح */
#faqs .accordion-collapse.show {
    background-color: var(--main-color);
}

#faqs .accordion-collapse .accordion-body {
    background-color: rgba(201, 170, 121, 1);
    border-top: 2px solid rgba(201, 170, 121, 1);
}

#faqs .accordion-collapse .accordion-body {
    color: var(--white-color);

    /* الزرار مقفول */
    color: var(--white-color);
}

/* الزرار مفتوح */
#faqs .accordion-button:not(.collapsed) {
    background-color: rgba(201, 170, 121, 1);
}

#faqs .accordion-button:not(.collapsed) p {
    color: var(--white-color);
}

/* الزرار مقفول */
#faqs .accordion-button {
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faqs .accordion-button .accordion-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    display: inline-block;
    margin-left: 8px;
    transition:
        transform 0.3s,
        color 0.3s;
    color: var(--main-color);
}

#faqs .accordion-button:not(.collapsed) .accordion-icon::before {
    content: "\f068";
    color: var(--white-color);
}

/* Nour Style */
/* heading-space */
.systems {
    overflow: hidden;
}

.systems .title {
    width: 80%;
}

.systems .title p {
    line-height: 1.5;
}

.systems .contact-content {
    width: 49%;
}

/* heading-space end */

/* document-card */
.document-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.4s ease;
}

.bg-shape {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: url(../assets/images/system-before.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    transition: all 0.4s ease;
}

/* Documents Image */
.documents-image {
    position: relative;
    z-index: 2;
    width: 250px;
    /* height: 130px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.documents-image img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    color: #262626;
    font-size: clamp(12px, 2.5vw, 20px);
    font-weight: 700;
    line-height: 1.6;
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
}

/* Button Styles */
.btn-more {
    background: var(--main-color) !important;
    width: 100% !important;
    height: 100% !important;
}

.btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Hover Effects on Card */
.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
}

.document-card:hover .bg-shape {
    transform: scale(1.1);
    opacity: 0.6;
}

.document-card:hover .documents-image img {
    transform: scale(1.05) translateY(-5px);
}

/* Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.document-card {
    animation: fadeInUp 0.6s ease forwards;
}

.document-card:nth-child(1) {
    animation-delay: 0.1s;
}

.document-card:nth-child(2) {
    animation-delay: 0.2s;
}

.document-card:nth-child(3) {
    animation-delay: 0.3s;
}

.document-card:nth-child(4) {
    animation-delay: 0.4s;
}

.systems .contact-content .group-btn .btn-after:first-child:hover {
    background: var(--green-color) !important;
    box-shadow: 0 6px 20px rgba(163, 196, 160, 0.116) !important;
}

.systems .contact-content .group-btn .btn-after:last-child:hover {
    background: linear-gradient(45deg,
            rgba(31, 175, 56, 1),
            rgba(96, 214, 105, 1)) !important;
    box-shadow: 0 6px 20px rgba(163, 196, 160, 0.116) !important;
}

/* document-card end */
/* arbitration */
.arbitration .bg-shape {
    background-image: url(../assets/images/arbitration-after.png);
}

.arbitration .documents-image {
    width: 130px;
}

.arbitration .document-card .btn-more {
    background: var(--green-color) !important;
    height: 40px !important;
}

.arbitration .document-card .main-btn img {
    width: 20px;
    height: 20px;
}

.arbitration .search-container {
    width: 80%;
}

.arbitration form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.arbitration form .input-group {
    position: relative;
}

.arbitration form .input-group .iconSearch {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(212, 212, 212, 1);
}

.arbitration input {
    width: 100%;
    border: none;
    height: 40px;
    border-radius: 50px !important;
    border: 1px solid rgba(241, 220, 186, 1);
    padding: 10px 35px;
}

.arbitration input::placeholder {
    color: rgba(212, 212, 212, 1);
}

.arbitration .group-select {
    position: relative;
}

.arbitration .group-select .arrow-down {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: var(--main-color);
    margin-left: 5px;
}

.arbitration .group-select select {
    width: fit-content;
    border: none;
    appearance: none;
    border-radius: 10px;
    color: var(--main-color);
    cursor: pointer;
    padding: 10px 10px 10px 35px;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #fdf9f1;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(26, 95, 74, 0.08);
}

.form-label {
    color: #262626;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.form-control {
    background-color: #f8f9fa;
    border: 2px solid #f5f5f5;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #1a5f4a;
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 74, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 13px;
}

textarea.form-control {
    resize: none;
    min-height: 140px;
}

.contact-form-wrapper .btn-more {
    background: var(--green-color) !important;
    width: 20% !important;
    margin: 0 auto;
}

.contact-form-wrapper .btn-more:hover {
    background: var(--green-color) !important;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.1);
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--green-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 20px;
    height: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: #262626;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.info-value {
    color: #a3a3a3;
    font-size: 16px;
    font-weight: 500;
}

/* Social Section */
.social-section {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.social-label {
    color: #262626;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #c9aa79;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #6b5f4b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: #ffffff;
}

/* Responsive Styles */

@media (max-width: 575px) {
    .contact-form-wrapper .btn-more {
        width: 100% !important;
    }
}

/* Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-wrapper {
    animation: slideInRight 0.6s ease forwards;
}

.contact-info {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* arbitration end */

.map-container {
    width: 100%;
    margin: 100px auto 0;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* map-section */
/* Nour Style end */

/* الدائرة الأساسية */
.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid rgb(64, 99, 212);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        transform 0.15s ease-out,
        width 0.2s,
        height 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* التريل */
.cursor-trail {
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    z-index: 9998;
    mix-blend-mode: normal;
}

/* عند الضغط */
.cursor.click {
    transform: translate(-50%, -50%) scale(0.7);
}

/* عند المرور فوق عنصر قابل للضغط */
.cursor.hover {
    width: 40px;
    height: 40px;
}

/*! ============================ Backgroud ============================ */
#systems,
#decisions,
#forms,
.arbitration {
    background-color: rgba(253, 249, 241, 1);
    position: relative;
}

#blog,
#blog-details {
    position: relative;
}

#forms,
.arbitration {
    margin-bottom: 80px;
}

#systems::before,
#decisions::before,
#forms::before,
.arbitration::before,
#blog::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/vector-4.svg");
    background-size: 140%;
    background-position: center;
    top: 0;
    z-index: 0;
    opacity: 0.5;
}

.contact-section {
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    background-image: url("../assets/images/pattern.svg");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
    height: 100%;
    opacity: 0.2;
    top: 20%;
    right: -26%;
    z-index: -1;
}

/*! ============================ Forms ============================ */
#formsModal .modal-content {
    background-color: rgba(253, 249, 241, 1);
    border-radius: 10px;
}

#formsModal .modal-body {
    padding: 20px;
}

#formsModal .modal-content .form-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#formsModal .modal-content .form-content label {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 700;
    margin-bottom: 7px;
}

#formsModal .modal-content .form-content input {
    background-color: var(--white-color);
    height: 45px;
}

#formsModal .modal-content .form-content input::placeholder {
    color: rgba(163, 163, 163, 1);
}

#formsModal .modal-content .form-content input[type="tel"] {
    text-align: end;
}

#formsModal .modal-content .form-content .upload-box {
    border: 2px dashed var(--main-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 1);
    transition: 0.3s;
}

#formsModal .modal-content .form-content .upload-img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

#formsModal .modal-content .form-content .upload-box .upload-text {
    font-size: 12px;
    color: var(--text-color);
}

#formsModal .modal-content .form-content .upload-box .upload-text.error {
    color: #dc3545;
    font-weight: 500;
    font-weight: bold;
}

#formsModal .close-form {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2;
}

#formsModal .close-form:hover {
    color: var(--main-color);
}

.active>.page-link,
.page-link.active {
    color: black;
    font-weight: bold;
}

.active>.page-link,
.page-link {
    color: var(--green-color);
    font-weight: bold;
}

#faqs .accordion-collapse .accordion-body {
    color: black;
}

#faqs .accordion-button:not(.collapsed) p {
    color: black;
}

#faqs .accordion-button:not(.collapsed) .accordion-icon::before {
    color: var(--main-color);
}
