/* Unique Styles for Testimonials Page */

/* Testimonials Section */
.tt-testimonials-section {
  padding: 150px 20px;
  background: url("./images/testomonials.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  position: relative;
}

.tt-section-title {
  font-size: 48px;
  margin-bottom: 40px;
  color: #64dafe;
}

.tt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Card */
.tt-testimonial-card {
  background: rgba(0, 0, 0, 1);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: tt-slideUp 1s ease-in-out;
}

.tt-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.tt-testimonial-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: block;
  transition: transform 0.3s ease;
}

.tt-testimonial-image:hover {
  transform: scale(1.1);
}

/* Company Logos */
.tt-testimonial-card.company-logo {
  width: 120px;
  height: auto;
  border-radius: 5px;
  margin: 0 auto 20px auto;
}

/* Testimonial Text */
.tt-testimonial-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  font-style: italic;
  position: relative;
  padding: 0 10px;
}

.tt-testimonial-text::before,
.tt-testimonial-text::after {
  content: '"';
  font-size: 30px;
  color: #64dafe;
  position: absolute;
}

.tt-testimonial-text::before {
  top: -10px;
  left: -5px;
}

.tt-testimonial-text::after {
  bottom: -10px;
  right: -5px;
}

/* Testimonial Author */
.tt-testimonial-author {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

/* Animations */
@keyframes tt-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tt-slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .tt-testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .tt-section-title {
    font-size: 32px;
  }

  .tt-testimonial-card {
    padding: 20px 15px;
  }

  .tt-testimonial-text {
    font-size: 14px;
  }

  .tt-testimonial-author {
    font-size: 16px;
  }
}

.tp-section {
  background-color: black;
}
