  .why-choose-us-section {
        background: var(--primary);
        color: #fff;
        
    }
    .why-choose-us-section .container {
    }

/* TOP AREA */
.why-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.why-top-left h2 {
    margin-top: 10px;
}

.why-top-left .highlight {
    color: #66E3FF;
}

.why-top-left {
    flex: 1 1 62%;
}
.why-top-right {
    max-width: 522px;
    /* width: clamp(320px, 27.2vw, 522px); */
    width: 27%;
    text-align: right;
    position: relative;
}
.why-top-right svg{
    position: absolute;
    top: 150px;
    right: -75px;
}
.why-top-right svg:lang(ar){
  transform: scaleX(-1);
  right: 0;
}

/* GRID */
.why-grid {
    padding-top: 75px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px; /* or any height you want */
    gap: 30px;
    row-gap: 100px;
    overflow: visible;
}

/* CARDS */
.why-card {
    background: var(--almost-black);
    padding: 40px 28px 32px;
    border-radius: 18px;
    position: relative;
    overflow: visible;
    min-height: 240px;
    max-height: 350px;
}

.why-card h4 {
    margin-top: 90px; /* creates spacing because icon is absolute */
    margin-bottom: 12px;
}
.why-card:last-child h4 {
    max-width: 250px;
    
}

/* ABSOLUTE CARD ICON */
.card-icon {
    position: absolute;
    top: clamp(-65px, -3.385vw, -32px); /* from earlier */
    right: clamp(12px, 1.04vw, 20px);
    max-width: 225px;
    width: 43%;
}
.card-icon:lang(ar){
  right: unset;
  left: clamp(12px, 1.04vw, 20px);
}

.card-icon img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1100px) {
    .why-grid{
        grid-auto-rows: unset;
    }
    .why-card{
        padding-top: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    
    .why-top-right svg:lang(ar){
        transform: none;
    }
    .why-top-right:lang(ar){
        max-width: 700px;
        width: 100%;
    }
    .why-top-right svg:lang(ar){
        top: 100px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-top {
        flex-direction: column;
        gap: 30px;
        align-items: end;
    }
    .why-top:lang(ar){
        align-items: start;
    }
}

@media (max-width: 768px) {
    .why-top-right{
        width: 100%;
        max-width: 356px;
    }
    .why-top-right svg{
        top: 110px;
        width: 100%;
        right: -13px;

    }
    .why-grid{
        row-gap: 50px;
    }
    .why-card{
        padding: 23px;

    }

}
@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    
}
