/* Cleaned CSS */


/*fixed icons start*/

.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}


.icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon:hover svg {
    fill: #f8f9fa;
}

.icon:hover::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

.phone-icon {
    background-color: #032346;
    /* اللون الأزرق لاتصال */
}

.whatsapp-icon {
    background-color: #05f35c;
    /* اللون الأخضر لواتساب */
}

@keyframes fadeIn {
    from {
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/*fixed icons end*/



/* nav start */

.aws1-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
    height: 100px;
    z-index: 1000;
  }
  
  .aws1-logo {
    font-size: 1.5rem;
    font-weight: bold;
margin: auto;
  }
  
  .aws1-menu-icon,
  .aws1-close-icon {
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
  }
  
  .aws1-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
@media (min-width: 992px) {
    .aws1-nav-links{
        padding-left: 550px;
    }
  }

  
  .aws1-nav-links li {
    position: relative;
    margin-left: 20px;
    text-align: center;
  }
  
  .aws1-nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
  }
  
  /* Dropdown */
  .aws1-dropdown:hover .aws1-dropdown-menu {
    display: block;
  }
  
  .aws1-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
    border: 1px solid #ccc;
    min-width: 120px;
    top: 100%; /* يخلّيها تحت العنصر */
    right: 0;   /* تبدأ من اليمين */
    z-index: 999; /* فوق باقي العناصر */
  }
  
  
  .aws1-dropdown-menu li {
    margin: 0;
  }
  
  .aws1-dropdown-menu li a {
    padding: 10px;
    white-space: nowrap;
  }
  
  .aws1-dropdown-menu li a:hover {
    background-color: #f4f4f4;
  }
  
  /* Responsive */
  
  @media (max-width: 768px) {
    .aws1-menu-icon {
      display: block;
    }
  
    
  .aws1-logo {
 padding-left: 90px;
  }
    .aws1-nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      flex-direction: column;
      width: 250px;
      height: 100vh;
      background-color: #fff;
      padding-top: 60px;
      transition: 0.3s;
      overflow-y: auto;
      z-index: 999;
    }
  
    .aws1-nav-links li {
      margin: 20px;
    }
  
    .aws1-nav-links li.aws1-dropdown:hover .aws1-dropdown-menu {
      display: none;
    }
  
    .aws1-close-icon {
      display: block;
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 2rem;
    }
  
    .aws1-dropdown-menu {
      position: static;
      border: none;
      margin: 0;
    }
  }
  
  .aws1-nav-links.aws1-open {
    left: 0;
  }
  
/* nav end */


/* landig start */

.am1-hero-wrap {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.am1-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 27, 4, 0.6);
    z-index: 1;
}

.am1-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.am1-row {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
}

.am1-col {
    width: 100%;
}

.am1-text {
    color: #fff;
    font-family: cairo, sans-serif;
}

.am1-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.am1-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    font-weight: bold;
    margin-bottom: 0;
}

.am1-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #09043b;
    /* لون الزر */
    color: #FFFFFF;
    /* لون النص */
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px #000000;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.am1-btn:hover {
    background-color: #005A99;
    /* لون عند التمرير */
    transform: translateY(-3px);
    /* تأثير الرفع */
    box-shadow: 0 6px 10px rgba(0, 122, 204, 0.5);
    color: #FFFFFF;
}


/* Responsiveness */

@media (max-width: 768px) {
    .am1-title {
        font-size: 2.2rem;
    }
    .am1-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .am1-title {
        font-size: 2rem;
    }
    .am1-subtitle {
        font-size: 0.9rem;
    }
    .am1-hero-wrap {
        background-position: left;
    }
}

.animate-slide-up {
    transform: translateY(100vh);
    /* يبدأ السكشن من خارج الشاشة (الأسفل) */
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.animate-slide-up.show {
    transform: translateY(0);
    /* يعود إلى مكانه الطبيعي */
    opacity: 1;
}


/* landig end */


/*Start Features */


/* Start Features */

.x1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    background-color: #ffffff;
    direction: rtl;
    /* لجعل الاتجاه من اليمين إلى اليسار */
}

.x2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.x3 {
    flex: 1;
    padding: 10px;
}

.x3 img {
    max-width: 100%;
    border-radius: 10px;
}

.x4 {
    flex: 1;
    padding: 10px;
    text-align: right;
    /* النصوص تكون بمحاذاة اليمين */
    font-family: "Cairo", "Arial", sans-serif;
    /* خطوط تدعم العربية */
}

.x4 h2 {
    font-size: 2rem;
    color: #202020;
    margin-bottom: 10px;
}

.x5 {
    width: 80px;
    height: 4px;
    background-color: #3326dd;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.x4 p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.x6 {
    display: inline-block;
    background-color: #3326dd;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.x6:hover {
    background-color: #1c1394;
}


/* تصميم متجاوب للشاشات الصغيرة */

@media screen and (max-width: 768px) {
    .x2 {
        flex-direction: column;
        /* النص والصورة عموديين بدلاً من صف */
    }
    .x4 {
        text-align: center;
        /* النص يكون بمحاذاة الوسط */
    }
    .x3 {
        margin-top: 20px;
        /* إضافة مسافة بين النص والصورة */
    }
    .x5 {
        margin-right: 166px;
    }
}


/* End Features */


/* سيكشن الخدمات */

.service-btn {
    background-color: #FFFFFF;
    /* خلفية بيضاء */
    color: #007ACC;
    /* لون النص أزرق متناسق مع العلامة التجارية */
    border: 2px solid #007ACC;
    /* حدود زرقاء */
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    /* ظل خفيف */
    margin-top: 20px;
}

.service-btn:hover {
    background-color: #007ACC;
    /* يصبح الزر أزرق عند التحويم */
    color: #FFFFFF;
    /* النص يتحول إلى الأبيض */
    border-color: #007ACC;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.2);
    /* تعزيز تأثير الظل */
    transform: translateY(-2px);
    /* تأثير رفع خفيف */
}

.mx1-row {
    display: flex;
    gap: 20px;
    /* مسافة بين الأعمدة */
    justify-content: center;
    /* محاذاة الكروت في الوسط */
}

.mx1-col {
    flex: 1 1 calc(33.33% - 20px);
    /* يجعل كل كارت يأخذ ثلث العرض */
    max-width: calc(33.33% - 20px);
}

.mx1-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: right;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mx1-services {
    padding: 60px 15px;
    text-align: center;
    background-color: #fff;
}

.mx1-section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mx1-section-subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
}

.mx1-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mx1-card {
    flex: 1;
    max-width: 30%;
    min-width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mx1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.mx1-card-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f25d27;
    margin-bottom: 10px;
}

.mx1-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.mx1-card-text {
    font-size: 14px;
    line-height: 25px;
    color: #555;
    font-family: tajawal, sans-serif;
    font-weight: 400;
}


/* Responsiveness */

@media (max-width: 768px) {
    .mx1-card {
        max-width: 100%;
    }
}

.mx1-card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: auto;
    /* التحكم في ارتفاع الصورة */
    display: block;
}

.mx1-row {
    display: flex;
    gap: 20px;
    /* مسافة بين الأعمدة */
    justify-content: center;
    /* محاذاة الكروت في الوسط */
    margin-bottom: 30px;
    /* فاصل بين الصفوف */
}

.mx1-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mx1-card {
    opacity: 0;
    /* اجعل العنصر غير مرئي */
    transform: translateY(50px);
    /* تحريكه لأسفل */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


/* عند ظهور العنصر في الشاشة */

.mx1-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* ABOUT SECTION START */

.I1-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}


/* الحاوية الرئيسية */

.I1-container {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #fff;
}


/* الحاوية الداخلية */

.I1-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* العناصر */

.I1-item {
    background-color: #f9fffb;
    border-radius: 12px;
    padding: 20px;
    width: 30%;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.I1-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* الأيقونات */

.I1-icon {
    font-size: 2rem;
    color: #6cc9a1;
    margin-bottom: 15px;
}


/* عناوين العناصر */

.I1-item-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}


/* النصوص */

.I1-description {
    font-size: 0.9rem;
    color: #555;
}


/* تصميم متجاوب */

@media (max-width: 768px) {
    .I1-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .I1-item {
        width: 100%;
    }
}


/* ABOUT SECTION END */


/* contact section start */

.oo1-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.oo1-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
    /* لون داكن قليلاً للعناوين */
}

.oo1-title span {
    color: #007ACC;
    /* أزرق رئيسي */
}

.oo1-subtitle {
    color: #555555;
    /* رمادي متوسط */
    margin-bottom: 30px;
}

.oo1-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.oo1-card {
    background: #F8F9FA;
    /* رمادي فاتح ناعم بدلاً من الأبيض النقي */
    border: 2px solid #D1D5DB;
    /* لون حدودي رمادي هادئ */
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: 0.3s ease-in-out;
}

.oo1-card:hover {
    background: #E3F2FD;
    /* أزرق فاتح عند التحويم */
    border-color: #007ACC;
    /* تغيير لون الحدود للأزرق */
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.2);
    /* ظل خفيف */
}

.oo1-card svg {
    width: 50px;
    height: 50px;
    fill: #007ACC;
    /* تغيير لون الأيقونات إلى الأزرق */
    margin-bottom: 15px;
}

.oo1-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333333;
    /* لون عنوان البطاقة */
}

.oo1-card-text {
    font-size: 0.9rem;
    color: #555555;
    /* لون النص داخل البطاقات */
}

.oo1-card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border: 2px solid #007ACC;
    color: #007ACC;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.oo1-card-link:hover {
    background: #007ACC;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.3);
}

@media (max-width: 768px) {
    .oo1-card {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .oo1-card {
        width: 90%;
        max-width: 420px;
    }
}


/* contact section end */


/*ABOUT US SECTION */

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
    text-align: center;
}

.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
}

.responsive-container-block.bigContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
}

.text-blk.headingText {
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(0, 135, 177);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 50%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.text-blk.subHeadingText {
    color: rgb(0, 0, 0);
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.text-blk.description {
    font-size: 18px;
    line-height: 28px;
    color: rgb(0, 0, 0);
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
}

.explore {
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    background-color: #007ACC;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: rgb(244, 152, 146);
    border-right-color: rgb(244, 152, 146);
    border-bottom-color: rgb(244, 152, 146);
    border-left-color: rgb(244, 152, 146);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 9px;
    padding-right: 45px;
    padding-bottom: 9px;
    padding-left: 45px;
}

.explore:hover {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: #005A99;
    color: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 122, 204, 0.3);
    transition: 0.4s ease;
    transform: translateY(-3px);
    /* تأثير الرفع */
}

.responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
    flex-direction: row;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}

.allText.aboveText {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
}

.allText.bottomText {
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.mainVideo {
    width: 85%;
    height: 450px;
    margin-top: -30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.videoContainer {
    width: 46%;
    height: 600px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.mainVideo {
    z-index: 10;
}

.dotsImg {
    position: absolute;
    width: 80%;
    height: 600px;
    top: 0px;
    right: 0px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        max-width: 850px;
    }
    .text-blk.description {
        font-size: 18px;
    }
    .allText {
        width: 40%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 20px;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }
    .text-blk.subHeadingText {
        font-size: 30px;
    }
    .responsive-container-block.Container.bottomContainer {
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
    }
    .responsive-container-block.Container {
        max-width: 830px;
    }
    .allText.aboveText {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 40px;
    }
    .allText.bottomText {
        margin-top: 30px;
        margin-right: 40px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.bottomText {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }
    .responsive-container-block.Container.bottomContainer {
        flex-direction: column;
    }
    .text-blk.headingText {
        text-align: center;
        font-size: 22px;
    }
    .text-blk.subHeadingText {
        text-align: center;
    }
    .text-blk.description {
        text-align: center;
    }
    .explore {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }
    #inc0s {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }
    .dotsImg {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    .videoContainer {
        width: 100%;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .mainVideo {
        width: 100%;
    }
    .allText.bottomText {
        margin-top: 30px;
        margin-right: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
    }
    .text-blk.description {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .text-blk.headingText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .text-blk.subHeadingText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .mainVideo {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 768px) {
    .allText {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    .responsive-container-block.Container {
        flex-direction: column;
        height: auto;
    }
    .text-blk.headingText {
        text-align: center;
    }
    .text-blk.subHeadingText {
        text-align: center;
        font-size: 28px;
        line-height: 38px;
    }
    .text-blk.description {
        text-align: center;
        font-size: 18px;
        line-height: 27px;
    }
    .allText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.aboveText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .responsive-container-block.Container {
        margin-top: 80px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
    }
    .responsive-container-block.Container.bottomContainer {
        margin-top: 50px;
        margin-right: auto;
        margin-bottom: 50px;
        margin-left: auto;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 10px;
    }
    .allText.bottomText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }
    .allText.bottomText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 60px;
        margin-left: 0px;
    }
    .mainVideo {
        height: 400px;
    }
    .videoContainer {
        height: 550px;
    }
    .explore {
        font-size: 16px;
        padding-top: 8px;
        padding-right: 40px;
        padding-bottom: 8px;
        padding-left: 40px;
    }
    .responsive-container-block.bigContainer {
        padding-top: 0px;
        padding-right: 50px;
        padding-bottom: 0px;
        padding-left: 50px;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.Container {
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 25px;
        padding-bottom: 10px;
        padding-left: 25px;
    }
    .allText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 100%;
    }
    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }
    .explore {
        font-size: 16px;
        line-height: 25px;
        padding: 8px 35px 8px 35px;
    }
    .dotsImg {
        width: 80%;
        height: 100%;
    }
    .mainVideo {
        height: 260px;
    }
    .videoContainer {
        height: 320px;
    }
    .responsive-container-block.Container.bottomContainer {
        padding: 0 0 0 0;
    }
    .text-blk.description {
        font-size: 16px;
        line-height: 23px;
        margin: 0 0 30px 0;
    }
    .text-blk.subHeadingText {
        font-size: 24px;
    }
}


/* يبدأ العنصر مخفيًا */

.responsive-container-block.bigContainer {
    transform: translateY(60px);
    /* يبدأ من 60px أسفل */
    opacity: 0;
    visibility: hidden;
    transition: transform 1s ease-out, opacity 1s ease-out, visibility 1s;
}


/* عند ظهور العنصر في الشاشة */

.responsive-container-block.bigContainer.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


/*ABOUT US SECTION */


/*clints section */


/* قسم العملاء */

.clients-section {
    background-color: #ffffff;
    /* لون الخلفية */
    padding: 60px 20px;
    /* تباعد داخلي */
    position: relative;
}


/* أيقونة الخلفية */

.clients-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-image: url('');
    /* استبدل بمسار الأيقونة */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    /* شفافية الأيقونة */
    z-index: 1;
    /* خلف النص */
}


/* العناوين */

.bl {
    position: relative;
    z-index: 2;
    /* فوق الخلفية */
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}


/* الشعارات */

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.clients-logos img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    /* تأثير عند المرور */
}

.clients-logos img:hover {
    transform: scale(1.1);
    /* تكبير عند التمرير */
}


/* تحسين العرض على الشاشات الصغيرة */

@media screen and (max-width: 768px) {
    .clients-logos img {
        max-width: 100px;
    }
}


/*clints section end */

.dropdown-toggle::after {
    display: none !important;
}


/* صفحة تواصل معنا */

.t1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.t2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 0, 7, 0.315); /* نفس الكود بتاعك */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.t3 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: "Cairo", "Tajawal", sans-serif;
    text-align: center;
    font-weight: 500;
    z-index: 3;
}

.t1 {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* عنا */

.X12A-box {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    text-align: right;
}

.X12A-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.X12A-text {
    font-size: 18px;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.X12A-list {
    list-style: none;
    padding: 0;
}

.X12A-list li {
    font-size: 18px;
    color: #444;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.X12A-list li strong {
    color: #007bff;
}


/* Responsive Design */

@media (max-width: 768px) {
    .X12A-box {
        width: 95%;
        padding: 15px;
    }
    .X12A-title {
        font-size: 22px;
    }
    .X12A-text,
    .X12A-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .X12A-box {
        width: 100%;
        padding: 10px;
    }
    .X12A-title {
        font-size: 20px;
    }
    .X12A-text,
    .X12A-list li {
        font-size: 14px;
    }
}


/* عنا */


/* صفحة تواصل معنا */


/* الحاوية العامة */

.X99-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}


/* العناوين */

.X99-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


/* تحسين "لماذا تتواصل معنا؟" */

.X99-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.X99-feature {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.X99-feature:hover {
    background: #007bff;
    color: white;
}

.X99-feature i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}


/* طرق التواصل */

.X99-contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.X99-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #444;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    justify-content: center;
}

.X99-contact-item:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.X99-contact-item i {
    font-size: 22px;
    color: #007bff;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover i {
    color: white;
}

.X99-contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover a {
    color: white;
}


/* الأسئلة الشائعة */

.X99-faq-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.X99-faq-item:hover {
    background: #007bff;
    color: white;
}

.X99-question {
    font-weight: bold;
    font-size: 18px;
}

.X99-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0 10px;
    font-size: 16px;
    color: #333;
}

.X99-faq-item.active .X99-answer {
    max-height: 100px;
    padding: 10px;
}


/* نموذج استفسار سريع */

.X99-inquiry-form {
    text-align: center;
}

.X99-inquiry-form input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.X99-inquiry-form button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}


/* آراء العملاء */

.X99-testimonial {
    text-align: center;
    background: #f1f1f1;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}


/* تحسين التناسق مع جميع الأجهزة */

@media (max-width: 1024px) {
    .X99-container {
        width: 95%;
        padding: 20px;
    }
    .X99-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .X99-contact-box {
        grid-template-columns: 1fr;
    }
    .X99-contact-item {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .X99-title {
        font-size: 22px;
    }
    .X99-contact-item {
        font-size: 14px;
        padding: 12px;
    }
}


/* الحاوية الأساسية */

.X99-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}


/* العنوان */

.X99-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


/* تصميم القائمة */

.X99-contact-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}


/* كل عنصر في القائمة */

.X99-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #444;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    justify-content: start;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.X99-contact-item:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}


/* الأيقونات */

.X99-contact-item i {
    font-size: 24px;
    color: #007bff;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover i {
    color: white;
}


/* النصوص */

.X99-label {
    font-weight: bold;
    display: block;
    color: #333;
}

.X99-contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.X99-contact-item:hover a {
    color: white;
}


/* تحسين التوافق مع جميع الشاشات */

@media (max-width: 1024px) {
    .X99-container {
        width: 95%;
        padding: 20px;
    }
    .X99-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .X99-contact-box {
        grid-template-columns: 1fr;
    }
    .X99-contact-item {
        font-size: 16px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .X99-title {
        font-size: 22px;
    }
    .X99-contact-item {
        font-size: 14px;
        padding: 12px;
    }
}




/*تنسيق المقالات كلها */
.c-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 10%;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
}

.c-image {
    height: auto;
    width: 70%;
    margin: 0 auto;
}

.c-text {
    line-height: 1.8;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

/* تخصيص الـ h2 داخل .c-container فقط */
.c-container h2 {
    font-size: 27px; /* تحديد حجم الخط للـ h2 */
    text-align: right; /* بداية h2 من اليمين */
    width: 100%; /* التأكد من أن h2 يأخذ عرض الحاوية بالكامل */
    margin: 0; /* إزالة الهوامش الخارجية */
}

.c-container p {
    font-size: 18px; /* تحديد حجم الخط للنصوص */
    text-align: right; /* جعل النص يبدأ من المنتصف */
    width: 100%; /* التأكد من أن النص يأخذ عرض الحاوية بالكامل */
    margin: 10px 0; /* إضافة مسافة بين الفقرات */
}

.abc123 {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #ffffff;
}

.xyz456 th,
.xyz456 td {
    padding: 12px;
    border: 1px solid #ddd;
}

.pqr789 th {
    background-color: #333;
    color: white;
    text-transform: uppercase;
}

.lmn234 tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.uvw567 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}


/* جعل الجدول متجاوبًا مع جميع الأجهزة */

@media screen and (max-width: 768px) {
    .uvw567 {
        width: 100%;
        overflow-x: scroll;
    }
    .xyz456 th,
    .xyz456 td {
        font-size: 14px;
        padding: 10px;
    }
}


/*تنسيق المقالات كلها */












/* تنسيق القسم ككل */
.about-section {
    padding: 60px 0; /* مسافة علوية وسفلية */
    background-color: #ffffff; /* لون خلفية خفيف، غيّره بحسب رغبتك */
  }
  
  /* صورة القسم */
  .about-image img {
    max-width: 100%;
    border-radius: 6px; /* تعطي زوايا خفيفة */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* ظِل خفيف */
    height: 70%;
  }
  
  /* الصندوق الأبيض الذي يحوي المحتوى */
  .about-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 80px;
    box-shadow: 0 10px 15px rgba(6, 28, 224, 0.3);
  }
  
  /* العنوان داخل الصندوق */
  .about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* النص */
  .about-content p {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;

}

.about-content {
    /* مسافة من الأعلى لإنزاله قليلاً */
    margin-top: 90px; 
    /* مسافة من اليمين أو اليسار حسب اتجاه اللغة لديك */
    margin-right: -120px; 
  }

  /* ====== الشاشات المتوسطة (أصغر من 992px) ====== */
@media (max-width: 991px) {
    .about-content {
      /* خفّف السحب لليمين */
      margin-right: -60px;
      margin-top: 60px;
      padding: 60px;
      font-size: 14px;
    }
  
    .about-image img {
      /* إن كنت تريد السماح للصورة أن تُظهر بحجمها الطبيعي */
      height: auto;
    }
  }
  
  /* ====== الشاشات الصغيرة (أصغر من 768px) ====== */
  @media (max-width: 767px) {
    .about-content {
      /* أزل السحب السلبي نهائيًا */
      margin-right: 0;
      margin-top: 40px;
      padding: 40px;
      font-size: 14px; 

    }
  
    /* يمكنك أيضًا تقليل الـ border-radius أو الظل إن أردت */
    .about-image img {
      height: auto; /* لتتناسب مع عرض الشاشة */
    }
  }



  @keyframes fadeInUp {
    0% {
      transform: translateY(40px); /* يبدأ تحت */
      opacity: 0;                  /* مخفي */
    }
    100% {
      transform: translateY(0);    /* يرجع للمكان الأصلي */
      opacity: 1;                  /* يصبح مرئي */
    }
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards; 
    /* 
      مدة الحركة 0.8 ثانية، 
      يمكنك تعديلها مثلاً إلى 1s أو 1.2s. 
      ease: نوع التسارع. 
      forwards: لكي يحتفظ بالحالة النهائية بعد انتهاء الحركة.
    */
  }


  .js-scroll-animation {
    opacity: 0;            /* البداية: مخفي */
    transform: translateY(40px); /* اسفل بقليل */
    transition: opacity 0.5s, transform 0.5s; 
    /* إن أردت حركة بسيطة بدون keyframes */
  }
  .js-scroll-animation.animate-fadeInUp {
    opacity: 1;                /* يصبح مرئي */
    transform: translateY(0);   /* يعود لمكانه */
  }
    

  /* about section end */

/* feature section */


/* سكشن كامل */
.l1 {
    padding: 60px 0;
    background-color: #fff;
  }
  @media (min-width: 992px) {
    .l1 {
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  
  /* منطقة العنوان والفقرة */
  .l3 {
    margin-bottom: 40px;
    text-align: center;
  }
  
  /* عنوان القسم */
  .l7 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* الفقرة القصيرة أسفل العنوان */
  .l8 {
    font-size: 18px;
    color: #666;
  }
  
  /* عنصر row لتخطيط الأعمدة (لا تغييرات كبيرة هنا) */
  .l4 {
    /* يمكنك إضافة أي تنسيقات إضافية هنا */
  }
  
  /* لكل عمود */
  .l5 {
    margin-bottom: 30px; /* لإعطاء مسافة بين الأعمدة في الشاشات الصغيرة */
  }
  
  /* الصندوق الحاوي للميزة */
  .l6 {
    background-color: transparent;
    padding: 20px;
    margin: 0 auto;
    max-width: 300px;
    transition: all 0.3s ease;
  }
  
  /* أيقونة الميزة */
  .l9 {
    margin-bottom: 20px;
    text-align: center;
}
svg {
    margin: 0 auto;
    display: block;
  }
  
  /* عنوان الميزة */
  .l10 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
  }
  
  /* نص الميزة */
  .l11 {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
  }
  
  .l6:hover {
    transform: translateY(-5px);
  }
  
  /* تنسيقات الشاشات الأصغر من 768px مثلاً */
  @media (max-width: 767.98px) {
    .l7 {
      font-size: 24px;
    }
    .l8 {
      font-size: 16px;
    }
    .l10 {
      font-size: 20px;
    }
    .l11 {
      font-size: 14px;
    }
  }
  
  /* فيوتشر سكشن إند */





  /* سكشن الخدمات */
.z1 {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  /* الحاوية الرئيسية */
  .z2 {
    /* يمكنك تركها كما هي أو إضافة أي تنسيقات */
  }
  
  /* العنوان العام */
  .z3 {
    margin-bottom: 40px;
  }
  
  /* عنوان القسم */
  .z4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* وصف القسم */
  .z5 {
    font-size: 16px;
    color: #000000;
  }
  
  /* صف الخدمات */
  .z6 {
    /* تنسيقات إضافية للصف إذا لزم الأمر */
  }
  
  /* كل عمود (خدمة واحدة) */
  .z7 {
    margin-bottom: 30px; 
    
  }
  
  /* الصندوق الداخلي لكل خدمة */
  .z8 {
    background: linear-gradient(135deg, #010713 0%, #3A8BFF 100%);
    border-radius: 8px;
    padding: 20px;
  }
  
 
  
  /* الصورة */
  .z9 {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto 20px auto;
    overflow: hidden;
  }
  
  .z9 img {
    width: 100%;
    height: 80%;
    display: block;
  }
  
  /* عنوان الخدمة */
  .za {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #ffffff;
    text-align: right;


  }
  
  /* وصف الخدمة */
  .zb {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: right;
  }
  
  /* رابط "اقرأ المزيد" */
  .zc {
    margin-top: 50px;
    display: inline-block;
    color: #2787ee94; /* أزرق */
    text-decoration: none;
    float: right;
    font-size: 16px;

  }
  
  .zc:hover {
    color: #0056b3;
  }
  


  @media (min-width: 992px) {
    .z1 {
      margin: 0 160px; /* من اليمين واليسار */
    }
  }
 
  
  /* ميديا كويري للشاشات الأصغر */
  @media (max-width: 767.98px) {
    .z4 {
      font-size: 26px;
    }
    .z5 {
      font-size: 14px;
    }
    .za {
      font-size: 18px;
    }
    .zb {
      font-size: 13px;
    }
    .z9 {
      width: auto;
      height: auto%;
      margin-bottom: 15px;
    }
  }
  
  
  /* سكشن الخدمات */








/*  سكشن اراء العملاء*/


/* سكشن رئيسي */
.k1 {
    padding: 60px 0;
    background-color: #fff;
}
  


@media (min-width: 992px) {
    .k1{
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  /* حاوية المحتوى */
  .k2 {
    /* يمكنك تركها بدون تغيير أو إضافة أي تنسيق آخر */
  }
  
  /* رأسية السكشن (عنوان + فقرة) */
  .k3 {
    margin-bottom: 40px;
  }
  
  .k4 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    
  }
  
  .k5 {
    font-size: 16px;
    color: #666;
  }
  
  /* تغليف الأعمدة */
  .k6 {
    /* تنسيقات إضافية للـ row إن أردت */
  }
  
  /* كل عمود */
  .k7 {
    margin-bottom: 30px; 
  }
  
  /* الصندوق الداخلي */
  .k8 {
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 280px; /* لإعطاء ارتفاع مناسب */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;

  }
  
  /* الصندوق الأزرق المتدرج */
  .k9 {
    background: linear-gradient(135deg, #010713 0%, #3A8BFF 100%);
    color: #fff; 
  }
  
  /* الصندوق الأبيض */
  .k10 {
    background: linear-gradient(135deg, #010713 0%, #3A8BFF 100%);
    color: #ffffff;
  }
  
  .ka {
    font-size: 60px; /* بدل 100px */
    font-weight: bold;
    margin-bottom: 10px; /* مسافة أسفل الرمز */
  }
  
  /* نص الشهادة */
  .kb {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  /* اسم العميل */
  .kc {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  /* منصبه/تعريفه */
  .kd {
    font-size: 14px;
    color: inherit; /* ليتبع لون الصندوق */
  }
  
  /* تحسين المظهر على الشاشات الأصغر */
  @media (max-width: 767.98px) {
    .k4 {
      font-size: 24px;
    }
    .k5 {
      font-size: 14px;
    }
    .kb {
      font-size: 14px;
    }
    .kc {
      font-size: 16px;
    }
    .ka {
      font-size: 34px;
    }
  }
  
/*  سكشن اراء العملاء*/






/* contact us section */
/* القسم العام */
.m1 {
    padding: 60px 0;
    background-color: #ffffff;
  }
  
  @media (min-width: 992px) {
    .m1{
      margin: 0 160px; /* من اليمين واليسار */
    }
  }

  /* الحاوية */
  .m2 {
    /* يمكنك تركها على حالها أو تعديلها */
  }
  
  /* تخطيط الأسطر */
  .m3 {
    margin-bottom: 30px;
  }
  
  /* عمود النموذج */
  .m4 {
    margin-bottom: 20px; 
  }
  
  /* حاوية داخلية للنموذج */
  .m5 {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
  }
  
  /* عنوان النموذج */
  .m6 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: right;
  }
  
  /* وصف مصغر تحت العنوان */
  .m7 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: right;

  }
  
  /* استايل النموذج */
  .m8 {
    /* يمكن إضافة تنسيقات إضافية */
  }
  
  /* تنسيق حقول النموذج */
  .m9 {
    margin-bottom: 15px;
  }
  
  /* زر الإرسال */
  .m10 {
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .m10:hover {
    background-color: #0056b3;
  }
  
  /* عمود معلومات التواصل */
  .m11 {
    display: flex;
    align-items: center; /* مركزة عموديًا */
    justify-content: center; /* مركزة أفقيًا (اختياري) */
    text-align: right;

  }
  
  /* خلفية أو إطار لمعلومات التواصل */
  .m12 {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 350px; /* لتحديد عرض عمود التواصل */
  }
  
  /* عنوان فرعي داخل معلومات التواصل */
  .m13 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* نص الوصف */
  .m14 {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: right;

  }
  
  /* عناوين فرعية للهاتف / البريد */
  .m15 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  /* النص الخاص بالهاتف والبريد */
  .m16 {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* حاوية الخريطة */
  .m17 {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden; /* لإخفاء أي زوائد */
  }
  
  /* الشاشات الأصغر */
  @media (max-width: 767.98px) {
    .m6 {
      font-size: 20px;
    }
    .m8 {
      margin-bottom: 20px;
    }
    .m12 {
      margin-top: 20px;
      max-width: 100%;
    }
  }
  /* contact us section */





  /* fotter start */

/* حاوية العناصر */
.a1 {
    text-align: center; /* توسيط المحتوى */
    margin: 40px 0;     /* مسافة علوية وسفلية */

  }
  
  /* النص العلوي */
  .a2 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px; /* مسافة قبل الخط */
  }
  
  /* الخط الفاصل */
  .a3 {
    border: 0;
    height: 1px;
    margin: 20px auto;      /* مسافة قبل وبعد الخط */
    width: 60%;             /* عرض الخط: 60% من الصفحة */
  }
  
  /* النص السفلي */
  .a4 {
    font-size: 14px;
    color: #000000;
    margin-top: 20px; /* مسافة بعد الخط */
    background-color: transparent !important; /* أو لون آخر */

  }
  
    /* fotter end */







    /* company description */ 
    .company-description {
        text-align: center;
        padding: 0 200px;
        font-size: 30px;
        font-weight: bold;
      }
      
      /* الشاشات المتوسطة */
      @media (max-width: 991px) {
        .company-description {
          padding: 0 50px;
          font-size: 26px;
        }
      }
      
      /* الشاشات الصغيرة */
      @media (max-width: 767px) {
        .company-description {
          padding: 0 20px;
          font-size: 22px;
        }
      }









      
          /* company description */ 





/* السكشن نفسه مع الخلفية */
.abcd {
    position: relative;
    height: auto; /* يمكنك تغيير الارتفاع حسب رغبتك */
    background: url("/services-img/about-serviceclean-photo.webp") no-repeat center center/cover;
    display: flex;           /* لجعل المحتوى يُعرض وفق نظام فلاكس */
    align-items: center;     /* لتوسيط المحتوى عموديًا */
    direction: rtl;          /* عرض النص باللغة العربية من اليمين إلى اليسار */
    color: #fff;   
    text-align: center;     
    width: 100%;     /* لون الخط أبيض ليظهر فوق الصورة */
  }
  
  /* الحاوية الداخلية للنص */
  .efgh {
  background: url(/IMAGES/cleaning-company-city-clean.png);
    padding: 30px;
    height: 320px;
    width: 100%;     /* لون الخط أبيض ليظهر فوق الصورة */

 }
  
  /* عنوان النص الرئيسي */
  .ijkl {
    font-size: 32px;
    line-height: 1.4;
    font-weight: bold;
    padding-top: 50px;

  }
  
  /* الفقرة التوضيحية */
  .mnop {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    padding-top: 40px;
    margin: 0px 300px;

  }
  /* تحسين الاستجابة للشاشات الصغيرة */
@media (max-width: 480px) {
    .ijkl {
      font-size: 24px;
      padding-top: 30px;
    }
    .mnop {
      font-size: 12px;
      padding-top: 10px;
      margin: 0 10px;
    }
  }






.GAZA1-projects {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.GAZA1-title {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.GAZA1-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.GAZA1-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.GAZA1-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.GAZA1-gallery img:hover {
  transform: scale(1.03);
}

.GAZA1-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0066cc;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.GAZA1-button:hover {
  background-color: #004a99;
}
