/* Start custom CSS for html, class: .elementor-element-81d8823 */.requirements-box {
  background: #D3F5F3;
  padding: 30px;
  border-radius: 16px;
  font-family: "Cairo", sans-serif;
  direction: rtl;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.requirements-title {
  text-align: center;
  color: #018076;
  font-size: 28px;
  margin-bottom: 25px;
  position: relative;
}

.requirements-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #009689;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.requirements-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.requirements-list > li {
  background: #FFFFFF;
  margin-bottom: 15px;
  padding: 16px 18px;
  border-radius: 12px;
  border-right: 6px solid #009689;
  position: relative;
  line-height: 1.9;
  color: #000000;
  transition: all 0.3s ease;
}

.requirements-list > li:hover {
  transform: translateX(-5px);
  background: #F7FF9B;
}

.requirements-list > li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  background: #009689;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
}

.highlight {
  color: #2E67F5;
  font-weight: bold;
}

.sub-list {
  margin-top: 12px;
  padding-right: 20px;
  list-style: disc;
}

.sub-list li {
  margin-bottom: 6px;
  color: #0035BA;
  font-size: 15px;
}/* End custom CSS */