.vision-circles-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 170px;
  }
  
  .vision-circles-wrapper {
    position: absolute;
    left: -50%;
    top: 30%;
    transform: translateY(-50%);
  }
  
  .vision-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #ccc;
  }
  
  .vision-circle-large {
    width: 600px;
    height: 600px;
    top: -150px;
    left: 0;
    border-style: dashed;
  }
  
  .vision-circle-medium {
    width: 400px;
    height: 400px;
    top: 100px;
    left: 100px;
    border-style: dashed;
  }
  
  .vision-circle-small {
    width: 200px;
    height: 200px;
    top: 200px;
    left: 200px;
    border-style: dotted;
  }
  .circlex-sec10 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 100px 60px;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
  }
  
  .circlex-left {
    position: relative;
    width: 60%;
    height: 600px;
    overflow: visible;
  }
  
  .circlex-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .circlex-big,
  .circlex-mid,
  .circlex-small {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #9e8888b0;
    left: -30%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .circlex-big {
    width: 700px;
    height: 650px;
    top: 50%;
    left: -85%;
  }
  
  .circlex-mid {
    width: 500px;
    height: 480px;
    top: 50%;
    left: -70%;
  }
  
  .circlex-small {
    width: 300px;
    height: 270px;
    top: 45%;
    left: -68%;
    border-style: dotted;
  }
  
  .circlex-img {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .img-topx {
    width: 200px;
    top: -70px;
    left: 15%;
  }
  
  .img-midx {
    width: 290px;
    top: 160px;
    left: 35%;
  }
  
  .img-bottomx {
    width: 100px;
    bottom: 20px;
    left: 9%;
  }
  
  .faqx-section {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    color: #111;
  }
  
  .faqx-title {
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  .faqx-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    display: none; /* إخفاء النصوص بشكل افتراضي */
  }
  
  .faqx-icon {
    font-size: 20px;
    border: 1px solid #666;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #333;
    cursor: pointer; /* إضافة تأثير التفاعل */
  }
  
  .faqx-item.active .faqx-answer {
    display: block;
  }
  
  .faqx-item.active .faqx-icon {
    content: '−';
  }
  
  .faqx-item {
    border-top: 1px solid #ddd;
    padding: 20px 0;
  }
  
  .faqx-question {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faqx-icon {
    font-size: 20px;
    border: 1px solid #666;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #333;
  }
  
  .faqx-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    display: none;
  }
  
  .faqx-item.active .faqx-answer {
    display: block;
  }
  
  .faqx-item.active .faqx-icon {
    content: '−';
  }
  /* السكشن التاسع */
@media (max-width: 768px) {
    .circlex-sec10 {
      flex-direction: column;
      padding: 40px 20px;
      min-height: auto;
      margin-top: -50px;
    }
  
    .circlex-left {
      display: none; /* نخفي جزء الدوائر والصور */
    }
  
    .faqx-title {
      font-size: 24px;
      text-align: center;
    }
  
    .faqx-answer {
      font-size: 14px;
    }
    .faqx-question {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
    }
  
    .faqx-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      font-size: 20px;
      text-align: left;
    }
  
    /* نخلي كل الأسئلة لها نفس بداية للمحاذاة */
    .faqx-section {
      padding-left: 20px;
    }
  }