.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay effect */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.4s ease;
}

/* Button styling */
.play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: none;
    border-radius: 50px;
    padding: 7px 24px;
    font-weight: 600;
    color: #7386d5;
    border: 2px solid #7386d5;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Hover effect on container */
.video-container:hover img {
    transform: scale(1.05);
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.video-container:hover .play-btn {
    background: #7386d5;
    color: #fff;
    transform: scale(1.08);
}

/* Keep your SVG icon colors in sync */
.play-btn svg circle {
    stroke: #7386d5;
}

.play-btn svg polygon {
    fill: #7386d5;
}