/* Start custom CSS for html, class: .elementor-element-be5cf02 */.student-testimonials{
  padding: 90px 8%;
  background: #f4f7fb;
}

.testimonials-header{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.testimonials-header h2{
  font-size: 36px;
  color: #0b2a4a;
  margin-bottom: 10px;
}

.testimonials-header p{
  font-size: 16px;
  color: #555;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card{
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  position: relative;
}

.testimonial-card::before{
  content: "“";
  font-size: 80px;
  color: rgba(11,42,74,0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.student-info{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.student-info img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0b2a4a;
}

.student-info h4{
  font-size: 18px;
  color: #0b2a4a;
  margin-bottom: 4px;
}

.student-info span{
  font-size: 14px;
  color: #777;
}

.testimonial-text{
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive */
@media(max-width: 768px){
  .testimonials-header h2{
    font-size: 28px;
  }
  .student-info{
    flex-direction: column;
    text-align: center;
  }
}/* End custom CSS */