.vc-swiper {
    width: 100%;
    padding: 20px 0;
  }
  
  .vc-swiper .swiper-slide {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .vc-swiper .swiper-slide video {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .swiper-button-prev, 
  .swiper-button-next {
    background:#fff !important;
    width: 32px important;
    height: 32px important;
    border-radius: 50%;
    color: #ce4476 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 8px !important;
  }

  /* Video Popup Modal Styles */
  .vc-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    cursor: pointer;
  }

  .vc-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    cursor: default;
    width: 100%;
  }

  .vc-popup-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .vc-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .vc-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  /* Make videos clickable */
  .vc-swiper .swiper-slide {
    cursor: pointer;
  }