/* Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Blaka&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --dark-color: #171717;
  --main-color: #0e62e0;

  --main-transition: all 0.4s;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  line-height: 1.5;
  direction: rtl !important;
  color: var(--dark-color);
  font-family: "Almarai", "Poppins", sans-serif !important;
  font-size: 15px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button,
input {
  outline: none;
}

/* Start container */
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 90%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 90%;
  }
}
/* End Container */

/* ------------------ Website Style ------------------ */

/* Start Navbar */
.navbar {
  background-color: #ffffffe5;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  min-height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 -1px 10px #ddd;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 60px;
}
.navbar .navbar-brand {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  flex: 1;
}
.navbar .navbar-brand img {
  width: 150px;
  margin-left: 5px;
}
.navbar .navbar-dk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 2;
}
.navbar .navbar-nav {
  display: flex;
  align-items: center;
}
.navbar .navbar-nav a {
  padding: 10px 20px;
  color: var(--dark-color);
  transition: var(--main-transition);
  position: relative;
}
.navbar .navbar-nav a::before {
  position: absolute;
  content: "";
  bottom: -12px;
  right: 0;
  left: 0;
  width: 0;
  background-color: var(--main-color);
  height: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--main-transition);
}
.navbar .navbar-nav li:hover a::before {
  width: 100%;
}
.navbar .navbar-nav a:hover {
  color: var(--main-color);
}
.navbar .call .call-btn {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  transition: var(--main-transition);
}
.navbar .call .call-btn:hover {
  background-color: var(--dark-color);
}
.navbar .navbar-mobile {
  display: none;
}
@media (max-width: 768px) {
  .navbar .navbar-dk {
    display: none;
  }
  .navbar .navbar-mobile {
    display: block;
  }
  .navbar .navbar-mobile .bars {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar .navbar-mobile .navbar-nav2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: #171717bd;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    border-bottom: solid 5px var(--main-color);
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a {
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    display: none;
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a:hover {
    color: var(--main-color);
  }
  .navbar .navbar-mobile .close {
    width: 25px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    display: none;
    transition: all 0.7s;
  }
  .navbar .navbar-mobile .logoformobile {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px;
    z-index: 20;
    display: none;
    transition: all 0.7s;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-dk {
    display: none;
  }
  .navbar .navbar-mobile {
    display: block;
  }
  .navbar .navbar-mobile .bars {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .navbar .navbar-mobile .navbar-nav2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: #171717bd;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    border-bottom: solid 5px var(--main-color);
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a {
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    display: none;
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a:hover {
    color: var(--main-color);
  }
  .navbar .navbar-mobile .close {
    width: 25px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    display: none;
    transition: all 0.7s;
    cursor: pointer;
  }
  .navbar .navbar-mobile .logoformobile {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 50px;
    z-index: 20;
    display: none;
    cursor: pointer;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-dk {
    display: none;
  }
  .navbar .navbar-mobile {
    display: block;
  }
  .navbar .navbar-mobile .bars {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar .navbar-mobile .navbar-nav2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background-color: #171717de;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    border-bottom: solid 5px var(--main-color);
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a {
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    display: none;
    transition: var(--main-transition);
  }
  .navbar .navbar-mobile .navbar-nav2 a:hover {
    color: var(--main-color);
  }
  .navbar .navbar-mobile .close {
    width: 25px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    display: none;
    transition: all 0.7s;
  }
  .navbar .navbar-mobile .logoformobile {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 150px;
    z-index: 20;
    display: none;
    transition: all 0.7s;
  }
}
/* End Navbar */

/* Start Showcase */
.showcase {
  background: #f1f1f1; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffffff,
    #f1f1f1
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffffff,
    #f1f1f1
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  min-height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 300px;
}
.showcase .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  align-items: center;
}
.showcase h1 {
  color: var(--main-color);
  font-size: 45px;
  font-weight: bold;
  text-align: center;
}
.showcase p {
  color: var(--dark-color);
  font-size: 20px;
  text-align: justify;
  font-weight: lighter;
}
.showcase img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}
.showcase .call {
  display: flex;
  justify-content: flex-end;
}
.showcase .call-btn {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  border: solid 1px var(--main-color);
  transition: var(--main-transition);
}
.showcase .call-btn:hover {
  background-color: var(--dark-color);
  color: var(--main-color);
}
@media (max-width: 768px) {
  .showcase {
    padding: 20px 0;
    border-bottom-right-radius: 100px;
  }
  .showcase .grid-wrapper {
    display: flex;
    flex-direction: column;
  }
  .showcase img {
    padding-top: 20px;
  }
  .showcase h1 {
    font-size: 35px;
    line-height: 40px;
    padding-bottom: 15px;
  }
  .showcase .col {
    order: 2;
  }
  .showcase .col-2 {
    order: 1;
  }
}
@media (max-width: 992px) {
  .showcase {
    padding: 20px 0;
    border-bottom-right-radius: 100px;
  }
  .showcase .grid-wrapper {
    display: flex;
    flex-direction: column;
  }
  .showcase h1 {
    font-size: 35px;
    line-height: 40px;
    padding-bottom: 15px;
  }
  .showcase .col {
    order: 2;
  }
  .showcase .col-2 {
    order: 1;
  }
}
/* End Showcase */

/* Start About */
.about {
  padding-top: 100px;
}
.about .box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px;
}
.about .box-wrapper .box {
  width: 100%;
  padding: 10px 20px;
  border-radius: 5px;
  transition: var(--main-transition);
}
.about .box-wrapper .box:hover {
  background-color: #0e62e057;
}
.about .img {
  background-color: #0e62e057;
  width: 120px;
  height: 120px;
  line-height: 40%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 10px;
}
.about .img img {
  width: 70%;
}
.about h2 {
  text-align: center;
  font-weight: normal;
}
.about p {
  text-align: justify;
  font-weight: lighter;
  font-size: 17px;
}
@media (max-width: 992px) {
  .about .box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .about .box-wrapper {
    grid-template-columns: 1fr;
  }
}

.about .section-2 {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 25px;
}
.about .section-2 img {
  display: block;
  width: 100%;
}
.about .section-2 h2 {
  font-size: 35px;
  font-weight: bolder;
  color: var(--dark-color);
}
.about .section-2 p {
  font-size: 17px;
  padding-bottom: 10px;
  font-weight: normal;
  text-align: justify;
}
.about .call {
  display: flex;
  justify-content: center;
}
.about .call-btn {
  background-color: var(--main-color);
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  border: solid 1px var(--main-color);
  transition: var(--main-transition);
}
.about .call-btn:hover {
  background-color: var(--dark-color);
  color: var(--main-color);
}
@media (max-width: 992px) and (max-width: 768px) {
  .about .section-2 {
    grid-template-columns: 1fr;
  }
}
/* End About */

/* Start Services */
.services {
  padding-top: 100px;
}
.services h2 {
  text-align: center;
  font-size: 60px;
}
.services h4 {
  text-align: center;
  font-size: 30px;
  font-weight: lighter;
}
.services .services-icon {
  width: 200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .grid-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px;
}
.services img {
  width: 100%;
  display: block;
}
.services .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services h3 {
  color: var(--main-color);
  font-size: 35px;
  padding: 10px;
  text-align: right;
}
.services p {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 10px;
  text-align: justify;
}
@media (max-width: 992px) {
  .services .grid-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .services h2 {
    font-size: 45px;
    line-height: 50px;
  }
  .services h4 {
    font-size: 25px;
  }
  .services .grid-wrapper {
    grid-template-columns: 1fr;
  }
}
/* End Services */

/* Start Reviews */
.reviews {
  padding-top: 100px;
}
.reviews .review-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .review-icon img {
  width: 100px;
}
.reviews h2 {
  font-size: 50px;
  font-weight: normal;
  text-align: center;
}
.reviews .grid-wrapper {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px;
}
.reviews .col {
  background-color: #0e62e057;
  padding: 10px;
  padding-top: 30px;
  border-radius: 5px;
  transition: var(--main-transition);
}
.reviews .col:hover {
  background-color: var(--dark-color);
}
.reviews .col:hover h4 {
  color: #fff;
}
.reviews .col:hover p {
  color: #fff;
}
.reviews .user-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .user-icon img {
  width: 80px;
  position: absolute;
  top: -80px;
  transition: var(--main-transition);
}
.reviews .col:hover .user-icon img {
  top: -90px;
}
.reviews .rate-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .rate-icon img {
  width: 150px;
}
.reviews h4 {
  text-align: center;
  padding-top: 20px;
}
.reviews p {
  font-size: 16px;
  text-align: center;
  padding: 10px;
}
@media (max-width: 992px) {
  .reviews h2 {
    font-size: 40px;
  }
  .reviews .grid-wrapper {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
  }
  .reviews .col {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .reviews h2 {
    font-size: 40px;
  }
  .reviews .grid-wrapper {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
  .reviews .col {
    margin-top: 50px;
  }
}
/* End Reviews */

/* Start Contact */
.contact {
  padding-top: 100px;
}
.contact .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact-icon img {
  width: 100px;
  display: block;
}
.contact h2 {
  font-size: 50px;
  text-align: center;
}
.contact p {
  text-align: center;
  font-size: 18px;
  padding-top: 10px;
  width: 50%;
  margin: auto;
}
.contact .hotline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.contact .hotline a {
  font-size: 40px;
  font-weight: bolder;
  color: var(--dark-color);
}
.contact .hotline img {
  width: 40px;
}
.contact .numbers-wrapper {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
.contact .numbers-wrapper a {
  display: block;
  background-color: #0e62e057;
  border-radius: 5px;
  color: var(--dark-color);
  font-size: 20px;
  padding: 10px 15px;
  text-align: center;
  transition: var(--main-transition);
}
.contact .numbers-wrapper a:hover {
  background-color: var(--main-color);
  color: #fff;
}
.contact-showcase {
  margin-top: 50px;
}
.contact-showcase .grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
.contact-showcase .col-content {
  padding: 0 60px 0 0;
}
.contact-showcase img {
  width: 100%;
  display: flex;
}
.contact-showcase h3 {
  font-size: 30px;
  text-align: right;
}
.contact-showcase p {
  font-size: 18px;
  text-align: justify;
  width: 100%;
  padding: 10px;
}
@media (max-width: 992px) {
  .contact h2 {
    font-size: 40px;
  }
  .contact p {
    width: 90%;
  }
  .contact-showcase .grid-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-showcase .col-content {
    padding: 10px 30px;
  }
  .contact-showcase h3 {
    font-size: 24px;
    text-align: justify;
    padding-bottom: 20px;
  }
  .contact-showcase .col-content p {
    padding: 0 !important;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact .numbers-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px;
  text-align: center;
  color: #fff;
}
/* End Footer */

/* Start Sticky Button */
.sticky-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: var(--dark-color);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-button img {
  width: 60px;
  z-index: 20;
}
.sticky-button::before {
  content: "للأتصال بالخط الساخن";
  position: absolute;
  top: 20px;
  right: 45px;
  width: 120px;
  background-color: var(--dark-color);
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  padding: 0 10px;
  padding-right: 20px;
}
/* End Sticky Button */
