/* ============== Variables ===================== */
/* ============== Fonts ====================== */
@font-face {
  font-family: "GE SS Two";
  src: url(../fonts/ArbFONTS-GE_SS_Two_Light.otf);
  font-weight: 300;
}
@font-face {
  font-family: "GE SS Two";
  src: url(../fonts/ArbFONTS-GE_SS_Two_Medium.otf);
  font-weight: 400;
}
@font-face {
  font-family: "GE SS Two";
  src: url(../fonts/ArbFONTS-GE_SS_Two_Bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: "Zahra Arabic";
  src: url(../fonts/zahra.arabic.otf);
}
.zahra__font {
  font-family: "Zahra Arabic";
}

.yellow__color {
  color: #fdb927;
}

a.action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  background-color: #fdb927;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 3px;
}
a.action:hover {
  background-color: #c59326;
}

.desc__title {
  font-size: 18px;
  font-weight: 700;
  color: #ed2c28;
}

h2.main__title,
h3.main__title {
  font-size: 48px;
  font-weight: 700;
  color: #151745;
  line-height: 1.3;
  margin-top: 6px;
  margin-bottom: 12px;
}

@media (max-width: 1200px) {
  h2.main__title {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  h2.main__title {
    font-size: 28px;
  }
}
@media (max-width: 425px) {
  h2.main__title {
    font-size: 26px;
  }
}
@media (max-width: 399px) {
  h2.main__title {
    font-size: 24px;
  }
}

h3.main__title {
  font-size: 32px;
}
@media (max-width: 1200px) {
  h3.main__title {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  h3.main__title {
    font-size: 26px;
  }
}
@media (max-width: 425px) {
  h3.main__title {
    font-size: 24px;
  }
}
@media (max-width: 399px) {
  h3.main__title {
    font-size: 22px;
  }
}

.sec__title p {
  color: #5f5f5f;
  font-size: 14px;
}

.public__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  max-height: 30%;
  z-index: 2;
}

body {
  font-family: "GE SS Two";
  overflow-x: hidden;
  background-color: #fff;
}

/* ========== Navbar ============= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.navbar.scrolled .navbar-nav .nav-link {
  color: #3a3a3a;
}
.navbar.scrolled .navbar-nav .nav-link.active {
  color: #000;
}
.navbar.scrolled .navbar-toggler svg {
  fill: #151745 !important;
}
.navbar .navbar-brand img {
  max-width: 85px;
}
.navbar .navbar-toggler svg {
  fill: #fff !important;
}
.navbar .navbar-nav {
  gap: 16px;
}
@media (max-width: 992px) {
  .navbar .navbar-nav {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
  }
}
.navbar .navbar-nav .nav-link {
  color: #d4d4d4;
}
.navbar .navbar-nav .nav-link.active {
  color: #fff;
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-link.active {
    color: #000;
  }
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-link {
    color: #3a3a3a;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    font-size: 13px;
  }
}
.navbar .navbar__action {
  margin-right: 30px;
}
@media (max-width: 992px) {
  .navbar .navbar__action {
    display: none;
  }
}
.navbar .navbar__action a {
  padding: 14px 35px;
  width: 180px;
  height: 52px !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 3px;
  background-color: transparent;
  color: #fdb927;
  border: 1px solid #fdb927;
  transition: all 0.3s ease;
}
.navbar .navbar__action a:hover {
  background-color: #fdb927;
  color: #fff;
}

/* ================ Header =============== */
header {
  padding: 220px 0 160px;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../assets/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
header::after {
  content: "";
  background: linear-gradient(to bottom, rgba(21, 23, 69, 0.9098039216), rgba(21, 23, 69, 0.8784313725), rgba(21, 23, 69, 0.8));
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
header .container {
  position: relative;
  z-index: 3;
}
header main {
  color: #fff;
  text-align: center;
}
header main h1 {
  font-weight: 700;
  font-size: 85px;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 1400px) {
  header main h1 {
    font-size: 72px;
  }
}
@media (max-width: 1200px) {
  header main h1 {
    font-size: 65px;
  }
}
@media (max-width: 992px) {
  header main h1 {
    font-size: 50px;
  }
}
@media (max-width: 425px) {
  header main h1 {
    font-size: 38px;
  }
}
@media (max-width: 400px) {
  header main h1 {
    font-size: 36px;
  }
}
@media (max-width: 375px) {
  header main h1 {
    font-size: 34px;
  }
}
header main p {
  margin: 0;
  line-height: 1.7;
  color: #d4d4d4;
  font-size: 17px;
}
header main p:not(:last-of-type) {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  header main p {
    font-size: 15px;
  }
}
header main a {
  margin: 30px auto 0;
}

/* ========== About Us ============= */
.about__us {
  padding: 80px 0;
}
.about__us .row > div:first-of-type {
  order: 3;
  margin-top: 30px;
}
.about__us .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.about__us .img img {
  width: 100%;
  height: 100%;
}
.about__us .img .about__count {
  width: 35%;
  height: 25%;
  position: absolute;
  bottom: -1px;
  right: -1px;
  z-index: 2;
  border: 4px solid #fff;
  background-color: #fff;
  color: #151745;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  clip-path: polygon(28% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 30%);
}
.about__us .img .about__count span {
  font-size: 80px;
  font-weight: 900;
  margin-bottom: -25px;
}
.about__us .img .about__count p {
  font-size: 18px;
  text-transform: capitalize;
}
.about__us .about__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 30px;
}
.about__us .about__socials ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about__us .about__socials ul li {
  list-style: none;
}
.about__us .about__socials ul li a svg {
  width: 35px !important;
  height: auto !important;
}

/* ========== Services =============== */
.services {
  padding: 80px 0;
  background-image: url(../assets/pattern-tr.png);
  background-repeat: no-repeat;
  background-position: 100%;
}
.services .row {
  margin-top: 60px;
  row-gap: 30px;
}
.services .box {
  padding: 140px 15px 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.services .box.box-1 {
  background-image: url(../assets/services/service-1.jpg);
}
.services .box.box-1 .icon {
  background-color: #fdb927;
}
.services .box.box-2 {
  background-image: url(../assets/services/service-2.jpg);
}
.services .box.box-2 .icon {
  background-color: #ed2c28;
}
.services .box.box-3 {
  background-image: url(../assets/services/service-3.jpg);
}
.services .box.box-3 .icon {
  background-color: #fdb927;
}
.services .box.box-4 {
  background-image: url(../assets/services/service-4.jpg);
}
.services .box.box-4 .icon {
  background-color: #fdb927;
}
.services .box.box-5 {
  background-image: url(../assets/services/service-5.jpg);
}
.services .box.box-5 .icon {
  background-color: #ed2c28;
}
.services .box.box-6 {
  background-image: url(../assets/services/service-6.jpg);
}
.services .box.box-6 .icon {
  background-color: #fdb927;
}
.services .box.box-7 {
  background-image: url(../assets/services/service-7.jpg);
}
.services .box.box-7 .icon {
  background-color: #fdb927;
}
.services .box.box-8 {
  background-image: url(../assets/services/service-8.jpg);
}
.services .box.box-8 .icon {
  background-color: #ed2c28;
}
.services .box.box-9 {
  background-image: url(../assets/services/service-10.jpg);
}
.services .box.box-9 .icon {
  background-color: #fdb927;
}
.services .box:hover > .item {
  transform: translateY(0);
}
.services .item {
  padding: 30px 16px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform: translateY(-25px);
}
.services .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 6px;
  background-color: #fdb927;
  margin-bottom: 12px;
}
.services .item .icon svg {
  width: 35px;
}
.services .item h4 {
  font-size: 20px;
  font-weight: 700;
}
.services .item p {
  color: #5f5f5f;
  font-size: 14px;
}
.services .item a {
  font-size: 15px;
  font-weight: 500;
  color: #151745;
}

/* ========== Products ============== */
.products {
  padding: 100px 0 140px;
  background-color: #eaeaea;
  background-image: url(../assets/background.jpg);
  background-position: cover;
  background-attachment: fixed;
  position: relative;
}
.products .row {
  row-gap: 30px;
}
.products .main__title {
  color: #fff;
}
.products .sec__title p {
  color: #d4d4d4;
}
.products::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #0c0d2a;
  opacity: 0.95;
}
.products .container {
  position: relative;
  z-index: 10;
}
.products .row {
  margin-top: 60px;
}
.products .item {
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}
.products .item img {
  width: 100%;
  display: block;
}
.products .item .data {
  padding: 30px 16px 30px;
}
.products .item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 425px) {
  .products .item h4 {
    font-size: 18px;
  }
}
.products .item p {
  font-size: 14px;
  color: #5f5f5f;
}
.products .item a {
  margin: auto;
}

/* =========== Features =============== */
.features {
  padding: 80px 0;
}
.features .row {
  padding-top: 40px;
}
.features .item {
  padding: 30px 16px;
  border-radius: 6px;
  text-align: center;
}
.features .item h4 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.features .item p {
  font-size: 14px;
  line-height: 1.6;
  color: #5f5f5f;
}

/* ================= Vission =============== */
.vission {
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .vission .row > div:first-of-type {
    order: 3;
    margin-top: 30px;
  }
}
.vission p {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.6;
}
.vission .items {
  list-style: none;
  margin-top: 15px;
}
.vission .items li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vission .items li:not(:last-of-type) {
  margin-bottom: 16px;
}
.vission .items li h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.vission .items li p {
  font-size: 14px;
  margin: 0;
}
.vission .img {
  width: 100%;
}
.vission .img img {
  width: 100%;
}
.vission a.action {
  margin-top: 30px;
}

/* ==================== Our Client ===================== */
.our__clients {
  padding: 80px 0;
}
.our__clients .slider {
  margin-top: 60px;
}
.our__clients .slider .client__item {
  text-align: center;
}
.our__clients .slider .client__item img {
  width: 100%;
  aspect-ratio: 3/2;
  mix-blend-mode: color-burn;
  object-fit: contain;
}

/* ============ Footer =================*/
footer {
  padding: 12px 0;
  background-color: #000;
  color: #d4d4d4;
  text-align: center;
}
footer p {
  margin: 0;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp__fixed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999999;
}

/*# sourceMappingURL=style.css.map */
