.feature-icon-img {
  margin-left: -30px !important;
  width: 120px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px; /* Optional: makes it a little rounded */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Optional: gives a soft shadow */
}

.btn-gradient {
  display: inline-block;
  padding: 12px 24px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(to right, #4f6ae4, #13b0e5);
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  opacity: 0.8;
  color: white;
}

.image-box {
  width: 100%;
  max-width: 800px; /* increased from 500px to 800px */
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border-radius: 8px;
  margin: auto; /* center if needed */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}

.testimonial-section {
  background-color: #f9f9f9;
}

.testimonial-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-name {
  color: #002b5b;
  font-weight: bold;
}

.testimonial-title {
  font-weight: 600;
  color: #3c3c3c;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}
