html, body {
    overflow-x: hidden;
  }
.video-section {
    padding: 80px 0;
}

.video-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.video-card video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.gallery-card img {
    width: 100%;
    height: 500px !important;
 
}
.custom-video {
    position: relative;
    cursor: pointer;
}

.custom-video video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #fff;
    background: rgba(0,0,0,0.35);
    border-radius: 16px;
    transition: 0.3s ease;
}

.custom-video.playing .play-button {
    opacity: 0;
    pointer-events: none;
}