.fixed-icons {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.whatsapp-icon img,
.email-icon img {
    width: 60px; 
    height: 60px;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-icon img:hover,
.email-icon img:hover {
    transform: scale(1.1);
}



.portfolio-details{ margin-bottom: 40px; }
  .portfolio-details h3{
      font-size: 26px;
      font-weight: 500;
      position: relative;
      padding-bottom: 8px;
      margin-bottom: 15px;
      text-transform: uppercase;
  }  
  #close-modal-icon {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 35px;
      color: #263a4f;
      cursor: pointer;
  }
  
  #modal-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
  }
  
  .modal-form {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fefefe;
      padding: 20px;
      width: 50%;
      max-height:90%;
      overflow:auto;
      border-radius: 8px;
      z-index: 2;
  }
  
  @media (max-width: 600px) {
      .modal-form {
          width: 80%;
          height: 80%;
          font-size: 12px;
      }
  }
  
  @media (max-width: 480px) {
      .modal-form {
          width: 80%;
          height: 80%;
          font-size: 10px;
      }
  }


  .logo-mobile {
                    display: none;
                }
                @media (max-width: 768px) {
                    .logo-mobile {
                        display: block;
                    }
                }
                @media (min-width: 769px) {
                    .logo-mobile {
                        display: none;
                    }
                }