.whyus2-section {
  position: relative;
  background-color: var(--white);
}

.whyus2-section svg {
  position: absolute;
  right: 0;
  left: 0;
  height: 20px;
  width: 100%;
}

.whyus2-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 18px 10px 18px;
  position: relative;
  z-index: 22;
}

.whyus2-section-title {

  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--lightHelper);
  position: relative;
  text-align: center;
}

.whyus2-section-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 25px;
  bottom: -10%;
  left: 0;
  background-color: var(--lightHelper);
}

.whyus2-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.whyus2-image {
  flex: 1;
  z-index: 2;
}

.whyus2-image img {
  width: 100%;
}

.whyus2-features {
  flex: 1;
}
.portfolio__service-item p{
  margin-right: 5px;
}
/* ================= الخدمات ================= */

.portfolio__service-list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* يخلي كل الأعمدة نفس الطول */
}

.portfolio__service-list .row .col {
  width: 48%;
  display: flex; /* مهم علشان الكارت يتمد */
}

/* الكارت */
.portfolio__service-item {
  flex: 1; /* يملأ العمود بالكامل */
  padding: 20px 30px;
  border: 1.3px solid var(--lightHelper);
  border-radius: 21px;
  position: relative;
  transition: 0.3s;
  color: var(--lightHelper);
  text-align: start;
  display: flex;
  flex-direction: column;
}

.portfolio__service-item::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 76px;
  right: -2px;
  top: calc(50% - 38px);
  transition: 0.3s;
  border-radius: 15px 0 0 15px;
  background-color: var(--lightHelper);
  z-index: 0;
}

.portfolio__service-item:hover::after {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  right: -1px;
  top: 0;
  border-radius: 15px;
}

.portfolio__service-item .ps-title,
.portfolio__service-item p {
  position: relative;
  z-index: 1;
}

.portfolio__service-item .ps-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}

.portfolio__service-item:hover .ps-title,
.portfolio__service-item:hover p {
  color: var(--white);
}

/* ================= Responsive ================= */

@media (max-width: 1024px) {
  .portfolio__service-list .row .col {
    width: 48%;
  }
}

@media (max-width: 667px) {
  .portfolio__service-list .row {
    gap: 10px;
  }

  .portfolio__service-list .row .col {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .whyus2-content {
    flex-direction: column;
    text-align: center;
  }
}