 
.card-circle{
    border: 2px solid var(--blue-lagoon);
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-circle .inner-circle{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: var(--blue);
}
.payment-simple-secure {
    overflow: clip;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    /* background: radial-gradient(circle at top right, #03265c, #020b1e); */
    color: #fff;
    position: relative;
    /* background: url('/assets/images/about/backgrounds/payment-secure-simple-background.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 0; */
    background: var(--almost-black);
}
.payment-simple-secure::before {
    /* content: '';
    background: var(--almost-black);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0; */
}


.payment-simple-secure .about-label {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.top-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 110px;
}

.top-row .right {
    max-width: 522px;
    align-self: flex-end;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-row .right p{
    text-align: right;
}

.bottom-cards {
    /* background: rgba(255, 255, 255, 0.05); */
    background: #091317;
    border-radius: 24px;
    padding: 83px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 0;
    border: 1px solid rgba(75, 90, 96, 0.5)
}
.bottom-cards .card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 50px; 
}
.bottom-cards .card h4{
    text-transform: capitalize;
}
.bottom-cards .card:nth-child(3n+2) { border-left: 1px solid rgba(75,90,96,0.5); border-right: 1px solid rgba(75,90,96,0.5); }

.bottom-cards .card .body-medium{
    color: var(--gayser);
}
.card img {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
}
/* Smooth transition for pulse */
.card-circle {
    transition: border-color 0.35s ease;
}

@media (max-width: 1440px) {
    .why-grid{
        gap: 20px;
        row-gap: 50px;
    }
    .top-row .right{
        max-width: 331px;
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .top-row .right{
        max-width: 100%;
    }
    .bottom-cards {
        padding: 30px 10px;
        gap: 50px 0;
    }
    .bottom-cards .card{
        padding: 20px;
    }
    .top-row .right{
        align-items: start;
    }
}
@media (max-width: 900px) {
    .top-row {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    
    .bottom-cards {
        grid-template-columns: 1fr;
    }
    .bottom-cards{
        gap: 20px 0;
    }
    .bottom-cards .card:nth-child(3n+2){
        border: none;
    }
}
@media (max-width: 768px) {
    .top-row .right{
        height: 210px;
    }
    .top-row .right:lang(ar){
        height: 150px;
    }
}
