.container {
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: nowrap; 
    gap: 50px; 
    padding: 80px 50px;
    width: 100%; 
    box-sizing: border-box;
}

.container .card {
    position: relative;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center;
    width: 375px;
    height: 300px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.container .card:hover {
    height: 600px;
}

.container .card .imgBx {
    position: relative; 
    top: 20px;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
    margin-left: 0; 
}

.container .card:hover .imgBx {
    top: -100px;
    transform: scale(0.75);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .card .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .content {
    position: absolute;
    top: 252px;
    width: 100%;
    padding: 0 70px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
    
}

.container .card:hover .content {
    top: 130px;
    height: 400px;
}

.container .card .content h2 {
    font-size: 1.5em;
    font-weight: 1500;
    color: var(--clr);
}

.container .card .content p {
    color: #333;
    margin-top: 15px;
}

.container .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    background: var(--clr);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
}

a {
    color:#bdbdbd;
    text-decoration: none;
    align-items: center;
    padding-left: 5px;
}

.a1 {
    position: relative;
    color: #c5d0e2;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0003);
    width: 250px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    margin-left: 50px;
    line-height: 50px;


}
.a1:hover {
    box-shadow: 0 0 50px #a1b7cc;
    transition-delay: 0.5s;
    color: #c5d0e2;
}


.a1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #74acd3;
    border-left: 2px solid #74acd3;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.a1:hover::before {
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}

.a1::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #74acd3;
    border-right: 2px solid #74acd3;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.a1:hover::after {
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}
.imgBxafter::after {
    content: '';
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 40px; 
    height: 40px; 
    background-image: url('../img/Click.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
