
.what-we-offer-1-section {
    /* padding: 80p-x 0; */
    /* height: 100vh;
    overflow-y: scroll; */
    /* position: relative; */
}
.wwo-shape{
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    
}
.what-we-offer-1-section {
    /* position: relative; */
    /* overflow-y: scroll; */
    overscroll-behavior:contain;
}

.what-we-offer-1-section .container{
  padding-top: 75px
}
.what-we-offer-1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.what-we-offer-1-header-left h2 {
    margin-top: 12px;
}

.what-we-offer-1-header-right {
    max-width: 522px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}
.what-we-offer-1-header-right p{
    text-align: right;
}
.what-we-offer-1-header-right svg{
    position: absolute;
    top: 150px;
    right: -75px;

}
.what-we-offer-1-header-right svg:lang(ar){
    transform:scaleX(-1);
    right: unset;
    left: 0;
}
.what-we-offer-1-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    
}

.what-we-offer-1-card {
     position: relative;
    border-radius: 0; /* remove normal rounding */
    background: url('/assets/images/homepage/service-card-pattern.svg') center;
    border: 1px solid rgba(75, 90, 96, 0.5);
    overflow: hidden;
    clip-path: polygon(9% 0, /* cut top-left */ 100% 0, 100% calc(100% - 20.6%), /* reach bottom-right cut start */ calc(100% - 8.7%) 100%, /* cut bottom-right */ 0 100%, 0 22% /* back to top-left cut end */)

}

.what-we-offer-1-cards .card-background-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* Full-width last card */
.what-we-offer-1-cards .card-3 {
    grid-column: 1 / -1;
    clip-path: polygon(4.5% 0, /* cut top-left */ 100% 0, 100% calc(100% - 21%), /* reach bottom-right cut start */ calc(100% - 4.5%) 100%, /* cut bottom-right */ 0 100%, 0 21% /* back to top-left cut end */);

}

/* Text container */
.what-we-offer-1-cards .card-content {
    max-width: 575px;
    padding-top: 100px;
    /* padding-top: 115px; */
    padding-bottom: 37px;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.what-we-offer-1-cards .card-content:lang(ar) {
    margin-left: 0;
    margin-right: 50px;

}
/* Placeholder for image part */
.what-we-offer-1-cards .card-image {
    position: absolute;
    /* right: -20%;
    top: -20%; */
    /* width: 180px;
    height: 180px; */
    /* background: rgba(255,255,255,0.08); */
    /* border-radius: 50%; */
    
    /* right: -50px;
    top: -50px; */
    right: -5%;
    top: -10%;
    max-width: 275px;
    width: 30%;

}
.what-we-offer-1-cards .card-image:lang(ar){
    right: unset;
    left:0%;
    width: 27%;

}
.what-we-offer-1-cards .card-3 .card-image {
   max-width: 700px;
   width: 62%;
   top: -350px;
   right: -125px;
}
.what-we-offer-1-cards .card-3 .card-image:lang(ar) {
    top: -100px;
    left: -100px;
    right: unset;
    transform: scaleX(-1);

}

@media(max-width:1280px){
    .what-we-offer-1-header{
        margin-bottom: 80px;
    }
    
    .what-we-offer-1-cards .card-content{
        margin-inline: 32px;
        padding-top: 80px;
    }
}
@media(max-width:768px){
   .what-we-offer-1-cards .card-content:lang(ar){
    margin-right: 20px;
   }
    .what-we-offer-1-header{
        flex-direction: column;
        align-items: start;
        margin-bottom: 130px;
    }
    .what-we-offer-1-header-right{
        align-self: flex-end;
    }
    .what-we-offer-1-header-right svg{
        width: 100%;
        top: 85px;
        right: -13px;
    }
    .what-we-offer-1-cards{
        grid-template-columns: repeat(1, 1fr);
    }
    .what-we-offer-1-header-right p{
        max-width: 356px;
    }
    .what-we-offer-1-cards .card-3 .card-image{
        top: -100px;
        right: -75px;
    }
}