/* ==========================================================================
   Service — Testimonials, all 3 variants, one file.
   Variant 1: new bespoke design (glass quote card + floating nav bar +
   centered "Watch Reel" video panel), mirroring the fixed-video/quote-
   slider concept already used by the Home/Real Estate Testimonials
   sections. Variant 2/3: new circular-video panel paired with a quote
   card ported from the Real Estate App Development page's Testimonials
   card (`.reapp-testi-card`) — light theme for Variant 2, dark theme for
   Variant 3. See assets/js/services/testimonials.js for the matching
   JS-side Swiper/video-toggle wiring.
   ========================================================================== */

/* ==========================================================================
   Variant 1 — Quote Slider + Video Reel
   ========================================================================== */

.svc-testi1 {
  position: relative;
  background: #000000;
  padding: 80px 0 104px;
  overflow: hidden;
}

.svc-testi1-head {
  max-width: 640px;
  text-align: center;
}

.svc-testi1-heading {
  margin: 0;
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  color: #ffffff;
  text-wrap: balance;
}

@media (max-width: 1550px) {
  .svc-testi1-heading { font-size: 38px; line-height: 48px; }
}

@media (max-width: 1200px) {
  .svc-testi1-heading { font-size: 40px; }
}

@media (max-width: 1024px) {
  .svc-testi1-heading { font-size: 36px; }
}

@media (max-width: 820px) {
  .svc-testi1-heading { font-size: 30px; line-height: 1.4; }
}

@media (max-width: 650px) {
  .svc-testi1-heading { font-size: 22px; line-height: 26px; }
}

.svc-testi1-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .svc-testi1-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 32px;
  }
}

/* ---- Quote column ---- */

.svc-testi1-card-wrap {
  position: relative;
  padding-bottom: 34px;
}

.svc-testi1-quote-swiper {
  border-radius: 24px;
}

.svc-testi1-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 44px 38px 60px;
  background: #f4f7fb;
  border-radius: 24px;
  box-shadow: 0 30px 70px -34px rgba(4, 7, 13, 0.55);
}

.svc-testi1-quote-icon {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 0.6;
  color: #00a8e0;
}

.svc-testi1-text {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(4, 7, 13, 0.78);
}

.svc-testi1-ribbon {
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 100%;
  height: 140px;
  z-index: 0;
  background: repeating-linear-gradient(
    -35deg,
    #0284c7 0px,
    #0284c7 9px,
    #38bdf8 9px,
    #38bdf8 18px,
    #bae6fd 18px,
    #bae6fd 27px
  );
  -webkit-mask-image: linear-gradient(140deg, #000 15%, transparent 62%);
  mask-image: linear-gradient(140deg, #000 15%, transparent 62%);
  opacity: 0.92;
  pointer-events: none;
}

.svc-testi1-glass-bar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px -20px rgba(4, 7, 13, 0.4);
}

.svc-testi1-person-swiper {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.svc-testi1-person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.svc-testi1-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0284c7;
}

.svc-testi1-person-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.svc-testi1-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #04070d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-testi1-role {
  margin-top: 1px;
  font-size: 11.5px;
  color: rgba(4, 7, 13, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-testi1-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-testi1-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid rgba(4, 7, 13, 0.14);
  background: #ffffff;
  color: #04070d;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.svc-testi1-nav-btn:hover {
  border-color: rgba(2, 132, 199, 0.5);
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
}

.svc-testi1-nav-btn svg {
  width: 14px;
  height: 14px;
}

/* ---- Video column ---- */

.svc-testi1-video {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  height: 100%;
  border-radius: 24px;
  background: #0b0f17;
}

.svc-testi1-video video,
.svc-testi1-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-testi1-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 65%);
}

.svc-testi1-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px 0 18px;
  border-radius: 999px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  color: #04070d;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-testi1-video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #04070d;
  color: #ffffff;
}

.svc-testi1-video-play-icon svg {
  width: 12px;
  height: 12px;
  margin-left: 1px;
}

.svc-testi1-video-play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.3;
}

.svc-testi1-video-play-text span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(4, 7, 13, 0.55);
}

.svc-testi1-video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 22px 48px -14px rgba(0, 0, 0, 0.65);
}

.svc-testi1-video.is-playing .svc-testi1-video-play {
  opacity: 0;
  pointer-events: none;
}

.svc-testi1-video-pause {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 7, 13, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-testi1-video.is-playing:hover .svc-testi1-video-pause,
.svc-testi1-video.is-playing.is-controls-visible .svc-testi1-video-pause {
  opacity: 1;
  pointer-events: auto;
}

.svc-testi1-video-pause-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00c2ff;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.15), 0 8px 20px rgba(0, 194, 255, 0.35);
}

.svc-testi1-video-pause-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

@media (max-width: 640px) {
  .svc-testi1 {
    padding: 64px 0 88px;
  }

  .svc-testi1-grid {
    margin-top: 40px;
    gap: 48px;
  }

  .svc-testi1-card {
    padding: 34px 26px 52px;
    min-height: 0;
  }

  .svc-testi1-video {
    min-height: 300px;
  }
}

/* ==========================================================================
   Variant 2 — Circular Video · Light. Quote card ported from
   `.reapp-testi-card` (assets/css/real-estate-app-development.css).
   ========================================================================== */

.svc-testi2 {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
}

.svc-testi2-head {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.svc-testi2-heading {
  margin: 0;
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  color: #04070d;
  text-wrap: balance;
}

@media (max-width: 1550px) {
  .svc-testi2-heading { font-size: 38px; line-height: 48px; }
}

@media (max-width: 1200px) {
  .svc-testi2-heading { font-size: 40px; }
}

@media (max-width: 1024px) {
  .svc-testi2-heading { font-size: 36px; }
}

@media (max-width: 820px) {
  .svc-testi2-heading { font-size: 30px; line-height: 1.4; }
}

@media (max-width: 650px) {
  .svc-testi2-heading { font-size: 22px; line-height: 26px; }
}

.svc-testi2-slider-wrap {
  margin-top: 52px;
}

.svc-testi2-swiper .swiper-slide {
  height: auto;
}

/* `.svc-testi2-swiper` is a direct child of the `.svc-testi2-row` grid — CSS
   Grid items default to `min-width: auto`, which lets the quote text's
   content size push the swiper (and the whole page) wider than its column
   instead of wrapping. `min-width: 0` overrides that default; `width: 100%`
   keeps it filling the column instead of shrinking to content. */
.svc-testi2-swiper {
  min-width: 0;
  width: 100%;
}

.svc-testi2-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  height: 100%;
}

@media (min-width: 900px) {
  .svc-testi2-row {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 40px;
  }
}

.svc-testi2-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  height: 100%;
  background-color: #0b0f17;
  border: 1px solid rgba(4, 7, 13, 0.08);
  box-shadow: 0 24px 60px -32px rgba(4, 7, 13, 0.28);
}

.svc-testi2-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-testi2-video__glow {
  position: absolute;
  width: 40%;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #00c2ff, transparent);
  filter: blur(4px);
  z-index: 2;
}

.svc-testi2-video__glow--tl {
  top: 0;
  left: 8%;
}

.svc-testi2-video__glow--br {
  bottom: 0;
  right: 8%;
}

.svc-testi2-video__play {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.svc-testi2-video.is-playing .svc-testi2-video__play {
  opacity: 0;
  pointer-events: none;
}

.svc-testi2-video__pause {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 7, 13, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-testi2-video.is-playing:hover .svc-testi2-video__pause,
.svc-testi2-video.is-playing.is-controls-visible .svc-testi2-video__pause {
  opacity: 1;
  pointer-events: auto;
}

.svc-testi2-video__pause-icon,
.svc-testi2-video__play-icon {
  flex: none;
  border-radius: 9999px;
  background-color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15), 0 8px 20px rgba(2, 132, 199, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-testi2-video__pause-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.svc-testi2-video__play-icon {
  width: 3rem;
  height: 3rem;
}

.svc-testi2-video__pause:hover .svc-testi2-video__pause-icon,
.svc-testi2-video__play:hover .svc-testi2-video__play-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.2), 0 10px 26px rgba(2, 132, 199, 0.45);
}

.svc-testi2-video__pause-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.svc-testi2-video__play-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 2px;
}

.svc-testi2-video__play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.svc-testi2-video__play-text strong {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.svc-testi2-video__play-text span {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.svc-testi2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f8fafc;
  border: 1px solid rgba(4, 7, 13, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px -32px rgba(4, 7, 13, 0.18);
}

.svc-testi2-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.svc-testi2-quote-icon {
  flex: none;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.6;
  color: #0284c7;
}

.svc-testi2-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.svc-testi2-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.svc-testi2-stars .is-filled {
  color: #0284c7;
}

.svc-testi2-stars .is-empty {
  color: rgba(2, 132, 199, 0.25);
}

.svc-testi2-text {
  margin-top: 1.5rem;
  color: rgba(4, 7, 13, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.svc-testi2-divider {
  margin: 1.75rem 0 1.5rem;
  border: none;
  border-top: 1px solid rgba(4, 7, 13, 0.1);
}

.svc-testi2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.svc-testi2-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.svc-testi2-avatar {
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  background-color: rgba(4, 7, 13, 0.06);
  border: 2px solid #0284c7;
}

.svc-testi2-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #04070d;
}

.svc-testi2-role {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  color: rgba(4, 7, 13, 0.5);
}

.svc-testi2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.svc-testi2-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(4, 7, 13, 0.14);
  background: #ffffff;
  color: #04070d;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.svc-testi2-nav-btn:hover {
  border-color: rgba(2, 132, 199, 0.5);
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
}

.svc-testi2-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.svc-testi2-nav-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .svc-testi2 {
    padding: 64px 0 72px;
  }

  .svc-testi2-video {
    min-height: 260px;
  }

  .svc-testi2-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Variant 3 — Circular Video · Dark. Same structure as Variant 2; quote
   card colors ported from the Home page's dark `.testimonial-card`
   (assets/css/main.css).
   ========================================================================== */

.svc-testi3 {
  position: relative;
  background: #04070d;
  padding: 80px 0;
  overflow: hidden;
}

.svc-testi3-head {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.svc-testi3-heading {
  margin: 0;
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  color: #ffffff;
  text-wrap: balance;
}

@media (max-width: 1550px) {
  .svc-testi3-heading { font-size: 38px; line-height: 48px; }
}

@media (max-width: 1200px) {
  .svc-testi3-heading { font-size: 40px; }
}

@media (max-width: 1024px) {
  .svc-testi3-heading { font-size: 36px; }
}

@media (max-width: 820px) {
  .svc-testi3-heading { font-size: 30px; line-height: 1.4; }
}

@media (max-width: 650px) {
  .svc-testi3-heading { font-size: 22px; line-height: 26px; }
}

.svc-testi3-slider-wrap {
  margin-top: 52px;
}

.svc-testi3-swiper .swiper-slide {
  height: auto;
}

/* `.svc-testi3-swiper` is a direct child of the `.svc-testi3-row` grid — CSS
   Grid items default to `min-width: auto`, which lets the quote text's
   content size push the swiper (and the whole page) wider than its column
   instead of wrapping. `min-width: 0` overrides that default; `width: 100%`
   keeps it filling the column instead of shrinking to content. */
.svc-testi3-swiper {
  min-width: 0;
  width: 100%;
}

.svc-testi3-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  height: 100%;
}

@media (min-width: 900px) {
  .svc-testi3-row {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 40px;
  }
}

.svc-testi3-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  height: 100%;
  background-color: #0b0f17;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-testi3-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-testi3-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0) 70%);
}

.svc-testi3-video__glow {
  position: absolute;
  width: 40%;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #00c2ff, transparent);
  filter: blur(4px);
  z-index: 2;
}

.svc-testi3-video__glow--tl {
  top: 0;
  left: 8%;
}

.svc-testi3-video__glow--br {
  bottom: 0;
  right: 8%;
}

.svc-testi3-video__play {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.svc-testi3-video.is-playing .svc-testi3-video__play {
  opacity: 0;
  pointer-events: none;
}

.svc-testi3-video__pause {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 7, 13, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-testi3-video.is-playing:hover .svc-testi3-video__pause,
.svc-testi3-video.is-playing.is-controls-visible .svc-testi3-video__pause {
  opacity: 1;
  pointer-events: auto;
}

.svc-testi3-video__pause-icon,
.svc-testi3-video__play-icon {
  flex: none;
  border-radius: 9999px;
  background-color: #00c2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.15), 0 8px 20px rgba(0, 194, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-testi3-video__pause-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.svc-testi3-video__play-icon {
  width: 3rem;
  height: 3rem;
}

.svc-testi3-video__pause:hover .svc-testi3-video__pause-icon,
.svc-testi3-video__play:hover .svc-testi3-video__play-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(0, 194, 255, 0.2), 0 10px 26px rgba(0, 194, 255, 0.45);
}

.svc-testi3-video__pause-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.svc-testi3-video__play-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 2px;
}

.svc-testi3-video__play-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.svc-testi3-video__play-text strong {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.svc-testi3-video__play-text span {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.svc-testi3-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: rgba(13, 17, 26, 0.75);
  border: 1px solid rgba(0, 194, 255, 0.18);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset, 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.svc-testi3-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.svc-testi3-quote-icon {
  flex: none;
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.6;
  color: #00c2ff;
}

.svc-testi3-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.svc-testi3-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.svc-testi3-stars .is-filled {
  color: #00c2ff;
}

.svc-testi3-stars .is-empty {
  color: rgba(0, 194, 255, 0.25);
}

.svc-testi3-text {
  margin-top: 1.5rem;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.75;
}

.svc-testi3-divider {
  margin: 1.75rem 0 1.5rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-testi3-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.svc-testi3-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.svc-testi3-avatar {
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid #00c2ff;
}

.svc-testi3-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

.svc-testi3-role {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.svc-testi3-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.svc-testi3-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.svc-testi3-nav-btn:hover {
  border-color: rgba(0, 194, 255, 0.5);
  background: rgba(0, 194, 255, 0.12);
  color: #00c2ff;
}

.svc-testi3-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.svc-testi3-nav-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .svc-testi3 {
    padding: 64px 0 72px;
  }

  .svc-testi3-video {
    min-height: 260px;
  }

  .svc-testi3-card {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-testi1-video-play,
  .svc-testi2-video__play,
  .svc-testi3-video__play {
    transition: none;
  }
}
