.video {
   /* background-image: url(../images/video-bg.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0px 250px 0px;
    position: relative;
  }
  
  .video-content {
    margin-top: -240px;
  }
  
  .video .section-heading h2 {
    color: #fff;
  }
  
  .video-content .video-frame {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
  
  .video-content .video-frame img {
    border-radius: 10px;
  }
  
  .video-content .video-frame a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-26px, -26px);
    width: 52px;
    height: 52px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 52px;
    color: #f35525;
    outline: 15px solid rgba(254, 85, 37, 0.5);
    font-size: 18px;
  }
  

  #fullpageimage111 {
  /*  display: none; */
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: black;
  }

  .fixed-element {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-style: solid;
        border-color: rgb(15, 223, 126);
        background-color: rgb(255, 255, 255);
        color: white;
        padding: 15px;
        z-index: 1000; /* Keeps it above other content */
        overflow-x: hidden; /* No horizontal scroll */
        overflow-y: auto; /* Vertical scroll only if needed */
    }

    .close-btn {
      /* Reset default button styles */
      background: none;
      border: none;
      padding: 0;
      
      /* Layout and positioning */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 10;
    
      /* Sizing - Large tap target for mobile screens */
      width: 44px;
      height: 44px;
      
      /* Typography for the "X" symbol */
      font-size: 28px;
      color: #333333;
      line-height: 1;
      
      /* Usability adjustments */
      cursor: pointer;
      border-radius: 50%;
      transition: background-color 0.2s ease, color 0.2s ease;
      
      /* Removes mobile browser tap highlight artifact */
      -webkit-tap-highlight-color: transparent; 
    }
    
    /* Desktop Hover Interaction */
    @media (min-width: 769px) {
      .close-btn:hover {
        background-color: rgba(0, 0, 0, 0.1);
        color: #ff0000; /* Changes to red or preferred highlight color on hover */
      }
    }
    
    /* Active/Tap State for Mobile Feedback */
    .close-btn:active {
      background-color: rgba(0, 0, 0, 0.15);
    }
   



  