
.contact-page-parent {
    height: 500px;
  }
  
  
  
    .intro-text-decoration {
      display: inline-block;
      width: 70px;
      height: 5px;
      background-color: #363c48;
      margin-right: 10px;  /* Adjust spacing */
      vertical-align: middle;  /* Ensures the line aligns with the text */
    }
    
  


/* gallery */
#gallery {
    width: 100%;
    padding-top: 40px;
  
    @media screen and (min-width: 991px) {
      padding: 60px 30px 0 30px;
    }
  }
  
  .container {
    width: 100%;
  }
  
  .image {
    position: relative;
    margin-top: 15px;
    overflow: hidden; 
  }
  
  .img-wrapper {
    position: relative;
  
    img {
      width: 100%;
      height: 120px; 
      transition: transform 0.3s ease; 
    }
  
    &:hover img {
      transform: scale(1.05); 
    }
  }
  
  .img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  
    i {
      color: #fff;
      font-size: 3em; 
      transition: transform 0.3s ease;
    }
  }
  
  .image:hover .img-overlay {
    opacity: 1; 
  }
  
  #overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  
    -webkit-user-select: none;
    -moz-user-select: none;    
    -ms-user-select: none; 
    user-select: none; 
  
    img {
      margin: 0;
      width: 80%;
      height: auto;
      object-fit: contain; 
  
      @media screen and (min-width: 768px) {
        width: 60%;
      }
  
      @media screen and (min-width: 1200px) {
        width:50%;
      }
    }
  }
  
  #nextButton,
  #prevButton,
  #exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
  
    &:hover {
      opacity: 0.7; 
    }
  
    @media screen and (min-width: 768px) {
      
    }
  }
  
  #exitButton {
    position: absolute;
    top: 15px;
    right: 15px; 
  }
  