/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
}

.our-testimonial {
  padding: 40px;
  background: linear-gradient(180deg, #111111, #000000);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5), 0px 15px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-width: 1250px;
  margin: 20px auto 20px auto;
}

/* Video with Text Below */
.video-text-column {
  text-align: center;
  margin-bottom: 40px;
}

.video-text-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.video-description {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

/* Testimonial Row */
.video-testimonials .testimonial-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Testimonial Item */
.testimonial-item {
  display: flex;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  gap: 20px;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  margin-bottom: 10px;
}

.quote-icon {
  font-size: 2rem;
  color: #fcb900;
  font-weight: bold;
  margin-right: 5px;
}

.testimonial-author {
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

.testimonial-author span {
  font-weight: normal;
  color: white;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .our-testimonial {
    max-width: 95%;
    padding: 30px;
  }

  .video-text-column img {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .video-testimonials .testimonial-row {
    flex-direction: row;
    gap: 15px;
  }

  .testimonial-item {
    flex-direction: row;
    min-width: calc(50% - 10px);
  }

  .testimonial-item img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .video-testimonials .testimonial-row {
    flex-direction: column;
  }

  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100%;
  }

  .testimonial-item img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 5px;
  }

  .testimonial-content {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .video-description {
    font-size: 0.9rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonial-item img {
    max-width: 90%;
  }

  .video-description,
  .testimonial-quote {
    font-size: 0.8rem;
  }

  .testimonial-row {
    flex-direction: column;
  }
}

/* --------------------certification css  */
.certifications-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #111111, #000000);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5), 0px 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.certification-item {
  text-align: center;
  margin-bottom: 20px;
}

.certification-item img {
  max-width: 100%;
  width: 120px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #333;
}

.certification-text {
  font-size: 1.2rem;
  width: 150px;
  height: auto;
  margin-top: 20px;
  color: white;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .certifications-section {
    max-width: 100%;
    margin: 20px auto;
  }

  .certification-item img {
    width: 100px;
  }

  .certification-text {
    font-size: 1rem;
  }
}
