.testimonials-futuristic {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonials-futuristic h2 {
  font-size: 40px;
  color: #ff6600;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  
  font-family: 'Nunito', sans-serif;
}

.testimonial-container {
  display: flex;
  perspective: 1000px;
  gap: 40px;
  justify-content: center;
  transition: transform 0.5s;
  
  font-family: 'Nunito', sans-serif;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid #ff6600;
  padding: 30px;
  width: 300px;
  min-height: 350px;
  border-radius: 20px;
  transform-style: preserve-3d;
  transform: rotateY(30deg);
  opacity: 0.5;
  transition: all 0.6s ease;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  
  font-family: 'Nunito', sans-serif;
}

.testimonial-card.active {
  transform: rotateY(0deg) scale(1.1);
  opacity: 1;
  box-shadow: 0 0 30px #ff6600;
  background: linear-gradient(145deg, #1c1c1c, #111);
  
  font-family: 'Nunito', sans-serif;
}

.profile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #ff6600;
  margin-bottom: 15px;
}


.profile h3 {
  margin: 10px 0 5px;
  color: #ff6600;
  font-size: 20px;
  
  font-family: 'Nunito', sans-serif;
}

.profile p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 15px;
  
  font-family: 'Nunito', sans-serif;
}

.stars {
  color: #ffcc00;
  font-size: 20px;
  letter-spacing: 5px;
}

.controls {
  margin-top: 30px;
}

.controls button {
  background: #ff6600;
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s ease;
  
  font-family: 'Nunito', sans-serif;
}

.controls button:hover {
  background: #e65c00;
}


@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Aplică stilul activ permanent pe toate cardurile pe mobil */
  .testimonial-card {
    transform: rotateY(0deg) scale(1.1);  /* Cardurile nu mai sunt rotite, sunt scalate */
    opacity: 1;  /* Opacitatea este setată la 1 pentru a le face vizibile */
    box-shadow: 0 0 30px #ff6600;  /* Glow permanent pe toate cardurile */
    background: linear-gradient(145deg, #1c1c1c, #111);  /* Fundal activ permanent */
    transition: all 0.3s ease;
  }

  .controls {
    display: none;  /* Ascunde butoanele de control pe mobil */
  }
}


