#client #title{
    text-align: center;
    font-size: 40px;
    color: #2B91A7;

    margin: 40px 5px 25px 5px;
}

#client #clientCardsSection .clientCard {
    background: #ffffff;
    height: 360px;
    width: 300px;
    padding: 20px;
    padding-bottom: 15px;
    text-align: left;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: none;
    position: relative;
    z-index: 1;
    transition: box-shadow .2s ease-in-out 0s;
    border-radius: 44px;
}

#client #clientCardsSection .clientCard:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    
}

#client #clientCardsSection .clientCard .clientCardText {
    height: 120px;
}

#client #clientCardsSection .clientCard .clientCardText .clientCardTitle {
    font-size: 26px;
    margin: 0;
    color: white;
}

#client #clientCardsSection .clientCard .clientCardText .clientCardSubtitle {
    color: white;
    margin: 10px 0;
    font-size: 16px;
}

#client #clientCardsSection #clientCard1::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    border-radius: 44px;
    z-index: -1;
    background-image: url('../static/Client/ai-generated-7957452.png');
    background-size: 320px;
    /* background-position: 64% 0% ; */
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-blend-mode: multiply;

}

#client #clientCardsSection #clientCard1 {
    max-width: 280px;
}


#client #clientCardsSection #clientCard1 .clientCardText p{
    color: white;
}

#client #clientCardsSection #clientCard2::before{
    content: "";
    position: absolute;
    border-radius: 44px;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    z-index: -1;
    background-color: #F2F2F2;
    background-repeat: no-repeat;
    background-image: url('../static/Client/business-1042706.jpg');
    background-size: 350px;
    background-blend-mode: multiply;
    background-position: 46% 0%;
}

#client #clientCardsSection #clientCard2 .clientCardText p{
    color: white;
}

#client #clientCardsSection #clientCard3::before{
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    border-radius: 44px;
    z-index: -1;
    background-color: rgb(139, 139, 139);
    background-repeat: no-repeat;
    background-image: url('../static/Client/man-5928801.jpg');
    background-size: 364px;
    background-blend-mode: multiply;
}

#client #clientCardsSection #clientCard3 .clientCardText p{
    color: white;
}

@media (max-width: 900px) {
    #client #clientCardsSection {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }
    #client #clientCardsSection .clientCard {
        width: 90vw;
        max-width: 350px;
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    #client #title {
        font-size: 2rem;
    }
    #client #clientCardsSection .clientCard .clientCardText .clientCardTitle {
        font-size: 1.1rem;
    }
    #client #clientCardsSection .clientCard .clientCardText .clientCardSubtitle {
        font-size: 0.95rem;
    }
}