/* Variables */
:root {
  --navy: #1a4a8e;
  --orange: #ff5a00;
  --light-bg: #f8f9fa;
}

/* Header */
.testimonials-header {
  background:
    linear-gradient(rgba(26, 74, 142, 0.9), rgba(26, 74, 142, 0.9)),
    url("../img/testimonials-bg.jpg") no-repeat center center/cover;
  height: 300px;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 15px 30px rgba(26, 74, 142, 0.1) !important;
}

.quote-icon {
  font-size: 2rem;
  color: rgba(255, 90, 0, 0.2);
}

.bg-navy {
  background-color: var(--navy);
}

.text-orange {
  color: var(--orange);
}

.btn-orange {
  background-color: var(--orange);
  color: white;
  border: none;
}

.btn-orange:hover {
  background-color: #e65100;
  color: white;
}

.italic {
  font-style: italic;
  line-height: 1.6;
}

/* Modal Styling */
.bg-navy {
  background-color: var(--navy) !important;
}
