.techs-ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    li{
        width: 100%;
        max-width: 450px;
        padding: 20px 10px;
        padding-left: 60px;
        padding-right: 20px;
        border: 1px solid #CCCCCC;
        border-radius: 10px;
        background: #FFFFFF;
        text-align: justify;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        h5{
            color: #000000;
            z-index: 1;
        }
        img{
            width: 130px;
            position: absolute;
            left: 0;
            top: 0;
            transform: translateX(-30px) translateY(-30px) rotate(-20deg);
            opacity: 0.3;
            z-index: 0;      
            transition: all 0.4s ease;
        }
    }
    li:hover{
        box-shadow: 2px 2px 5px #00000033;
        scale: 1.03;
        z-index: 10;
        img{
            width: 150px;
            transform: translateX(0) translateY(0) rotate(0);
        }
    }
}

.mil-partner-frame {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mil-partner-frame img {
    max-height: 80%; 
    width: auto; 
    object-fit: contain;
  }

  
  