  /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Default Styles (for smaller screens, no padding) */
  .main-page {
    padding: 15px; /* No padding by default */
  }

  /* Styles for larger screens (like laptops) */
  @media (min-width: 1024px) {
    .main-page {
      padding: 58px;
    }
  }
  .container {
    width: 95%;
    max-width: 1334px;
    margin: 0 auto;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #091A2C;
    backgroundd: rgb(14,8,34);
    backgroundd: linear-gradient(90deg, #163B61 0%, #102643 35%, #0A0D20 100%);
    color: #fff;
  }ء

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header Section */

  .header {
    position: relative;
    height: 520px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  @media (max-width: 768px) {

    .social-icons {
      display: flex;
      gap: 22px !important
    }
  }
  
  .container.header-container {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    z-index: 2;
  }

  .logo img {
    height: 60px;
  }


  /* Background Image with Blur */
  .header-background {
    position: absolute;
    top: -273px;
    left: -14px;
    width: 103%;
    height: 155%;
    background: linear-gradient(to bottom, transparent 3%, #091A2C), url('Assets/img/right.png') no-repeat center center/cover;
    z-index: 1;
}





  /* Header Content Styling */
  .header-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1077px;
    text-align: center;
    padding: 20px;
    margin-top: 70px;
  }

  .header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: linear-gradient( #69CFF9, #B430F3);
    color: white;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn:hover {
    background: linear-gradient(90deg, #B430F3, #69CFF9);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .header-content h1 {
      font-size: 2rem;
    }

    .header-content p {
      font-size: 1rem;
    }

    .btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  }

  .logo img {
    width: 100px;
    height: auto;
  }
  .navbar {
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar a:hover {
    color: #8a24be;
    text-decoration: none;
    font-weight: 700;
  }

  .header-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .btn {
    background: linear-gradient( #69CFF9, #B430F3);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
  }

  .btn:hover {
    background: linear-gradient(90deg, #9b5df7, #6a0dad);
    transition: 0.3s ease;
  }

  /* Cards Section */

  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* تنظيم الكروت */
    gap: 20px; /* مسافة بين الكروت */
  }

  .card {
    background: rgba(255, 255, 255, 0.1); /* لون خلفية شفاف */
    border-radius: 10px; /* الحواف */
    padding: 30px; /* المسافات الداخلية */
    text-align: center; /* محاذاة النصوص داخل الكارت */
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.1) 0%, rgba(115, 115, 115, 0.1) 100%);
    transition: all 0.3s ease; /* حركة ناعمة عند التحريك */
  }

  .card:hover {
    transform: translateY(-10px); /* رفع الكارت عند الوقوف عليه */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); /* زيادة الظل */
  }

  .icon img {
    width: 80px; /* حجم الأيقونة */
    height: 80px;
    margin-bottom: 15px; /* مسافة أسفل الأيقونة */
  }

  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px; /* مسافة أسفل العنوان */
  }

  .card p {
    font-size: 1rem;
    color: #ccc; /* لون النص */
  }

  /* Overview Section */
  .overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .text-content {
    flex: 1;
  }

  .text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .text-content p {
    font-size: 1rem;
    color: #ccc;
  }

  .image-content {
    flex: 1;
  }

  .image-content img {
    max-width: 100%;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      text-align: center;
    }

    .navbar {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      width: 381px;
    }

    .cards-container {
      grid-template-columns: 1fr;
    }

    .overview-container {
      flex-direction: column;
    }
    .header-content h1 {
      font-size: 25px;
  
    }
    .contact-image-zx{
      display: none;
    }
  }



  /* إعداد الكارد */

  /* إعداد الحاوية الرئيسية */
  .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 194px;
    margin-top: -132px;
  }

  /* إعداد الدائرة */
  .icon-circle1 {
    width: 80px;
    height: 80px;
    background:  #B430F3;
    ; /* ألوان التدرج */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 32px 37px rgb(104, 39, 100);  position: relative;

  }

  /* إعداد الصورة داخل الدائرة */
  .icon-circle1 img {
    width: 76%;
    height: 101%;
    border-radius: 50%; /* لتبقى الصورة داخل إطار دائري */
    object-fit: cover; /* تناسب الصورة مع الإطار */
  }
  .icon-circle2 {
    width: 80px;
    height: 80px;
  background: #69CFF9;

    ; /* ألوان التدرج */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgb(9, 122, 167); /* ظل خفيف ملون */
    position: relative;

  }

  /* إعداد الصورة داخل الدائرة */
  .icon-circle2 img {
    width: auto;
    height: 83%;
    border-radius: 50%; /* لتبقى الصورة داخل إطار دائري */
    object-fit: cover; /* تناسب الصورة مع الإطار */
  }




  /* Section Header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
  }

  .see-more-link {
    font-size: 1rem;
    color: #a64eee;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }

  .see-more-link:hover {
    color: #6e47ff;
  }



  /* Section Header */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
  }

  .see-more-link {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
  }

  .see-more-link:hover {
    color:   linear-gradient(90deg, #6a0dad, #9b5df7);;
  }

  /* Courses Section */
  .courses-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Increase gap between cards */
    padding: 0 40px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }

  /* Card Styles */
  .custom-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 48%; /* Make cards take up half the container width */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: left;
    margin-bottom: 20px; /* Ensure space between cards */
  }

  .card-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
  }

  /* Title with Line */
  .card-title {
    font-size: 1.4rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
  }

  .title-line {
    flex-grow: 1;
    height: 2px;
    background: #6e47ff;
    margin-left: 10px;
  }

  /* Description */
  .card-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Read More Link */
  .card-link {
    font-size: 0.9rem;
    color: #a64eee;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }

  .card-link:hover {
    color: #6e47ff;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .courses-container {
      flex-direction: column;
      align-items: center;
    }

    .custom-card {
      width:auto; /* Make cards stack vertically on smaller screens */
    }
  }


















  .xoxo-container {
    padding: 20px;
  }

  .yoyo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .yoyo-header h2 {
    margin: 0;
  }

  .yoyo-header a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
  }
  .yoyo-header a:hover {
    color: #a64eee;

  }


  .zaza-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .lala-card {
    background-color: #1c1c3a;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .lala-card img {
    width: auto;
    height: 334px;
    border-radius: 8px;
  }

  .lala-card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
  }

  .lala-card p {
    font-size: 14px;
    color: #a1a1a1;
  }

  .lala-card a {
    text-decoration: none;
    color: #00d4ff;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
  }

  .lala-card a:hover {
    color: #fff;

  }













  /* Container */
  .container-weird {
    width: auto;
    max-width: auto;
    text-align: center;
  }

  /* Title */
  .title-weird {
    font-size: 2em;
    margin-bottom: 20px;
  }

  /* Review Section */
  .review-section-weird {
    display: flex;
    align-items: center;
    position: relative;
  }

  /* Arrows */
  .arrow-weird {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    padding: 0 10px;
    user-select: none;
  }

  .cards-container-weird {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
  }

  .review-card-weird {
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.3) 0%, rgba(115, 115, 115, 0.3) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    min-width: 300px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
  }

  /* Card Header */
  .card-header-weird {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .user-img-weird {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .user-info-weird {
    display: flex;
    flex-direction: column;
  }

  .user-name-weird {
    font-size: 1.1em;
    margin: 0;
  }

  .review-date-weird {
    font-size: 0.9em;
    color: #aaa;
  }

  /* Card Content */
  .review-text-weird {
    font-size: 1em;
    margin-bottom: 15px;
  }

  /* Card Footer */
  .card-footer-weird {
    display: flex;
    align-items: center;
  }

  .sms-icon-weird {
    width: 25px;
    height: 25px;
  }



  /* General Section Styling */
  .services-section {
    padding: 40px 20px;
    color: #fff;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .services-header h2 {
    font-size: 34px;
    font-weight: 800;
  }

  .services-header .see-more {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
  }

  .services-header .see-more:hover {
    text-decoration: underline;
  }

  /* Grid Styling */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* عرض 3 كروت متجاورة */
    gap: 20px;
  }

  /* Card Styling */
  .service-card {
    background-color: #142840;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:0px 8px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
  }

  .service-card img {
    width: 95%;
    height: 397px;
    object-fit: cover;
    border-radius: 19px;
    margin-top: 21px;
  }

  .service-card h3 {
    font-size: 25px;
    font-weight: bold;
    margin: 15px 0;
    color: #fff;
    position: relative;
  }

  .service-card h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #00bcd4;
    margin: 8px auto 0;
  }

  .service-card p {
    font-size: 14px;
    margin: 10px 15px 20px;
    color: #b0c4de;
  }

  .service-card .read-more {
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .service-card .read-more:hover {
    text-decoration: underline;
  }



  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .contact-details {
    flex: 1;
    max-width: 600px;
  }

  .contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .info-item .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #ffffff;
  }

  .contact-image {
    flex: 1;
    text-align: center;
  }

  .contact-image img {
    max-width: 100%;
    height: auto;
  }


          /* Floating WhatsApp Icon */
          .whatsapp-icon {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #69CFF9, #B430F3);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-icon svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .whatsapp-icon {
                width: 50px;
                height: 50px;
            }

            .whatsapp-icon svg {
                width: 25px;
                height: 25px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-icon {
                width: 40px;
                height: 40px;
            }

            .whatsapp-icon svg {
                width: 20px;
                height: 20px;
            }
        }






        /* Footer Styles */
        .footerrr {
          background-image: url('Assets/img/footer2.png'); /* مسار الصورة */
          background-size: cover; /* تغطي العنصر بالكامل */
          background-position: center; /* تمركز الصورة */
          background-repeat: no-repeat; /* منع تكرار الصورة */
          width: 100%; /* تغطية عرض العنصر */
          height: auto; /* تغطية كامل الشاشة - يمكنك تعديل الحجم حسب الحاجة */
        }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Footer Logo Section */
  .footer-logo {
    flex: 1;
    max-width: 300px;
  }

  .footer-logo img {
    width: 120px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Footer Links */
  .footer-links {
    flex: 1;
    min-width: 150px;
  }

  .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }

  .footer-links ul li a:hover {
    color: #a64eee;
  }

  /* Social Media Section */
  .footer-socials {
    flex: 1;
    min-width: 150px;
  }

  .footer-socials h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .social-icons {
    display: flex;
    gap: 27px;
  }

  .social-icons a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
  }

  .social-icons a:hover {
    transform: scale(1.2);
    color: #a64eee;
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-socials {
      max-width: 100%;
    }
  }





  /* Floating Icon Design */
  .floating-icon {
    position: absolute;
    top: 50%;
    left: 10px; /* جعل الأيقونة على اليسار */
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 69px;
    height: 230px;
    background: rgba(255, 255, 255, 0); /* خلفية شفافة */
    border-radius: 3%;
    box-shadow: 0 4px 6px rgb(63, 165, 215); /* تأثير الظل */
    transition: transform 0.3s, box-shadow 0.3s; /* تأثير الانتقال */
    text-decoration: none; /* إزالة تحت الخط من الرابط */
    z-index: 1000; /* ضمان أن الأيقونة فوق العناصر الأخرى */
    cursor: pointer; /* إظهار مؤشر اليد عند التمرير */
  }
  
  /* تأثير عند التمرير فوق الأيقونة */
  .floating-icon:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 10px rgb(63, 165, 215); /* تكبير الظل عند التمرير */
  }
  
  /* عند النقر على الأيقونة */
  .floating-icon:active {
    transform: translateY(-50%) scale(1.2); /* تكبير الأيقونة */
    opacity: 0.7;
  }
  
  /* التأثير عند انتقال الصفحة */
  body.transitioning {
    opacity: 0;
    transform: translateX(-100%); /* تحريك الصفحة الحالية إلى اليسار */
    transition: transform 1s ease, opacity 1s ease; /* الانتقال ببطء */
  }
  
  /* التأثير عند تحميل الصفحة الجديدة */
  body.loaded {
    opacity: 1;
    transform: translateX(0); /* الصفحة تظهر من اليسار */
    transition: transform 1s ease, opacity 1s ease;
  }
  
/* Fix overlapping issues with other content */
.header-content,
.header-container {
  position: relative;
  z-index: 1; /* Ensure other content is below the icon */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  .floating-icon i {
    font-size: 18px; /* Smaller icon size */
  }
}


/* تنسيق شاشة التحميل */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#loading-screen h2 {
  margin-top: 20px;
  font-size: 24px;
}

#loading-screen .fa-rocket {
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




/* Floating Icon on the Left */
.left-icon-link {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.left-icon {
  position: relative;
  display: inline-block;
}

/* الصورة الرئيسية */
.main-image {
  width: 50px;  /* يمكنك تعديل الحجم حسب الحاجة */
  height: auto;
  display: block;
}

/* الأيقونة داخل الصورة الرئيسية */
.secondary-icon {
  position: absolute;
  top: 50%;  /* توسيط الأيقونة في المنتصف عموديًا */
  left: 50%;  /* توسيط الأيقونة في المنتصف أفقيًا */
  transform: translate(-50%, -50%); /* تعويض الحجم لجعلها تمامًا في المنتصف */
  width: auto; /* يمكنك تعديل الحجم حسب الحاجة */
  height: auto;
}

/* Navigation Button Style */
.navigate-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  font-size: 1.5rem;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.right-btn {
  right: 10px;
}




/* Styling the section */
.client-collaboration-section {
  text-align: center; /* Center the title */
  padding: 50px 0; /* Add space around the section */
}

/* Styling for the section title */
.section-title {
  font-size: 36px; /* Large font size */
  font-weight: bold; /* Make the text bold */
  margin-bottom: 30px; /* Space between the title and the slider */
  color: #fff; /* Set text color */
}

/* Logo Slider */
.logo-slider {
  -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Before and After pseudo-elements for the sliding effect */
.logo-slider::before, .logo-slider::after {
  content: "";
  height: 175px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logo-slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0;
  top: 0;
}

/* The track that contains all the slides */
.logo-slider .logo-slide-track {
  -webkit-animation: logo-scroll 60s linear infinite;
  animation: logo-scroll 60s linear infinite;
  display: flex;
  width: calc(250px * 12); /* Total width of all logos */
  gap: 20px; /* Add space between logos */
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

/* Individual logo slide */
.logo-slider .slide {
  height: 150px;
  width: 250px; /* Same width for all logos */
  padding: 10px; /* Adjust padding if necessary */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slider .slide img {
  max-width: 100%; /* Ensure the logo fits within the container */
  height: auto;
  object-fit: contain; /* Prevent stretching */
}

/* Keyframes for logo scroll animation */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6)); /* Move logos to the left */
  }
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px; /* Adjust title size for smaller screens */
  }

  .logo-slider .slide {
    width: 200px; /* Reduce logo width for smaller screens */
  }

  .logo-slider .slide img {
    max-width: 120px; /* Adjust image size for smaller screens */
  }
}




/* Reset */

.contact-section-rx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  padding: 1rem;
}

.contact-content-yt {
  flex: 1;
  max-width: 500px;
}

.contact-title-gh {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-description-qw {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.contact-form-lm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-jk {
  position: relative;
}

.form-input-nv,
.form-textarea-op {
  width: 100%;
  padding: 1rem;
  border: 2px solid #585858;
  border-radius: 10px;
  background-color: #0e1a2b00;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-input-nv::placeholder,
.form-textarea-op::placeholder {
  color: #b0b0b0;
}

.form-textarea-op {
  height: 150px;
  resize: none; /* لمنع تغيير الحجم */
}

.form-button-xy {
  padding: 1rem;
  border:2px solid #838383;  /* تحديد الحد الأبيض */
  border-radius: 50px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-button-xy:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.contact-image-zx {
  flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;

  text-align: center;
  overflow: hidden;
  margin-left: 146px;
}

.contact-image-zx img {
  width: 121%;
  max-width: 654px;
  height: auto;
}

/* تعديل خاص بالموبايل */
@media (max-width: 768px) {
  .contact-section-rx {
    flex-direction: column;
    text-align: center;
    overflow: hidden; /* منع أي تجاوز */
  }

  .contact-image-zx img {
    max-width: 90%; /* الصورة أصغر لتناسب عرض الشاشة */
    margin: 0 auto; /* توسيط الصورة */
  }
}


.main-service{
  padding: 60px;
}





.btn {
  background: linear-gradient( #69CFF9, #B430F3);
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  width: 146px;
}
.btn:hover {
  background: linear-gradient(90deg, #9b5df7, #6a0dad);
  transition: 0.3s ease;
}
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
          background: linear-gradient(45deg, #69CFF9, #B430F3);
}
/* hover effect on button width */
.Btn:hover {
  width: 204px;
  border-radius: 40px;
  transition-duration: .3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}
/* hover effect button's text */
.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
/* button click effect*/
.Btn:active {
  transform: translate(2px ,2px);
}



.social-icons {
  display: flex;
  gap: 21px; /* إضافة مسافة بين الأيقونات */
  align-items: center;
}

.social-icons a {
  text-decoration: none; /* إزالة أي خط تحت الرابط */
  color: inherit; /* جعل لون الأيقونة بنفس لون النص أو اللون الذي تختاره */
}

.social-icons i {
  font-size: 24px; /* حجم الأيقونات */
}

.social-icons img {
  width: 24px; /* ضبط عرض الـ SVG */
  height: auto; /* الحفاظ على النسبة */
  max-height: 24px; /* التأكد من أن الأيقونة لا تتجاوز هذا الارتفاع */
}


@media (max-width: 768px) { /* عدّل الحجم حسب احتياجك */
  .header-content {
    margin-top: 150px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

.service-card {
  text-decoration: none; /* إزالة الخط */
}


