@charset "utf-8";
/* Arabic RTL – Production Ready */

/* =====================
   GLOBAL
===================== */
.why-us-wcu {
  padding: 80px 0;
  direction: rtl;
}

.container-wcu {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
}

/* =====================
   FEATURES
===================== */
.features-wcu {
  width: 50%;
}

.feature-card-wcu {
  position: relative;
  background: #fff;
  border-radius: 50px 50px 0 50px;
  padding: 12px 30px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
  transition: all 0.8s ease;
}

.feature-card-wcu:hover {
  transform: translateY(7px);
}

.feature-card-wcu.active-wcu h3 {
  background: #1e1e1e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.number-wcu {
  position: absolute;
  top: -10px;
  right: 30px;
  background: #ff5a5f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 15px;
}

.icon-wcu {
  width: 55px;
  height: 55px;
  background: #00c2c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.content-wcu {
  text-align: right;
}

.content-wcu h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.content-wcu p {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

/* =====================
   IMAGES
===================== */
.images-wcu {
  width: 45%;
  position: relative;
  height: 420px;
}

.img-wcu {
  position: absolute;
  overflow: hidden;
}

.img-wcu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-1-wcu {
  width: 50%;
  height: 390px;
  right: 50px;
  bottom: 5px;
  border-radius: 200px;
  border: 10px solid #fff;
  z-index: 1;
}

.img-2-wcu {
  width: 60%;
  height: 440px;
  left: 0;
  bottom: 0;
  border-radius: 200px;
}

.images-wcu .shape {
  position: absolute;
  top: -15px;
  right: 70px;
  width: 222px;
  height: 102px;
  transform: scaleX(-1);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 1024px) {
  .container-wcu {
    flex-direction: column;
  }

  .features-wcu,
  .images-wcu {
    width: 100%;
  }

  .images-wcu {
    height: 380px;
  }

  .img-1-wcu {
    width: 55%;
    height: 340px;
    right: 0;
  }

  .img-2-wcu {
    width: 60%;
    height: 380px;
    left: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .why-us-wcu {
    padding: 50px 0;
  }

  .feature-card-wcu {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    border-radius: 30px;
  }

  .content-wcu {
    text-align: center;
  }

  .number-wcu {
    right: 50%;
    transform: translateX(50%);
  }

  .images-wcu {
    height: 320px;
  }

  .img-1-wcu {
    width: 65%;
    height: 260px;
    right: 0;
  }

  .img-2-wcu {
    width: 70%;
    height: 300px;
    left: 0;
  }

  .images-wcu .shape {
    display: none;
  }
}