/* Giants Testimonials Styles */

.c-giants-testimonials {
  padding: 80px 0 0;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: var(--font-family, sans-serif);
}

/* ---- Header ---- */
.c-giants-testimonials__header {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto 60px;
}

.c-giants-testimonials__title {
  font-family: var(--font-family-mmc-bold);
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #012c52;
  margin: 0;
}

.c-giants-testimonials__subtitle {
  color: #012c52;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0px;
  text-transform: capitalize;
  opacity: 1;
  padding: 20px 0 60px;
  font-weight: 500;
  margin: 0;
}

/* ---- Content Area ---- */
.c-giants-testimonials__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
  min-height: 680px;
}

/* ---- SVG Connectors ---- */
.c-giants-testimonials__connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.c-giants-testimonials__connector {
  position: absolute;
  height: auto;
  opacity: 0.75;
}

.c-giants-testimonials__connector--left {
  top: 25%;
  left: 10%;
  width: 360px;
}

.c-giants-testimonials__connector--right {
  top: 20%;
  right: 10%;
  width: 360px;
}

/* ---- Illustrations ---- */
.c-giants-testimonials__illustration {
  width: 380px;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
}

.c-giants-testimonials__illustration--left {
  margin-top: 0;
}

.c-giants-testimonials__illustration--right {
  margin-top: 0;
}

.c-giants-testimonials__illustration-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Cards Layout & Positions ---- */
.c-giants-testimonials__cards {
  position: relative;
  flex-grow: 1;
  height: 560px;
  max-width: 680px;
  margin: 0 24px;
  z-index: 3;
}

.c-giants-testimonials__card-wrap {
  position: absolute;
  width: 320px;
  box-sizing: border-box;
}

.c-giants-testimonials__card-wrap--sonal {
  top: 0px;
  left: 10px;
}

.c-giants-testimonials__card-wrap--chelsey {
  top: 456px;
  left: 10px;
}

.c-giants-testimonials__card-wrap--shweta {
  top: 290px;
  right: -34px;
}

/* ---- Card Styling ---- */
.c-giants-testimonials__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 20px 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.c-giants-testimonials__card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* ---- Avatar Wrap ---- */
.c-giants-testimonials__avatar-wrap {
  position: absolute;
  top: -18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.c-giants-testimonials__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.c-giants-testimonials__pointer {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid;
  margin-top: 4px;
}

.c-giants-testimonials__pointer--blue {
  border-bottom-color: #009be3;
}

.c-giants-testimonials__pointer--red {
  border-bottom-color: #dc2626;
}

/* ---- Card Content ---- */
.c-giants-testimonials__text {
  font-size: 12px;
  line-height: 1.55;
  color: #4a5568;
  margin: 0 0 16px;
}

.c-giants-testimonials__author {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-top: 1px solid #edf2f7;
  padding-top: 10px;
}

.c-giants-testimonials__quote-img {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-giants-testimonials__meta {
  display: flex;
  flex-direction: column;
}

.c-giants-testimonials__name {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 2px;
}

.c-giants-testimonials__role {
  font-size: 11px;
  color: #718096;
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 1160px) {
  .c-giants-testimonials__illustration {
    width: 200px;
  }
  .c-giants-testimonials__illustration--left {
    margin-top: 140px;
  }
  .c-giants-testimonials__illustration--right {
    margin-top: 160px;
  }
  .c-giants-testimonials__line {
    display: none; /* Hide lines when layout compresses */
  }
}

@media (max-width: 960px) {
  .c-giants-testimonials__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .c-giants-testimonials__illustration {
    display: none; /* Hide vector characters on tablet/mobile */
  }
  .c-giants-testimonials__cards {
    height: auto;
    width: 100%;
    max-width: 480px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .c-giants-testimonials__card-wrap {
    position: static;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .c-giants-testimonials {
    padding: 48px 16px;
  }
  .c-giants-testimonials__title {
    font-size: 24px;
  }
}
