:root {
    --main-color-dark: #0c4029;
    --main-color-light: #006e3b;
    --white-color: #fff;
    --warning-color: #f80;
}
.app {
    width: 100%;
    overflow: hidden;
}

/* public */
textarea {
    resize: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 !important;
    padding: 0 !important;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li a {
    color: var(--white-color);
}


/* ================================
   Floating Navbar (Final Version)
================================ */

.header-floating {
    position: fixed;
    top: 20px; /* ينزل شوية لتحت */
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
    pointer-events: none; /* مهم عشان يخلي البوكس فقط هو اللي clickable */
}

.header-floating .navbar-box {
  background: #fff; /* عادي بدون شفافية */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    pointer-events: auto;

}
.header-floating .navbar-box.is-sticky {
    background: rgba(255, 255, 255, 0.85) !important; /* ← الشفافية هنا */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(6px);
}


/* =============================
        Navbar Content Styles
============================= */
.navbar {
    background: transparent !important;
    box-shadow: none !important;
}

.navbar ul.navbar-nav {
    display: flex;
    gap: 45px;
    width: 70%;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    position: relative;
    color: var(--main-color-dark);
    font-weight: bold;
    text-decoration: none;
    padding-bottom: 5px;
}

/* Underline Animation */
.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--main-color-dark);
    transition: width 0.5s ease-in-out;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* Login Button */
.navbar a.login-btn {
    background-color: var(--main-color-light);
    color: var(--white-color);
    font-weight: bold;
}
.navbar a.login-btn:hover {
    background-color: var(--main-color-dark);
}

/* Language Dropdown */
.navbar .dropdown button {
    background: none !important;
    border: none;
    color: var(--main-color-light);
}
.navbar .dropdown button:hover {
    color: var(--main-color-dark);
}

/* hero-section */

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 150px 0 130px 0;
}
.hero-section .svg {
    position: absolute;
    left: 0;
}
.hero-section .svg path {
    stroke: var(--warning-color);
    stroke-width: 3;
    stroke-dasharray: 6 12;
    stroke-dashoffset: 0;
    animation: smoothFlow 3s linear infinite;
    opacity: 1;
}

@keyframes smoothFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200; /* لازم رقم كبير لتجنب القفزة */
    }
}
.hero-section .image {
    position: relative;
}
.hero-section .image img:first-child {
    position: absolute;
    left: 41%;
    top: -48px;
}
.hero-section .image img:last-child {
    position: absolute;
    left: 46%;
    bottom: -41px;
}

.hero-section .image img {
    max-width: 367px;
    height: auto;
    margin-top: 22px;
    margin-left: 34px;
}

.hero-section .text {
    max-width: 60%;
}
.hero-section .text p {
    margin: 13px 0 !important;
}

.hero-section h1 {
    font-size: 60px;
    color: var(--main-color-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.hero-section p {
    font-size: 36px;
    color: #7a7a7a;
    margin-bottom: 30px;
    font-weight: bold;
}

.hero-section .text a {
    background-color: #0e7b50;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 1px 6px 18px -4px rgba(0, 0, 0, 0.34);
    -webkit-box-shadow: 1px 6px 18px -4px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 1px 6px 18px -4px rgba(0, 0, 0, 0.34);
    transition: all 0.5s ease-in-out;
    font-weight: bold;
    text-decoration: none;
}
.hero-section .text a:hover {
    padding-left: 60px;
    padding-right: 60px;
}
.hero-section a:hover {
    opacity: 0.9;
}

/* counts */
.counts .app-counts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.counts .app-counts .count {
    position: relative;
    border: 1px solid #ccc;
    border-end-end-radius: 20px;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.19);
}
.counts .app-counts .count .icon {
    position: absolute;
    left: 0;
    top: 0;
    background-color: red;
    background-color: var(--main-color-light);
    padding: 8px 13px;
    color: #fff;
    font-size: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.counts .app-counts .count h3 {
    font-size: 18px;
    margin-top: 7px !important;
}
.counts .app-counts .count h3,
.counts .app-counts .count h2 {
    font-weight: bold;
    color: var(--main-color-dark);
}

/* About Section */

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    direction: rtl;
    gap: 40px;
    margin: 120px 0;
}

.about-section .content {
    max-width: 50%;
}

.about-section .content h3 {
    color: #026341;
    font-size: 22px;
    margin-bottom: 20px !important;
    font-weight: bold;
}

.about-section .content h2 {
    color: #014c2f;
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.about-section .content p {
    color: #666;
    font-size: 19px;
    line-height: 1.8;
    margin: 20px 0 !important;
    font-weight: bold;
}

.about-section .content button {
    background: #026341;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 0;
    cursor: pointer;
    font-size: 18px;
}

.image-box {
    position: relative;
    max-width: 45%;
}

.image-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* الديكورات */
.image-box .shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #e0f1e8;
    border-radius: 50%;
    z-index: -1;
}
.image-box img {
    padding: 2px;
    box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.48);
    -webkit-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.48);
}
.image-box .shape1 {
    position: absolute;
    top: -9px;
    right: -34px;
    width: 130px;
    height: 130px;
    background: rgba(2, 99, 65, 0.3);

    transform: rotate(45deg);
    border-radius: 15px;
    z-index: -1;
}

/* الشكل الفاتح خلفه */
.image-box .shape2 {
    position: absolute;
    top: 21px;
    right: -37px;
    width: 130px;
    height: 130px;
    background: #026341;

    transform: rotate(45deg);
    border-radius: 20px;
    z-index: -2;
}

/*  ------------------------------ Vision ------------------------------ */
.vision {
    position: relative;
    height: 400px;
}
.vision .cricle-right {
    position: absolute;
    right: -30px;
}
.vision .cricle-left {
    position: absolute;
    left: -30px;
}
.vision .content {
    position: absolute;
    width: 50%;
    margin: auto;
    left: 25%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vision .content .arrow {
    position: absolute;
    left: 20%;
    top: 80px;
}
.vision .content .top,
.vision .content .bottom {
    background-color: #fff;
    padding: 20px 20px;
    width: 400px;
    text-align: center;
    color: var(--main-color-light);
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
}
.vision .content .top {
    position: absolute;
    left: 0;
}
.vision .content .bottom {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* core_values */
.core_values {
    text-align: center;
    font-weight: bold;
    color: var(--main-color-dark);
}
.core_values > h2 {
    margin-bottom: 40px !important;
}

.core_values .app_core_values {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    align-items: center;
}
.core_values .app_core_values .item {
    width: 18%;
    background-color: #e1eee7;
    padding: 20px 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    height: 100%;
}

.core_values .app_core_values .item > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.core_values .app_core_values .item > header svg {
    width: 25px !important;
}

.core_values .app_core_values .item h3 {
    font-size: 20px;
}

.app_core_values .arrow {
    transition: transform 0.3s ease;
}
.app_core_values .item.active .arrow {
    transform: rotate(180deg);
}
.app_core_values .hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.app_core_values .item.active .hidden-content {
    max-height: 200px;
    margin: 20px 0;
}
.app_core_values .item.active .hidden-content p {
    font-size: 17px;
}
.app_core_values .item.active .arrow {
    transform: rotate(180deg);
}

/* --------------------- why-choose-us  -------------------  */
.why-choose-us {
    margin: 90px 0;
}

.why-choose-us header {
    text-align: center;
}
.why-choose-us header h2 {
    color: var(--main-color-dark);
    font-weight: bold;
}
.why-choose-us header p {
    color: #444444;
    margin-top: 15px !important;
    font-size: 19px;
    font-weight: bold;
}
.why-choose-us .app-why-choose-us {
    display: flex;
    gap: 5%;
    margin: 40px 0;
    flex-wrap: wrap;
    flex-direction: row;
}
.why-choose-us .app-why-choose-us .item {
    border: 1px solid #c9c9c9;
    height: 100%;
    width: 45%;
    padding: 12px 10px;
    box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.why-choose-us .app-why-choose-us .item h4 {
    font-weight: bold;
    color: var(--main-color-light);
}
.why-choose-us .app-why-choose-us header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    cursor: pointer;
}
.why-choose-us .app-why-choose-us header .content-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row-reverse;
}
.why-choose-us .app-why-choose-us header .svg {
    background-color: #e1eee7;
    padding: 15px;
    color: var(--white-color) !important;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-us .app-why-choose-us header .svg svg {
    width: 35px;
    height: 35px;
}

.app-why-choose-us .item .hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    opacity: 0;
    color: #555;
    line-height: 1.8;
    color: #555;
}
.app-why-choose-us .item .hidden-content p {
    font-size: 21px;
    color: #404040;
    font-weight: bold;
}
.app-why-choose-us .item.active .hidden-content {
    max-height: 120px;
    opacity: 1;
    padding: 0 35px;
}

.app-why-choose-us .arrow {
    transition: transform 0.3s ease;
}

.app-why-choose-us .item.active .arrow {
    transform: rotate(180deg);
}

/* Clinent Slider */

.clients-slider {
    width: 100%;
    padding: 20px 0;
}
.clients-slider header h2 {
    color: var(--main-color-dark);
    font-weight: bold;
    text-align: center;
    margin: 50px 0 !important;
}
.app-clients-slider {
    background-color: #f9f9f9;
}

.swiper-slide {
    text-align: center;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
}

.client-logo {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;

    padding: 15px;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 2px;
    box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 12px 18px -17px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.client-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.swiper-slide:hover .client-name {
    color: #3498db;
}

.client-desc {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 200px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #3498db;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3498db;
    transform: scale(1.2);
}

/* ------------------------- testimonials ------------------------ */

.testimonials-container {
    margin: 120px auto;
    padding: 20px;
    width: 60% !important;
}
.testimonials-container header h2 {
    color: var(--main-color-dark);
    font-weight: bold;
    text-align: center;
}
.testimonials-container .swiper {
    width: 100%;
    height: 100%;
    padding: 50px 10px;
}

.testimonials-container .swiper-slide {
background: rgba(255, 255, 255, 0.72);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.42);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.42);
}

.testimonials-container .swiper-slide:hover {
    transform: translateY(-10px);
}

.testimonials-container .testimonial-content {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #000;
    font-weight: bold;
}

.testimonials-container .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonials-container .author-info {
    margin-right: 15px;
}
.testimonials-container .author-info svg {
    z-index: -1;
    position: absolute;
    left: 42%;
    top: 50px;
}
.testimonials-container .author-info img {
    border-radius: 50%;
    padding: 5px;
    box-shadow: -9px 11px 12px -9px rgba(0, 0, 0, 0.13);
    -webkit-box-shadow: -9px 11px 12px -9px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: -9px 11px 12px -9px rgba(0, 0, 0, 0.13);
}
.testimonials-container .author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 10px;
    margin-bottom: 5px;
}

.testimonials-container .author-position {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonials-container .stars {
    color: var(--main-color-dark);
    background-color: #d9ffec;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 10px;
    letter-spacing: 3px;
}

.testimonials-container .company-logo {
    margin-top: 15px;
    font-weight: bold;
    color: #3498db;
    font-size: 1.3rem;
    text-align: left;
}

.testimonials-container .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: #bdc3c7;
    opacity: 1;
}

.testimonials-container .swiper-pagination-bullet-active {
    background: #3498db;
}

.testimonials-container .swiper-button-next,
.testimonials-container .swiper-button-prev {
    color: #3498db;
}

.testimonials-container .swiper-button-next,
.testimonials-container .swiper-button-prev {
    color: var(--main-color-dark);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    padding: 5px;
}

.testimonials-container .swiper-button-next:after,
.testimonials-container .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.testimonials-container .swiper-pagination-bullet-active {
    background-color: var(--main-color-dark);
}

/* ---------------------- Services ---------------- */
.services .container > header {
    text-align: center;
}
.services .container > header h2 {
    color: var(--main-color-dark);
    font-weight: bold;

    margin-bottom: 12px !important;
}
.services .container > header p {
    font-weight: bold;
    color: #444444;
}
.services .top-services {
    margin: 80px 0;
}
.services .top-services .app-top-services {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.services .top-services .app-top-services .content {
    width: 70%;
}
.services .top-services .app-top-services .content header h3 {
    font-weight: bold;
    margin-bottom: 15px !important;
    color: var(--main-color-dark);
}
.services .top-services .app-top-services .content header p {
    color: #444444;
    font-weight: bold;
    width: 60%;
}

.services .top-services .app-top-services .content .points .point {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
    position: relative;
}
.services .top-services .app-top-services .content .points .point h4 {
    color: var(--main-color-dark);
    font-weight: bold;
    font-size: 17px;
}
.services .top-services .app-top-services .content .points .point .image {
    background-color: #fff;
    padding: 10px;
    border: 5px solid var(--main-color-light);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* الخط العمودي بين النقاط */
.services
    .top-services
    .app-top-services
    .content
    .points
    .point:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 23px;
    top: calc(100% - 5px);
    transform: translateX(-50%);
    width: 5px;
    height: calc(100% + 10px);
    background-color: var(--main-color-light);
    z-index: 1;
}

.services .top-services .app-top-services .content .points .point .image i {
    color: var(--main-color-light);
    font-size: 25px;
}
.services .top-services .app-top-services .images {
    width: 40%;
    position: relative;
    overflow: hidden;
}
.services .top-services .app-top-services .images .img1,
.services .top-services .app-top-services .images .img2 {
    position: absolute;
    object-fit: cover;
}
.services .top-services .app-top-services .images .img1 {
    width: 331px;
    height: 331px;
    top: 0;
    left: 0;
    border: 5px solid var(--main-color-light);
    border-radius: 10px;
}
.services .top-services .app-top-services .images .img2 {
    width: 273px;
    height: 273px;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 2px;
    background-color: #fff;
}

.services .bottom-services .app-bottom-services {
    display: flex;
    justify-content: space-between;
    gap: 1%;
}
.services .bottom-services .app-bottom-services .item {
    width: 24%;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #ebfff6;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.42);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.42);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.42);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.services .bottom-services .app-bottom-services .item:hover {
    transform: translateY(-30px);
}
.services .bottom-services .app-bottom-services .item h5 {
    color: var(--main-color-light);
    position: relative;
    font-size: 15px;
}
.services .bottom-services .app-bottom-services .item h5::after {
    content: "";
    position: absolute;
    width: 15%;
    height: 4px;
    background-color: var(--main-color-light);
    top: 45%;
    left: 50px;
}
.services .bottom-services .app-bottom-services .item p {
    font-weight: bold;
    color: var(--main-color-dark);
    padding: 20px 0 !important;
}
.services .bottom-services .app-bottom-services .item .btn {
    background-color: var(--main-color-light);
    font-weight: bold;
    border-radius: 15px;
    padding: 10px 50px;
    color: var(--white-color);
    margin-top: 15px;
    transition: all 0.5s ease-in-out;
}
.services .bottom-services .app-bottom-services .item .btn:hover {
    background-color: var(--warning-color);
}
/* .services .top-services .app-top-services .content ul li {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items:  center;
  margin: 30px 0;
}
.services .top-services .app-top-services .content ul li  p {
  font-weight: bold;
  color: var(--main-color-dark);
  font-size: 20px;
}
.services .top-services .app-top-services .content ul li  img{
  border: 1px solid var(--main-color-dark);
  border-radius: 50%;
  padding: 20px;
} */

/* --------------------------- technology-is-used ---------------- */
.technology-is-used {
    text-align: center;
    margin: 100px 0 !important;
}
.technology-is-used header h2 {
    font-weight: bold;
    color: var(--main-color-dark);
    padding-bottom: 12px !important;
}
.technology-is-used header p {
    color: #444444;
    font-weight: bold;
}
.technology-is-used .service-whatsapp {
    text-align: right;
    padding: 20px 0;
}
.technology-is-used .service-whatsapp h4 {
    font-weight: bold;
    color: var(--main-color-dark);
}
.technology-is-used .service-whatsapp p {
    font-weight: bold;
    padding: 10px 0 !important;
}
.technology-is-used .app-technology-is-used {
    display: flex;
    align-items: center;
}
.technology-is-used .app-technology-is-used .item {
    padding: 50px 0;
}
.technology-is-used .app-technology-is-used .item.vector {
    animation: arrowMove 1.5s ease-in-out infinite;
}

.technology-is-used .app-technology-is-used .item .image {
    margin-bottom: 50px;
}
.technology-is-used .app-technology-is-used .item .image img {
    border: 5px solid var(--main-color-dark);
    padding: 20px;
    border-radius: 50%;
    box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.6);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.6);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 111, 57, 0.6);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.technology-is-used .app-technology-is-used .item .image img:hover {
    transform: rotate(360deg);
}
.technology-is-used .app-technology-is-used .item h3 {
    font-weight: bold;
    color: #000;
    margin-bottom: 15px !important;
}

.technology-is-used .app-technology-is-used .item p {
    font-weight: bold;
    color: #555;

    padding: 15px !important;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* -------------------------- human-power ----------------------- */
.human-power > header {
    text-align: center;
}

.human-power > header h2 {
    font-weight: bold;
    color: var(--main-color-dark);
    padding: 10px 0 !important;
}
.human-power > header p {
    font-weight: bold;
}

.human-power .app-human-power {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    height: 500px;
    gap: 5%;
}
.human-power .app-human-power .content {
    width: 55%;
}
.human-power .app-human-power .images {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.human-power .app-human-power .images .img1,
.human-power .app-human-power .images .img2 {
    position: absolute;
    object-fit: cover;
}
.human-power .app-human-power .images .img1 {
    width: 331px;
    height: 331px;
    top: 0;
    left: 0;
    border: 5px solid var(--main-color-light);
    border-radius: 10px;
}
.human-power .app-human-power .images .img2 {
    width: 273px;
    height: 273px;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 2px;
    background-color: #fff;
}

.human-power .app-human-power .content > header {
    text-align: center;
    margin: 40px 0;
}
.human-power .app-human-power .content > header p:nth-child(2) {
    font-weight: 500 !important;
}
.human-power .app-human-power .content > header p:last-child {
    font-weight: 500;
    padding-top: 20px !important;
    font-family: "Tajawal", sans-serif;
    font-size: 20px !important;
    text-align: justify;
    color: #444444;
}
.human-power .app-human-power .content > header h2 {
    font-weight: bold;
    padding: 5px !important;
}

.human-power .app-human-power .content .items h2 {
    margin-bottom: 30px !important;
    font-weight: bold;
    color: var(--main-color-dark);
    text-align: center;
}
.human-power .app-human-power .content .items .app-items {
    display: flex;
    gap: 5px;
}
.human-power .app-human-power .content .items .app-items .item {
    text-align: center;
    background-color: e1e1e11a;
    padding: 15px;
    border-radius: 20px;
}
.human-power .app-human-power .content .items .app-items .item h3 {
    font-weight: bold;
    color: var(--main-color-dark);
    padding: 15px 0 !important;
    font-size: 19px;
}

.human-power .app-human-power .content .items .app-items .item p {
    font-weight: bold;
    font-size: 13px;
    color: #444444;
}

/* ------------------ counts ------------------ */

.counts .app-counts {
    display: flex;
    margin: 88px 0;
}
.counts .app-counts .item {
    background-color: #e1eee7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    width: 25%;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease-in-out;
}
.counts .app-counts .item:hover {
    background-color: var(--warning-color);
    color: #fff !important;
    transform: translateY(-10px);
}
.counts .app-counts .item:hover h4,
.counts .app-counts .item:hover h3 {
    color: #fff !important;
}
.counts .app-counts .item img {
    background-color: var(--main-color-dark);
    padding: 10px;
    border-radius: 15px;
}
.counts .app-counts .item h3 {
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.counts .app-counts .item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px !important;
    color: #4b6256;
    transition: all 0.3s ease-in-out;
}

/* ---------------------------- application ----------------------------  */
.application {
    background: linear-gradient(to bottom, #ffffff 0%, #dcffed 100%);
    padding: 20px;
}

.application .app-application {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    border-radius: 20px;
    gap: 70px;
}
.application .app-application > img {
    animation: arrowMove 1.5s ease-in-out infinite;
}
.application .content {
    text-align: center;
}
.application .content h1 {
    font-weight: bold;
    font-size: 80px;
    color: var(--main-color-dark);
    margin-bottom: 40px !important;
}

.application .content .images {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* ----------------------- footer -------------------------- */
.footer {
    background-image: url(../images/footer.jpg);
    height: 370px;
    background-size: cover;
    position: relative;
}
.footer::after {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0c4029e5;
    opacity: 0.7;
}
.footer .app-footer {
    position: absolute;
    right: 0;
    z-index: 1;
    display: flex;
    color: var(--white-color);
    height: 100%;
    justify-content: space-between;
    width: 100%;
    padding: 0 200px;
    align-items: center;
    flex-direction: row-reverse;
}
.footer .app-footer .item:first-child {
    width: 20%;
}
.footer .app-footer .item:first-child p {
    padding: 28px 0 !important;
    font-weight: bold;
    color: #ffffff;
    font-size: 15px;
}
.footer .app-footer .item:first-child .socials {
    display: flex;
    gap: 20px;
}
.footer .app-footer h2 {
    margin-bottom: 20px !important;
    color: #008240;
    font-weight: bold;
}
.footer .app-footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .app-footer a {
    text-decoration: none;
    color: #e4ffef;
    font-weight: bold;
}

/* ------------------------------------------------------------------------------------------ Countact Us ------------------------------ */
.contact-us {
    background-color: #fff;
    margin: 150px 0;
    padding: 25px;
    border-radius: 15px;
}
.contact-us .app-contact-us {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}
.contact-us .app-contact-us .right {
    width: 50%;
}
.contact-us .app-contact-us .right header {
    text-align: center;
}
.contact-us .app-contact-us .right header h2 {
    color: var(--main-color-dark);
    font-weight: bold;
    margin-bottom: 20px !important;
}
.contact-us .app-contact-us .right header p {
    font-weight: bold;
    margin-bottom: 20px !important;
}
.contact-us .app-contact-us .right .items-top .app-items-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.contact-us .app-contact-us .right .items-top .app-items-top .item {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: -3px 2px 14px -2px rgba(0, 0, 0, 0.11);
    -webkit-box-shadow: -3px 2px 14px -2px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: -3px 2px 14px -2px rgba(0, 0, 0, 0.11);
    border: 1px solid #dddddd;
}
.contact-us .app-contact-us .right .items-top .app-items-top .item p {
    font-weight: bold;
    color: #585858;
}
.contact-us .app-contact-us .right .items-top .app-items-top .item .icon {
    background-color: var(--main-color-dark);
    color: #fff;
    padding: 15px;
    text-align: center;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-us .app-contact-us .right .items-top .app-items-top .item h3 {
    font-weight: bold;
    color: var(--main-color-dark);
    font-size: 20px;
    padding: 15px 0 !important;
}

.contact-us .app-contact-us .right .items-bottom h2 {
    text-align: center;
    margin: 40px 0 !important;
}
.contact-us .app-contact-us .right .items-bottom .app-items-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1%;
}
.contact-us .app-contact-us .right .items-bottom .app-items-bottom .item {
    text-align: center;
    border: 1px solid #eee;
    width: 33.3%;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.17);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.contact-us .app-contact-us .right .items-bottom .app-items-bottom .item:hover {
    background-color: #000;
    color: #fff;
}
.contact-us
    .app-contact-us
    .right
    .items-bottom
    .app-items-bottom
    .item:hover
    h3 {
    color: #fff;
}

.contact-us .app-contact-us .right .items-bottom .app-items-bottom .item h3 {
    font-size: 19px;
    font-weight: bold;
    color: var(--main-color-dark);
    margin: 10px 0 !important;
}
.contact-us .app-contact-us .right .items-bottom .app-items-bottom .item p {
    font-weight: bold;
    font-size: 13px;
}
.contact-us .app-contact-us .left {
    width: 48%;
    background-color: #fafafa;
    padding: 0 17px;
}
.contact-us .app-contact-us .left form .form-group {
    margin: 15px 0;
}
.contact-us .app-contact-us .left form .form-group label {
    font-weight: bold;
}
.contact-us .app-contact-us .left form .form-group label .required {
    color: rgb(255, 17, 0);
}
.contact-us .app-contact-us .left form .form-group input {
    padding: 15px;
    border: 1px solid #eee;
}
.contact-us .app-contact-us .left form .form-group input:focus {
    outline: none !important;
    box-shadow: none !important;
}
.contact-us .app-contact-us .left form .form-group textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #eee;
}
.contact-us .app-contact-us .left form .form-group .btn {
    width: 100%;
    padding: 17px 0;
    box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.47);
    -webkit-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: -2px 2px 21px -9px rgba(0, 0, 0, 0.47);
}

/* ----------------------- maps --------------------------- */
.maps {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 90px;
}
.maps iframe {
    width: 100%;
    height: 100%;
}
.maps h3 {
    position: absolute;
    left: 5px;
    top: 10px;
    background: #ddffef;
    color: var(--main-color-dark);
    font-size: 14px;
    padding: 20px 30px !important;
    border-radius: 10px;
    font-weight: bold;
}

/* ----------------------------------------------  integration ------------------------------------------------------ */
.integration {
    margin: 100px 0;
}
.integration-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-svg {
    max-width: 260px;
    height: auto;
}

/* المجموعة اللي بتلف */
.rotate-group {
    animation: rotateCircle 14s linear infinite;
    transform-box: fill-box;
    transform-origin: 50% 50%;
}

/* دوران لا نهائي ناعم */
@keyframes rotateCircle {
    to {
        transform: rotate(360deg);
    }
}

.integration > header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
    width: 70%;
    margin: auto;
}
.integration header h2 {
    width: 50%;
    font-size: 35px;
    font-weight: bold;
    color: var(--main-color-dark);
    line-height: 3rem;
}
.integration .items {
    display: flex;
    gap: 1%;
    align-items: center;
    margin: 50px 0;
    flex-wrap: wrap;
}
.integration .items .item {
    border: 1px solid #d5d5d5;
    background-color: #fff;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32.3%;
    border-radius: 10px;

    margin-bottom: 30px;
    box-shadow: -3px 9px 5px -8px rgba(0, 0, 0, 0.32);
    -webkit-box-shadow: -3px 9px 5px -8px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: -3px 9px 5px -8px rgba(0, 0, 0, 0.32);
}
.integration .items .item > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.integration .items .item > div header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.integration .items .item > div header h5 {
    font-weight: bold;
    color: var(--main-color-dark);
}
.integration .items .item > div h4 {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    padding: 10px !important;
    border-radius: 10px;
    margin: 10px 0 !important;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

/* -------- are_you_search ---------------- */
.are_you_search {
    border: 1px solid #eee;
    margin: 80px 0;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 16px -7px rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 10px 10px 16px -7px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 10px 10px 16px -7px rgba(0, 0, 0, 0.19);
}
.are_you_search h2 {
    color: var(--main-color-dark);
    padding-bottom: 20px !important;
    font-weight: bold;
}
.are_you_search p {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 50px !important;
    color: #444;
}
.are_you_search .btn {
    background-color: var(--main-color-dark);
    color: var(--white-color);
    padding: 12px 60px !important;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.are_you_search .btn:hover {
    background-color: #000;
}

/* to_serve_you */
.to_serve_you {
    text-align: center;
    margin: 80px 0;
}
.to_serve_you h2 {
    font-size: 36px;
    font-weight: 700;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}
.to_serve_you > p {
    margin: 15px 0 !important;
    font-weight: 700;
    font-size: 23px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}
.to_serve_you .buttons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.to_serve_you .buttons .button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 10px 10px 17px -4px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 10px 10px 17px -4px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 10px 10px 17px -4px rgba(0, 0, 0, 0.16);
    padding: 15px 35px;
    cursor: pointer;
}
.to_serve_you .buttons .button h5,
.to_serve_you .buttons .button p {
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}

.to_serve_you .buttons .button:first-child {
    background-color: var(--main-color-dark);
    color: #fff;
    border-radius: 5px;
}
.to_serve_you .buttons .button:last-child {
    color: var(--main-color-dark);
    border-radius: 5px;
    border: 2px solid #0c4029;
}
/* الحركة */
@keyframes arrowMove {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); /* يتحرك لتحت */
    }
}

/* public */
.popup-overlay {
    display: none; /* مخفي افتراضيًا */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* الصندوق الأبيض */
.popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 100px 40px;
    max-width: 50%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    line-height: 1.8;
    font-size: 1.1rem;
    color: #222;
}
.popup-box p {
    font-size: 27px;
}

/* زر الإغلاق */
.close-btn {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 25px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}
.close-btn:hover {
    color: #026341;
}

/* مؤثرات الحركة */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* الشكل الافتراضي للرؤية */
#openPopup {
    cursor: pointer;
    color: #026341;
    font-weight: bold;
    transition: color 0.3s;
}
#openPopup:hover {
    color: #01955a;
}
