/* تنسيق الأيقونات */
  .fixed-icon {
    position: fixed;
    bottom: 45px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #25d366; /* لون واتساب الأخضر */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: background-color 0.3s, transform 0.3s ease;
    opacity: 0;
  }

  .fixed-icon.left {
    left: 10px;
    background-color: #007bff;
    animation: slideInLeft 0.6s forwards;
  }

  .fixed-icon.right {
    right: 10px;
    background-color: #25d366;
    animation: slideInRight 0.6s forwards;
  }

   .fixed-icon:hover {
    background-color: #128c7e;
    transform: translateY(-50%) scale(1.2);
  }

  /* حركة الدخول من اليسار */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100%) translateY(-50%);
    }
    to {
      opacity: 1;
      transform: translateX(0) translateY(-50%);
    }
  }

  /* حركة الدخول من اليمين */
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100%) translateY(-50%);
    }
    to {
      opacity: 1;
      transform: translateX(0) translateY(-50%);
    }
  }


.questions-container{
    max-width: 800px;
    margin: 0 auto;
}

.question{
    border-bottom: 1px solid #fff;
}
.question button{
    width: 100%;
    background-color: #AE0E30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.question p{
    font-size: 22px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}

/*add this class when click*/
.question p.show{
    max-height: 200px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}


.testimonials {
    padding: 3rem 0;
}
.testimonials-swiper{
    padding: 16px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #eee;
}
.testimonial-author h4 {
    margin: 0;
    color: #222;
    font-weight: bold;
}

/* تخصيص أزرار التنقل */
.swiper-button-prev,
.swiper-button-next {
    color: #1e90ff;
}

/* تخصيص النقاط */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #1e90ff;
}



/* القسم */
.why-us {
    padding: 3rem 0;
    text-align: center;
}

.section__title-center {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: .5rem;
}

.section__subtitle-center {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* الشبكة */
.why-us__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* البطاقة */
.why-us__item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* الأيقونة */
.why-us__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* العنوان */
.why-us__title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: .5rem;
}

/* النص */
.why-us__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


.contact {
    text-align: center;
    padding: 3rem 0;
}
.contact__form {
    max-width: 100%;
    margin: auto;
    text-align: right;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
input, select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.button {
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.button:hover {
    background: #0056b3;
}

.sectionThaks{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}