@font-face {
    font-family: Montserrat-Arabic;
    src: url(../font/alfont_com_Montserrat-Arabic-Regular.ttf);
}
:root {
    --color-primary: #f2994a;
    --color-primary-light: #f1eae5;
    --color-secondary: #2f80ed;
    --color-secondary-light: #56ccf2;
    --color-secondary-very-light: #eef5fe;
    --color-background: #2f80ed14;
    --color-text: #5f5f5f;
}
* {
    box-sizing: border-box;
}
html {
    font-size: 10px;
    font-family: "Montserrat-Arabic", sans-serif;
}
a {
    text-decoration: none;
}
span {
    color: var(--color-primary);
}

/* =================================== */
/* إضافة الحركة عند ظهور السيكشنات */
/* ================================= */

/* جعل العناصر مخفية بدون التأثير على ألوانها */
.reveal {
    filter: opacity(0); /* بدلاً من opacity: 0 لتجنب تغير الألوان */
    visibility: hidden; /* منع العنصر من الظهور قبل الأنيميشن */
    transform: translateY(40px) scale(0.9);
    transition: filter 0.6s ease-out, transform 0.6s ease-out,
        visibility 0s linear;
    will-change: filter, transform; /* تحسين الأداء */
}

/* عند ظهور العنصر */
.reveal.show {
    filter: opacity(1); /* بدلًا من opacity: 1 لضمان عدم تغير الألوان */
    visibility: visible; /* إظهار العنصر بدون تغيير ألوانه */
    transform: translateY(0px);
}

/* إضافة تأخير متتابع للعناصر داخل كل سكشن */
.reveal:nth-child(1) {
    transition-delay: 0s;
}
.reveal:nth-child(2) {
    transition-delay: 0.1s;
}
.reveal:nth-child(3) {
    transition-delay: 0.2s;
}
.reveal:nth-child(4) {
    transition-delay: 0.3s;
}
.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

/* ======================== */
/*========= header =========*/
/* ======================== */
/* ====== تصميم الهيدر الأساسي ====== */
/* الهيدر */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 91px;
    width: 100%;
    padding: 0 20px;
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.logo-header {
    width: 80%;
}

.add {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 270px;
}

.container-btn-header {
    width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-btn-header a {
    font-size: 1.6rem;
    font-weight: 500;
    color: black;
    transition: color 0.3s ease-in-out;
}

nav a:hover,
.container-btn-header a.active {
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.order-btn {
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--color-secondary);
    color: white;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    margin-left: 30px;
}

.order-btn:hover {
    background: var(--color-primary);
}

.menu-toggle {
    display: none;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-secondary);
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -500px;
    width: 250px;

    height: 100vh;
    background: white;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease-in-out;
    z-index: 999;
}

.sidebar-link {
    font-size: 1.6rem;
    padding: 12px;
    margin: 8px 0;
    color: #333;
    background-color: #f2f2f2;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.sidebar-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(-4px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.sidebar-order-wrapper {
    margin-top: auto;
    padding-top: 20px;
}

.sidebar-order-btn {
    display: block;
    padding: 14px;
    background: var(--color-secondary);
    color: white;
    text-align: center;
    border-radius: 14px;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sidebar-order-btn:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

.close-btn {
    background-color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.close-btn:hover {
    background-color: var(--color-primary);
    transform: rotate(90deg) scale(1.1);
}

#overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    transition: all 0.3s ease-in-out;
}

/* =================== */
/* =======hero======== */
/* =================== */

.hero {
    margin: 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
    margin-top: 91px;
    position: relative;
}

.bg-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 370px;
    height: 650px;
}

.bg-right {
    position: absolute;
    top: 0px;
    right: 0px;
}
.container-slide-hero {
    width: 100%;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
}
.mySwiper1 {
    width: 94%;
    min-height: 510px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.swiper-wrapper-hero {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important; /* حركة سلسة بدون توقف */
}
.swiper-slide-hero {
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border-radius: 12px;
}

.card-slide-hero {
    background-color: var(--color-primary-light);

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    position: inherit;

    width: 80%;
    height: 100%;
    display: flex;
    padding-right: 24px;
    align-items: center;
    margin-right: 8%;
}

.card-slide-hero img {
    width: 500px;
    height: 512px;
    margin-right: 24px;
}

.card-slide-hero .text {
    padding-bottom: 5%;
    padding-top: 4%;
}

.card-slide-hero .text span {
    color: var(--color-primary);
}

.card-slide-hero h5 {
    margin: 0px;
    color: #000;
    text-align: right;
    font-family: Montserrat-Arabic;
    font-size: 1.8rem;
    margin-top: 20px;
    font-weight: 500;
}

.card-slide-hero p {
    margin-top: 24px;
    margin-bottom: 4px;
    margin-left: 24px;

    color: #000;
    text-align: right;
    font-family: Montserrat-Arabic;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 58.5px;
}

.btn-card-slide-hero {
    background-color: var(--color-primary);
    color: white;
    padding: 10px;
    font-size: 1.6rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;

    margin-top: 36px;
}
.btn-card-slide-hero:hover {
    background-color: orange;
}
/* تنسيق نقاط التنقل */

.swiper-pagination-hero {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-hero .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    cursor: pointer;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
    background-color: var(--color-text);
}

/* ======================== */
/* =====Our partners====== */
/* ====================== */

.ouePartners {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}
.ouePartners h1 {
    font-size: xx-large;
    font-weight: bolder;
    text-align: center;
}

.ouePartners h1 span {
    color: var(--color-primary);
}
.container-ouePartners-swiper {
    width: 80%;

    position: relative;
}
/* تثبيت السلايدر مع ترتيب الصور في المنتصف */
.mySwiper2 {
    width: 100%;
    height: 100px;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.conainer-slide-ouePartners {
    display: flex;
    justify-content: center;
}
/* السماح بتحريك الشرائح فقط */
.swiper-wrapper-ouePartners {
    width: 90%;
}
.swiper-slide-ouePartners {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.swiper-slide-ouePartners img {
    width: 80px;
    height: auto;
}

/* أزرار التنقل */
/* أزرار التنقل */
.swiper-button-prev-ouePartners,
.swiper-button-next-ouePartners {
    font-size: 2px !important;
    background-color: var(--color-secondary);
    color: white !important ;
    width: 60px !important; /* تحديد عرض الزر */
    height: 60px !important; /* تحديد ارتفاع الزر */
    border-radius: 50%;

    position: absolute;
    z-index: 100;

    cursor: pointer;
}

/* تحديد موقع الزرار داخل السلايدر */
.swiper-button-prev-ouePartners {
    left: -50px !important;
    top: 40% !important;
}

.swiper-button-next-ouePartners {
    right: -50px !important;
    top: 40% !important;
}

/* ============================================== */
/* =================ourCompany================== */
/* ============================================ */

.ourCompany {
    width: 100%;

    background-color: var(--color-secondary-very-light);
}
.ourCompany-con {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 60px;
}
.part-right {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.part-right-img {
    width: 293px;
    height: 548px;
    border-radius: 8px;
}
.part-right-left {
    width: 293px;
    height: 548px;
}
.part-left-top {
    width: 294px;
    padding-top: 10px;
    padding-right: 8px;
    background-color: var(--color-primary);
    border-radius: 8px;
    margin-bottom: 20px;
}
.part-left-top h1 {
    font-weight: 500;
    font-size: 3rem;
    color: white;
}
.part-left-top p {
    font-weight: 500;
    font-size: 2rem;
    color: white;
}
.opinion {
    display: flex;
    justify-content: space-between;
    width: 230px;
    align-items: center;
    margin-top: 10px;
}
.part-left-top-img {
    width: 294px;
    height: 340px;
    border-radius: 8px;
}
.part-left {
    width: 45%;
}
.part-Left-top {
    margin-bottom: 70px;
}
.part-Left-top h1 {
    margin-top: 0px;
    font-weight: 500;
    font-size: 4rem;
    line-height: 48.76px;
}
.part-Left-top span {
    color: var(--color-secondary);
}
.part-Left-top p {
    font-weight: 500;
    font-size: 2rem;
    line-height: 24.38px;
}
.part-left-mid {
    display: flex;
    justify-content: space-between;
    height: 87px;
    margin-bottom: 80px;
}
.part-left-mid p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24.38px;
}
.part-left-mid-right {
    border-right: 5px solid var(--color-secondary);
}
.part-left-mid-right p {
    margin-right: 10px;
}
.part-left-mid-left {
    border-right: 5px solid var(--color-secondary);
    padding-right: 10px;
}
.part-left-mid-left p {
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    padding-right: 10px;
    height: 60px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.38px;
    color: black;

    border: 2.5px solid var(--color-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn svg {
    width: 40px;
    height: 80px;
    transition: stroke 0.3s ease;
    margin-right: 10px;
}

.btn:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn:hover svg path {
    stroke: white;
}

/* ======================= */
/* ======our project===== */
/* ===================== */

.ourProject {
    width: 100%;
    padding-bottom: 150px;
}
.ourProject h1 {
    margin-right: 100px;
    text-align: start;
    font-size: 4rem;
    font-weight: 700;
}
.ourProject h1 span {
    color: var(--color-primary);
}
.container-btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 47px;
}
.container-btn a {
    padding: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    transition: 0.4s;
}
.first-a {
    background-color: var(--color-secondary);
    border-radius: 0px 16px;
}
.last-a {
    background-color: var(--color-primary);
    border-radius: 16px 0px;
}
.last-a:hover {
    background-color: var(--color-secondary);
    border-radius: 4px 13px;
}
.container-card {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
    overflow-x: hidden;
    gap: 50px;
}
.bg-ourProject {
    width: 91vw;
    height: 650px;
    position: absolute;
    background: var(--color-secondary);
    opacity: 60%;
    z-index: 0;
    border-radius: 20px;
}
.img-BottomRight-bg-ourProject {
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.img-TopLeft-bg-ourProject {
    position: absolute;
    top: 0px;
    left: 0px;
}

.container-card .card {
    line-height: 0px;
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    font-weight: 400;
    font-size: 2rem;
    background-color: white;
    border-radius: 10px;
}

.container-card .card img {
    width: 300px;
    height: 300px;
    position: relative;
    bottom: 47px;
    border-radius: 10px;
    transition: 1s;
}

.text-hidden-incard-ourProject {
    display: none;
    gap: 10px;
    width: 100%;
    padding-right: 30px;
    padding-bottom: 10px;
}
.title-hidden-incard {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 14px;
}
.text-hidden-incard-ourProject .decription-hidden-incard {
    font-weight: 200;
    font-size: 1.4rem;
    color: #727272;
    line-height: 14px;
}
.container-card .card:hover img {
    width: 100%;
}
.card:hover .text-hidden-incard-ourProject {
    display: flex;
}

/* ==========================*/
/* ========Services=========*/
/* ========================*/

.Services {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    gap: 30px;

    background-color: var(--color-secondary-very-light);
}
.top {
    width: 88vw;
    height: auto;
    margin-right: 80px;
    margin-left: 80px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-right {
    width: 390px;
    height: 120px;
    gap: 10px;
    font-weight: 500;
    font-size: 4rem;
    line-height: 60px;
}
.top-right span {
    color: var(--color-primary);
}

.top-left {
    border-radius: 24px;
    padding: 16px 26px;
    font-weight: 600;
    font-size: 2rem;

    background-color: var(--color-secondary);
}
.top-left a {
    color: white;
}
.top-left:hover {
    background-color: var(--color-primary);
}

.Website-development {
    width: 88vw;
    height: auto;
    display: grid;
    grid-template-areas:
        "head head head head"
        "item1 item2 item3 item4";
    grid-template-columns: repeat(4, 1fr); /* يجعل الكروت تتساوى في الحجم */
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 80px;
    margin-left: 80px;
    margin-right: 80px;
}

.item-item-Head {
    height: 287px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding-right: 24px;
    padding-left: 24px;
    grid-area: head;
    background-color: white;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0px 4px 4px 0px #b9cde3;
    padding-bottom: 24px;
}
.item-item-Head img {
    width: 380px;
    height: 287px;
}
.item-item-Head h1 {
    font-weight: 600;
    font-size: 3.2rem;
    color: var(--color-secondary);
}
.item-item-Head p {
    font-weight: 400px;
    font-size: 1.6rem;
    line-height: 20px;
    color: var(--color-text);
}

.item-item1 {
    grid-area: item1;
    background-color: white;

    height: auto;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #b9cde3;
}
.bottom1 h1 {
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
}
.bottom1 p {
    font-weight: 400;
    font-size: 12px;
    color: #5f5f5f;
    line-height: 16px;
}

.item-item2 {
    grid-area: item2;

    background-color: white;

    height: auto;

    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #b9cde3;
}

.item-item3 {
    grid-area: item3;
    background-color: white;

    height: auto;

    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #b9cde3;
}

.item-item4 {
    grid-area: item4;
    background-color: white;

    height: auto;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #b9cde3;
}

.item-item-Head img {
    width: 40%;
}

.item-item1 img {
    width: 80%;

    margin-bottom: 30px;
}

.item-item2 img {
    width: 80%;

    margin-bottom: 30px;
}

.item-item3 img {
    width: 80%;

    margin-bottom: 30px;
}

.item-item4 img {
    width: 80%;

    margin-bottom: 30px;
}

/* ======ourTeam===== */

.ourTeame {
    width: 100%;
    padding: 20px;
    height: auto;
    margin-bottom: 6%;
}
.bg-left-ourTeame {
    position: absolute;
    width: 267px;
    height: 201px;
    top: 5px;
    left: 5px;
}
.bg-right-ourTeame {
    position: absolute;
}
.ourTeame h1 {
    font-weight: 700;
    font-size: 4rem;
}
.ourTeame h1 span {
    color: var(--color-primary);
}
.container-ourTeame {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mySwiper3 {
    width: 90%;
    overflow: hidden; /* إخفاء الأجزاء الزائدة */
}

.swiper-wrapper-ourTeame {
    display: flex;
    justify-content: flex-start; /* يجعل التوزيع متساوي */
}

.swiper-slide-ourTeame {
    display: flex;
    justify-content: center;
    width: 294px;
    flex-shrink: 0;
}/* خلفية القسم */
.cards-wrapper {
    background-color: #f9fafc;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  /* البطاقة */
  .card-profial {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5eaf2;
    transition: transform 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }

  .card-profial:hover {
    transform: translateY(-6px);
  }

  /* صورة داخل البطاقة */
  .img-profail-card {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.7s ease;
    clip-path: polygon(
      80% 0,
      100% 20%,
      100% 80%,
      100% 100%,
      20% 100%,
      0 80%,
      0 0
    );
  }

  .card-profial:hover .img-profail-card {
    height: 280px;
    clip-path: polygon(
      100% 0,
      100% 0,
      100% 100%,
      100% 100%,
      0 100%,
      0 100%,
      0 0
    );
  }

  /* النص */
  .card-profial-text {
    padding: 20px;
    text-align: right;
  }

  .card-profial-text h1 {
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 6px;
    color: #f78c1f; /* مثال للون برتقالي احترافي */
  }

.card-profial-text h1 a {
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 6px;
    color: #f78c1f; /* مثال للون برتقالي احترافي */
}

  .card-profial-text h3 {
    font-weight: 400;
    font-size: 1.6rem;
    color: #3b82f6; /* أزرق واضح */
    margin-bottom: 12px;
  }

  .card-profial-text p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
  }

  /* استجابة للشاشات الصغيرة */
  @media (max-width: 768px) {
    .cards-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .img-profail-card {
      height: 220px;
    }

    .card-profial-text h1 {
      font-size: 1.8rem;
    }

    .card-profial-text h3 {
      font-size: 1.4rem;
    }

    .card-profial-text p {
      font-size: 1.3rem;
    }
  }



/* ========================== */
/* =========article========= */
/* ======================== */

.article {
    width: 100%;
    height: auto;
    margin-top: 5%;
}
.article h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-right: 80px;
}

span {
    color: var(--color-primary);
}

/* الشبكة الرئيسية */
.partition {
    display: grid;
    grid-template-areas:
        "large large"
        "tall small1 "
        "tall small2 ";
    gap: 40px;
    width: 90vw;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-right: 80px;
}

/* المقال الأول (كبير) */
.article-item-large {
    grid-area: large;
    display: flex;
    gap: 40px;
    align-items: center;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 30px;
    width: 90vw;
}
.content-content-larg {
    width: 70%;
}

.content-content-larg h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-secondary);
}
.content-content-larg p {
    font-weight: 400;
    font-size: 20px;
    color: var(--color-text);
}

.article-item-large-img {
    width: 624.5px;

    height: 308px;
    border-radius: 8px;
}

/* المقال الطويل */
.article-item-tall {
    grid-area: tall;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 42vw;

    border-left: 2px solid var(--color-text);
    padding-left: 32px;
    box-sizing: initial;
}

.content-content-tall {
    width: 100%;
    gap: 10px;
}
.content-content-tall h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-secondary);
}
.content-content-tall p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--color-text);
}

.article-item-tall-img {
    width: 100%;
    height: 514px;

    border-radius: 8px;
}

/* المقال الصغير الأول */
.article-item-1 {
    grid-area: small1;
    display: flex;
    gap: 30px;
    align-items: center;
    width: 42vw;
}
.article-item-1-img {
    width: 292.25px;
    height: 327px;
    border-radius: 4px;
}
.content-content-item-1 {
    width: 50%;
    height: auto;
}
.content-content-item-1 h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-secondary);
}
.content-content-item-1 p {
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: var(--color-text);
}

/* المقال الصغير الثاني */
.article-item-2 {
    grid-area: small2;
    display: flex;
    gap: 30px;
    align-items: center;
    border-top: 2px solid var(--color-text);
    padding-top: 50px;
    width: 42vw;
}
.article-item-2-img {
    width: 292.25px;
    height: 327px;
    border-radius: 4px;
}
.content-content-item-2 p {
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: var(--color-text);
}

.sahm {

    display: flex;
    justify-content: space-between;
}

.sahm h2 {
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    line-height: 28px;
}

.sahm-img {
    height: 28px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sahm-img:hover {
    transform: scale(1.4); /* تكبير العنصر بنسبة 20% */
}

/* ================== */
/* =====[ready]===== */
/* ================ */

.ready {
    width: 90%;
    height: auto;
    margin-bottom: 80px;
    margin-top: 150px;
    margin-bottom: 150px;
    margin-right: 3%;
}
.ready h1 {
    font-weight: 500;
    font-size: 40px;
}
.ready span {
    color: orange;
}
.container-login {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 5px 20px 16px #acccf8;
    border-radius: 24px;
    position: relative;
}
.container-login-form {
    width: 540px;
    height: 718px;
    gap: 36px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.container-login-form-text h2 {
    font-weight: 500;
    font-size: 40px;
    color: var(--color-secondary);
}
.container-login-form-text p {
    font-weight: 400;
    font-size: 24px;
}
.container-login-form-type-text {
    width: 540px;
    height: 70px;
    padding: 16px;
    border-radius: 8px;
    background-color: #eaf2fd;
    border: none;
}
.container-login-form-type-email {
    width: 540px;
    height: 70px;
    padding: 16px;
    border-radius: 8px;
    background-color: #eaf2fd;
    border: none;
}
.container-login-form-type-textLarg {
    width: 540px;
    height: 250px;
    padding: 16px;
    border-radius: 8px;
    background-color: #eaf2fd;
    border: none;
}
.container-login-form-type-submit {
    color: white; /* لون النص */
    font-family: Montserrat-Arabic;
    opacity: 0.7; /* شفافية */
    font-weight: 700;
    font-size: 24px;
    background-color: #0471ff;
    padding: 16px;
    border: none;
    border-radius: 8px;
}
input::placeholder {
    color: var(--color-text); /* لون النص */
    font-family: Montserrat-Arabic;
    opacity: 0.7; /* شفافية */
    font-weight: 400;
    font-size: 16px;
}
.media-img {
    width: 500px;
    height: 719px;

    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.media-img1 {
    width: 500px;
    height: 450px;
}
.media {
    width: 500px;
    height: 269px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.media-text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.media-text {
    font-weight: 400;
    font-size: 24px;
}

.container-login form input {
    width: 90%;
}
.left-media {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 25px;
    align-items: center;
    position: absolute;
    left: -50px;
    bottom: 50px;
    border-radius: 5px 0px 0px 20px;
    gap: 10px;
    background: var(--color-secondary);
    width: 50px;
}
.left-media img {
    width: 33px;
    height: 33px;
}

/* =======================*/
/* ===== our-clients=====*/
/* =====================*/

/* تصميم الحاوية العامة للسلايدر */
.our-clients-container {
    background-color: var(--color-secondary-very-light);
    padding: 100px 0px;
}
.container-slide-our-clients {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* تصميم السلايدر */
.mySwiper-our-clients {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    overflow: hidden;
}

.swiper-wrapper-our-clients {
    /* display: flex;
  justify-content: center;
  align-items: center; */
}

/* تصميم كل سلايد */
.swiper-slide-our-clients {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
}

/* تصميم البطاقة داخل كل سلايد */
.card-slide-our-clients {
    background: white;

    position: relative;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    width: 70%;
}

/* تصميم أزرار التنقل */
.swiper-button-next-our-clients,
.swiper-button-prev-our-clients {
    color: var(--color-secondary) !important;
    background: white;
    padding: 10px;
    border-radius: 16px;
    width: 65px !important;
    height: 65px !important;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}

.swiper-button-prev-our-clients {
    left: 15px !important;
}

.swiper-button-next-our-clients {
    right: 15px !important;
}

.card-slide-our-clients {
    position: relative;
}
.our-clients-person {
    width: 161.06045532226562px;
    height: 169px;
}
.our-clients-h {
    font-weight: 500;
    font-size: 40px;
    margin-right: 70px;
}
.comma {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 20px;
    left: 30px;
}
.sec-title-card-ouClients {
    display: flex;
    align-items: center;

    gap: 30px;
    padding: 10px;
}
.sec-title-card-ouClients h2 {
    font-weight: 500;
    font-size: 32px;
}
.sec-title-card-ouClients h4 {
    font-weight: 300;
    font-size: 24px;
    color: var(--color-secondary);
}

.card-slide-our-clients p {
    font-weight: 300;
    font-size: 20px;
    padding: 30px;
    color: var(--color-text);
}

/* ========================== */
/* =========footer========== */
/* ======================== */

.footer-container {
    margin-top: 2%;
    position: relative; /* ✅ الفوتر الآن هو المرجع */
    overflow: hidden; /* حتى لا تخرج الصور خارج الفوتر */
}

.footer-block {
    width: 100%;
    padding: 8px;
    margin-right: 7%;
}
.footer-top {
    width: 88%;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1%;
    border-bottom: 1.5px solid var(--color-text);
    padding-bottom: 1.7%;
}
.footer-top-right {
    width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-top-right a {
    font-weight: 400;
    font-size: 14px; /* حجم الخط */
    color: black; /* لون النص */
}
.footer-top-right a:hover {
    color: var(--color-primary); /* لون أزرق عند التمرير */
    text-decoration: underline; /* إضافة خط تحت الرابط عند التمرير */
}
.footer-top-left {
    width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-top-left a img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-top-left a:hover img {
    transform: scale(1.4); /* تكبير الصورة عند مرور الماوس */
    opacity: 0.8; /* تقليل الشفافية عند مرور الماوس */
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 88%;
    align-items: center;
    margin-top: 2%;
}
.logo-footer {
    width: 79.94439697265625px;
    height: 90px;
}
.footer-top-left img {
    width: 24px;
    height: 24px;
}

.footer-top-left-Twitter img {
    width: 24px;
    height: 20px;
}

/* ✅ تنسيق الصور الديكورية */
.footer-decoration {
    position: absolute;
}

/* الصورة في أقصى اليمين العلوي */
.decoration-top-right {
    top: 0;
    right: 0;
    width: 120px; /* حسب الحاجة */
}

/* الصورة في أقصى اليسار السفلي */
.decoration-bottom-left {
    bottom: 0;
    left: 0;
    width: 120px; /* حسب الحاجة */
}
.footer-decoration .decoration-top-right img {
    width: 120px;
    height: 96px;
}
.footer-decoration .decoration-bottom-left {
    width: 495px;
    height: 840.364501953125px;
}

/*==================================== */
/*============== media=============== */
/*================================== */
@media (max-width: 1400px) {
    .card-slide-hero .text p {
        font-size: 4rem;
    }
    .card-slide-hero img {
        width: 50%;
    }

    /* المقال الصغير الأول */
    .article-item-1 {
        grid-area: small1;
        display: flex;
        gap: 25px !important;
        align-items: center;
        width: 45vw !important;
    }
    .article-item-1-img {
        width: 260.25px !important;
        height: 320px !important;
        border-radius: 4px;
    }
    .content-content-item-1 {
        width: 55% !important;
        height: auto;
    }
    .content-content-item-1 h3 {
        font-weight: 600;
        font-size: 13px !important;
        line-height: 17px !important;
        color: var(--color-secondary);
    }
    .content-content-item-1 p {
        font-weight: 400;
        font-size: 11px !important;
        line-height: 20px !important;
        color: var(--color-text);
    }

    /* المقال الصغير الثاني */
    .article-item-2 {
        grid-area: small2;
        display: flex;
        gap: 25px !important;
        align-items: center;
        width: 45vw !important;
    }
    .article-item-2-img {
        width: 260.25px !important;
        height: 320px !important;
        border-radius: 4px;
    }
    .content-content-item-2 p {
        font-weight: 400;
        font-size: 11px !important;
        line-height: 20px !important;
        color: var(--color-text);
    }
}
@media (max-width: 1200px) and (min-width: 836px) {
    .container-btn-header a {
        font-size: 1.4rem;
        font-weight: 400;
        color: black;
        transition: color 0.3s ease-in-out;
    }

    .order-btn {
        padding: 10px 10px;
        border-radius: 8px;
        background: var(--color-secondary);
        color: white;
        border: none;
        font-size: 1.3rem;
        cursor: pointer;
        margin-right: 10px;
        width: 150px;
    }

    .bg-left {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 250px;
        height: 570px;
    }

    .bg-right {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 240px;
        height: 206px;
    }

    .card-slide-hero h5 {
        margin: 0px;
        color: #000;
        text-align: right;
        font-family: Montserrat-Arabic;
        font-size: 1.8rem;
        margin-top: 20px;
        font-weight: 500;
    }

    .card-slide-hero p {
        margin-top: 24px;
        margin-bottom: 4px;
        margin-left: 24px;

        color: #000;
        text-align: right;
        font-family: Montserrat-Arabic;
        font-size: 3.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 58.5px;
    }
    /* ourCompany*/
    /* ourCompany*/
    /* ourCompany*/
    .part-right-left {
        display: none;
    }
    .ourCompany-con {
        gap: 0px;
    }
    .part-right-img {
        height: 100%;
    }
    .part-Left-top h1 {
        font-size: 3.2rem;
        line-height: 100%;
        margin-bottom: 60px;
    }
    .part-Left-top p {
        line-height: 130%;
    }
    .part-left-mid-right p {
        font-size: 1.5rem;
    }
    .part-left-mid-left p {
        font-size: 1.5rem;
    }
}

@media (max-width: 1100px) {
    /* ======header======== */
    .container-btn-header {
        display: none; /* إخفاء القائمة الأصلية */
    }

    .menu-toggle {
        display: block; /* إظهار زر الهامبرغر */
    }
    /* =======hero======== */
    .card-slide-hero {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        margin-right: 10%;
    }
    .card-slide-hero .text {
        margin-top: 10px;
        order: 1;
        text-align: center;
    }
    .card-slide-hero img {
        width: 80%;
        margin: 0px;
    }
    .card-slide-hero h5 {
        text-align: center;
    }
    .card-slide-hero p {
        margin: 0px;
        text-align: center;
    }
    .btn-card-slide-hero {
        width: 80%;
    }

    /* ================ouePartners=================== */
    .swiper-button-prev-ouePartners,
    .swiper-button-next-ouePartners {
        width: 40px !important;
        height: 40px !important;
        top: 47px !important;
    }

    /* ==========================*/
    /* ========Services=========*/
    /* ========================*/

    .Services {
        width: 100%;
        height: auto;
        padding: 30px 0px;
        gap: 30px;

        background-color: var(--color-secondary-very-light);
    }
    .top {
        width: 88vw;
        height: auto;
        margin-right: 40px;
        margin-left: 40px;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .top-right {
        width: 319px;
        height: 96px;
        gap: 10px;
        font-weight: 500;
        font-size: 3.2rem;
        line-height: 60px;
    }
    .top-right span {
        color: var(--color-primary);
    }

    .top-left {
        border-radius: 12px;
        padding: 24px 14px;
        font-weight: 600;
        font-size: 1.5rem;
        margin-top: 14px;
        background-color: var(--color-secondary);
    }
    .top-left a {
        color: white;
    }
    .top-left:hover {
        background-color: var(--color-primary);
    }

    .Website-development {
        width: 88vw;
        height: auto;
        display: grid;
        grid-template-areas:
            "head head "
            "item1 item2"
            "item3 item4";
        grid-template-columns: repeat(2, 1fr); /* يجعل الكروت تتساوى في الحجم */
        grid-template-rows: auto auto;
        gap: 16px;
        margin-bottom: 80px;
        margin-top: 60px;
        margin-right: 40px;
        margin-left: 40px;
    }

    .item-item-Head {
        height: auto;
        display: flex;
        align-items: center;
        border-radius: 16px;
        padding-right: 24px;
        padding-left: 24px;
        grid-area: head;
        background-color: white;
        margin-bottom: 30px;
        margin-top: 30px;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }
    .item-item-Head img {
        width: 50%;
        height: 95%;
    }
    .item-item-Head h1 {
        font-weight: 700;
        font-size: 2.4rem;
        color: var(--color-secondary);
    }
    .item-item-Head p {
        font-weight: 400px;
        font-size: 1.6rem;
        line-height: 20px;
        color: var(--color-text);
    }

    .item-item1 {
        grid-area: item1;
        background-color: white;

        height: auto;
        border-radius: 10px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }
    .bottom1 h1 {
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 25px;
    }
    .bottom1 p {
        font-weight: 400;
        font-size: 1.2rem;
        color: var(--color-text);
        line-height: 16px;
    }

    .item-item2 {
        grid-area: item2;

        background-color: white;

        height: auto;

        border-radius: 10px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }

    .item-item3 {
        grid-area: item3;
        background-color: white;

        height: auto;

        border-radius: 10px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }

    .item-item4 {
        grid-area: item4;
        background-color: white;

        height: auto;
        border-radius: 10px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }

    .item-item1 img {
        width: 80%;

        margin-bottom: 30px;
    }

    .item-item2 img {
        width: 80%;

        margin-bottom: 30px;
    }

    .item-item3 img {
        width: 80%;

        margin-bottom: 30px;
    }

    .item-item4 img {
        width: 80%;

        margin-bottom: 30px;
    }

    /* ======ourTeam===== */
    /* ======ourTeam===== */
    /* ======ourTeam===== */

    .ourTeame {
        width: 100%;
        padding: 20px;
        height: auto;
    }
    .bg-left-ourTeame {
        position: absolute;
        width: 267px;
        height: 201px;
        top: 5px;
        left: 5px;
    }
    .bg-right-ourTeame {
        position: absolute;
    }
    .ourTeame h1 {
        font-weight: 700;
        font-size: 3.2rem;
        margin-top: 16px;
    }
    .ourTeame h1 span {
        color: var(--color-primary);
    }
    .container-ourTeame {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mySwiper3 {
        width: 99%;
        overflow: hidden; /* إخفاء الأجزاء الزائدة */
    }

    .swiper-wrapper-ourTeame {
        display: flex;
        justify-content: flex-start; /* يجعل التوزيع متساوي */
    }

    .swiper-slide-ourTeame {
        display: flex;
        justify-content: center;
        /* width: 294px; */
        flex-shrink: 0;
    }

    .card-profial {
        width: 294px;
        background: white;
        transition: 0.5s;
        margin-left: 35px;
    }
    .card-profial:hover {
        width: 290px;
    }
    .img-profail-card {
        clip-path: polygon(
            80% 0,
            100% 20%,
            100% 80%,
            100% 100%,
            20% 100%,
            0 80%,
            0 0
        );
        transition: all 0.5s;
        width: 100%;
        height: 320px;
        border-radius: 8px;
    }
    .card-profial:hover .img-profail-card {
        height: 390px;
        clip-path: polygon(
            100% 0,
            100% 0%,
            100% 100%,
            100% 100%,
            0% 100%,
            0 100%,
            0 0
        );
    }
    .card-profial-text {
        text-align: right;
    }
    .card-profial-text h1 {
        font-weight: 500;
        font-size: 3.6rem;
    }
    .card-profial-text h3 {
        font-weight: 300;
        font-size: 2.4rem;
        color: var(--color-secondary);
    }
    .card-profial-text p {
        line-height: 22px;
        font-weight: 300;
        font-size: 1.6rem;
        color: var(--color-text);
    }

    /* ================== */
    /* =====[ready]===== */
    /* ================ */

    .ready {
        width: 90%;
        height: auto;
        margin-bottom: 80px;
        margin-top: 150px;
        margin-bottom: 150px;
        margin-right: 40px;
        margin-left: 40px;
    }
    .ready h1 {
        font-weight: 500;
        font-size: 3.2rem;
    }
    .ready span {
        color: orange;
    }
    .container-login {
        padding: 24px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0px 5px 20px 16px #acccf8;
        border-radius: 24px;
        position: relative;
    }
    .container-login-form {
        width: 540px;
        height: 718px;
        gap: 36px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .container-login-form-text h2 {
        font-weight: 500;
        font-size: 40px;
        color: var(--color-secondary);
    }
    .container-login-form-text p {
        font-weight: 400;
        font-size: 24px;
    }
    .container-login-form-type-text {
        width: 540px;
        height: 70px;
        padding: 16px;
        border-radius: 8px;
        background-color: #eaf2fd;
        border: none;
    }
    .container-login-form-type-email {
        width: 540px;
        height: 70px;
        padding: 16px;
        border-radius: 8px;
        background-color: #eaf2fd;
        border: none;
    }
    .container-login-form-type-textLarg {
        width: 540px;
        height: 250px;
        padding: 16px;
        border-radius: 8px;
        background-color: #eaf2fd;
        border: none;
    }
    .container-login-form-type-submit {
        color: white; /* لون النص */
        font-family: Montserrat-Arabic;
        opacity: 0.7; /* شفافية */
        font-weight: 700;
        font-size: 24px;
        background-color: #0471ff;
        padding: 16px;
        border: none;
        border-radius: 8px;
    }
    input::placeholder {
        color: var(--color-text); /* لون النص */
        font-family: Montserrat-Arabic;
        opacity: 0.7; /* شفافية */
        font-weight: 400;
        font-size: 16px;
    }

    .media-img {
        width: 500px;
        height: 719px;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .media {
        display: none;
    }

    .container-login form input {
        width: 90%;
    }
    .left-media {
        display: none;
    }

    /* =======================*/
    /* ===== our-clients=====*/
    /* =====================*/

    /* تصميم الحاوية العامة للسلايدر */
    .our-clients-container {
        background-color: var(--color-secondary-very-light);
        padding: 100px 0px;
    }
    .container-slide-our-clients {
        width: 80%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    /* تصميم السلايدر */
    .mySwiper-our-clients {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 85%;
        overflow: hidden;
    }

    .swiper-wrapper-our-clients {
        /* display: flex;
  justify-content: center;
  align-items: center; */
    }

    /* تصميم كل سلايد */
    .swiper-slide-our-clients {
        position: relative;
        display: flex !important;
        justify-content: center;
        align-items: center;

        border-radius: 10px;
    }

    /* تصميم البطاقة داخل كل سلايد */
    .card-slide-our-clients {
        width: 542px;
        height: auto;
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 12px;
        padding-bottom: 12px;
        background: white;
        position: relative;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* تصميم أزرار التنقل */
    .swiper-button-next-our-clients,
    .swiper-button-prev-our-clients {
        color: var(--color-secondary) !important;
        background: white;
        padding: 10px;
        border-radius: 16px;
        width: 65px !important;
        height: 65px !important;

        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .swiper-button-prev-our-clients {
        left: 15px !important;
    }

    .swiper-button-next-our-clients {
        right: 15px !important;
    }

    .card-slide-our-clients {
        position: relative;
    }
    .our-clients-person {
        width: 100px;
        height: 100px;
    }
    .client-text-h4 {
        font-size: 50rem;
    }
    .our-clients-h {
        font-weight: 500;
        font-size: 3.2rem;
        margin-right: 40px;
    }
    .comma {
        position: absolute;
        width: 60px;
        height: 60px;
        top: 20px;
        left: 30px;
    }
    .sec-title-card-ouClients {
        display: flex;
        align-items: center;

        gap: 30px;
        padding: 10px;
    }
    .sec-title-card-ouClients h2 {
        font-weight: 500;
        font-size: 2.4rem;
    }
    .sec-title-card-ouClients h4 {
        font-weight: 300;
        font-size: 2rem;
        color: var(--color-secondary);
    }

    .card-slide-our-clients p {
        font-weight: 300;
        font-size: 1.6rem;
        line-height: 24px;
        padding: 30px;
        color: var(--color-text);
    }

    .footer-top {
        width: 88%;
        height: 24px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 1%;
        border-bottom: 1.5px solid var(--color-text);
        padding-bottom: 2.7%;
    }

    /* ========================== */
    /* =========article========= */
    /* ======================== */

    .article {
        width: 100% !important;
        height: auto !important;
        margin-top: 5% !important;
    }

    .article h1 {
        font-weight: 500 !important;
        font-size: 40px !important;
        line-height: 48px !important;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        margin-right: 80px !important;
    }

    span {
        color: var(--color-primary) !important;
    }

    /* الشبكة الرئيسية */
    .partition {
        display: grid !important;
        grid-template-areas: "tall" " small1 " " small2 " !important;
        gap: 40px !important;
        width: 90vw !important;
        margin: 0 auto !important;
        margin-bottom: 40px !important;
        margin-right: 80px !important;
    }

    /* المقال الأول (كبير) */
    .article-item-large {
        display: none !important;

    }

    /* المقال الطويل */
    .article-item-tall {
        grid-area: tall !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 95% !important;
        border-left: none !important;
    }

    .content-content-tall h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-tall p {
        font-weight: 400 !important;
        font-size: 20px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .article-item-tall-img {
        width: 100% !important;
        height: 514px !important;
        border-radius: 8px !important;
    }

    /* المقال الصغير الأول */
    .article-item-1 {
        grid-area: small1 !important;
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .article-item-1-img {
        width: 37% !important;
        height: 327px !important;
        border-radius: 4px !important;
    }

    .content-content-item-1 {
        width: 53% !important;
        height: auto !important;
    }

    .content-content-item-1 h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-item-1 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    /* المقال الصغير الثاني */
    .article-item-2 {
        grid-area: small2 !important;
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
        border-top: none !important;
        padding-top: 50px !important;
        width: 100% !important;
    }

    .article-item-2-img {
        width: 37% !important;
        height: 327px !important;
        border-radius: 4px !important;
    }

    .content-content-item-2 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .sahm {
        display: flex !important;
        justify-content: space-between !important;
    }

    .sahm h2 {
        font-weight: 600 !important;
        font-size: 16px !important;
        margin-top: 20px !important;
        line-height: 28px !important;
    }

    .sahm-img {
        height: 28px !important;
        margin-top: 20px !important;
        display: inline-block !important;
        cursor: pointer !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .sahm-img:hover {
        transform: scale(1.4) !important;
    }
}

@media (max-width: 835px) and (min-width: 430px) {
    /* ======ourTeam===== */

    .ourTeame {
        width: 100%;
        padding: 20px;
        height: auto;
        margin-bottom: 6%;
    }
    .bg-left-ourTeame {
        position: absolute;
        width: 267px;
        height: 201px;
        top: 5px;
        left: 5px;
    }
    .bg-right-ourTeame {
        position: absolute;
    }
    .ourTeame h1 {
        font-weight: 700;
        font-size: 4rem;
    }
    .ourTeame h1 span {
        color: var(--color-primary);
    }
    .container-ourTeame {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mySwiper3 {
        width: 90%;
        overflow: hidden; /* إخفاء الأجزاء الزائدة */
    }

    .swiper-wrapper-ourTeame {
        display: flex;
        justify-content: flex-start; /* يجعل التوزيع متساوي */
    }

    .swiper-slide-ourTeame {
        display: flex;
        justify-content: center;
        width: 294px;
        flex-shrink: 0;
    }

    .card-profial {
        width: 294px;
        background: white;
        transition: 0.5s;
    }
    .card-profial:hover {
        width: 375px;
    }
    .img-profail-card {
        clip-path: polygon(
            80% 0,
            100% 20%,
            100% 80%,
            100% 100%,
            20% 100%,
            0 80%,
            0 0
        );
        transition: all 0.5s;
        width: 100%;
        height: 320px;
        border-radius: 8px;
    }
    .card-profial:hover .img-profail-card {
        height: 423px;
        clip-path: polygon(
            100% 0,
            100% 0%,
            100% 100%,
            100% 100%,
            0% 100%,
            0 100%,
            0 0
        );
    }
    .card-profial-text {
        text-align: right;
    }
    .card-profial-text h1 {
        font-weight: 500;
        font-size: 3.6rem;
    }
    .card-profial-text h3 {
        font-weight: 300;
        font-size: 2.4rem;
        color: var(--color-secondary);
    }
    .card-profial-text p {
        line-height: 22px;
        font-weight: 300;
        font-size: 1.6rem;
        color: var(--color-text);
    }

    .container-btn-header {
        display: none;
    }

    /* ====== زر القائمة (الهامبرغر) ====== */
    .menu-toggle {
        display: block;
        font-size: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-secondary);
    }
    /* ====== تصميم القائمة الجانبية ====== */
    .sidebar-menu {
        position: fixed;
        top: 0px;
        right: -250px;
        width: 240px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }
    .card-slide-hero h5 {
        margin: 0px;
        color: #000;
        font-size: 1.8rem;
        margin-top: 20px;
        font-weight: 500;
    }

    .card-slide-hero p {
        margin-top: 24px;
        margin-bottom: 4px;
        margin-left: 24px;
        color: #000;
        font-family: Montserrat-Arabic;
        font-size: 3.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 58.5px;
    }
    /* ourCompany*/
    /* ourCompany*/
    /* ourCompany*/
    /* ourCompany*/
    .part-right {
        width: 40%;
    }
    .part-right-img {
        width: 100%;
    }
    .part-right-left {
        display: none;
    }
    .ourCompany-con {
        gap: 0px;
    }
    .part-right-img {
        height: 100%;
    }
    .part-Left-top h1 {
        font-size: 3.2rem;
        line-height: 100%;
        margin-bottom: 60px;
    }
    .part-Left-top p {
        line-height: 130%;
    }
    .part-left-mid-right p {
        font-size: 1.1rem;
    }
    .part-left-mid-left p {
        font-size: 1.1rem;
    }
    .project-tabs {
        display: none !important;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .project-card {
        width: 350px !important;
    }
    .slider-track {
        display: flex;
        gap: 30px !important;
        padding: 10px 20px;
        width: max-content; /* ✅ الحل السحري */
        background-color: #2f80ed29;
    }
    /* ========================== */
    /* =========article========= */
    /* ======================== */

    .article {
        width: 100% !important;
        height: auto !important;
        margin-top: 5% !important;
    }

    .article h1 {
        font-weight: 500 !important;
        font-size: 40px !important;
        line-height: 48px !important;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        margin-right: 80px !important;
    }

    span {
        color: var(--color-primary) !important;
    }

    /* الشبكة الرئيسية */
    .partition {
        display: grid !important;
        grid-template-areas: "tall" " small1 " " small2 " !important;
        gap: 40px !important;
        width: 90vw !important;
        margin: 0 auto !important;
        margin-bottom: 40px !important;
        margin-right: 80px !important;
    }

    /* المقال الأول (كبير) */
    .article-item-large {
        display: none !important;
    }

    /* المقال الطويل */
    .article-item-tall {
        grid-area: tall !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 95% !important;
        border-left: none !important;
    }

    .content-content-tall h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-tall p {
        font-weight: 400 !important;
        font-size: 20px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .article-item-tall-img {
        width: 100% !important;
        height: 514px !important;
        border-radius: 8px !important;
    }

    /* المقال الصغير الأول */
    .article-item-1 {
        grid-area: small1 !important;
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .article-item-1-img {
        width: 37% !important;
        height: 327px !important;
        border-radius: 4px !important;
    }

    .content-content-item-1 {
        width: 53% !important;
        height: auto !important;
    }

    .content-content-item-1 h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-item-1 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    /* المقال الصغير الثاني */
    .article-item-2 {
        grid-area: small2 !important;
        display: flex !important;
        gap: 30px !important;
        align-items: center !important;
        border-top: none !important;
        padding-top: 50px !important;
        width: 100% !important;
    }

    .article-item-2-img {
        width: 37% !important;
        height: 327px !important;
        border-radius: 4px !important;
    }

    .content-content-item-2 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .sahm {
        display: flex !important;
        justify-content: space-between !important;
    }

    .sahm h2 {
        font-weight: 600 !important;
        font-size: 16px !important;
        margin-top: 20px !important;
        line-height: 28px !important;
    }

    .sahm-img {
        height: 28px !important;
        margin-top: 20px !important;
        display: inline-block !important;
        cursor: pointer !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .sahm-img:hover {
        transform: scale(1.4) !important;
    }
    .footer-top-right {
        justify-content: space-around !important;
    }
    .footer-top-right a {
        font-size: 1.3rem !important;
    }
    .hokok{
        font-size: 1.2rem !important;
        font-weight: 400;
        color: var(--color-text);
    }
}
@media (max-width: 500px) {
    /* ======================== */
    /*========= header =========*/
    /* ======================== */
    /* ====== تصميم الهيدر الأساسي ====== */

    header .add {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    .order-btn {
        margin-left: 30px;
    }
    .container-btn-header {
        display: none;
    }

    .logo-header {
        width: 190px;
    }

    .order-btn {
        display: none;
    }
    .ouePartners {
        width: 95%;
    }
    .ouePartners h1 {
        font-size: 2rem;
    }
    /* ====== زر القائمة (الهامبرغر) ====== */
    .menu-toggle {
        display: block;
        font-size: 2.4rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-secondary);
    }
    .card-slide-hero h5 {
        margin: 0px;
        color: #000;
        font-size: 1.8rem;
        margin-top: 20px;
        font-weight: 500;
    }

    .card-slide-hero p {
        margin-top: 24px;
        margin-bottom: 4px;
        margin-left: 24px;
        color: #000;
        font-family: Montserrat-Arabic;
        font-size: 2.5rem !important;
        font-style: normal;
        font-weight: 500;
        line-height: 58.5px;
    }
    .add {
        display: flex;
        flex-direction: row;
        justify-content: space-between !important;
        width: 100% !important;
        margin: 0px !important;
        margin-left: 90px !important;
    }

    .swiper-button-prev-ouePartners,
    .swiper-button-next-ouePartners {
      width: 28px !important;
      height: 28px !important;
      background: #2196f3 !important;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      z-index: 100;
      cursor: pointer;
      /* لا تضع font-size هنا أو اجعله 0 */
      font-size: 0 !important;
    }
    .swiper-button-prev-ouePartners::after,
    .swiper-button-next-ouePartners::after {
      font-size: 16px !important;
      color: #fff !important;
      display: block !important;
    }
    .swiper-button-next-ouePartners {
      right: 5px !important;
      transform: translateY(-50%);
    }
    .swiper-button-prev-ouePartners {
      left: 5px !important;
      transform: translateY(-50%);
    }
    .swiper-pagination-hero .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        border-radius: 100%;
        cursor: pointer;
    }
    /* ====== تصميم القائمة الجانبية ====== */
    .sidebar-menu {
        position: fixed;
        top: 0px;
        right: -240px;
        width: 220px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .sidebar-menu a {
        font-size: 1.6rem;
        padding: 10px;
        color: black;
        border: 1px solid #ddd;
        margin-top: 5%;
        text-align: center;
        border-radius: 10px;
    }

    .sidebar-menu a:hover {
        background: var(--color-primary);
        color: white;
    }

    .close-btn {
        font-size: 2rem;
        border: none;
        background: none;
        cursor: pointer;
        align-self: flex-end;
    }

    /* ====== تصميم التفاعل عند فتح القائمة ====== */
    .sidebar-open {
        right: 0 !important;
    }

    /* تخصيص شكل الزر */
    .close-btn {
        background-color: var(--color-secondary); /* اللون الأخضر للخلفية */
        color: white; /* لون النص (السهم) */
        font-size: 33px; /* حجم السهم */
        padding: 0px 0px; /* المسافة حول السهم */
        border: none; /* إزالة الحدود */
        border-radius: 30px; /* جعل الزر مستدير الزوايا */
        cursor: pointer; /* تغيير المؤشر عند المرور على الزر */
        width: 100%;
        transition: background-color 0.3s ease, transform 0.3s ease; /* تأثير التغيير */
    }

    /* تأثير عند التمرير فوق الزر */
    .close-btn:hover {
        background-color: var(--color-secondary); /* تغيير اللون عند التمرير */
        transform: scale(1.08); /* تكبير الزر قليلاً عند التمرير */
    }

    /* تأثير عند الضغط على الزر */
    .close-btn:active {
        background-color: rgb(22, 22, 126); /* تغيير اللون عند الضغط */
    }

    /* ====== تصميم التفاعل عند فتح القائمة ====== */
    .sidebar-open {
        right: 0 !important;
    }
    .bg-left {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 130px;
        height: 600px;
    }

    .bg-right {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 100px;
        height: 206px;
    }
    .card-slide-hero h5 {
        margin: 0px;
        color: #000;
        font-family: Montserrat-Arabic;
        font-size: 1.2rem;
        margin-top: 20px;
        font-weight: 500;
    }

    .card-slide-hero p {
        margin-top: 24px;
        margin-bottom: 4px;
        margin-left: 24px;
        color: #000;
        font-family: Montserrat-Arabic;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: 55px;
    }

.card-slide-hero img {
    width: 230px;
    height: 232px;
    margin-right: 24px;
}

    /* ======ourTeam===== */

    .ourTeame {
        width: 100%;
        padding: 20px;
        height: auto;
        margin-bottom: 6%;
    }
    .bg-left-ourTeame {
        position: absolute;
        width: 267px;
        height: 201px;
        top: 5px;
        left: 5px;
    }
    .bg-right-ourTeame {
        position: absolute;
    }
    .ourTeame h1 {
        font-weight: 600;
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    .ourTeame h1 span {
        color: var(--color-primary);
    }
    .container-ourTeame {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mySwiper3 {
        width: 90%;
        overflow: hidden; /* إخفاء الأجزاء الزائدة */
    }

    .swiper-wrapper-ourTeame {
        display: flex;
        justify-content: flex-start; /* يجعل التوزيع متساوي */
    }

    .swiper-slide-ourTeame {
        display: flex;
        justify-content: center;
        width: auto;
        flex-shrink: 0;
    }

    .card-profial {
        width: auto;
        background: white;
        transition: 0.5s;
    }
    .card-profial:hover {
        width: auto;
    }
    .img-profail-card {
        clip-path: polygon(
            80% 0,
            100% 20%,
            100% 80%,
            100% 100%,
            20% 100%,
            0 80%,
            0 0
        );
        transition: all 0.5s;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .card-profial:hover .img-profail-card {
        height: 300px;
        width: 260px;
        clip-path: polygon(
            100% 0,
            100% 0%,
            100% 100%,
            100% 100%,
            0% 100%,
            0 100%,
            0 0
        );
    }
    .card-profial-text {
        text-align: right;
    }
    .card-profial-text h1 {
        font-weight: 500;
        font-size: 2.3rem !important;
    }
    .card-profial-text h3 {
        font-weight: 300;
        font-size: 1.4rem !important;
        color: var(--color-secondary);
    }
    .card-profial-text p {
        line-height: 22px;
        font-weight: 300;
        font-size: 1.2rem;
        color: var(--color-text);
    }
    .swiper-button-prev-ouePartners,
.swiper-button-next-ouePartners {
    font-size: 1px !important;
    background-color: var(--color-secondary);
    color: rgb(161, 42, 42) !important ;
    width: 30px !important; /* تحديد عرض الزر */
    height: 30px !important; /* تحديد ارتفاع الزر */
    border-radius: 50%;

    position: absolute;
    z-index: 100;

    cursor: pointer;
}
.swiper-button-prev-ouePartners::after,
.swiper-button-next-ouePartners::after {
    font-size: 18px !important;
}
.swiper-button-next-ouePartners {
    right: 0px !important;
    top: 55% !important;
    transform: translateY(-50%);
}
.swiper-button-prev-ouePartners {
    left: 0px !important;
    top: 55% !important;
    transform: translateY(-50%);
}
    /* ourCompany*/
    /* ourCompany*/
    /* ourCompany*/
    .ourCompany-con {
        display: flex;
        flex-direction: column;
        padding: 18px;
    }
    .part-right {
        width: 100%;
    }
    .part-right-img {
        width: 100%;
    }
    .part-right-left {
        display: none;
    }
    .ourCompany-con {
        gap: 0px;
    }
    .part-right-img {
        height: 100%;
    }
    .part-Left-top {
        width: 230%;
    }
    .part-Left-top h1 {
        margin-top: 40px;
        font-size: 2rem;
        line-height: 100%;
        margin-bottom: 60px;
    }
    .part-Left-top p {
        line-height: 130%;
        font-size: 1.4rem;
    }
    .part-left-mid-right p {
        font-size: 1.2rem;
    }
    .part-left-mid-left p {
        font-size: 1.2rem;
    }
    .part-left-mid {
        width: 200%;
    }
    .part-left-mid-left {
        width: 100%;
        margin-right: 30px;
    }
    .part-left-bottom .btn {
        font-size: 1.2rem;
        width: 110%;
        height: 50px;
    }
    .project-tabs {
        display: none !important;
    }
    .section-title {
        font-size: 1.6rem !important;
    }
    .project-card {
        width: 300px !important;
        padding-right: 20px;
    }

    .slider-track {
        display: flex;
        gap: 10px !important;
        padding: 0;
        width: max-content; /* ✅ الحل السحري */
        background-color: #2f80ed29;
    }


    .reveal:nth-child(2) {
        transition-delay: 0.1s;
    }
    .reveal.show {
        filter: opacity(1);
        visibility: visible;
        transform: translateY(0px);
    }
    .Website-development {
        width: 88vw;
        height: auto;
        display: grid;
        grid-template-areas:
            "head"
            "item1"
            "item2"
            "item3"
            "item4";
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto auto;
        gap: 16px;
        margin-bottom: 80px;
        margin-top: 60px;
        margin-right: 20px !important;
        margin-left: 40px;
    }
    .item-item-Head {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 16px;
        padding-right: 24px;
        padding-left: 24px;
        padding-bottom: 20px;
        grid-area: head;
        background-color: white;
        margin-bottom: 30px;
        margin-top: 30px;
        box-shadow: 0px 4px 4px 0px #b9cde3;
    }
    .item-item-Head img {
        width: 257px;
        height: 257px;
    }
    /* ========================== */
    /* =========article========= */
    /* ======================== */

    .article {
        width: 100% !important;
        height: auto !important;
        margin-top: 5% !important;
        margin-right: 0px !important;
    }

    .article h1 {
        font-weight: 500 !important;
        font-size: 2rem !important;
        line-height: 48px !important;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        margin-right: 20px !important;
    }

    span {
        color: var(--color-primary) !important;
    }

    /* الشبكة الرئيسية */
    .partition {
        display: grid !important;
        grid-template-areas: "tall" " small1 " " small2 " !important;
        gap: 40px !important;
        width: 90vw !important;
        margin: 0 auto !important;
        margin-bottom: 40px !important;
        margin-right: 20px !important;
    }

    /* المقال الأول (كبير) */
    .article-item-large {
        display: none !important;
    }

    /* المقال الطويل */
    .article-item-tall {
        grid-area: tall !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 95% !important;
        border-left: none !important;
    }

    .content-content-tall h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-tall p {
        font-weight: 400 !important;
        font-size: 1.4rem !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .article-item-tall-img {
        width: 100% !important;
        height: 514px !important;
        padding-right: 10px;
        border-radius: 8px !important;
    }

    /* المقال الصغير الأول */
    .article-item-1 {
        background: rgba(194, 193, 193, 0.26);
        border-radius: 15px;
        padding-bottom: 10px;
        border-top: 10px;
        grid-area: small1 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 95% !important;
        gap: 30px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .article-item-1-img {
        width: 90% !important;
        height: auto !important;
        border-radius: 4px !important;
    }

    .content-content-item-1 {

        width: 90% !important;
        height: auto !important;
    }

    .content-content-item-1 h3 {
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        color: var(--color-secondary) !important;
    }

    .content-content-item-1 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    /* المقال الصغير الثاني */
    .article-item-2  , .article-item-1 {
        background: rgba(213, 209, 209, 0.25);
        border-radius: 15px;
        grid-area: small2 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
        border-top: none !important;
        padding-top: 50px !important;
        padding-bottom: 20px !important;
        width: 100% !important;
        margin-bottom: 20px;
    }

    .article-item-2-img {
        width: 90% !important;
        height: auto !important;
        border-radius: 4px !important;
    }

    .content-content-item-2 p {
        font-weight: 400 !important;
        font-size: 13px !important;
        line-height: 24px !important;
        color: var(--color-text) !important;
    }

    .sahm {
        display: flex !important;
        justify-content: space-between !important;
    }

    .sahm h2 {
        font-weight: 600 !important;
        font-size: 16px !important;
        margin-top: 20px !important;
        line-height: 28px !important;
    }

    .sahm-img {
        height: 28px !important;
        margin-top: 20px !important;
        display: inline-block !important;
        cursor: pointer !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .sahm-img:hover {
        transform: scale(1.4) !important;
    }
    /* ==========================*/
    /* ========Services=========*/
    /* ========================*/

    .Services {
        width: 100% !important;
        height: auto !important;
        padding: 30px 0px !important;
        gap: 30px !important;
        background-color: var(--color-secondary-very-light) !important;
        margin-left: 20px !important;
    }

    .top {
        width: 88vw !important;
        height: auto !important;
        margin-right: 30px !important;
        margin-left: 30px !important;
        margin-top: 60px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .top-right {
        width: 200px !important;
        height: auto !important;
        gap: 10px !important;
        font-weight: 500 !important;
        font-size: 2rem !important;
        line-height: 35px !important;
    }

    .top-right span {
        color: var(--color-primary) !important;
    }

    .top-left {
        border-radius: 6px !important;
        padding: 10px 7px !important;
        font-weight: 600 !important;
        font-size: 2rem !important;
        width: 108px !important;
        background-color: var(--color-secondary) !important;
        text-align: center !important;
    }

    .top-left a {
        font-size: 1.1rem !important;
        color: white !important;
        text-align: center !important;
    }

    .top-left:hover {
        background-color: var(--color-primary) !important;
    }

    .Website-development {
        width: 88vw !important;
        height: auto !important;
        display: grid !important;
        grid-template-areas: "head" "item1 " "item2" "item3" " item4" !important;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-rows: auto auto !important;
        gap: 16px !important;
        margin-bottom: 80px !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .item-item-Head {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        border-radius: 16px !important;
        padding-right: 24px !important;
        padding-left: 24px !important;
        grid-area: head !important;
        background-color: white !important;
        margin-bottom: 30px !important;
        margin-top: 30px !important;
        box-shadow: 0px 4px 4px 0px #b9cde3 !important;
    }

    .item-item-Head h1 {
        font-weight: 700 !important;
        font-size: 1.6rem !important;
        color: black !important;
        text-align: center !important;
    }

    .item-item-Head p {
        font-weight: 400px !important;
        font-size: 1rem !important;
        line-height: 12px !important;
        color: var(--color-text) !important;
    }

    .item-item1,
    .item-item2,
    .item-item3,
    .item-item4 {
        background-color: white !important;
        height: auto !important;
        border-radius: 10px !important;
        padding: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        box-shadow: 0px 4px 4px 0px #b9cde3 !important;
    }

    .item-item1 {
        grid-area: item1 !important;
    }
    .item-item2 {
        grid-area: item2 !important;
    }
    .item-item3 {
        grid-area: item3 !important;
    }
    .item-item4 {
        grid-area: item4 !important;
    }

    .bottom1 h1 {
        font-weight: 700 !important;
        font-size: 16px !important;
        line-height: 25px !important;
    }

    .bottom1 p {
        font-weight: 400 !important;
        font-size: 12px !important;
        color: #5f5f5f !important;
        line-height: 16px !important;
    }

    .item-item-Head img {
        width: 90% !important;
        height: auto !important;
    }

    .item-item1 img,
    .item-item2 img,
    .item-item3 img,
    .item-item4 img {
        width: 80% !important;
        margin-bottom: 30px !important;
    }

    /* ================== */
    /* =====[ready]===== */
    /* ================ */

    .ready {
        width: 90% !important;
        height: auto !important;
        margin-bottom: 150px !important;
        margin-top: 150px !important;
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .ready h1 {
        font-weight: 500 !important;
        font-size: 2rem !important;
    }

    .ready span {
        color: orange !important;
    }

    .container-login {
        width: 80% !important;
        padding: 24px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        justify-content: space-around !important;
        align-items: center !important;
        box-shadow: 0px 5px 20px 16px #acccf8 !important;
        border-radius: 24px !important;
        position: relative !important;
        margin-top: 30px !important;
        margin-right: 30px !important;
        margin-left: 30px !important;
    }

    .container-login-form {
        width: auto !important;
        height: auto !important;
        gap: 36px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        align-items: center !important;
    }

    .container-login-form-text h2 {
        font-weight: 500 !important;
        font-size: 20px !important;
        color: var(--color-secondary) !important;
    }

    .container-login-form-text p {
        font-weight: 400 !important;
        font-size: 16px !important;
    }

    .container-login-form-type-text {
        width: 540px !important;
        height: 70px !important;
        padding: 16px !important;
        border-radius: 8px !important;
        background-color: #eaf2fd !important;
        border: none !important;
    }

    .container-login-form-type-email {
        width: 540px !important;
        height: 70px !important;
        padding: 16px !important;
        border-radius: 8px !important;
        background-color: #eaf2fd !important;
        border: none !important;
    }

    .container-login-form-type-textLarg {
        width: 540px !important;
        height: 250px !important;
        padding: 16px !important;
        border-radius: 8px !important;
        background-color: #eaf2fd !important;
        border: none !important;
    }

    .container-login-form-type-submit {
        color: white !important;
        font-family: Montserrat-Arabic !important;
        opacity: 0.7 !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        background-color: #0471ff !important;
        padding: 16px !important;
        border: none !important;
        border-radius: 8px !important;
    }

    input::placeholder {
        color: var(--color-text) !important;
        font-family: Montserrat-Arabic !important;
        opacity: 0.7 !important;
        font-weight: 400 !important;
        font-size: 16px !important;
    }

    .media-img {
        height: auto !important;
        width: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .media-img1 {
        width: 90% !important;
    }

    .media {
        display: none !important;
    }

    .container-login form input {
        width: 90% !important;
        font-size: 2rem !important;
    }

    .left-media {
        display: none !important;
    }
    @media (max-width: 600px) {
        .container-login {
          width: 88% !important;
          margin: 16px auto !important;
          padding: 16px 4px !important;
          border-radius: 16px !important;
          box-shadow: 0px 2px 10px 4px #acccf8 !important;
        }
        .container-login-form,
        .container-login-form-type-text,
        .container-login-form-type-email,
        .container-login-form-type-textLarg {
          width: 100% !important;
          min-width: 0 !important;
          max-width: 100% !important;
        }
      }
    /* =======================*/
    /* ===== our-clients=====*/
    /* =====================*/

    /* تصميم الحاوية العامة للسلايدر */
    .our-clients-container {
        background-color: var(--color-secondary-very-light) !important;
        padding: 25px 0px !important;
    }

    .container-slide-our-clients {
        width: 98% !important;
        margin: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* تصميم السلايدر */
    .mySwiper-our-clients {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 85% !important;
        overflow: hidden !important;
    }

    .swiper-wrapper-our-clients {
        /* بدون خصائص فعالة */
    }

    /* تصميم كل سلايد */
    .swiper-slide-our-clients {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 10px !important;
    }

    /* تصميم البطاقة داخل كل سلايد */
    .card-slide-our-clients {
        width: 84% !important;
        height: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        background: white !important;
        position: relative !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* تصميم أزرار التنقل */
    .swiper-button-next-our-clients,
    .swiper-button-prev-our-clients {
        color: var(--color-secondary) !important;
        background: white !important;
        padding: 10px !important;
        border-radius: 16px !important;
        width: 40px !important;
        height: 55px !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        cursor: pointer !important;
        transition: background 0.3s ease !important;
    }

    .swiper-button-prev-our-clients {
        left: 15px !important;
    }

    .swiper-button-next-our-clients {
        right: 15px !important;
    }

    .card-slide-our-clients {
        position: relative !important;
    }

    .our-clients-person {
        display: none !important;
    }

    .our-clients-test h2 {
        font-weight: 500 !important;
        font-size: 1.6rem !important;
    }

    .our-clients-h {
        font-size: 18px !important;
        font-weight: 500 !important;
        margin-right: 20px !important;
    }

    .comma {
        position: absolute !important;
        width: 40px !important;
        height: 40px !important;
        top: 20px !important;
        left: 30px !important;
    }

    .sec-title-card-ouClients {
        display: flex !important;
        align-items: center !important;
        gap: 30px !important;
        padding: 10px !important;
    }

    .sec-title-card-ouClients h2 {
        font-weight: 500 !important;
        font-size: 1.4rem !important;
    }

    .sec-title-card-ouClients h4 {
        font-weight: 300 !important;
        font-size: 1.2rem !important;
        color: var(--color-secondary) !important;
    }

    .card-slide-our-clients p {
        font-weight: 300 !important;
        font-size: 1.2rem !important;
        line-height: 20px !important;
        padding: 0px !important;
        color: var(--color-text) !important;
    }
    /* ========================== */
    /* =========footer========== */
    /* ======================== */

    .footer-container {
        margin-top: 2% !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .footer-block {
        width: 100% !important;
        padding: 8px !important;
        margin-right: 7% !important;
    }

    .footer-top {
        width: 88% !important;
        height: 24px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        margin-top: 1% !important;
        border-bottom: 1.5px solid var(--color-text) !important;
        padding-bottom: 1.7% !important;
    }

    .footer-top-right {
        display: none !important;
    }

    .footer-top-right a {
        font-weight: 400 !important;
        font-size: 14px !important;
        color: black !important;
    }

    .footer-top-right a:hover {
        color: var(--color-primary) !important;
        text-decoration: underline !important;
    }

    .footer-top-left {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-top-left a img {
        transition: transform 0.3s ease, opacity 0.3s ease !important;
    }

    .footer-top-left a:hover img {
        transform: scale(1.4) !important;
        opacity: 0.8 !important;
    }

    .footer-bottom {
        display: flex !important;
       justify-content: center;
        text-align: center !important;
        width: 100% !important;
        align-items: center !important;
        margin-top: 20px !important;
        margin-bottom: 10px !important;
    }

    .footer-bottom p {
        display: none !important;
    }

    .logo-footer {
        display: block;
        width: 40px !important;
        height: 40px !important;
        margin-left: 40px;
    }

    .footer-top-left img {
        width: 24px !important;
        height: 24px !important;
    }

    .footer-top-left-Twitter img {
        width: 24px !important;
        height: 20px !important;
    }

    /* ✅ تنسيق الصور الديكورية */
    .footer-decoration {
        position: absolute !important;
    }

    /* الصورة في أقصى اليمين العلوي */
    .decoration-top-right {
        display: none !important;
    }

    /* الصورة في أقصى اليسار السفلي */
    .decoration-bottom-left {
        display: none !important;
    }

    .footer-decoration .decoration-top-right img {
        width: 120px !important;
        height: 96px !important;
    }

    .footer-decoration .decoration-bottom-left {
        width: 495px !important;
        height: 840.364501953125px !important;
    }

/* تصميم أزرار التنقل */
.swiper-button-next-our-clients,
.swiper-button-prev-our-clients {
    color: var(--color-secondary) !important;
    background: white;
    padding: 10px;
    border-radius: 16px;
    width: 35px !important;
    height: 35px !important;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important; /* غير الرقم حسب ما بدك */
    color: var(--color-secondary); /* كمان بتتحكم باللون من هون */
}
.card-slide-hero {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    margin-right: 10px; /* أو احذف السطر */
    width: 94%;
    box-sizing: border-box;
}

}

.projects-section {
    padding: 0;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--color-primary);
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab {
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 15px 0 0 15px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab:hover {
    background-color: var(--color-primary);
}

.tab.blue {
    background-color: var(--color-secondary) !important;
    border-radius: 0 15px 15px 0;
}

.slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;

}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 100px;
    padding: 10px 20px;
    width: max-content; /* ✅ الحل السحري */
    background-color: #006eff29;
    margin-bottom: 70px;
}

.project-card {
    width: 600px;
    border-radius: 15px;
    transition: transform 0.3s ease, opacity 0.6s ease;
    flex: 0 0 auto;
    text-align: right;
    opacity: 0;
    transform: translateY(50px);
    margin-top: 50px;
    box-sizing: border-box;

}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-35px);
    box-shadow: 0 8px 20px rgba(181, 183, 187, 0.3);
}

.project-card img {
    width: 100%;
    height: 400px;
    object-fit: fill;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #f0f0f0; /* helps when image doesn't fill space */
    display: block;
}
@media (max-width: 768px) {
    .project-card img {
        height: auto;
        max-height: 250px;
    }
}




.project-card h3 {
    padding: 15px 15px 0;
    color: #003366;
    font-size: 20px;

}

.project-card p {
    padding: 0 15px 15px;
    color: #333;
    font-size: 14px;
}

.project-card div {
    padding-right: 15px;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px !important;

}

.project-card div a:hover{
    color: #111111;
}

.hokok{
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
}
