 @import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900|Poppins:300,400,500,600,700,800,900&display=swap");
 
/* ── Carousel wrapper ── */
.ntc123-carousel-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

.ntc123-track-outer {
  overflow: hidden;
  padding-top: 16px;
  margin-top: -16px;
}

.ntc123-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* ── Cards ── */
.newtestimonialcards123-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid #e8e5ff;
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.newtestimonialcards123-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.1);
}

.newtestimonialcards123-card.newtestimonialcards123-featured {
  border: 2px solid #4f46e5;
  background: linear-gradient(145deg, #faf9ff 0%, #f0eeff 100%);
}

.newtestimonialcards123-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #4f46e5;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.newtestimonialcards123-quote {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #c7c2f7;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.newtestimonialcards123-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 20px;
  min-height: 72px;
}

.newtestimonialcards123-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #ede9fe;
}

.newtestimonialcards123-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8e5ff;
  flex-shrink: 0;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #4f46e5;
}

.newtestimonialcards123-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newtestimonialcards123-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a0a5e;
 margin: 10px 0 2px;
    line-height: 6px;
}

.newtestimonialcards123-title {
  font-size: 12px;
  color: #8b7fdb;
  margin: 0;
}

/* ── Prev / Next buttons ── */
.ntc123-btn {
  position: absolute;
  top: calc(50% + 8px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e8e5ff;
  background: #ffffff;
  color: #4f46e5;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  display: block;
  transition: background 0.2s, border-color 0.2s;
  z-index: 1;
}

.ntc123-btn:hover {
  background: #f0eeff;
  border-color: #4f46e5;
}

.ntc123-btn-prev { left: 0; }
.ntc123-btn-next { right: 0; }

/* ── Dot indicators ── */
.ntc123-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.ntc123-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7c2f7;
  cursor: pointer;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}

.ntc123-dot-active {
  width: 24px;
  border-radius: 4px;
  background: #4f46e5;
}



/* ── Responsive ── */

/* Tablet: 2 cards */
@media (max-width: 900px) {
  .newtestimonialcards123-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* Mobile: 1 card */
@media (max-width: 560px) {
  .ntc123-carousel-wrap {
    padding: 0 40px;
  }
  .newtestimonialcards123-card {
    flex: 0 0 100%;
  }
  .ntc123-btn {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
}