/* Styling for the section with background image */
.video-section {
    position: relative;
    width: 100%;
    height: 528px;
    background-image: url('/assets/img/gallery/Highschool-Musical-Jr-Highlight-video-bg.png'); /* Change this to your background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .video-section.new-video {
    background-image: url('/assets/img/bg-v2.jpg') !important;
    border-radius: 10px;
}

  .video-section.madgascar {
    background-image: url('/assets/img/bg-v1.jpg') !important;
    border-radius: 10px;
}
  
  /* Button styling */
  button.openModalBtn {
    background: none;
    border: none;
}
  .anima {
    width: 80px;
    height: 80px;
    background: #dca905;
    border-radius: 50%;
    margin: 100px auto;
    position: relative;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    z-index: 4;
}
  .anima span{
  
  
      display:block;
      position:absolute;
      border:2px dotted #f6f6f62c;
          border-radius:50%;
          animation:anima 1s infinite
  
  }
  .anima span:nth-child(2){
      width:250%;
      height:250%;
          animation-delay:0.1s
  
  }
  .anima span:nth-child(3){
      width:350%;
      height:350%;
              animation-delay:0.2s
  
  }
  .anima span:nth-child(4){
      width:450%;
      height:450%;
              animation-delay:0.3s
  
  }
  .anima:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    background: #dca905;
    animation: anima 1s infinite;
    z-index: -1;
}
  
  @keyframes anima{
      
      from{
  
          transform:scale(1);
          opacity:1
          
      }
      to{
  
          transform:scale(1.4);
          opacity:0
      }
  }
  /* Modal styling (same as before) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
  }
  
  .modal-content {
    position: relative;
    margin: auto;
    top: 25%;
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    padding: 30px;
  }
  
  .close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
  }
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}
