@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(60deg, #020202, #313131, #474747);
    
}

.card {
    display: flex;
    justify-content: center;
    width: 350px;
    height: 300px;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.card:hover {
    height: 400px;
}

.card .img-box {
    position: absolute;
    width: 250px;
    height: auto;
    top: 100px;
    transition: 0.5s;
}

.card:hover .img-box {
    top: -1000px;
    scale: 0.75;
}

.card .img-box img {
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    object-fit: cover;
}

.card .content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: 250px;
    width: 100%;
    text-align: center;
    padding: 0px 20px;
    height: 0px;
    overflow: hidden;
    transition: 0.5s;
    
}

.card:hover .content {
    top: 100px;
    height: 250px;
    font-size: 11px;
    text-decoration: none;
    align-items: center;
    
}

.card .read-more {
   background: linear-gradient(90deg, #474747, #1a1a1a);
   padding: 14px;
   color: #fff;
   text-decoration: none;
   border-radius: 8px;
   font-size: 12px;
   
}

.card .content .logo2 {
    display: flex;
    justify-content: center;
    position: relative;
    width: 90%;
    height: auto;
    object-fit: cover;
    padding: 10px 20px;
    
}



