@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;700&display=swap');
body
{
    margin: 0;
    padding: 140px;
    font-family: 'Barlow Semi Condensed', sans-serif;
}
*{
    border-radius: 10px;
}
.container
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    max-width: 1200px;
    /* align-items: stretch; */
    align-items: start; 
}
/* .card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
} */
.card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: auto;  /* اجعل الارتفاع يتكيف تلقائيًا */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* توزيع المحتوى بشكل متساوٍ */
}

.card1 {
    background-color: #733fc8;
    color: white;
    grid-column: span 2;
}
.card-info img{
    height: 35px;
    width: 35px;
    border-radius: 50%;
}    
.card-info
{
    display: flex;
    flex-direction: row;
}   
.quote-box
{
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0px;
    opacity: 0.3;
}
.quote-box .p1
{
    font-size: 16px;
    font-weight: 600;
}   
.card2 {
    background-color: #495670;
    color: white;
    grid-column: span 1;

}

.card3 {
    background-color: white;
    color: hsl(217, 19%, 35%);
    grid-column: span 1;

}

.card4 {
    background-color: #1c2331;
    color: white;
    grid-column: span 1;
}

.card5 {
    background-color: white;
    color: black;
    grid-column: span 2;

}

.discreption
{
    font-weight: 100;
    font-size: 11px;
}

.name{
    margin-left: 15px;
    justify-content: center;
    display: flex;
    flex-direction: column;
} 
.name p
{
    margin: 0;
    font-size:12px;
    font-weight: 100;
}
