.thum_video_faq-container h1 {
    color: #222;
    margin-bottom: 2rem;
}

    .view-more:hover .arrow{
        color: white;
        
    }
    
    .view_more_arrow{
        text-align:center;
        margin: 3% 0;
    }

.thum_video_faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /*gap: 2rem;*/
    /* max-width: 1100px; */
    /* margin: auto; */
}

.thum_video_faq-item {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: transform 0.3s ease;
}

.thum_video_faq-item:hover {
    transform: translateY(-3px);
}

.question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 0.75rem;
}

.thum_video_faq-container .video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    height: 160px;
}

.thum_video_faq-container .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thum_video_faq-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.thum_video_faq-container .play-button i {
    margin-left: 5px;
}

.thum_video_faq-container .video-thumbnail:hover .play-button {
    background: #e50914;
    transform: translate(-50%, -50%) scale(1.1);
}

.thum_video_faq-container iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 10px;
}

.thum_video_heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 3%;
}



  .view-more .arrow {
      display: inline-block;
      margin-left: 6px;
      animation: bounce 1s infinite;
      font-size: 17px;
      color: var(--primary-blue-colour);
    }

  .view-more {
      font-size: 17px;
      /*padding: 20px 20px 0px;*/
     color: var(--primary-blue-colour);
     font-weight: 600;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(5px); }
    }
    
     /* Subscribe Image */
    .subscribe-container {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: floatPulse 3s ease-in-out infinite;
      transition: transform 0.3s;
       margin-top: 15px;
    }

    .subscribe-container a img {
      width: 220px;
      transition: transform 0.4s ease, filter 0.4s ease;
      cursor: pointer;
      margin-top: 10px;
    }

    .subscribe-container a img:hover {
      transform: scale(1.1) rotate(-3deg);
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
    }

@media (max-width: 500px) {

    .thum_video_faq-container .video-thumbnail,
    .thum_video_faq-container iframe {
        height: 140px;
    }
    .view_more_arrow{
        margin: 5% 0;
    }
}