/* Testimonial Section Improvements */
.testimonial-section {
  background-color: #ffffff !important;
  padding: 10px 0;
  margin: 20px 0;
}

.testimonial-title {
  color: #222222;
  margin-bottom: 40px;
  font-size: 2.2rem;
  text-align: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid #e9f1f0;
  margin: 15px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-content-wrapper {
  background: #404a9a;
  padding: 35px;
  position: relative;
  flex-grow: 1;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.testimonial-content-wrapper:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #404a9a;
}

.testimonial-content-wrapper p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  padding: 0 5px;
}

.testimonial-content-wrapper p:before,
.testimonial-content-wrapper p:after {
  display: none;
}

.testimonial-author-info {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-company {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 20px 0;
    margin: 10px 0;
  }

  .testimonial-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .testimonial-content-wrapper {
    padding: 20px;
  }

  .testimonial-author-info {
    padding: 15px 20px;
  }
}

/* Hide owl carousel navigation buttons */
.owl-nav {
  display: none !important;
}
