.line-divider {
  position: relative;
  height: 1px;
  background-color: #ddd; /* base gray line */
  margin: 30px 0;
}

/* For English (LTR) */
:dir(ltr) .line-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #017eb3;
}

/* For Arabic (RTL) */
:dir(rtl) .line-divider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 2px;
  background-color: #017eb3;
}
