@font-face {
  font-family: "Beiruti";
  src: url("/assets/fonts/Beiruti-VariableFont_wght.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Didot";
  src: url("/assets/fonts/Didot.otf");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-VariableFont_wght.ttf");
  font-display: swap;
}

:root {
  --main-color: #5DB93D;
  --secondery-color: #0A0B5B;
  --third-color: #5FCE80;
  --text-color: #747975;
  --lists-color: #1C592F;
  --section-bg: #F2F6F9;
  --footer-bg: #0A152F;
  --section-padding: 3rem;
}


/* @media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
} */

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-display: swap;
}

html[lang='en'] *:not(i) {
  font-family: "Montserrat", sans-serif;
  direction: ltr;
  font-weight: 600;
}

html[lang='ar'] *:not(i) {
  direction: rtl;
  font-family: "Beiruti", sans-serif;
  font-weight: 500;
}

*:focus {
  outline: none !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html,
body {
  width: 100%;
  /* height: 100%; */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  /* height: 100vh; */
}

section {
  width: 100%;
  position: relative;
  margin-top: var(--section-padding);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

html[lang='en'] h1,
html[lang='en'] h1 *,
html[lang='en'] h2,
html[lang='en'] h2 *,
html[lang='en'] h3,
html[lang='en'] h3 *,
html[lang='en'] h4,
html[lang='en'] h4 *,
html[lang='en'] h5,
html[lang='en'] h5 *,
html[lang='en'] h6,
html[lang='en'] h6 *,
section.main-section .section-subtitle {
  font-family: "Didot", sans-serif;
  font-weight: bold;
}

html[lang='ar'] h1,
html[lang='ar'] h2,
html[lang='ar'] h3,
html[lang='ar'] h4,
html[lang='ar'] h5,
html[lang='ar'] h6 {
  font-family: "Beiruti", sans-serif;
  font-weight: 600;
}

button {
  padding: 0;
  border: none;
}

button:focus {
  outline: none;
}

/* ========== Strat global Styles ========== */
.section-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Small devices ≥576px */
@media (min-width: 576px) {
  .section-container {
    width: 96%;
  }
}

/* Medium devices ≥768px */
@media (min-width: 768px) {
  .section-container {
    width: 94%;
  }
}

/* Large devices ≥992px */
@media (min-width: 992px) {
  .section-container {
    width: 93%;
  }
}

/* Extra large devices ≥1200px */
@media (min-width: 1200px) {
  .section-container {
    width: 92%;
  }
}

/* XXL devices ≥1400px */
@media (min-width: 1400px) {
  .section-container {
    width: 92%;
    max-width: 1320px;
  }
}

.desktop-img {
  display: none;
}

.mobile-lang {
  display: none !important;
}


@media (min-width: 992px) {
  .mobile-img {
    display: none;
  }

  .desktop-img {
    display: block;
  }
}

@media (max-width: 1024px) {
  .mobile-lang {
    display: flex !important;
  }

  .desktop-lang {
    display: none !important;
  }
}

.alpha-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(90deg, #022A44 0%, #0569AA 100%);
  border-radius: 3rem;
  color: #ffffff;
  padding: .2rem .5rem;
  margin-top: 2rem;
}

html[lang='ar'] .alpha-btn {
  font-size: 1.375rem;
}

.alpha-btn img {
  width: 21%;
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== Strat Main section ========== */
.main {
  -webkit-overflow-scrolling: touch;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* overflow: hidden; */
  /* overflow-y: auto; */
}

/* ========== Strat Header ========== */
header {
  /* position: absolute; */
  position: fixed;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  top: 0;
  right: 0;
  z-index: 9;
  background: #fff;
}

header .main-logo img {
  width: 70px;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 3rem;
  transition: all 0.5s ease;
}

header .navbar__menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  header .navbar__menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: calc(100vh - 78px);
    background-color: #f5f5f5;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1rem;
    transition: all 0.5s ease;
    z-index: 9999;
  }

  header .navbar__menu.right-open {
    right: 0;
  }
}

header .navbar__list {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  header .navbar__list {
    flex-direction: column;
    flex-grow: 0;
    width: 100%;
  }
    header .navbar__list li {
      border-bottom: 1px solid #ddd;
      padding: .2rem .5rem;
      transition: background-color 0.3s ease;
    }
        header .navbar__list li:hover {
      background-color: #ccc;
        }
}

header .navbar__list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.5s ease;
  color: var(--main-color);
}

html[lang='ar'] header .navbar__list li a {
  font-size: 1.3rem;
}

header .navbar__list li a i {
  font-size: 1.1rem;
}

header .navbar__list li a:hover {
  color: #349911;
}

header .navbar__list li .arrow {
  transition: 0.3s ease;
}

header .navbar__list li .arrow.up {
  transform: rotate(180deg);
}

header .navbar__list-drop {
  display: inline-block;
  position: relative;
}

header .navbar__list-drop-menu {
  display: none;
  position: absolute;
  margin-top: 1rem;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: red;
  border-radius: 1rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
  z-index: 999;
}

@media screen and (max-width: 1024px) {
  header .navbar__list-drop-menu {
    position: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }
}

header .navbar__list-drop-menu.open {
  display: flex;
}

header .navbar__list-drop-menu.features {
  right: 0;
}

header .navbar__buttons {
  display: flex;
  align-items: center;
  gap: .5rem;
}

header .header-lang {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
  border-radius: 8px;
  user-select: none;
  background: #f2f2f2;
  font-size: 13px;
}

header .header-lang i {
  color: var(--main-color);
}

@media screen and (max-width: 1024px) {
  header .navbar__buttons {
    width: 100%;
    flex-direction: column;
  }
}

/* header .navbar__buttons a {
  color: var(--main-color);
  font-weight: 500;
  transition: 0.3s ease;
}

header .navbar__buttons a:hover {
  color: #349911;
} */

header .alpha-btn {
  background: var(--main-color);
}

/* header .navbar__buttons-register {
  width: 100%;
  font-weight: 500;
  color: var(--main-color);
  padding: 0.8rem 1.5rem;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 1rem;
  transition: 0.3s ease;
}

header .navbar__buttons-register:hover {
  border: 2px solid #349911;
  color: #349911;
} */

header .navbar .demo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .navbar .menu {
  display: none;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  header .navbar .menu {
    display: block;
  }
}

header .navbar .menu span {
  display: block;
  width: 22px;
  height: 4px;
  background: #000000;
  margin-bottom: 2px;
  border-radius: 1px;
  transition: all 275ms ease;
}

header .navbar .menu.active {
  transform: rotate(-45deg);
}

header .navbar .menu.active .bar1 {
  transform: rotate(0deg) translateY(6px);
}

header .navbar .menu.active .bar2 {
  opacity: 0;
}

header .navbar .menu.active .bar3 {
  transform: rotate(-90deg) translateX(5px);
}


/* ========== Strat hero ========== */
section.hero {
  padding: 0px;
  margin: 0px;
}

section.hero .logo-arrow {
  position: absolute;
  right: 13%;
  bottom: -17%;
  z-index: 1;
  /* rotate: 231deg; */
  width: 15%;
}

section.hero .landing .content {
  position: absolute;
  right: 4%;
  top: 22%;
  z-index: 1;
  width: 38%;
  color: #fff;
}

section.hero .landing .content h1 span {
  color: gold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

section.hero .landing .content p {
  font-size: 1.2rem;
}

@media (min-width: 993px) and (max-width:1100px) {
  section.hero .landing .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

section.hero .landing img.laning-bg {
  width: 100%;
}

section.hero .landing img.rebirth-products {
  position: absolute;
  left: 7%;
  bottom: 0%;
  width: 45%;
  /* width: 46.5%; */
  z-index: 1;
}

@media screen and (max-width:768px) {
  section.hero .landing img.rebirth-products {
    display: block !important;
    bottom: 0;
    width: 47%;
    transform: translateY(15%);
  }

}

/* section.hero .landing img.alpha-logo {
  position: absolute;
  right: 11%;
  bottom: 0%;
  width: 33%;
  z-index: 1;
} */



@media (max-width: 992px) {
  header .main-logo img {
    width: 60px;
  }

  section.hero .landing {
    height: 80vh;
    background: url('/assets/img/landing-mobile-bg.webp') center/cover no-repeat;
  }

  section.hero .landing .content {
    width: 90%;
    max-width: 600px;
    margin-top: 44px;
    top: 50%;
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  section.hero .landing img.rebirth-products,
  section.hero .landing img.laning-bg,
  section.hero .logo-arrow {
    display: none;
  }
}


@media (min-width: 471px) and (max-width: 992px) {
  section.hero .landing img.rebirth-products {
    display: none !important;
  }
}

/* ========== Strat alpha-features ========== */

section.alpha-features .content {
  display: flex;
  flex-direction: column-reverse;
  padding: 0px !important;
  gap: 0px 1rem;
}

section.alpha-features .content .item {
  position: relative;
  width: 80%;
}

@media (max-width: 767px) {
  section.alpha-features .content .item:not(:last-of-type) {
    margin-top: -11%;
  }
}

section.alpha-features .content .item:nth-of-type(even) {
  margin-right: auto;
}

section.alpha-features .content .item .main-img {
  width: 100%;
  object-fit: cover;
}

section.alpha-features .content .item .info-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem 1rem;
  color: #ffffff;
}

html[lang="ar"] section.alpha-features .content .item .info-text {
  font-size: 1.3rem;
}

section.alpha-features .content .item .info-text img {
  width: 27%;
}

@media (max-width: 767px) {
  section.alpha-features .content {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  section.alpha-features .content {
    flex-direction: row;
    align-items: center;
  }

  section.alpha-features .content .item {
    width: 25%;
  }

  section.alpha-features .content .item .main-img {
    width: 100%;
    object-fit: cover;
  }

}

@media (min-width: 1200px) {
  section.alpha-features .content {
    width: 88%;
  }
}

/* ========== Strat main-section ========== */
section.main-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem 1rem;
}

section.main-section .section-content.c-reverse {
  flex-direction: column-reverse;
}

section.main-section .section-text {
  width: 100%;
}

section.main-section .section-subtitle {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

section.main-section .section-subtitle img {
  width: 1%;
}

section.main-section .section-text .section-title {
  margin-bottom: 1.5rem;
  color: var(--secondery-color);
}

html[lang='ar'] section.main-section .section-text .section-title {
  font-size: 2.5rem;
}

section.main-section .section-text .section-title span.item1 {
  color: var(--third-color);
}

section.main-section .section-text .section-title span.item2 {
  color: var(--main-color);
}

section.main-section .section-text .text {
  color: var(--text-color);
  margin-bottom: 1.4rem;
  /* line-height: 1.8; */
}

html[lang='ar'] section.main-section .section-text .text {
  font-size: 1.5rem;
}

/* html[lang='en'] section.main-section .section-text .text {
  line-height: 1.7;
} */

section.main-section .section-text .section-ul li {
  color: var(--main-color);
  position: relative;
  padding-right: 25px;
  color: var(--secondery-color);
  transition: transform 0.5s ease;
}

html[lang='ar'] section.main-section .section-text .section-ul li {
  font-size: 1.275rem;
}

html[lang='en'] section.main-section .section-text .section-ul li {
  padding-right: 0px;
  padding-left: 25px;
}

section.main-section .section-text .section-ul li span {
  font-size: 1.5rem;
}

section.main-section .section-text .section-ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}

section.main-section .section-text .section-ul li::after {
  content: "";
  position: absolute;
  top: 13%;
  right: 0;
  /* transform: translateY(-50%); */
  width: 20px;
  height: 20px;
  background: url("/assets/icons/lists-arrow.png") center/cover no-repeat;
}

html[lang='en'] section.main-section .section-text .section-ul li::after {
  left: 0;
  right: unset;
  transform: scale(-1);
}

section.main-section .section-ul li.active {
  transform: translateX(-10px);
  color: #1B3E8F;
}



section.main-section .section-img {
  width: 90%;
}

section.main-section .section-img img {
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  section.main-section .section-text {
    width: 80%;
  }

  section.main-section .section-img {
    width: 70%;
  }
}

@media (min-width: 992px) {

  section.main-section .section-content,
  section.main-section .section-content.c-reverse {
    flex-direction: row;
    justify-content: space-between;
  }

  html[lang='en'] section.main-section.alpha-delivery,
  html[lang='en'] section.main-section.alpha-delivery * {
    direction: rtl;
  }


  section.main-section .section-text,
  section.main-section .section-img {
    width: 48%;
  }

  section.main-section .section-text .section-title {
    font-size: 3.15rem;
  }
}



/* ========== Strat alpha-delivery ========== */
section.alpha-delivery .section-img {
  /* min-height: 518px; */
}

html[lang='en'] section.main-section.alpha-delivery .section-text .section-ul li::after {
  display: none;
}

/* section.alpha-delivery .section-img img:not(:last-of-type){ */
section.alpha-delivery .section-img img {
  position: absolute;
  max-width: 100%;
  height: auto;
  /* z-index: 1; */
  transition: all 1s ease-in-out;
  /* opacity: 0;  */
}

/* section.alpha-delivery .section-img img.show{
  opacity: 1; 
} */
section.alpha-delivery .section-img .bottom-img {
  bottom: -100%;
  right: 2%;
  /* width: 265px; */
  width: 36%;
  transition: bottom 1s ease-in-out;
}

section.alpha-delivery .section-img .center-img {
  position: relative;
  bottom: -1%;
  left: -100%;
  /* width: 426px; */
  width: 70.5%;
}

section.alpha-delivery .section-img .left-img {
  /* width: 255px; */
  width: 42.3%;
  left: -100%;
  z-index: 2;
}

section.alpha-delivery .section-img .left-top {
  top: 12%;
}

section.alpha-delivery .section-img .left-center {
  top: 28%;
}

section.alpha-delivery .section-img .left-bottom {
  /* width: 274px; */
  width: 45.4%;
  top: 43%;
}

section.alpha-delivery .section-img .bottom-img.show {
  bottom: 2%;
}

section.alpha-delivery .section-img .center-img.show {
  /* left: 20%; */
  left: -10%;
  transition-delay: 0.2s;
}

section.alpha-delivery .section-img .left-top.show {
  left: 17%;
  transition-delay: 0.4s;

}

section.alpha-delivery .section-img .left-center.show {
  left: 10%;
  transition-delay: 0.6s;

}

section.alpha-delivery .section-img .left-bottom.show {
  left: 0%;
  transition-delay: 0.8s;
  /* transition-delay: 1s; */

}


/* ========== Strat section-ingredients ========== */


section.section-ingredients .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  text-align: center;
  gap: 1rem;
}

section.section-ingredients .content .part {
  display: flex;
  flex-direction: column;
  gap: 2rem 1rem;
}

section.section-ingredients .content .part.left-part {
  text-align: left;
}

section.section-ingredients .content .part.left-part .item {
  justify-content: flex-end;
}

html[lang="en"] section.section-ingredients .content .part.left-part .item .text,
html[lang="ar"] section.section-ingredients .content .part.right-part .item .text {
  text-align: right;
}

html[lang="en"] section.section-ingredients .content .part.right-part .item .text,
html[lang="ar"] section.section-ingredients .content .part.left-part .item .text {
  text-align: left;
}


section.section-ingredients .content .part .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

section.section-ingredients .content .part .item img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
}

section.section-ingredients .content .part .item .text .title {
  color: var(--main-color);
  font-size: 1.4rem;
}

section.section-ingredients .content .part .item .text .desc {
  color: var(--text-color);
}

html[lang='ar'] section.section-ingredients .content .part .item .text .desc {
  font-size: 1.2rem;
}

section.section-ingredients .content .main-img img {
  width: 100%;
  object-fit: cover;
}


@media (max-width: 991px) {
  section.section-ingredients .content .main-img {
    grid-column: 1 / -1;
    order: -1;
  }

  section.section-ingredients .content .part.left-part .item {
    flex-direction: column-reverse;
    text-align: center;
  }

  section.section-ingredients .content .part.right-part .item {
    text-align: center;
    flex-direction: column;
  }

  section.section-ingredients .content .part .item .text {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  section.section-ingredients .content {
    display: grid;
    grid-template-columns: 1fr 460px 1fr;
    align-items: center;
  }

}




/* ========== Strat section-discount ========== */
section.section-discount {
  margin-top: 13rem;
}

section.section-discount.section-agents {
  margin-top: 9rem;
}

html[lang='en'] section.section-discount,
html[lang='en'] section.section-discount * {
  direction: rtl !important;
}

section.section-discount .section-content {
  background-color: var(--section-bg);
  border-radius: 2rem;
  box-shadow: 0px 3.76px 3.76px rgba(0, 0, 0, 0.25);
}



section.section-discount .section-content .i-arrow {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: 9%;
}

section.section-discount .section-content .section-text .section-title {
  margin-bottom: 1rem;
}

section.section-discount .section-content .section-text .text {
  color: #4D4D4D;
  line-height: 1.5;
}


@media (max-width: 991px) {
  section.section-discount .section-content {
    gap: 0px;
    padding: 1rem;
  }

  section.section-discount .section-content .section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  section.section-discount .section-content .section-img .mobile-img {
    margin-top: -162px;
  }

  section.section-discount.section-agents .section-content .section-img .mobile-img {
    margin-top: -100px;
  }

  section.section-discount .section-content .i-arrow {
    bottom: 4%;
    left: 11%;
  }

  section.section-discount .section-content {
    flex-direction: column-reverse;
  }

  section.section-discount .section-content .fiducsa-icon {
    width: 40%;
    margin: .5rem 0px;
  }
}

@media (min-width: 992px) {
  section.section-discount .section-content .section-text {
    padding: 2rem 1rem 2rem 0px;
  }

  section.section-discount .section-content .section-text .section-title {
    font-size: 2.9rem;
  }

  section.section-discount .section-content .section-text .text {
    font-size: 1.3rem;
  }

  /* section.section-discount .section-content .section-img img { */
  section.section-discount .section-content>img {
    position: absolute;
    /* width: 131%; */
    width: 59%;
    /* top: 0%; */
    /* bottom: 0%; */
    /* bottom: -12%; */
    bottom: 0px;
    left: -3%;
    /* transform: translateY(-24.99%); */
  }

  html[lang='en'] section.section-discount .section-content>img {
    bottom: -9%;
  }

  section.section-agents .section-content>img {
    width: 34%;
    bottom: -10px;
    left: 3%;
  }

  section.section-discount .section-content .fiducsa-icon {
    position: absolute;
    top: 22%;
    left: 46%;
    width: 17.7%;
  }

  section.section-discount .section-content .section-img {
    align-self: flex-start;
  }

}


/* ========== Strat section-questions ========== */
section.section-questions {
  margin-bottom: var(--section-padding);
}

@media (min-width: 1200px) {
  section.section-questions .section-img {
    width: 34%;
  }

  section.section-questions .section-text {
    width: 60%;
  }
}

/* FAQ Styles */
section.section-questions .faq {
  margin-top: 2rem;
}

section.section-questions .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  margin-bottom: .5rem;
}

section.section-questions .faq-item.active {
  background-color: var(--section-bg);
  padding: 1rem;
  border-radius: 1rem;
  /* color: #ffffff; */
}

section.section-questions .faq-item.active * {
  width: 100%;
}

@media (min-width: 576px) {
  section.section-questions .faq-item.active * {
    width: 80%;
  }
}

section.section-questions .faq-item.active h3 {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0px;
  padding-bottom: .6rem;
}

section.section-questions .faq-question {
  font-size: 1.65rem;
  /* font-weight: bold; */
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  color: var(--secondery-color);
}

section.section-questions .faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

section.section-questions .faq-item.active .faq-question::after {
  content: "-";
}

section.section-questions .faq-answer {
  display: none;
  margin-top: .5rem;
  color: #4D4D4D;
  line-height: 1.7;
  font-size: 1.3rem;
}


/* ========== Strat Footer ========== */
.site-footer {
  width: 100%;
  background: #1c243b url('/assets/img/footer-bg.webp') center/cover no-repeat;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html[lang='ar'] .site-footer {
  font-size: 1.3rem;
}

.footer-container {
  width: 95%;
  margin: 0px auto;
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  /* grid-template-columns: 1fr auto auto auto auto; */
  /* grid-template-columns: auto auto auto auto auto; */
  grid-template-columns: 300px auto auto auto auto;
  /* grid-template-columns: 300px 1fr 1fr 1fr 1fr; */
  gap: 2rem;
}

.footer-container li a {
  color: #ffffff;
}

.footer-container li:hover a {
  color: var(--main-color);
}

.footer-logo {
  width: 48%;
  margin-bottom: 1rem;
}

.footer-item .title {
  font-weight: 600;
  margin-bottom: 1rem;
}

html[lang='ar'] .footer-item .title {
  font-size: 1.9rem;
}

html[lang='en'] .footer-item .title {
  font-size: 1.2rem;
}

.footer-links li,
.footer-contact li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-right: 1.2rem;
}

html[lang='en'] .footer-links li,
html[lang='en'] .footer-contact li {
  padding-right: 0rem;
  padding-left: 1.2rem;
}

.footer-map .map-text span:first-of-type {
  padding-right: 1.2rem;
  position: relative;
}

html[lang='en'] .footer-map .map-text span:first-of-type {
  padding-right: 0rem;
  padding-left: 1.2rem;
}

.footer-links li::before,
.footer-map .map-text span:first-of-type::after {
  content: "•";
  position: absolute;
  right: 0;
  color: #fff;
}

html[lang='en'] .footer-links li::before,
html[lang='en'] .footer-map .map-text span:first-of-type::after {
  right: unset;
  left: 0;
}

.footer-social li {
  margin-bottom: 1.5rem;
}

.footer-social i,
.footer-contact i {
  margin-right: 0.5rem;
  color: #fff;
  background: var(--main-color);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
}

/* Map تحت لوحده */
.footer-map {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;

}

.footer-map img {
  width: 27%;
  margin-bottom: 0.8rem;
}

.footer-map .map-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


@media (min-width: 1114px) {
  .footer-map {
    /* transform: translate(-5%, -38%); */
    margin-left: -15%;
    margin-top: -4%;
  }

  .site-footer {
    padding-bottom: 1rem;
  }
}

.footer-item {
  text-align: right;
}

html[lang='en'] .footer-item {
  text-align: left;
}

.footer-item.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.footer-item.footer-brand .title,
.footer-item .title {
  color: var(--main-color);
}

html[lang='ar'] .footer-item.footer-brand .title {
  font-size: 2.32rem;
}

.footer-item.footer-brand .desc {
  font-size: 1rem;
  max-width: 268px;
}



.footer-social li a,
.footer-contact li a {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links li,
  .footer-contact li {
    padding-left: 0;
  }

  .footer-links li::before {
    display: none;
  }
}

footer .footer-credits {
  margin-top: .5rem;
}

footer .tree {
  color: #eb1529;
}

footer .tree img {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 40px;
  transform: translateX(-50%) scale(0);
  transition: transform .4s ease-in-out;
}

footer .tree:hover img {
  transform: translateX(-50%) scale(1) rotate(360deg);
}



/* start section contact */
section.contact-us * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section.contact-us {
  direction: rtl;
}
@media (min-width: 768px) {
  section.contact-us {
    padding: 40px 20px;
  }
  
}

section.contact-us .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  min-height: 600px;
}

section.contact-us .contact-info {
  /* background: linear-gradient(135deg, #00d4aa, #00b894); */
  /* background: var(--section-bg); */
  flex: 1;
  padding: 60px 40px;
  color: #fff;
  position: relative;
  background: url('/assets/img/closeup-hand-writing-note-while-phone.jpg') center/cover no-repeat;
}

section.contact-us .contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* right: 0; */
  /* bottom: 0; */
  /* opacity: 0.3; */
  width: 100%;
  height: 100%;
  /* z-index: 3333333333333333333; */
  background: #0000003d;
  pointer-events: none;
}

section.contact-us .contact-info>* {
  position: relative;
  z-index: 1;
}

section.contact-us .contact-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

section.contact-us .contact-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
}

section.contact-us .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  font-size: 1.1rem;
}

section.contact-us .contact-icon {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

section.contact-us .contact-text {
  line-height: 1.5;
}

section.contact-us .contact-form {
  flex: 1.2;
  /* padding: 60px 50px; */
  padding: 2rem;
  background: white;
}

section.contact-us .form-title {
  font-size: 2.2rem;
  color: #2d3436;
  margin-bottom: 40px;
  font-weight: 400;
}

section.contact-us .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

section.contact-us .form-group {
  flex: 1;
}

section.contact-us .form-group.full-width {
  width: 100%;
}

section.contact-us .form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #636e72;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section.contact-us .form-input,
section.contact-us .form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: #2d3436;
}

section.contact-us .form-input:focus,
section.contact-us .form-textarea:focus {
  outline: none;
  border-color: #00d4aa;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

section.contact-us .form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

section.contact-us .submit-btn {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

section.contact-us .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

section.contact-us .submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  section.contact-us .contact-container {
    flex-direction: column;
    margin: 20px;
  }

  section.contact-us .contact-info,
  section.contact-us .contact-form {
    padding: 40px 30px;
  }

  section.contact-us .form-row {
    flex-direction: column;
    gap: 0;
  }

  section.contact-us .contact-title {
    font-size: 2rem;
  }

  section.contact-us .form-title {
    font-size: 1.8rem;
  }
}

/* Animation */
section.contact-us .contact-container {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* start alpha-formula */
section.main-section.alpha-formula .section-img {
  width: 42%;
}

@media (max-width: 576px) {
  section.main-section.alpha-formula .section-img {
    width: 90%;
  }
}

section.main-section.alpha-formula .section-text {
  flex: 1;
}

.alpha-formula li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0px !important;
}

.alpha-formula li .li-icon {
  display: flex;
  flex-direction: column;
  flex: 1;
}

section.main-section.alpha-formula .section-text .section-ul li::after {
  display: none;
}

section.main-section.alpha-formula .section-text .section-ul li .box-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebebeb;
}

section.main-section.alpha-formula .section-text .section-ul li .box-icon img {
  width: 35px;
  height: 35px;
}


.alpha-logo {
  display: block;
  width: 35%;
  margin: 0px auto;
}