.gallery .image-container {
    cursor: pointer;
  }
  
  .modal .carousel-inner img {
    max-height: 80vh;
    width: auto;
    margin: auto;
  }
  
  
  
  
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .tab {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin-right: 5px;
  }
  
  .tab:hover {
    background-color: #ddd;
  }
  
  
  
 
  .image-container img {
  
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    width: auto;
    height: 90%;
    object-fit: contain;
    margin-top: 30px;
    margin-bottom: 30px;

  }
  .modal-content img{
  border: 2px solid #fff;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
  }
  
  .carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
  }
  
  .prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
  }

  @media screen and (max-width:600px) {

    .tab{
        padding: 10px;
        font-size: 14px;
    }
    
  }
  
  