:root {
  --accent: #c1ff00;
  --accent-dark: #a6d200;
  --bg-overlay: rgba(0, 0, 0, 0.55);
}
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 2rem 2rem 10%;
  direction: ltr;
}
.hero-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/assets/al%20majjd%20guideline-01-BoiuuCXS.png) center/cover
    no-repeat;
  z-index: 0;
  animation: slowZoom 12s ease-in-out infinite alternate;
}
.hero-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-inner.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  font-family: Emad-Diana-Regular, sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: -1px;
}
[dir="rtl"] .hero-title {
  line-height: 1.4;
}
[dir="rtl"] .hero-title br {
  display: block;
  margin-bottom: 0.3em;
}
.hero-text {
  font-size: 1.125rem;
  color: #ffffffe6;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-button {
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-button.primary {
  background: #0f1993;
  color: #fff;
  box-shadow: 0 10px 30px #0f19934d;
}
.hero-button.ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-button.primary:hover {
  transform: translateY(-3px);
  background: #0f1993;
}
.hero-button.ghost:hover {
  transform: translateY(-3px);
}
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
@media (max-width: 720px) {
  .hero-section {
    padding: 4rem 1rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
}
:root {
  --nav-bg: #fff;
  --nav-height: 72px;
  --accent: #c1ff00;
}
.site-nav {
  width: 100%;
  background: var(--nav-bg);
  box-shadow: 0 8px 18px #090f1a0f;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 34px;
  width: auto;
  margin-right: 8px;
}
.nav-center {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.nav-center a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  transition: background-color 0.16s ease, color 0.16s ease,
    transform 0.12s ease, opacity 0.16s ease;
}
.nav-center a:hover,
.nav-center a:focus {
  text-decoration: none;
  opacity: 1;
  background: #0f1993;
  color: #fff;
  transform: translateY(-1px);
}
.nav-center a:focus-visible {
  outline: 2px solid rgba(15, 25, 147, 0.18);
  outline-offset: 3px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle i {
  font-size: 22px;
  color: #0f1993;
  display: inline-block;
  line-height: 1;
  transition: color 0.14s ease, transform 0.12s ease;
}
.nav-toggle:hover i,
.nav-toggle.open i {
  color: #0f1993;
}
.nav-mobile {
  display: none;
}
@media (max-width: 900px) {
  .nav-center {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-inner {
    justify-content: space-between;
  }
  .nav-mobile {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--nav-bg, #fff);
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    box-shadow: 0 10px 30px #090f1a14;
    z-index: 999;
  }
  .nav-mobile a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
  }
  .nav-mobile a:hover {
    background: #0f199314;
    color: #0f1993;
  }
}
.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-language-toggle {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1b1b1b;
  transition: all 0.16s ease;
}
.nav-language-toggle:hover {
  background: #0f199314;
  border-color: #0f199333;
  color: #0f1993;
  transform: translateY(-1px);
}
.nav-language-toggle i {
  font-size: 18px;
  color: inherit;
}
.nav-icon {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1b1b1b;
}
.nav-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f1993;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 26px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px #0f19932e;
}
.nav-signup .plus {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: #ffffff24;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .nav-center {
    display: none;
  }
  .nav-inner {
    justify-content: space-between;
  }
}
.about-section {
  background-color: #fff;
  color: #000;
  padding: 4rem 2rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-left {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about-left h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #000;
  font-weight: 800;
}
.about-left p {
  font-size: 1rem;
  line-height: 1.65;
  color: #000000bf;
  margin: 0 0 2rem;
  max-width: 100%;
}
.about-link {
  background: #0f1993;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  text-decoration: none;
  display: inline-block;
}
.about-link:hover {
  transform: translateY(-2px);
  background: #0f1993;
}
.about-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}
.stat-card {
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
}
.stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 0.5rem;
  line-height: 1;
}
.stat-label {
  font-size: 0.95rem;
  color: #000000a6;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .about-section {
    padding: 2.5rem 1rem;
  }
  .about-left h2 {
    font-size: 1.75rem;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
@font-face {
  font-family: revicons;
  fallback: fallback;
  src: url(/assets/revicons-DbTteTvA.woff) format("woff"),
    url(/assets/revicons-CBqxZnew.ttf) format("ttf"),
    url(/assets/revicons-BNIKeAUC.eot) format("ttf");
}
.react-multi-carousel-list {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.react-multi-carousel-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, transition;
}
.react-multiple-carousel__arrow {
  position: absolute;
  outline: 0;
  transition: all 0.5s;
  border-radius: 35px;
  z-index: 1000;
  border: 0;
  background: #00000080;
  min-width: 43px;
  min-height: 43px;
  opacity: 1;
  cursor: pointer;
}
.react-multiple-carousel__arrow:hover {
  background: #000c;
}
.react-multiple-carousel__arrow:before {
  font-size: 20px;
  color: #fff;
  display: block;
  font-family: revicons;
  text-align: center;
  z-index: 2;
  position: relative;
}
.react-multiple-carousel__arrow:disabled {
  cursor: default;
  background: #00000080;
}
.react-multiple-carousel__arrow--left {
  left: calc(4% + 1px);
}
.react-multiple-carousel__arrow--left:before {
  content: "";
}
.react-multiple-carousel__arrow--right {
  right: calc(4% + 1px);
}
.react-multiple-carousel__arrow--right:before {
  content: "";
}
.react-multi-carousel-dot-list {
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.react-multi-carousel-dot button {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
  transition: background 0.5s;
  border-width: 2px;
  border-style: solid;
  border-color: gray;
  padding: 0;
  margin: 0 6px 0 0;
  outline: 0;
  cursor: pointer;
}
.react-multi-carousel-dot button:hover:active,
.react-multi-carousel-dot--active button {
  background: #080808;
}
.react-multi-carousel-item {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .react-multi-carousel-item {
    flex-shrink: 0 !important;
  }
  .react-multi-carousel-track {
    overflow: visible !important;
  }
}
[dir="rtl"].react-multi-carousel-list {
  direction: rtl;
}
.rtl.react-multiple-carousel__arrow--right {
  right: auto;
  left: calc(4% + 1px);
}
.rtl.react-multiple-carousel__arrow--right:before {
  content: "";
}
.rtl.react-multiple-carousel__arrow--left {
  left: auto;
  right: calc(4% + 1px);
}
.rtl.react-multiple-carousel__arrow--left:before {
  content: "";
}
.post-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px #0206170f;
  display: flex;
  flex-direction: column;
  transition: transform 0.26s cubic-bezier(0.22, 0.9, 0.34, 1),
    box-shadow 0.26s ease;
  height: 420px;
  max-height: 420px;
  width: 100%;
  max-width: 340px;
  box-sizing: border-box;
  margin: 0 auto;
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px #0206171f;
}
.post-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  flex-shrink: 0;
}
.post-card-content {
  padding: 0.9rem 1rem;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-card-title {
  margin: 0 0 0.35rem;
  color: #111;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.post-card-description {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  color: #000000a6;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-card-meta {
  font-size: 0.8rem;
  color: #00000073;
  line-height: 1.2;
}
:root {
  --albaster: #0f1993;
}
.projects-section {
  padding: 5rem 0;
  background: var(--brand-blue);
  color: #111;
  position: relative;
  background-color: #0f1993;
}
.projects-inner {
  width: 100%;
  margin: 0;
  padding: 0 1rem;
}
.projects-header-container {
  text-align: center;
  margin-bottom: 3rem;
}
.projects-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}
.projects-title {
  font-size: 2.6rem;
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.theme-counter {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #ffffffb3;
  font-weight: 600;
}
.theme-card-wrapper {
  display: flex;
  height: 360px;
  justify-content: center;
  width: 100%;
  padding: 0 0.5rem;
}
.theme-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.theme-card:hover {
  transform: scale(1.02);
}
.theme-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.theme-label {
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 2px;
}
.theme-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}
.theme-name {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  margin-top: 0.2rem;
}
.theme-desc {
  font-size: 0.95rem;
  color: #ffffffd9;
  max-width: 70%;
  margin-top: 0.25rem;
  line-height: 1.25;
}
.theme-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.6rem;
}
.theme-date,
.theme-location {
  font-size: 0.95rem;
  color: #ffffffd9;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.meta-sep {
  color: #ffffff80;
  font-weight: 600;
  margin: 0 0.2rem;
}
.theme-meta i {
  font-size: 0.95rem;
  color: #ffffffe6;
}
.carousel-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
}
.carousel-track {
  display: flex;
  gap: 1rem;
}
.carousel-item-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.react-multi-carousel-dot-list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.react-multi-carousel-dot button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff4d;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.react-multi-carousel-dot button.active {
  background: #fff;
}
.react-multi-carousel-list button[aria-label] {
  background: #ffffff14;
  border: 2px solid #fff;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  color: #fff;
  font-size: 20px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.react-multi-carousel-list button[aria-label]:hover {
  width: 64px;
  height: 64px;
  color: #0f1993;
}
@media (max-width: 700px) {
  .projects-title {
    font-size: 1.8rem;
  }
  .projects-section {
    padding: 3rem 0;
  }
  .react-multi-carousel-list button[aria-label] {
    display: none;
  }
}
.footer {
  background-color: #0f1993;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 1.05rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-logo-section,
.footer-links {
  width: 20%;
}
.footer-contact {
  width: 30%;
}
.footer-social {
  width: 20%;
}
.footer-logo-section,
.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.footer-logo-section {
  justify-content: center;
}
.footer-logo {
  width: 200px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links li,
.footer-social li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.footer-links a,
.footer-social a {
  color: #fff;
  font-size: 1rem;
}
.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}
.footer-social i {
  margin-inline-start: 0;
  font-size: 1.3rem;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-direction: column;
  direction: ltr;
  unicode-bidi: embed;
  margin-left: 0;
  align-items: center;
}
.footer-social {
  align-items: center;
}
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background: transparent;
  transition: background 0.16s ease, transform 0.12s ease;
  font-size: 20px;
}
.footer-social .social-link:hover,
.footer-social .social-link:focus {
  background: #ffffff14;
  transform: translateY(-2px);
  outline: none;
  text-decoration: none;
}
.footer-social .social-link i {
  margin: 0;
  font-size: 20px;
}
.footer-contact p {
  margin: 0.3rem 0;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-contact p a {
  color: #fff;
  text-decoration: none;
}
.footer-contact p a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-phone-ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  color: #fff !important;
  text-decoration: none;
}
.footer-phone-ltr:hover {
  color: #fff !important;
  text-decoration: underline;
}
.footer-contact i {
  margin: 0;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
  font-size: 1rem;
  color: #fff;
}
.footer-location-label {
  display: flex;
  align-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.footer-location-label i {
  margin: 0;
}
.footer-location-text {
  line-height: 1.5;
  color: #fff;
}
.footer-location-text:visited {
  color: #fff;
}
.footer-location-text:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}
.footer a:visited {
  color: #fff;
}
@media (max-width: 1024px) {
  .footer-logo-section,
  .footer-links {
    width: 25%;
  }
  .footer-contact {
    width: 35%;
  }
  .footer-social {
    width: 15%;
  }
  .footer-social-icons {
    margin-left: 0;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-social {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .footer-logo {
    margin: 0 auto 1rem;
  }
  .footer-links ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
  }
  .footer-links li {
    margin: 0;
    list-style: none;
  }
  .footer-links a {
    display: inline-block;
    padding: 0.25rem 0;
    white-space: nowrap;
  }
  .footer-social-icons {
    margin-left: 0;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 1.25rem 0.75rem;
    font-size: 0.95rem;
  }
  .footer-top {
    gap: 0.6rem;
  }
  .footer-logo-section,
  .footer-links,
  .footer-contact,
  .footer-social {
    gap: 0.45rem;
  }
  .footer-logo {
    width: 120px;
    margin-bottom: 0.25rem;
  }
  .footer-links ul {
    flex-direction: row;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .footer-links a,
  .footer-contact p,
  .footer-location-text {
    font-size: 0.95rem;
    line-height: 1.25;
  }
  .footer-contact p {
    margin: 0.18rem 0;
  }
  .footer-social .social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 6px;
  }
  .footer-social {
    gap: 0.3rem;
  }
  .footer-social h4 {
    margin: 0 0 0.35rem;
  }
  .footer-social-icons {
    margin-left: 0;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .footer-location {
    column-gap: 0.35rem;
  }
  .footer-bottom {
    margin-top: 0.9rem;
    padding-top: 0.6rem;
    font-size: 0.88rem;
  }
}
.services-section {
  padding: 5rem 2rem;
  background: #fff;
  position: relative;
  color: #111;
  text-align: center;
}
.services-header-container {
  background: #ffffff14;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}
.services-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.services-paragraph {
  font-size: 1rem;
  color: #ffffffe6;
  margin: 0;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  background-color: #0f1993;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px #00000040;
  position: relative;
  min-height: 350px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px #0006;
}
.service-image-wrapper {
  width: 50%;
  height: 100%;
  margin-left: auto;
  overflow: hidden;
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image {
  transform: scale(1.05);
}
.service-content {
  padding: 2.5rem 2rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}
.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ffffffd9;
}
.services-heading {
  color: #111;
}
.services-paragraph {
  color: #555;
}
.service-card,
.service-title,
.service-description {
  color: #fff;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    flex-direction: column;
    min-height: auto;
  }
  .service-image-wrapper {
    width: 100%;
    height: 200px;
    margin-left: 0;
  }
  .service-content {
    padding: 1.5rem;
  }
  .service-title {
    font-size: 1.3rem;
  }
}
.add-project-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1993 0% 100%);
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.add-project-container {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px #0000004d;
  padding: 3rem;
  margin-top: 2rem;
}
.add-project-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.add-project-header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.add-project-logo {
  height: 60px;
  width: auto;
}
.add-project-language-toggle {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1b1b1b;
  transition: all 0.16s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
[dir="rtl"] .add-project-language-toggle {
  right: auto;
  left: 0;
}
.add-project-language-toggle:hover {
  background: #0f199314;
  border-color: #0f199333;
  color: #0f1993;
  transform: translateY(-50%) translateY(-1px);
}
.add-project-language-toggle i {
  font-size: 18px;
  color: inherit;
}
.add-project-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f1993;
  margin: 0 0 0.5rem;
}
.add-project-subtitle {
  font-size: 1rem;
  color: #0009;
  margin: 0;
}
.add-project-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  color: #1f1f1f;
  font-size: 0.95rem;
}
.form-group input[type="text"],
.form-group input[type="date"],
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fff;
}
.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f1993;
  box-shadow: 0 0 0 3px #0f19931a;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.image-upload-container {
  position: relative;
}
.image-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.image-upload-label {
  display: block;
  cursor: pointer;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
  background: #f9fafb;
}
.image-upload-label:hover {
  border-color: #0f1993;
  background: #f0f4ff;
}
.image-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
}
.image-upload-placeholder svg {
  color: #9ca3af;
}
.image-upload-placeholder span {
  font-size: 0.95rem;
  font-weight: 500;
}
.image-preview {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.form-message {
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
}
.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.submit-button {
  padding: 1rem 2rem;
  background: #0f1993;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 10px 30px #0f19934d;
}
.submit-button:hover:not(:disabled) {
  background: #0f1993;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px #0f199366;
}
.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 768px) {
  .add-project-page {
    padding: 2rem 1rem;
  }
  .add-project-container {
    padding: 2rem 1.5rem;
    margin-top: 1rem;
  }
  .add-project-title {
    font-size: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .add-project-container {
    padding: 1.5rem 1rem;
  }
  .add-project-logo {
    height: 50px;
  }
  .add-project-title {
    font-size: 1.75rem;
  }
  .add-project-subtitle {
    font-size: 0.9rem;
  }
}
.projects-list-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}
.projects-list-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f1993;
  margin: 0 0 2rem;
  text-align: center;
}
.loading-message,
.no-projects {
  text-align: center;
  padding: 2rem;
  color: #0009;
  font-size: 1.1rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000001a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #00000026;
}
.project-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card-content {
  padding: 1.25rem;
}
.project-card-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f1f1f;
}
.project-card-description {
  font-size: 0.9rem;
  color: #000000a6;
  margin: 0 0 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card-meta {
  font-size: 0.85rem;
  color: #00000073;
  margin: 0 0 1rem;
}
.project-card-actions {
  display: flex;
  gap: 0.75rem;
}
.edit-button,
.delete-button {
  flex: 1;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.edit-button {
  background: #0f1993;
  color: #fff;
}
.edit-button:hover {
  background: #0f1993;
  transform: translateY(-1px);
}
.delete-button {
  background: #ef4444;
  color: #fff;
}
.delete-button:hover {
  background: #dc2626;
  transform: translateY(-1px);
}
.edit-modal-overlay {
  position: fixed;
  inset: 0;
  background: #0009;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}
.edit-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px #0000004d;
  position: relative;
}
.edit-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.edit-modal-header h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f1993;
}
.close-button {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.close-button:hover {
  background: #f3f4f6;
  color: #1f1f1f;
}
.edit-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.edit-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.cancel-button,
.update-button {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cancel-button {
  background: #f3f4f6;
  color: #1f1f1f;
}
.cancel-button:hover {
  background: #e5e7eb;
}
.update-button {
  background: #0f1993;
  color: #fff;
}
.update-button:hover {
  background: #0f1993;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .edit-modal {
    max-height: 95vh;
  }
  .edit-modal-header,
  .edit-form {
    padding: 1.5rem;
  }
}
.project-detail-page {
  min-height: 100vh;
  background-color: #fff;
}
.project-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.project-detail-back {
  background: transparent;
  border: none;
  color: #0f1993;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.18s ease;
}
.project-detail-back:hover {
  transform: translate(-4px);
}
.project-detail-back i {
  font-size: 0.9rem;
}
.project-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.project-detail-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px #0000001a;
}
.project-detail-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.project-detail-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.project-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin: 0;
  line-height: 1.2;
}
.project-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f0f0f0;
  border-radius: 12px;
}
.project-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #000000bf;
}
.project-detail-meta-item i {
  color: #0f1993;
  font-size: 1.1rem;
}
.project-detail-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-detail-description h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.project-detail-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000bf;
  margin: 0;
}
.project-detail-loading,
.project-detail-error {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.project-detail-error .back-button {
  background: #0f1993;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.project-detail-error .back-button:hover {
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .project-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .project-detail-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .project-detail-container {
    padding: 1rem;
  }
  .project-detail-title {
    font-size: 1.75rem;
  }
  .project-detail-description h2 {
    font-size: 1.25rem;
  }
  .project-detail-description p {
    font-size: 1rem;
  }
}
@font-face {
  font-family: Emad-Diana-Regular;
  src: url(/Emad-DianaeXtra-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Emad-Diana-Normal;
  src: url(/Emad-Diana%20eXtra%20Normal.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Emad-Diana-Regular, sans-serif;
}
body,
p,
span,
a,
li,
div {
  font-family: Emad-Diana-Normal, sans-serif;
}
:root {
  --primary-blue: #0f1993;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .nav-center,
[dir="rtl"] .nav-inner,
[dir="rtl"] .nav-left,
[dir="rtl"] .nav-right,
[dir="rtl"] .hero-ctas {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-inner {
  flex-direction: column;
}
[dir="rtl"] .footer-top {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-links ul,
[dir="rtl"] .footer-social ul {
  text-align: right;
}
