    .bc-projects-contributed {
        background: #0F1626;
        padding: 80px 0;
    }

    .bc-projects-container {
        max-width: 1460px;
        width: 100%;
        box-sizing: border-box;
        padding-top: 160px;
        padding-left: 40px;
        padding-right: 40px;
        margin: 0 auto;
    }

    .bc-projects-title {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 48px;
        line-height: 1;
        color: #EDEDED;
        text-align: center;
        margin-bottom: 64px;
        padding-top: 160px;
    }

    .bc-projects-grid {
        display: grid;
        grid-template-columns: repeat(4, 250px);
        grid-auto-rows: 250px;
        gap: 80px;
        justify-content: center;
    }

    .bc-logo {
        background: #FFFFFF;
        width: 250px;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .bc-logo img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

@media (max-width: 600px) {
  .bc-projects-contributed {
    padding: 16px 0 32px 0;
     overflow-x: hidden;
  }
  .bc-projects-container {
    max-width: 441px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 12px;
    margin: 0 auto;
  }
  .bc-projects-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #EDEDED;
    text-align: center;
    margin-bottom: 16px;
    padding-top: 0;
    width: 422px;
    height: 18px;
    margin-left: auto;
    margin-right: auto;
  }
  .bc-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 81px);
    grid-auto-rows: 81px;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
  }
  .bc-logo {
    background: #FFFFFF;
    width: 81px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .bc-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }
  .blinds-section {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* الحاوية الرئيسية للبطاقات */
.testimonial-slider {
  display: flex;
  gap: 24px;
  align-items: stretch; /* يجعل كل البطاقات بنفس الطول */
  height: 100%; /* أو يمكنك تحديد ارتفاع ثابت إذا أردت */
}

/* البطاقة نفسها */
.testimonial-card {
  flex: 1 1 0;
  height: 350px; /* أو أي رقم يناسبك */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* نسخة الموبايل */
@media (max-width: 600px) {
  .testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card {
    flex: 1 1 100%;
    height: 220px; /* أو أي رقم يناسبك */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

