/* ========================================================================== */
/* TESTIMONIAL PAGE STYLES                                                    */
/* ========================================================================== */

body {
  background-color: #f8fafc;
}

/* Inner Banner */

.inner-banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #032157 0%, rgba(3, 33, 87, 0.85) 60%, rgba(3, 33, 87, 0.4) 100%);
}

/* Testimonial Container */
.testimonial-container {
  padding-top: 60px;
  padding-bottom: 80px;
}

.testimonial-container .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(3, 33, 87, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(3, 33, 87, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(3, 33, 87, 0.1);
  border-color: rgba(3, 33, 87, 0.15);
}

.testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-card .star-rating {
  display: flex;
  gap: 3px;
}

.testimonial-card .testimonial-body {
  margin-bottom: 24px;
}

.testimonial-card .testimonial-title {
  font-family: "Lexend-Bold", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #032157;
  margin-bottom: 12px;
  line-height: 1.35;
}

.testimonial-card .testimonial-text {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #4a5568;
}

.testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(3, 33, 87, 0.06);
}

.testimonial-card .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card .author-name {
  font-family: "Lexend-SemiBold", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #032157;
  margin: 0 0 2px 0;
}

.testimonial-card .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .testimonial-container .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .testimonial-container .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }


}