* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: Amiri Bold;
  src: url(../fonts/Amiri-Bold.ttf);
}

@font-face {
  font-family: Open Sans Regular;
  src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: Open Sans SemiBold;
  src: url(../fonts/OpenSans-SemiBold.ttf);
}

@font-face {
  font-family: Open Sans Bold;
  src: url(../fonts/OpenSans-Bold.ttf);
}

.amiri-regular {
  font-family: "Amiri Regular";
}

.amiri-bold {
  font-family: "Amiri Bold";
}

.open-sans-regular {
  font-family: "Open Sans Regular";
}

.open-sans-semibold {
  font-family: "Open Sans SemiBold";
}

.open-sans-bold {
  font-family: "Open Sans Bold";
}

:root {
  scroll-behavior: smooth;

  /* Brand Colors (Light Mode) */
  --primary-color: #0B5988;
  --primary-color-light: #2F759F;
  --secondary-color: #90C73E;
  --dark-gray-color: #6B7280;
  --light-gray-color: #F4F4F4;

  /* State Colors (Light Mode) */
  --success-color: #1ec173;
  --error-color: #dd3131;
  --disabled-color: #9ca3af;
  --glass-effect-color: #ffffff;
  --primary-background-color: #ddf2ff;
  --secondary-background-color: #ecffcf;

  /* Shades of Gray */
  --black-color: #1c1c1c;
  --gray-1-color: #252525;
  --gray-2-color: #2e2e2e;
  --gray-3-color: #585858;
  --gray-4-color: #828282;
  --gray-5-color: #ababab;
  --gray-6-color: #c0c0c0;
  --gray-7-color: #d5d5d5;
  --gray-8-color: #eaeaea;
  --white-color: #ffffff;
}

body {
  font-family: "Open Sans Regular";
  color: var(--gray-2-color);
  min-height: 100vh;
  max-width: 99.99vw;
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  
}

/* Hide scrollbar but allow scrolling */
p, span, h1, h2, h3, h4, h5, h6 {
  overflow: hidden;
}

*:not(.navbar) {
  -ms-overflow-style: none; /* For Internet Explorer, Edge */
  scrollbar-width: none; /* For Firefox */
  overflow-x:hidden;
}

*::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.navbar-nav-background {
    background-color: #F7F6F4;
}

/* Override Bootstrap's Accordion Styles */
.accordion-button {
    background-color: white !important;
    color: var(--black-color) !important;
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* adds the icon under the active link */
/* you can add an onClick event listener to the navbar links to add the active class to element and remove the previous active classes*/
.navbar-nav > .nav-item > .nav-link.active::after {
   position: absolute;
   content: "";
   width: 22px;
   height: 9px;
   background: url("../images/navbar/icn-carat-nav.svg") top center/cover no-repeat;
   top: 41px;
   left: calc(50% - 11px);
   z-index: 1001;
   transition: opacity 0.2s ease;
   opacity: 1;
}

.dropdown-menu {
   top: 60px;
   padding: 15px 40px;
   min-height: 455px;
   border-top: 1px solid #e8e9ee;
   box-shadow: 0 30px 30px 0 rgba(56, 46, 39, 0.2);
}

/* override bootstrap */
.nav-link {
   border: none !important;
}

.nav-tabs .nav-item > a {
   font-size: 14px;
   line-height: 21px;
   border-radius: 10px;
   padding: 7px 20px;
   margin: 5px 0px;
   position: relative;
   color: var(--black-color);
   font-family: "Open Sans SemiBold";
}

.nav-tabs .nav-item > .active {
    color: var(--primary-color);
    background-color: #F7F6F4;
}

.nav-tabs .nav-item > a:hover::after,
.nav-tabs .nav-item > a.active::after {
    position: absolute;
    content: "";
    display: block;
    width: 8px;
    height: 14px;
    background: url("../images/navbar/icn-carat-right-ui.svg");
    top: calc(50% - 7px);
    right: 15px;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.bg-F7F6F4 {
    background-color: #F7F6F4;
}

.height-screen-50 {
   height: 20vw;
}

.border-rad-12px {
   border-radius: 12px;
}


/* Animation Text */
.line {
  width: 40px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

/* Animation */
.anim-typewriter {
  animation: typewriter 4s steps(100) 5s 1 normal both, blinkTextCursor 500ms steps(100) infinite normal;
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 40px;
  }
}

@keyframes blinkTextCursor {
  from {
    border-right-color: rgba(255, 255, 255, 0.75);
  }

  to {
    border-right-color: transparent;
  }
}

.btn-animate {
  background: linear-gradient(-45deg,#5491b6, #0b5988,#5491b6, #0b5988,#5491b6, #0b5988);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#footer {
  margin-top: auto;
}

.header-margin {
  margin-top: 7.75rem;
  margin-bottom: 5rem;
}

.arr-footer-left {
  position: absolute;
  left: 8px;
  bottom: 8.663px
}

.arr-footer-right {
  position: absolute;
  right: 8px;
  bottom: 8.064px;
}

.hover-opacity-7 {
  transition: opacity 0.3s ease-in-out
}

.hover-opacity-7:hover {
  opacity: 0.7
}

.border-img {
  border: 2px solid #d5d5d550;
  border-bottom: none;
  border-top: none;
  border-left: none;
}

.arrow-margin {
  margin-left: 15vw;
}

/* Override Bootstrap btn hover */
.btn:hover {
  color: inherit;
}

.navbar-border {
  border-bottom: 1px solid var(--gray-7-color);
}

.custom-navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.custom-nav-link-text {
  /* font-family: "Open Sans Regular"; */
  font-weight: 400;
  color: var(--gray-3-color);
}

.contact-us-button {
  color: white;
  background-color: #165b87;
  border-radius: 6px;
  text-decoration: none;
  padding: 0.75rem 1rem 0.75rem 1rem;
}

.contact-us-text {
  /* font: */
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
}

.go-to-home-button {
  color: var(--white-color);
  background-color: var(--primary-color-light);
  border-radius: 6px;
  min-width: 143px;
  text-decoration: none;
  text-align: center;
}

.switch-lang-button-text {
  color: var(--dark-gray-color);
  /* font: Cairo */
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.button-hover-scale-effect {
    transition: transform 0.3s ease-in-out;
}

.button-hover-scale-effect:hover {
    transform: scale(1.1);
}

/* Override Bootstrap's default form-check-input */
.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
}

/* Override Bootstrap's default form-check-input */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.button-item {
  min-width: 0px;
  width: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.button-item-text {
    font-family: "Open Sans Bold" !important;
    font-weight: 600;
    color: var(--white-color);
}

.header-description {
  /* font-family: "Open Sans Regular"; */
  font-weight: 400;
  color: var(--gray-4-color);
}

/* Colors */
.bg-585858 {
  background-color: #585858;
}

.bg-2F759F {
  background-color: #2F759F;
}

.c-2F759F {
  color: #2F759F;
}

.c-585858 {
  color: #585858;
}

.c-6B7280 {
  color: #6b7280;
}

.c-0B5988 {
  color: #0b5988;
}
.c-828282 {
    color: #828282;
}
.c-2E2E2E {
    color: #2E2E2E;
}
.c-0B5988 {
    color: #0B5988;
}

/* Font Sizes */
.fs-64lg-42 {
    font-size: 42px !important;
}

.fs-54lg-42 {
  font-size: 42px;
}

.fs-42lg-32 {
  font-size: 32px;
}

.fs-36lg-24 {
  font-size: 24px;
}

.fs-24lg-20 {
  font-size: 20px;
}

.fs-24lg-18 {
  font-size: 18px;
}

.fs-24lg-16 {
  font-size: 16px;
}

.fs-18lg-16 {
  font-size: 16px;
}

.fs-18lg-14 {
  font-size: 14px;
}

.fs-20lg-16 {
  font-size: 16px;
}

.fs-16lg-14 {
  font-size: 14px;
}

.fs-14lg-12 {
  font-size: 12px;
}

.w-60lg-100 {
  width: 100%;
}

.fs-20 {
  font-size: 20px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.line-height-29lg-20 {
  line-height:20px;
}

.w-60lg-100 {
  width: 100%;
}

.start-75lg-90 {
  left: 90%;
}

/* Features Explanation */
.features-explanation {
  background-color: #f3e7d8;
}

.hr__gold {
  border-color: #cfb28e80;
  opacity: 1;
  border-width: 2px;
}

.arrow-postion {
  left: 56%;
}

.features-content {
  background: radial-gradient(circle at center, #d9cdbf50 20%, transparent 22%);
  background-size: 20px 20px;
}

.title-shadow {
  filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));
  /*  box-shadow: -1px 8px 19.700000762939453px 0px rgba(0, 0, 0, 0.25);*/
}
/*Statistics Section*/
.company-statistics {
  background-image: url("../images/statistics/statisticsBack.png");
  background-size: contain;
  background-color: #050506;
}

.stats-card {
  background-color: white;
  border-radius: 10px;
  border: 2.5px solid rgba(33, 57, 247, 1);
  border-style: solid;
  border-color: rgba(33, 57, 247, 1);
  box-shadow: 4px 4px 26px 0px rgba(255, 255, 255, 0.25);
  box-shadow: -8px -8px 26px 0px rgba(255, 255, 255, 0.25);
}

/* Contact Section */
.contact-sec__btn {
  color: #2e2e2e;
  line-height: 40px;
  padding: 0 3px;
  border-radius: 6px;
  font-size: 14px !important;
}

  .contact-sec__btn:hover {
    opacity: 0.9 !important;
  }

.form > div > div {
  border-radius: 6px;
  border: 1px solid #6b7280;
  padding: 10px;
  font-size: 12px;
}

form input,
form textarea {
  border: none !important;
  box-shadow: none;
  border-color: white;
}

form p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

form input:focus,
form textarea:focus {
  border: 0px solid !important;
  box-shadow: none !important;
}

.contact-sec button {
  padding: 12px 16px;
  color: white;
  background-color: #165b87;
  font-weight: 700;
  transition: opacity 0.3s ease-in-out;
}

  .contact-sec button:hover {
    opacity: 0.7;
    background-color: #165b87;
    color: white;
  }

.contact-back-img {
  aspect-ratio: 444/610;
}

.contact-locations > div {
  position: relative;
}

  .contact-locations > div:not(:last-child)::after {
    position: absolute;
    top: 100%;
    height: 0px;
    width: 0px;
  }

  .contact-locations > div:not(:last-child) {
    border-bottom: 2px solid #d5d5d5;
  }

form > div > div > div {
  border: 0.5px solid rgba(255, 255, 255, 0.75);
}

  form > div > div > div:has(:focus) {
    background: #ddf2ff;
    border: 0.5px solid #165b87;
    border-color: #6b7280;
  }

input:focus {
  background: #ddf2ff !important;
}

input:focus {
  color: #323335;
}

input::placeholder,
textarea::placeholder {
  color: #ababab;
  font-weight: 600;
  font-size: 14px;
}

.social-cards {
  bottom: 0%;
  backdrop-filter: blur(32px);
  width: 100%;
  padding: 12px
}

@media screen and (min-width: 768px) {
  .social-card {
    width: 67% !important;
    height: 30%;
  }

  h3 {
    font-size: 16px;
  }

  .px-24-18md-16 {
    font-size: 18px;
  }

  .img-padding {
    padding-bottom: 0;
  }

  .row-child__padding-64 > div {
    padding-bottom: 6.4rem;
  }

  .b-end {
    background-image: url("../images/next.webp");
  }

  .text-icon {
    padding: 16px 20px;
  }

  .icon-card-cont {
    width: 85%;
  }

  .contact-locations > div {
    position: relative;
  }


  .contact-locations__borders > div:not(:last-child)::after {
    left: 89%;
  }

  .contact-locations > div {
    position: relative;
  }

  .contact-locations > div:not(:last-child)::after {
    position: absolute;
    top: 0% !important;
    content: "";
    display: block;
    height: 100% !important;
    width: 3px !important;
    border-right: 3px solid #D5D5D5;
    border-bottom: none !important;
    padding: 0 13px;
    opacity: 0.25;
  }

    .contact-locations > div:not(:last-child) {
      border-bottom: none;
    }

  .contact-locations__borders > div:not(:last-child)::after {
    left: 89%;
  }

  .contact-locations-ar__borders > div:not(:last-child)::after {
    right: 94%;
  }

  .contact-locations {
    border-top: 3px #d5d5d550 solid;
  }

  .button-item {
    min-width: 11.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 991px) {
  .navbar-nav-background {
    background-color: #FFFFFF;
  }

  .px-22lg-18 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .px-24lg-18 {
    font-size: 24px;
  }

  .px-24-18md-16 {
    font-size: 24px;
  }

  .contact-locations > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

    .contact-locations > div > div {
      width: 97%;
      padding-bottom: 42px;
    }

    .contact-locations > div:not(:last-child)::after {
      top: 0% !important;
    }

  .contact-locations > div {
    border-bottom: none !important;
  }



  /* Font Sizes */
  .fs-64lg-42 {
    font-size: 64px !important;
  }

  .fs-54lg-42 {
    font-size: 54px;
  }

  .fs-42lg-32 {
    font-size: 42px;
  }

  .fs-36lg-24 {
    font-size: 36px;
  }

  .fs-24lg-16 {
    font-size: 24px;
  }

  .fs-24lg-18 {
    font-size: 24px;
  }

  .fs-24lg-20 {
    font-size: 24px;
  }

  .fs-20lg-16 {
    font-size: 20px;
  }

  .fs-18lg-16 {
    font-size: 18px;
  }

  .fs-18lg-14 {
    font-size: 18px;
  }

  .fs-16lg-14 {
    font-size: 16px;
  }

  .fs-14lg-12 {
    font-size: 14px;
  }

  .line-height-29lg-20 {
    line-height: 29px;
  }

  .w-60lg-100 {
    width: 100%;
  }

  .start-75lg-90 {
    left: 75%;
  }
}

@media screen and (min-width: 1200px) {
  .contact-locations {
    width: 70%;
  }

  .w-60lg-100 {
    width: 70%;
  }
}

