body {
  font-family: "Noto Kufi Arabic", sans-serif;
}

:root {
  --maincolor: #ffb62b;
  --white: #ffffff;
  --darkmaincolor: #6a3800;
  --lightcolor: #ffc37c;
}
.darkmaincolor {
  background-color: var(--darkmaincolor);
  color: white;
}
.lightmaincolor {
  color: var(--lightcolor);
}
.maincolor {
  color: white;
  background-color: var(--maincolor);
}
.bgmain {
  color: white;
  background-color: var(--maincolor);
}
.maincolor:hover {
  color: white;
  background-color: var(--darkmaincolor);
}
.textmaincolor {
  color: var(--maincolor);
}
#project {
  background-image: url("images/hp2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax {
  /* The image used */
  background-image: url("images/main.webp");
  position: relative;
  /* top: -80px; */
  /* margin-top: -100px; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.parallax2 {
  /* The image used */
  background-image: url("images/gold.webp");
  position: relative;
  /* top: -80px; */
  /* margin-top: -100px; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.trans {
  opacity: 1;
  animation: 1s ease-in both;
}

@keyframes fadeIn {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

#navbar {
  transition: 0.9s;
}

#navbar1 {
  transition: 0.9s;
}

.parallax-section {
  overflow-y: scroll;
  /* margin-top: -100px; */
  scroll-snap-type: y mandatory;
  background-image: url("/images/hp.jpg");
}

.sticky-menu {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: rgb(22, 22, 22);
  color: white;
  .logo {
    width: 50px;
  }

  a,
  button {
    font-size: 12px;
    transition: 0.5s;
  }

  .navbar {
    padding: 5px;
    transition: 0.5s;
  }
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.logo {
  width: 75px;
  transition: 0.9s;
}

.typeText::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.typing-container {
  display: flex;
  justify-content: center;
  align-items: center;

  #feature-text {
    margin-left: 8px;
  }

  .input-cursor {
    display: inline-block;
    width: 2px;
    height: 42px;
    background-color: white;
    margin-left: 8px;
    animation: blink 0.6s linear infinite alternate;
  }
}

.topbaricon {
  color: rgb(137, 137, 137);
}

.topbaricon:hover {
  color: var(--maincolor);
}

.service-icon {
  font-size: 75px;
  color: rgb(24, 24, 24);
}
.imglarger {
  width: 100%;
}
.imglarger:hover {
  width: 125%;
}
#company {
  position: relative;
  z-index: -1;
  background-image: url(images/main.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
