.video-testimonial-block {
    text-align: center;
}

.video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    pointer-events: auto; /* Allow interaction with video controls */
}

/* Style for the play icon */
.video-container .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%; /* Perfectly circular play button */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

/* Triangle inside the play button */
.video-container .play-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px; /* Original triangle proportions */
    border-color: transparent transparent transparent white; /* White triangle */
   /* border-radius: 8px; Smooth edges for the triangle */
    transform: translateX(2px); /* Slight adjustment to center the triangle */
}

/* Hide the fullscreen button */
.video-container video::-webkit-media-controls-fullscreen-button {
   /* display: none;  Hides the fullscreen button for Chrome, Safari, Edge */
}

.video-container video::-moz-fullscreen-button {
    display: none; /* Hides the fullscreen button for Firefox */
}

/* Hide the three-dots menu */
.video-container video::-webkit-media-controls {
    overflow: hidden; /* Prevents the three-dots menu from appearing */
}