   :root{
        --grey-color: #999999;
        --white: #ffffff;
        --font-weight-500: 500;
   }
   body {
/*      background: linear-gradient(135deg, #2c003e, #0a0a0a);*/
      background: #f5f5f5;
      color: white;
      font-family: 'Segoe UI', sans-serif;
    }
    .nav-tabs .nav-link {
      color: #000000;
      font-weight: 500;
      border: none;
      opacity: 0.6;
      background: none !important;
    }
    .nav-tabs .nav-link.active {
      color: #00AEEF;
      border-bottom: 2px solid #ff2e8c;
      opacity: 1;
    }
    .testimonial-bg{
        min-height: 150px;
        background-size: 100%;
        background-position: center;
        background-image:url('../images/testimonial-banner.jpg');
    }
    .testimonial-bg h1 {
        width: 100%;
        text-align: center;
        padding: 50px;
        color: #fff;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      position: relative;
          border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    }
    .testimonial-card p {
    color: var(--grey-color);
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    transition: 1s;

    }
    .testimonial-author {
      font-weight: bold;
      color: #fff;
      margin-top: 15px;
      margin-block-start: 1.67em;
      margin-block-end: 1.67em;
    }
   
    .video-overlay {
      position: absolute;
      top: 40%;
      left: 45%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      color: red;
    }
    .filter-section {
      margin-bottom: 30px;
    }

     .video-card {
      border-radius: 15px;
      overflow: hidden;
      background: #fff;
      margin-bottom: 20px;
      position: relative;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      padding: 0;
    }
    .video-card img {
      width: 100%;
      display: block;
    }
    .video-card .play-btn {
      position: absolute;
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      color: white;
      background: rgba(255, 0, 0, 0.8);
      border-radius: 50%;
      padding: 10px 20px;
    }
    .video-title {
      background: #ff2e2e;
      color: white;
      font-weight: 600;
      text-align: center;
      padding: 10px;
      font-size: 1rem;
    }

    /* Responsive modal */
    .modal-dialog {
      max-width: 800px;
    }
    .modal-content {
      background: transparent;
      border: none;
    }
    .modal-body {
      padding: 0;
    }
    .modal iframe {
      width: 100%;
      height: 450px;
      border: none;
    }
.testimonial-card:hover {
    transform: scale(1.02);
}
.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #00aae5 0, #014087 100%) !important;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}
.testimonial-card:hover::before {
    opacity: 1;
    visibility: visible;
}
   .testimonial-card .article__title h4{
    color: #676767;
    font-size: 16px;
    font-weight: var(--font-weight-500);
    padding-top: 20px;
    letter-spacing: 1px;
    line-height: 22px;
    margin: 0px;
    border-top: 1px solid #cdcccc;
}

.testimonial-card:hover .article__title h4 {
    color: #fff;
}

.testimonial-card:hover p {
    color: var(--white);
}

.testimonial-card .article__body {
    display: grid;
    position: relative;
    text-align: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
}

.video-card .article__body {
    padding: 0px;
}

.video-card h5 {
    color: #676767;
    font-size: 16px;
    padding: 20px;
    margin-bottom: 0;
}
.testimonial-card:hover .video-card h5{
color: #fff;
}
.video-card a{
     text-decoration: none;
}
.testimonial-card .article__body .videoCard .videoImg::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 45px;
    height: 45px;
    background-image: url(../images/play-bt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin: auto;
}

@media (min-width: 320px) and (max-width: 767px) {
    .filter-section {
        justify-content: start;
        flex-wrap: nowrap;
        /* width: 1150px; */
        width: max-content;
        margin-bottom: 10px;
        display: flex;
    align-items: center;
            border-color: #ffffff24;
    }
  .testimonialTabs {
        overflow: scroll;
        overflow-y: hidden;
        margin-bottom: 30px;
    }
    ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(120, 120, 120, 0.5);
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: rgba(120, 120, 120, 0.6);
  -webkit-box-shadow: inset 0 0 4px rgba(120, 120, 120, 0.6);
}

}