.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-0db8f6e *//* Testimonials Section */
.testimonials {
  padding: 60px 10%;
  background-color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #0047AB;
  margin-bottom: 10px;
}

.section-subtext {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.testimonial-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background-color: #f4f8ff;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info strong {
  color: #0047AB;
  font-size: 1rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9018725 */.popular-courses {
  padding: 60px 10%;
  background-color: #f7f9fc;
  text-align: center;
}

.popular-courses h2 {
  font-size: 2.5rem;
  color: #0047AB;
  margin-bottom: 10px;
}

.section-subtext {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* 🔄 One Row Scrollable Layout */
.course-row {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 25px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.course-card {
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: left;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.course-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.course-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 4px 0;
}

.course-card .price {
  font-weight: bold;
  color: #0047AB;
  margin-top: 10px;
}

.course-card button {
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #0047AB;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
}

.course-card button:hover {
  background-color: #00308a;
}/* End custom CSS */