
/** video-section **/

.video-section{
  position: relative;
  overflow: hidden;
  padding: 250px 0px;
}

.video-section .bg-layer:before{
  position: absolute;
  content: '';
  background: #0149ae9a;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.7;
}

.video-section .video-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: #0149AE;
}


/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){

}

@media only screen and (max-width: 599px){
  .video-section{
    padding: 100px 0px;
  }
}

@media only screen and (max-width: 499px){

}

/* ===== SECTION (your existing style) ===== */
.video-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play button */
.video-btn a {
    font-size: 50px;
    color: #0149AE;
    cursor: pointer;
}

/* ===== MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;
}

/* ===== VIDEO CONTAINER ===== */
.video-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

.video-content video {
    width: 100%;
    border-radius: 12px;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 25px;

    font-size: 48px;
    color: #fff;

    cursor: pointer;

    z-index: 999999; /* VERY high */

    padding: 15px;
    line-height: 1;

    pointer-events: auto;
}

.close-btn:hover {
    opacity: 0.7;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .video-content {
        width: 95%;
        top: 50%;
        transform: translateY(-50%);
    }

    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 42px;
        padding: 15px;
    }
}

/* Prevent scroll bounce */
html, body {
    overscroll-behavior: none;
}










































