.happy-customers-section .section-title .highlight {
  color: #6c5ce7;
  position: relative;
}
.happy-customers-section .section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(108, 92, 231, 0.3);
  z-index: -1;
}
.happy-customers-section .video-grid-wrapper {
  position: relative;
  padding: 0 5px;
}
.happy-customers-section .video-grid-wrapper .grid-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  outline: none;
}
.happy-customers-section .video-grid-wrapper .grid-nav-btn:hover, .happy-customers-section .video-grid-wrapper .grid-nav-btn:active {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
  color: #ffffff;
}
.happy-customers-section .video-grid-wrapper .grid-nav-btn.prev-grid-btn {
  left: -8px;
}
.happy-customers-section .video-grid-wrapper .grid-nav-btn.next-grid-btn {
  right: -8px;
}
.happy-customers-section .video-item {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  aspect-ratio: 9/16;
  background: #000;
}
.happy-customers-section .video-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.happy-customers-section .video-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.happy-customers-section .video-item .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.happy-customers-section .video-item .play-overlay i {
  font-size: 3.2rem;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}
.happy-customers-section .video-item:hover .play-overlay {
  opacity: 1;
}
.happy-customers-section .video-item:hover .play-overlay i {
  transform: scale(1.15);
}
.happy-customers-section .video-item .customer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 15px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  text-align: center;
}
.happy-customers-section .video-item .customer-info .name {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.happy-customers-section .video-item .customer-info .role {
  font-size: 0.85rem;
  opacity: 0.8;
}
.happy-customers-section .video-item .customer-info .testimonial {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#bentoVideoModal .modal-dialog {
  max-width: 420px;
  margin: 1.75rem auto;
}
#bentoVideoModal .modal-content {
  background: transparent;
  border: none;
  position: relative;
  box-shadow: none;
}
#bentoVideoModal .close-modal {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.2s;
}
#bentoVideoModal .close-modal:hover {
  transform: scale(1.1);
  color: #ff6b6b;
}
#bentoVideoModal .video-wrapper {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  aspect-ratio: 9/16;
  max-height: 80vh;
  margin: 0 auto;
}
#bentoVideoModal .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
#bentoVideoModal .nav-arrows {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 1000;
}
#bentoVideoModal .nav-arrows .arrow-btn {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 0 8px;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
#bentoVideoModal .nav-arrows .arrow-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
#bentoVideoModal .nav-arrows .arrow-btn:focus {
  outline: none;
}
#bentoVideoModal .video-info {
  padding: 15px 0 5px;
}
#bentoVideoModal .video-info .customer-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #f5f5f5;
}
#bentoVideoModal .video-info .customer-role {
  font-size: 1rem;
  opacity: 0.8;
  color: #f5f5f5;
}
#bentoVideoModal .video-info .customer-testimonial {
  font-size: 0.95rem;
  opacity: 0.7;
  font-style: italic;
  color: #f5f5f5;
  margin-top: 5px;
}
#bentoVideoModal .carousel-control-prev-icon,
#bentoVideoModal .carousel-control-next-icon {
  position: relative;
  top: -5px;
}
#bentoVideoModal .carousel-control-prev-icon {
  left: -2px;
}
#bentoVideoModal .carousel-control-next-icon {
  right: -2px;
}

@media (max-width: 768px) {
  .happy-customers-section .section-title {
    font-size: 2rem;
  }
  .happy-customers-section .video-grid-wrapper {
    padding: 0 5px;
  }
  .happy-customers-section #videoGrid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 20px 5px;
    margin-left: 0;
    margin-right: 0;
  }
  .happy-customers-section #videoGrid::-webkit-scrollbar {
    display: none;
  }
  .happy-customers-section #videoGrid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .happy-customers-section #videoGrid > [class*=col-] {
    flex: 0 0 72% !important;
    max-width: 72% !important;
    scroll-snap-align: center;
    padding-left: 8px;
    padding-right: 8px;
  }
  .happy-customers-section .video-item {
    margin-bottom: 0;
    aspect-ratio: 9/16;
  }
  .happy-customers-section .video-item .customer-info {
    padding: 20px 10px 10px;
  }
  .happy-customers-section .video-item .customer-info .name {
    font-size: 0.95rem;
  }
  .happy-customers-section .video-item .customer-info .role {
    font-size: 0.7rem;
  }
  .happy-customers-section .video-item .customer-info .testimonial {
    font-size: 0.7rem;
    -webkit-line-clamp: 1;
  }
  .happy-customers-section .video-item .play-overlay i {
    font-size: 2.8rem;
  }
  #bentoVideoModal .modal-dialog {
    max-width: 90%;
    margin: 0.5rem auto;
  }
  #bentoVideoModal .nav-arrows .arrow-btn {
    font-size: 2rem;
    padding: 0 5px;
  }
  #bentoVideoModal .close-modal {
    top: -30px;
    right: 5px;
    font-size: 1.8rem;
  }
  #bentoVideoModal .video-info .customer-name {
    font-size: 1.1rem;
  }
  #bentoVideoModal .video-info .customer-role {
    font-size: 0.85rem;
  }
}

/*# sourceMappingURL=happy-customers-section.css.map */
