.testimonies-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimony {
  display: none;
  text-align: center;
  padding: 40px 40px 0 40px;
  animation: fadeIn 0.5s ease;
}

.testimony.active {
  display: block;
}

.testimony-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background: #0f1828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  color: white;
  box-shadow: 0 4px 15px rgb(43 60 135 / 30%);
}

.testimony-text {
  font-size: 1.3em;
  font-style: italic;
  color: #d7d7d7;
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimony-author {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1em;
}

.testimony-role {
  color: #a5595d;
  font-size: 0.95em;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #de7926;
  width: 30px;
  border-radius: 6px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  .testimony-text {
    font-size: 18px;
    padding-top: 50px;
  }
  .section-title {
    font-size: 2em;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
