.Achievements-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* ريسبونسف تلقائي */
    gap: 30px;
    background-color: var(--lightHelper);
    background-image: url("../img/contact.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    margin: 60px auto;
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
  }
  
  .rts-counter-list {
    background: rgba(0, 0, 0, 0.4); /* خلفية شفافة بسيطة عشان النص يبان */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
  }
  
  .rts-counter-list:hover {
    transform: translateY(-5px); /* حركة بسيطة عند الهوفر */
  }
  
  .rts-counter-list .rts-counter-list-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .counter-icon {
    background-color: #094067;
    margin-right: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .rts-counter-list .rts-counter-list-inner .counter-icon img {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
  }
  
  .count-number span {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0px 5px;
  }
  
  .rts-counter-list .text {
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 10px;
    font-size: 16px;
  }
  
  /* ✅ تحسين أكتر مع الميديا كويري */
  @media (max-width: 992px) {
    .count-number span {
      font-size: 35px;
    }
    .rts-counter-list {
      padding: 15px;
    }
  }
  
  @media (max-width: 576px) {
    .Achievements-section {
      padding: 40px 15px;
      gap: 20px;
    }
    .rts-counter-list {
      padding: 10px;
    }
    .count-number span {
      font-size: 28px;
    }
    .rts-counter-list .text {
      font-size: 14px;
    }
  }
  