
.image {
    width: 150px;
    border-radius: 10px; 
    transition: transform 0.3s ease; 
}


.bdy {
    margin-left: 30px;
}


.card {
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center; 
    width: 420px;
    text-align: center;

    background: linear-gradient(135deg, rgb(112, 118, 204), rgb(140, 146, 230));
    color: black;

    border-radius: 15px; 
    border-bottom: 8px solid black;

    font-family: Georgia, 'Times New Roman', Times, serif;

   
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);


    transition: all 0.3s ease;
}


.card:hover {
    transform: scale(1.05); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}


.card:hover .image {
    transform: scale(1.1); 
}


h2 {
    margin: 0;
    font-size: 22px;
}

p {
    margin: 5px 0;
    font-size: 16px;
}

h4 {
    margin-top: 10px;
    font-size: 14px;
    color: #222;
}