.elementor-21838 .elementor-element.elementor-element-3c0f95af{padding:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-21838 .elementor-element.elementor-element-49c94055 > .elementor-element-populated{margin:0px 0px 20px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-21838 .elementor-element.elementor-element-49c94055{width:100%;}}/* Start custom CSS */.shadow-1
{
box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

  .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile default */
  gap: 1rem;

  font-family: 'Inter', sans-serif;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: still 2 columns */
@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background-color: #f1f1f161;
  border-left: 6px solid #E39918;

  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  color: #0073B8;
  font-size: 2.5rem;
  line-height: 0;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.testimonial-profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0073B8;
}

.testimonial-name {
  color: #0073B8;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}

.testimonial-role {
  color: #E39918;
  font-size: 0.95rem;
  margin: 0.2rem 0 0;
}/* End custom CSS */