/* Video Testimonial — Single Row, Active Left, Thumbs Right, Infinite Loop */
.vt-section {
  background: #111;
  padding: 80px 0;
  overflow: hidden;
}
.vt-section .vt-outer {
  max-width: 1690px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Section heading ── */
.vt-section .vt-heading {
  /* margin-top: 0; */
  margin-bottom: 60px;
}
.vt-section .vt-title {
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Exo", sans-serif;
  margin-top: 0;
}
.vt-section .vt-subtitle {
  color: #FFF;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
  font-family: "Inter", sans-serif;
}

/* ── Carousel strip ── */
.vt-section .vt-carousel {
  position: relative;
  height: 350px;
  overflow: hidden;
  cursor: grab;
}
.vt-section .vt-carousel:active {
  cursor: grabbing;
}

/* ── Each item (absolute positioned) ── */
.vt-section .vt-item {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  display: none;
  transition:
    left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}
.vt-section .vt-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: grayscale(1);
}
.vt-section .vt-item.active {
  cursor: default;
}
.vt-section .vt-item.active video {
  object-fit: cover;
  background: #000;
  pointer-events: all;
  filter: grayscale(0);
  object-position: center;
}
.vt-section .vt-item.playing video {
  object-fit: contain;
}

/* ── Dark overlay on inactive items ── */
.vt-section .vt-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, background 0.3s ease;
  z-index: 1;
}
.vt-section .vt-item.active .vt-item-overlay {
  opacity: 0;
  pointer-events: none;
}
.vt-section .vt-item:not(.active):hover .vt-item-overlay {
  background: rgba(0, 0, 0, 0.18);
}
.vt-section .vt-item-play-icon {
  opacity: 0.85;
  transition: transform 0.3s ease;
}
.vt-item-play-icon svg{
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.vt-section .vt-item:not(.active):hover .vt-item-play-icon {
  transform: scale(1.15);
}

/* ── Play button (active item only) ── */
.vt-section .vt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 3;
  opacity: 0.85;
}
.vt-section .vt-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 1;
}

/* ── Bottom bar ── */
.vt-section .vt-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
  gap: 20px;
}
/* Dots sit between client info and nav arrows */
.vt-section .vt-bottom .vt-dots {
  margin-top: 0;
  flex: 1;
  justify-content: center;
  margin: 0 auto;
}
.vt-section .vt-client-info {
  transition: opacity 0.35s ease;
}
.vt-section .vt-client-info.vt-info-fading {
  opacity: 0;
}
.vt-section .vt-client-name {
  color: #5DAEFF;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 4px;
  font-family: "Inter", sans-serif;
}
.vt-section .vt-client-title {
  color: #FAFAFA;
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.vt-section .vt-stars {
  margin-bottom: 12px;
}
.vt-section .vt-star {
  color: #FFF27C;
  font-size: 24px;
  margin-right: 4px;
}
.vt-section .vt-star.vt-star-empty {
  color: #444;
}
.vt-section .vt-review {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  font-family: "Inter", sans-serif;
  max-width: 520px;
}

/* ── Dots (pagination indicators) ── */
.vt-section .vt-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.vt-section .vt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.vt-section .vt-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}
.vt-section .vt-dot.active {
  background: #5DAEFF;
  border-color: #5DAEFF;
  transform: scale(1.2);
}

/* ── Navigation ── */
.vt-section .vt-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-self: flex-end;
}
.vt-section .vt-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vt-section .vt-nav-btn svg{
  width: 18px;
  height: 12px;
  object-fit: contain;
  stroke: #fff;
}

.vt-section .vt-nav-btn:hover svg{
  stroke: #000;
}
.vt-section .vt-nav-btn:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ── */
/* 992-1199: 1 active + 4 inactive */
@media screen and (max-width: 1199px) {
  .vt-section .vt-outer {
    padding: 0 80px;
  }
  .vt-section .vt-carousel {
    height: 300px;
  }
}
/* 768-991: 1 active + 3 inactive */
@media screen and (max-width: 991px) {
  .vt-section {
    padding: 50px 0;
  }
  .vt-section .vt-outer {
    padding: 0;
  }
  .vt-section .vt-title {
    font-size: 28px;
  }
  .vt-section .vt-subtitle {
    font-size: 14px;
  }
  .vt-section .vt-heading {
    margin-bottom: 30px;
  }
   .vt-section .vt-item{
    border-radius: 12px;
  }
  .vt-section .vt-carousel {
    height: 280px;
  }
  .vt-section .vt-item.active video{
    object-fit: cover;
  }
}
/* 561-767: 1 active + 1 inactive */
@media screen and (max-width: 767px) {
  .vt-section .vt-item{
    border-radius: 12px;
  }
  .vt-section .vt-item.active video{
    object-fit: cover;
  }
  .vt-section {
    padding: 40px 0;
  }
  .vt-section .vt-outer {
    padding: 0;
  }
  .vt-section .vt-carousel {
    height: 240px;
  }
  .vt-section .vt-play-btn {
    width: 55px;
    height: 55px;
  }
  .vt-section .vt-play-btn svg {
    width: 38px;
    height: 38px;
  }
  .vt-section .vt-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .vt-section .vt-nav {
    align-self: flex-end;
  }
  .vt-section .vt-client-name {
    font-size: 16px;
  }
  .vt-section .vt-review {
    font-size: 13px;
  }
}
/* 320-560: only active card, no inactive */
@media screen and (max-width: 560px) {
  .vt-section {
    padding: 30px 0;
  }
  .vt-section .vt-outer {
    padding: 0;
  }
  .vt-section .vt-title {
    font-size: 28px;
  }
  .vt-section .vt-subtitle {
    font-size: 14px;
  }
  .vt-section .vt-heading {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  .vt-section .vt-carousel {
    height: 200px;
  }
  .vt-section .vt-play-btn {
    width: 45px;
    height: 45px;
  }
  .vt-section .vt-play-btn svg {
    width: 30px;
    height: 30px;
  }
  .vt-section .vt-nav-btn {
    width: 38px;
    height: 38px;
  }
}
