.dark h3.dm-text-main {
    color: #0090de !important;
}
  
.dark .animated-text-line {
    background-color: #0090de;
}

/* Add custom CSS styles below */ 
salla-trust-badges {
    display: none !important;
}

/* الحاوية الرئيسية */
.special-testimonial__inner {
    background: #034086; 
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    position: relative;
}

/* الاسم */
.special-testimonial__info h4 {
    color: #ffffff;
    font-size: 15px;
}

/* نص التقييم */
.special-testimonial__text_down {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

@keyframes goldPulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  40% {
    transform: scale(1.15) rotate(3deg);
  }
  70% {
    transform: scale(1.05) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.feature-icon i.sicon-gold-badge {
  display: inline-block;
  animation: goldPulse 2.5s ease-in-out infinite;
}
.feature-icon i {
  animation: none;
}

.feature-icon i.animate-gold {
  animation: goldPulse 2.5s ease-in-out infinite;
}

@keyframes moneyFlow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-5deg);
  }
  50% {
    transform: translateY(0) rotate(5deg);
  }
  75% {
    transform: translateY(-4px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.feature-icon i.sicon-cash-payment {
  display: inline-block;
  animation: moneyFlow 2.8s ease-in-out infinite;
}

@keyframes cartSlide {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}

.feature-icon i.sicon-cart2 {
  display: inline-block;
  animation: cartSlide 2.5s ease-in-out infinite;
}