@font-face {
  font-family: "Lemonada";
  src: url(..//files/lemonada-font.ttf);
  display: swap;
}

/* Start Initial Style */
:root {
  --red-color: #d7070d;
  --blue-color: #0707d0;
  --purple-color: #700770;
  --space: 100px;
  --main-transition: 0.3s linear;
  --transe: 0.3s ease;
  --en-font: "Lemonada", sans-serif;
  --ar-font: "Lemonada", sans-serif;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--en-font);
  overflow-x: hidden;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
}
#main {
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}
section {
  margin-top: 50px;
  margin-bottom: 50px;
}

h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
[dir="rtl"] h1 {
  font-size: 26px;
}
.container {
  padding: 0px 20px;
  margin: auto;
  width: 100%;
  max-width: 1200px;
}
/* End Initial Style */

/* Header Start */
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 10%);
  z-index: 999;
}
#header,
#header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}
#header .container .logo {
  padding: 0 20px 0px;
}
#header .container .logo img {
  height: 60px;
  transition: var(--transe);
}
#header .container .logo img:hover {
  filter: brightness(1.3);
}
#header .container h1 {
  line-height: 0;
}
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 60px;
  padding: 0px 20px;
  cursor: pointer;
}
.nav-toggler .bar1,
.nav-toggler .bar2,
.nav-toggler .bar3 {
  width: 30px;
  height: 4px;
  background-color: #333;
  transition: 0.3s linear;
  border-radius: 50px;
}
.nav-toggler .bar2 {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.nav-toggler.active .bar1 {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.nav-toggler.active .bar2 {
  opacity: 0;
}
.nav-toggler.active .bar3 {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}
.navlist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#header a:not(.logo) {
  padding: 0px 20px;
  font-size: 16px;
  height: 80px;
  color: #000;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--main-transition);
}
.lang-btn {
  direction: rtl;
  gap: 5px;
  justify-content: flex-end;
  font-size: 15px !important;
}
.lang-btn svg {
  width: 25px;
  fill: #000;
  transition: var(--main-transition);
}
.lang-btn:hover svg {
  fill: var(--red-color);
}
#header h1 {
  font-weight: bold;
  color: var(--red-color);
  font-size: 24px;
}
#header li a:hover {
  color: var(--red-color);
  background-color: #fafafa;
}
#header li a::after {
  content: "";
  position: absolute;
  background-color: var(--red-color);
  width: 100%;
  height: 3px;
  bottom: -0px;
  left: -100%;
  border-radius: 3px;
  transition: var(--main-transition);
}
#header li a:hover::after {
  left: 0px;
}
/* --Header Media Query */
@media (max-width: 860px) {
  body.menu-active {
    overflow-y: hidden;
  }
  .nav-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navlist {
    display: none;
  }
  .navlist.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 79px;
    left: 0px;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 79px);
    align-items: flex-start;
    justify-content: flex-start;
    border-top: 1px solid #ddd;
  }
  .navlist.active li {
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
}
/* Header End */

/* Client Page Start */
.client-page {
  width: 100%;
  max-width: 800px;
  margin: 100px 0px;
  border-inline-end: 1px solid #ccc;
  padding: 20px;
}
.client-header {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}
.client-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.client-title h1 {
  margin-bottom: 0;
  line-height: 1.5;
  border-inline-start: 7px solid var(--red-color);
  padding-inline-start: 10px;
}
[dir="rtl"] .client-title h1 {
  font-size: 28px;
}
.client-page h2 {
  margin-bottom: 10px;
  line-height: 1.4;
  border-inline-start: 5px solid var(--blue-color);
  padding-inline-start: 10px;
}
[dir="rtl"] .client-page h2 {
  font-size: 22px;
}
.client-page h3 {
  margin-bottom: 10px;
  line-height: 1.3;
  border-inline-start: 5px solid var(--purple-color);
  padding-inline-start: 10px;
}
[dir="rtl"] .client-page h3 {
  font-size: 16px;
}
.view-client {
  color: var(--red-color);
  border: 3px solid var(--red-color);
  padding: 15px;
  font-weight: bold;
  line-height: 1;
  border-radius: 50px;
  transition: var(--transe);
}
.view-client:hover {
  color: #fff;
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.client-logo {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  max-width: 100%;
  width: 250px;
    height: auto;
    aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  width: 100%;
  max-width: 200px;
}
.client-page li {
  margin-bottom: 10px;
}
.client-page p {
  margin-bottom: 20px;
  margin-inline-start: 15px;
}
/* [dir="rtl"] .client-page p,
[dir="rtl"] .client-page a,
[dir="rtl"] .client-page li {
  font-size: 14px;
} */
.client-page ul {
  list-style-type: disc;
  list-style-position: inside;
  /* margin-inline-start: 20px; */
  margin-bottom: 20px;
}
.demo-video {
  border: 1px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
/* Client Page End */

/* Footer Start */
#footer {
  background-color: #fff;
  position: relative;
  padding: 20px;
  box-shadow: 0px -5px 20px 0px rgb(0 0 0 / 10%);
}
#footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  text-align: center;
  font-size: 14px;
}
#footer .heart {
  color: #ff0000;
  line-height: 1.6;
  animation: beat linear 0.5s infinite alternate;
}
#footer .developer {
  color: var(--red-color);
  font-weight: bold;
}
#footer .copy {
  font-weight: bold;
  transform: translateY(3px);
  display: inline-flex;
}
/* Footer End */

/* ------------------------- */

/* RTL Styles Start */

[dir="rtl"] body {
  font-family: var(--ar-font);
}

/* RTL Header */
[dir="rtl"] #header li a::after {
  right: -100%;
}
[dir="rtl"] #header li a:hover::after {
  right: 0px;
}
[dir="rtl"] .lang-btn {
  direction: ltr;
  justify-content: flex-end;
  font-weight: normal;
  font-size: 17px !important;
}

/* RTL Styles End */

/* ------------------------- */

/* Animation Start */
@keyframes waving-hand {
  to {
    transform: rotate(20deg);
  }
}
@keyframes beat {
  to {
    transform: scale(1.25);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes right-left {
  to {
    transform: translateX(5px);
  }
}
@keyframes left-right {
  to {
    transform: translateX(-5px) rotateY(180deg);
  }
}
/* Animation End */
