@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #384250;
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.div-cols {
    margin-bottom: 32px;
}

section {
    padding: 32px 0px;
    scroll-margin-top: 74px;
    /* ارتفاع الهيدر بالبيكسل */
}

.spacing-xl {
    padding: 16px;
}

/* header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 74px;
    display: flex;
    height: 73px;
    z-index: 99;
    background-color: #ffffff;
}

.header--divider::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 1px;
    width: 100%;
    display: block;
    background-color: #d2d6db;
}

.header--divider::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 1px;
    width: 100%;
    display: block;
    background-color: #d2d6db;
}

.header-nav--full {
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 32px;
}

.header-nav__main {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex: 1 1 0%;
}

.header__logo,
.header__logo img {
    height: 58px;
}


.header-nav__branding {
    display: flex;
    align-items: center;
}

.header-nav__menu,
.header-nav__actions {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;

}

.header-menu__item {
    display: inline-flex;
    height: 72px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: transparent;
    border-radius: 2px;
    position: relative;
}

.header-menu__item:hover,
.header-menu__item:active {
    position: relative;
}

.header-menu__item:hover {
    background: #f3f4f6;
}

.header-menu__item:active {
    background-color: #e5e7eb;
    outline: none;
}

.header-menu__item:active::after {
    display: block;
    background-color: #1f2a37;
}

.header-menu__item:hover .header-menu__item-label,
.header-menu__item:hover .header-menu__item-icon,
.header-menu__item:hover .header-menu__item-arrow,
.header-menu__item:active .header-menu__item-label,
.header-menu__item:active .header-menu__item-icon,
.header-menu__item:active .header-menu__item-arrow {
    color: #161616;
}

.header-menu__item-label,
.header-menu__item-icon,
.header-menu__item-arrow {
    color: #161616;
}

.text-md-medium,
.header-menu__item-label,
.header-menu__item-icon,
.header-menu__item-arrow {
    font-weight: 500;
    font-stretch: normal;
    font-size: 16px;
    line-height: 24px;

}

.header-menu__item-arrow {
    color: #161616;
    display: flex;
    align-items: center;
}

.header-menu__item-arrow>div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
}

.header-menu__item-arrow>div i {
    font-size: 20px;
    position: relative;
    top: 2px;
}



.header-menu__item:hover::after,
.header-menu__item:active::after {
    content: "";
    display: block;
    width: calc(100% - 8px * 2);
    height: 8px;
    border-radius: 9999px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9da4ae;
}

.header-menu__item--active:after,
.header-menu__item--active:hover:after,
.header-menu__item--active:focus:after,
.header-menu__item--active:active:after {
    content: "";
    display: block;
    width: calc(100% - 8px * 2);
    height: 8px;
    border-radius: 9999px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background-color: #54c08a;
}

.header-menu__item:active::after {
    display: block;
    background-color: #1f2a37;
}

.header-nav__actions {
    position: relative;
}

.header-nav__actions li a:hover,
.header-nav__actions li a.active,
.header-nav__menu li a.active {
    background: #166a45;
    color: #fff;
}

.header-nav__actions li a:hover::after,
.header-nav__actions li a.active::after,
.header-nav__menu li a.active::after {
    content: "";
    display: block;
    width: calc(100% - 8px * 2);
    height: 8px;
    border-radius: 9999px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #54c08a;
}

.header-nav__actions li a:hover span,
.header-nav__actions li a.active span,
.header-nav__menu li a.active span {
    color: #fff !important;
}

button.toggler-btn {
    border: 0;
    outline: 0;
    background: transparent;
}

button.toggler-btn i {
    font-size: 24px;
}

.toggler-btn {
    display: none;
}

@media screen and (max-width: 991px) {
    .toggler-btn {
        display: block;
    }

    .header-nav__actions,
    .header-nav__menu {
        display: none;
    }

}

/* aside-menu */
ul.header-nav__aside-menu {
    padding: 0;
    list-style: none;
}

ul.header-nav__aside-menu li {
    border-bottom: 1px solid #e5e7eb;
    font-weight: 400;
    font-stretch: normal;
    font-size: 16px;
    line-height: 2rem;

}

ul.header-nav__aside-menu li:hover {
    background-color: rgb(243 244 246 / 1);
}

ul.header-nav__aside-menu li a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #4d5761;
    text-decoration: none;
    justify-content: space-between;
}

.header-aside-menu__item-arrow div i {
    font-size: 20px;
    position: relative;
    top: 3px;
}

.offcanvas-body {
    padding: 0;
}

.wrap-grid {
    position: relative;
}

.header-aside-menu {
    position: absolute;
    top: 111px;
    left: 0;
    padding: 0 20px;
}

.btn-header-place {
    text-align: end;
}

@media screen and (max-width: 991px) {
    .header-aside-menu {
        position: relative;
        top: 0;
        left: unset;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .btn-header-place {
        text-align: start;
    }
}

/* breadcrumb nav */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-top: 40px;
    direction: rtl;
}

.breadcrumb li {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #384250;
    cursor: pointer;
    padding-right: 4px;

}

.breadcrumb li a {
    color: #384250;
    font-size: 10px;
}

.breadcrumb li a.active {
    color: #9da4ae;
}

/* titles */
.title-x1 {
    color: #161616;
    line-height: 38px;
    font-weight: 700;
    font-size: 30px;
}

/* counter */
.counter-items {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.counter-item {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-item h1 {
    color: #161616;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 0;
}

.counter-item p {
    color: #1b8354;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}


/* buttons */
.uj-btn {
    appearance: none;
    border-radius: 4px;
    cursor: pointer;
    border: 0px;
    min-width: max-content;
    outline: none;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}

.uj-btn-primary {
    color: #fff;
    background-color: #1b8354;
}

.uj-btn-primary:hover {
    background-color: #166a45;
    color: #fff;
}

.uj-btn-black {
    color: #fff;
    background-color: #161616;
}

.uj-btn-black:hover {
    background-color: #000;
    color: #fff;
}


.uj-btn-secondary {
    background-color: #fff;
    color: #1b8354;
    border: 1px solid #1b8354;
}

.uj-btn-secondary:hover {
    background-color: #1b8354;
    color: #fff;
}

.uj-btn-underline {
    color: #1b8354;
    text-decoration: underline;
    margin-left: 10px;
}

.uj-btn-underline:hover {
    color: #166a45;
}

.uj-btn-outline-gray {
    color: #2b2b2b;
    border: 1px solid #9da4ae;

}

.uj-btn-outline-gray:hover {
    color: #161616;
}


/* sub header */

.sub-header {
    width: 100%;
    height: 250px;
    position: relative;
}

.sub-header img {
    width: 100%;
    height: 100%;
}

.sub-header-content {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 20px;
    /* background: linear-gradient(90deg, rgb(27 131 84 / 60%) 0%, rgb(27 131 84 / 95%) 50%); */
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    align-items: flex-start;
}

.sub-header-content h1 {
    color: #fff;
}

/* accordion */

.accordion-button::after {
    position: absolute;
    top: 15px;
    left: 5px;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 6px;
    outline: 0;
    background-color: #f3f4f6;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: #161616;
    background-color: transparent;
    box-shadow: 0 0;

}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.accordion-button:focus {
    box-shadow: 0 0;
}

.accordion-item {
    margin-bottom: 20px;
    background-color: #f3f4f6;
    box-shadow: 0 0;
    border: 0;
}

.accordion-flush .accordion-item {
    border-radius: 7px;

}

/* cards */
.card {
    background-color: #fff;
    border: 1px solid #D2D6DB;
    border-radius: 16px;
}

.card p {
    text-align: justify;
}

.card .card-icon {
    display: flex;
    min-width: 56px;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #067647;
    background-color: #f3fcf6;
}

.card .card-icon i {
    font-size: 24px;
}

.card .card-tag {
    margin-bottom: 20px;
}

.card .card-tag .card-tag-active {
    border: 1px solid #1B8354;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #ECFDF3;
}

.card .card-tag .card-tag-end {
    border: 1px solid #ffbfbf;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #fff2f2;
}

.aside-menu-content {
    padding: 40px;
}

.card-body-tilte {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.card-body-tilte h3 {
    color: #1F2A37;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.card-body-tilte i {
    color: #1B8354;
    font-size: 24px;
}

.stamp-link-box {
    display: flex;
    gap: 4px;
    color: #1B8354;
}

.stamp-link-box a:hover {
    color: #1a7d50;
}

.stamp-link-box i {
    position: relative;
    top: 3px;
}

/* card2 */
.card2 {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 16px;
    margin-bottom: 20px;
}

.card2-border {
    margin: 10px;
    border-right: 3px solid #1B8354;
}

.card2-border-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    position: relative;
    top: -1px;
    padding-bottom: 40px;
}

.card2-border-right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    right: -14px;
}

.card2-border-left {
    color: #1B8354;
    border: 1px solid #ededed;
    border-radius: 5px;
    padding: 0px 6px;
}

.card2-border-right-number {
    background-color: #fff;
    padding: 0px 9px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #1B8354;
    color: #1B8354;
}

.card2-border-box .card2-border-right i {
    opacity: 0;
    position: absolute;
}

.box-active .card2-border-right .card2-border-right-number {
    background-color: #1B8354;
}

.box-active .card2-border-right .card2-border-right-number span {
    opacity: 0;
}

.box-active .card2-border-right i {
    opacity: 1;
    position: absolute;
    font-size: 30px;
    right: -2px;
    color: #ffffff;
}

.box-active .card2-border-left {
    background-color: #ecfdf3;
    border: 1px solid #1B8354;
}

.box-disabled .card2-border-right-number {
    border: 1px solid #D2D6DB;
    color: #D2D6DB;
}

.card2-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 20px;
}

/* slider owl */

.slider-tow .owl-nav {
    float: left;
}

.slider-tow .owl-dots {
    margin-top: 24px;
}

.slider-tow .owl-stage-outer {
    min-height: 130px !important;
}

.slider-tow .owl-dots .owl-dot span {

    width: 16px;
    height: 16px;
}

.slider-tow .owl-nav button.owl-next,
.slider-tow .owl-nav button.owl-prev {
    background-color: #1b8354 !important;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    padding: 0 20px !important;
    width: 48px;
    height: 48px;
}

.slider-tow .owl-nav button.owl-next span,
.slider-tow .owl-nav button.owl-prev span {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    position: relative;
    top: -3px;
}

.slider-tow .owl-dots .owl-dot.active span,
.slider-tow .owl-dots .owl-dot:hover span {
    background: #1b8354;
}

.slider-one-item {

    display: flex;
    align-items: center;
    justify-content: center;

}

.slider-one {
    position: relative;
}

.slider-one .owl-dots {
    display: none;
}

.slider-one-item img {
    max-width: 100px;
    max-height: 100px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #d2d6db;
}

.slider-one .owl-stage-outer {
    min-height: 130px !important;
}


.slider-one .owl-nav button.owl-next,
.slider-one .owl-nav button.owl-prev {
    background-color: #f3f4f6;
    color: #161616;
    font-size: 30px;
    padding: 0 20px !important;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    transform: translateY(50%);
}

.slider-one .owl-nav button.owl-next {
    left: 0;
}

.slider-one .owl-nav button.owl-prev {
    right: 0;
}

.slider-one .owl-nav button.owl-next span,
.slider-one .owl-nav button.owl-prev span {
    position: relative;
    top: -3px;
}

@media screen and (min-width: 991px) {

    .slider-one .owl-nav button.owl-next {
        left: -30px;
    }

    .slider-one .owl-nav button.owl-prev {
        right: -30px;
    }

}

footer {
    background-color: #074D31;
    padding: 40px;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 20px;
}

footer ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-icons {
    display: flex;
    gap: 10px;
}

.footer-icons a {
    border: 1px solid #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
}

.footer-icons a i {
    font-size: 20px;
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}


/* كوكيز */


/* خلفية نصف شفافة */
.cookie-overlay {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    margin: 10px;
    display: none;
    /* مخفي افتراضياً */
}

/* الصندوق */
.cookie-box {
    background: #fff;
    max-width: 480px;
    width: 95%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* زر الإغلاق */
.cookie-box .close-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* العنوان */
.cookie-box h2 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* .cookie-box h2::before {
  content: "🍪";
  font-size: 1.3rem;
} */
.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.cookie-header-icon {
    display: flex;
    min-width: 40px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #067647;
    background-color: #f3fcf6;
}

.cookie-header i {
    font-size: 20px;
    color: #067647;
    background-color: #f3fcf6;
}

/* النص */
.cookie-box p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin: 0 0 1rem;
    text-align: justify;
}

/* الرابط */
.cookie-box a {
    color: #047857;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-box a:hover {
    text-decoration: underline;
}

/* زر القبول */
.cookie-box .accept-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #1b8354;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-box .accept-btn:hover {
    background: #166a45;
    ;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* === Contact Box === */
.contact-box {}

/* === Form Items === */
.contact-box .item {
    margin-bottom: 20px;
}

.contact-box label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 4px;
}

.contact-box label span {
    color: #B42318;
    margin-left: 6px;
    font-size: 18px;
    font-weight: bold;
}

.contact-box label p {
    color: #161616;
    line-height: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}

.input-div {
    border: 0;
    min-width: 200px;
    border-radius: 4px;
    border: 1px solid transparent;
    line-height: 0;
}

.input-div:hover {
    border: 1px solid #9da4ae;
    border-radius: 2px;
}

.input-div input,
.input-div textarea,
.input-div select {
    border-radius: 4px;
    padding: 0 8px;
    font-weight: 400;
    font-stretch: normal;
    font-size: 14px;
    line-height: 20px;
    background-color: #f3f4f6;
    border: 0;
    outline: 0;
    min-height: 40px;
    height: 100%;
    width: 100%;
    color: #384250;
}

.input-div textarea {
    padding: 12px 16px;
    background-color: #f3f4f6;
    border: 0px;
    outline: 0px;
    height: 100%;
    width: 100%;
    color: #161616;
    resize: none;
    position: relative;
}

.input-div input:focus,
.input-div textarea:focus {
    border-color: #9da4ae;
    background-color: #fff;
}

.input-div textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-green {
    background-color: #1b8354 !important;
    color: #fff !important;
    border-color: #1b8354 !important;
}

.btn-green:hover {
    background-color: #197a4f !important;
}