.elementor-4723 .elementor-element.elementor-element-1a7e849{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-4723 .elementor-element.elementor-element-686e28d{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}@media(min-width:768px){.elementor-4723 .elementor-element.elementor-element-1a7e849{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-686e28d */* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  direction: rtl;
}

:root {
  --bg1:#070F16;
  --card: #070F16;
  --text: #e9f4f5;
  --muted: #EC6942;
  --accent: #EC6942;
  --line: #ffffff;
  --shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  --radius: 20px;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(160deg, #000000 40%, #070F16 100%);
  font-family: "Tajawal", "Noto Kufi Arabic", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/*------------------- Layout -------------------*/
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding: 40px 0 60px;
}

.card {
  background: linear-gradient(180deg, #070F16 40%, #070F16);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  padding: 24px;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 35px #ec6a42fc;
}

/*------------------- Header -------------------*/
.hero {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #070F16 20%, #070F16 90%);
  border: 1px solid #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin: 0;
}

.logo {
  width: 280px;
  height: 200px;
  object-fit: contain;
  background: #070F16;
  border-radius: 14px;
  padding: 4px;
  border: 1px solid var(--line);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
  margin: 0;
}

.subtitle {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

/*------------------- Grid -------------------*/
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

/*------------------- Sections -------------------*/
.section-box {
  padding: 22px 22px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 22px;
  padding-right: 10px;
  color: var(--accent);
  font-weight: 700;
  text-align: right; /* ✅ يبدأ النص من اليمين */
}

.license-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.license-item:last-child {
  border-bottom: none;
}

.label {
  color: var(--muted);
}

.value {
  font-weight: 600;
}

/*------------------- Lists -------------------*/
.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  transition: all 0.3s ease;
}

.list li:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateX(-5px);
}

.list li:last-child {
  border-bottom: none;
}

.list strong {
  font-weight: 800;
  letter-spacing: 0.5px;
  direction: ltr;
}

/*------------------- Responsive -------------------*/
@media (max-width: 1024px) {
  .logo {
    width: 240px;
    height: auto;
  }

  .subtitle {
    font-size: 20px;
  }

  .section-title {
    font-size: 20px;
    text-align: right; /* ✅ يبقى من اليمين */
  }

  .list li {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }

  .hero {
    padding: 20px 16px;
  }

  .logo {
    width: 170px;
    height: 170px;
  }

  .subtitle {
    font-size: 18px;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    border: none;
    padding: 0;
    font-size: 18px;
    text-align: right; /* ✅ أيضًا في الجوال يبدأ من اليمين */
  }

  .section-box {
    padding: 20px 16px;
  }

  .license-item {
    grid-template-columns: 1fr;
  }

  .list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
  }
}/* End custom CSS */