.team {
  padding: 50px 20px;
  background-color: #f9f9f9; /* optional subtle bg */
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-slide {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
}

.ceo-img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial-content h1 {
  font-weight: bolder;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
  color: #061d3e;
}

.testimonial-content p {
  margin: 10px 0;
  font-family: sans-serif;
  color: #555;
}

/* Optional: slider dots */
.slides-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: gray;
  cursor: pointer;
}

.dot.active {
  background: black;
}

/* Tablet (<= 768px) */
@media (max-width: 768px) {
  .testimonial-slide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ceo-img {
    width: 200px;
    height: 250px;
  }

  .testimonial-content h1 {
    font-size: 1.5em;
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {
  .testimonial-slide {
    padding: 20px;
  }

  .ceo-img {
    width: 180px;
    height: 220px;
  }

  .testimonial-content h1 {
    font-size: 1.3em;
  }

  .testimonial-content p {
    font-size: 0.95em;
  }
}
