:root {
  --primary-blue: #2c88b2;
  --shadow-blue: #1f5f7c;
  --primary-yellow: #f1cd53;
  --shadow-yellow: #b69a3d;
  --grey-color: #424242;
  /*  */
  --section-padding: 5em;
  /*  */
  --accent: 44 84% 64%;
  --accent-foreground: 220 10% 10%;
  --background: 195 35% 10%;
  --foreground: 0 0% 95%;
  --border: 195 20% 25%;
  --radius: 0.5rem;
  --gradient-hero: linear-gradient(
    145deg,
    hsl(195 35% 8%) 0%,
    hsl(197 61% 30%) 45%,
    hsl(0 0% 7%) 100%
  );
}

/* Start Header */

/* .header {
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid white;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
} */

.header .container .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Menu Icon Inside Header */

.header .container .inside .menu-icon {
  cursor: pointer;
  display: none;
}

.header .container .inside .menu-icon svg {
  color: white;
  width: 5em;
  height: 2em;
}

.header .container .inside .left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.header .container .inside .left img {
  width: 100px;
}

/* (Header)-> Start Language Toggle */
/* - - - - - - - - - - - - - - - -  */

.flipswitch {
  direction: ltr;
  position: relative;
  width: 100px;
}

.flipswitch input[type="checkbox"] {
  display: none;
}

.flipswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 41px;
  border: 1px solid white;
}

.flipswitch-inner {
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.flipswitch-inner:before,
.flipswitch-inner:after {
  float: left;
  width: 50%;
  height: 28px;
  padding: 0;
  line-height: 28px;
  color: white;
  font-weight: bold;
  font-size: 0.9em;
  box-sizing: border-box;
}

.flipswitch-inner:before {
  content: "العربية";
  padding-left: 10px;
  background-color: var(--shadow-blue);
  color: #ffffff;
}

.flipswitch-inner:after {
  content: "English";
  padding-right: 10px;
  background-color: var(--shadow-yellow);
  color: white;
  text-align: right;
}

.flipswitch-switch {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 78px;
  transition: all 0.3s ease-in 0s;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
  margin-left: 0;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
  right: 8px;
}

/* (Header):-> Start Right */

.header .container .inside .right {
  display: flex;
  gap: 2em;
  /*  */
  transition:
    opacity 0.3s,
    transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* .header .container .inside .right.show-menu {
  display: flex;
} */

.header .container .inside .right.show-menu {
  opacity: 1;
  transform: scaleY(1);
}

.header .container .inside .right ul {
  display: flex;
  align-items: center;
  gap: 2em;
}

@media (max-width: 767px) {
  .header .container .inside .right {
    position: absolute;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    /*  */
    top: calc(1em + 100%);
    flex-direction: column;
    width: 100%;
    padding: 1em;
    border-radius: 1em;
    /*  */
    background: linear-gradient(
      135deg,
      hsl(195 30% 14%) 0%,
      hsl(195 25% 10%) 100%
    );
    /*  */
  }

  .header .container .inside .right ul {
    flex-direction: column;
  }

  .header .container .inside .menu-icon {
    display: block;
  }
}

.header .container .inside .right ul li {
  color: hsl(0 0% 65%);
  cursor: pointer;
  transition: color 0.3s;
}

.header .container .inside .right ul li:hover {
  color: white;
}

.header .container .inside .right > a {
  border: none;
  outline: none;
  color: black;
  background-color: var(--primary-yellow);
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 0.9em;
  /*  */
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.header .container .inside .right > a:hover {
  background-color: var(--shadow-yellow);
  color: white;
}

/* End Header */

/* Start Hero Section */

.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  /*  */
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: -5em;
  right: -5em;
  top: -5em;
  bottom: -5em;
  /*  */
  background-image: url("../assets/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0.1;
  /*  */
  z-index: -1;
}

.hero-section .container .inside {
  text-align: center;
}

.hero-section .container .inside > .text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}

.hero-section .container .inside > .text h1 {
  text-align: center;
  margin: 0;
  color: white;
  font-size: 3em;
  line-height: 1;
}

.hero-section .container .inside > .text p {
  margin: 0 auto;
  color: hsl(0 0% 65%);
  max-width: 28em;
}

html[lang="ar"] .hero-section .container .inside > .text p {
  margin-top: 0.5em;
}

@media (max-width: 499px) {
  html[lang="ar"] .hero-section .container .inside > .text p {
    margin-top: 1.5em;
  }
}

.hero-section .container .inside > span {
  display: block;
  font-weight: bold;
  font-size: 2em;
  line-height: 1;
}

.hero-section .container .inside > span:first-of-type {
  color: white;
  margin-top: 1em;
}

.hero-section .container .inside > span:last-of-type {
  color: var(--shadow-yellow);
  margin-bottom: 1em;
}

html[lang="ar"] .hero-section .container .inside > span:last-of-type {
  line-height: 2;
}

.hero-section .container .inside > p {
  color: hsl(0 0% 65%);
  max-width: 40em;
  margin: 1em auto 2em;
}

.hero-section .container .inside > .buttons {
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

.hero-section .container .inside > .buttons a {
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 0.9em;
  /*  */
  cursor: pointer;
  min-width: 150px;
  /*  */
  transition: 0.3s;
}

.hero-section .container .inside > .buttons a:first-child {
  background-color: var(--primary-yellow);
  color: black;
}

.hero-section .container .inside > .buttons a:first-child:hover {
  background-color: var(--shadow-yellow);
  color: white;
}

.hero-section .container .inside > .buttons a:last-child {
  background-color: transparent;
  font-weight: normal;
  color: white;
  border: 1px solid var(--primary-blue);
}

.hero-section .container .inside > .buttons a:last-child:hover {
  background-color: var(--shadow-blue);
}

.hero-section .container .inside .down-scroller {
  display: block;
  width: 30px;
  height: 50px;
  border: 1px solid hsl(0 0% 65%);
  margin: 1.5em auto 0;
  border-radius: 100px;
  /*  */
  position: relative;
}

.hero-section .container .inside .down-scroller::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 20px;
  background-color: var(--primary-blue);
  border-radius: 1em;
  /*  */
  animation: updown 1s linear infinite;
}

@keyframes updown {
  0%,
  100% {
    transform: translate(-50%, 0px);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* End Hero Section */

/* Start About Us */
.about-us {
  padding: var(--section-padding) 0;
}

.about-us .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
}
/* End About Us */
/* --- --- --- */
/* Start What We Offer */
.scope {
  padding: var(--section-padding) 0;
}

.scope .scope-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em;
}
/* End What We Offer */
/* --- --- --- */
/* Start Our Services */
.our-services {
  padding: var(--section-padding) 0;
}

.our-services .services-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5em;
}
/* End Our Services */

/* Start Business Key Benefits */
.business-benefits {
  padding: var(--section-padding) 0;
}

.business-benefits .business-benefits-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5em;
}
/* End Business Key Benefits */

/* Start Why Us */
.why-us {
  padding: var(--section-padding) 0;
}

.why-us .why-us-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 1.5em;
}

@media (max-width: 560px) {
  .why-us .why-us-content {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.why-us .stats {
  /* display: flex; */
}

.why-us .stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5em;
  margin-bottom: 3em;
}

.why-us .stats .box {
  background-color: rgba(0, 0, 0, 0.335);

  border-radius: 10px;
  padding: 25px;
}

.why-us .stats .box span {
  display: block;
  text-align: center;
}

.why-us .stats .box span.number {
  font-weight: bold;
  font-size: 2.25em;
  color: var(--primary-yellow);
  margin-bottom: 5px;
}

.why-us .stats .box span.title {
  color: hsl(0 0% 65%);
}

/* End Why Us */

/* Start Footer */

.footer {
  border-top: 1px solid hsla(0, 0%, 65%, 0.3);
}

.footer .container .inside {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  padding: 1em 0;
}

.footer .container .inside .top img {
  width: 100px;
}

.footer .container .inside .top p.phone-number span {
  direction: ltr;
}

.footer .container .inside p,
.footer .container .inside .bottom {
  color: hsl(0 0% 65%);
  margin: 0;
}

.footer .container .inside .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1em;
}

.footer .container .inside .top p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  min-width: 280px;
}

.footer .container .inside .top p svg {
  color: var(--primary-blue);
  background-color: #2c88b236;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .footer .container .inside .top {
    flex-direction: column;
    gap: 1em;
  }
}

.footer .container .inside .bottom {
  text-align: center;
  padding-top: 1em;
  border-top: 1px solid hsla(0, 0%, 65%, 0.3);
}

/* End Footer */
