* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.card p {
  color: hsl(210, 10%, 30%);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
  margin-bottom: 52px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author span {
  color: #006169;
  font-family: popins, sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.testimonial-section {
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 1280px;
  margin: auto;
  align-items: center;
}

.slides-wrapper {
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex; /* Grid ki jagah flex use karen */
  transition: transform 0.5s ease-in-out;
  gap: 24px;
  /* margin: 0 20px; */
}

.card {
  background: #fff7f5;
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 628px;
}

@media (max-width: 1300px) {
  .card {
    min-width: 50%; /* Mobile par sirf 1 card */
  }
}

@media (max-width: 1024px) {
  .card {
    min-width: 100%; /* Mobile par sirf 1 card */
  }
}
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}
.nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-buttons button:hover {
  border-color: hsl(192, 100%, 20%);
  color: hsl(192, 100%, 20%);
}
