@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@100;200;300;500;700;900&family=IBM+Plex+Sans+Arabic:wght@100;200;300;500;700&display=swap");

/* CSS Codes */
*{
	margin: 0 auto;
    text-align: center;
    font-family: 'Cairo', sans-serif ;
    font-weight: 300;
    position: relative;
}

.no-touch-scroll {
  touch-action: none;
}


body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: fit-content;
  min-height: 100vh;
  max-height: fit-content;

  --MainColor: #000 ;
  --MainColorTrans: #000000de ;
  --SecoundColor: #8e7e40 ;
  --SecoundColorTrans: #8e7e40de ;
  --TextColor: #fff ;
  --WhiteTrans: #ffffffd3 ;
  --SecoundTextColor: #000 ;
}

/* Scroll Style */
::-webkit-scrollbar{
  width: 10px;
  background-color: var(--MainColor);
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 15px;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100vh;
}


video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}


/* First Page Style */
.firstPage{
  position: relative;
  max-width: 100%;
  min-height: 100vh;
  max-height: fit-content;
  background-color: var(--MainColor);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0px;
  overflow: hidden;
}
/* Header Style */
.headerLinear{
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding: 0;
  margin: 0;
}

/* Menu Codes */
a{
  font-size: 16px;
  text-decoration: none;
  color: var(--TextColor);
}

.nav_links{
  list-style: none;
  transition: all 0.3s ease-in-out;
}

.nav_links li{
  display: inline-block;
  padding: 0px 20px;
  width: max-content;
  background-color: transparent;
  margin: 0px 5px;
  border-radius: 10px;
  border: var(--MainColor) solid 1px;
  color: var(--MainColor);
  transition: all 0.5s ease-in-out;  
}

.nav_links li:hover{
  background-color: var(--MainColor);
  border: var(--MainColor) solid 1px;
  color: var(--TextColor);
}

.nav_links li:hover a{
  color: var(--MainColor);
}

#turnON{
  background-color: var(--MainColorTrans);
  border: var(--MainColorTrans) solid 1px;
  color: var(--TextColor);
  font-weight: 700;
}

.threeLinesLinear{
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: var(--TextColor);
}


#companyName{
  color: var(--MainColor);
  font-size: 45px;
  margin: 0px 10px 0px 10px;
  font-weight: 500;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  top: 100%;
  transition: all 0.5s ease-in-out;
}

#companyName:hover{
  font-size: 50px;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1000px){

  #companyName{
    font-size: 50px;
    letter-spacing: 2px;
  }

  .threeLinesLinear{
    display: flex;
    cursor: pointer;
  }

  .threeLinesLinear.active{
    display: flex;
    cursor: pointer;
    z-index: 102;
  }
 
  .nav_links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 10vh;
    background-color: var(--MainColorTrans);
    height: 100vh;
    width: 100%;
    z-index: 0;
    overflow: hidden;
    padding: 0px;
    opacity: 0%;
  }

  .threeLinesLinear .navLine{
    width: 25px;
    height: 2.5px;
    background-color: var(--MainColor);
    margin: 2.5px 0;
    border-radius: 50px;
  }

  .nav_links.active{
    height: 100vh;
    opacity: 100%;
    position: fixed;
    top: 0;
    z-index: 101;
  }

  .logoLinear.active img{
    filter: brightness(1);
    z-index: 102;
  }

  .nav_links.active a{
    color: var(--SecoundColor);
  }

  .nav_links ul{
    display: block;
    width: fit-content;
    text-align: center;
  }
  .nav_links li{
    margin: 5px;
    width: 250px;
    color: var(--MainColor);
    background-color: var(--TextColor);
    border: var(--TextColor) 0px solid;
    font-size: 18px;
  }

  .nav_links li:hover{
    margin: 5px 0px 5px 20px;
    color: var(--TextColor);
    background-color: var(--SecoundColor);
    border: var(--SecoundColor) 0px solid;
  }
}

/* NativeBar End Codes */
.logoLinear{
  display: flex;
  padding: 15px 0px;
}

.logoLinear img{
  width: 75px;
  filter: brightness(0);
  transition: all 0.5s ease-in-out;
}

/* Main Linear For First Page */

.mainLinear1{
  width: 100%;
  min-height: 70vh;
  max-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--MainColor);
}

.mainLinear1 .titleLinear{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-bottom: -5px;
}

.titleLinear h1 , h2{
  font-size: 30px;
  margin: 0px 5px;
  color: var(--TextColor);
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.5s ease-in-out;
}

.titleLinear h2{
  font-weight: 900;
  color: var(--SecoundColor);
}

.mainLinear1 h3{
  letter-spacing: 0px;
  font-size: 15.5px;
  color: var(--TextColor);
  margin-top: -5px;
  transition: all 0.5s ease-in-out;
}


/*The Dialog style*/

.modal{
  max-width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--MainColorTrans);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

/*Show Dialog on Click*/

.modal:target{
  visibility: visible;
  opacity: 1;
}

/*Dialog Content Style*/
.modalcontent{
  position: relative;
  background-color: var(--SecoundColorTrans);
  width: 500px;
  max-width: 75%;
  padding: 1em 2em;
  border-radius: 4px;
}

/*The Close Icon Style*/
.modalclose{
  position: absolute;
  top: 0;
  right: 15px;
  padding: 0px 5px;
  background-color: var(--MainColor);
  color: var(--SecoundColor);
  text-decoration: none;
  font-size: 35px;
  border-radius: 0px 0px 25px 25px;
  transition: all 0.3s ease-in-out;
}

.messageUS{
  position: relative;
  background-color: var(--MainColor);
  margin: 5px 0px;
  border: var(--MainColor) 1px solid;
  padding: 2.5px 30px;
  color: var(--SecoundColor);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}

.messageUS::before{
  position: absolute;
  content: '';
  width: 10px;
  height: 1px;
  background-color: var(--MainColor);
  bottom: -20%;
  right: 50%;
  transition: all 0.3s ease-in-out;
}

.messageUS:hover::before{
  width: 100px;
  right: 10%;
}

.messageUS:hover{
  padding: 2.5px 40px;
}


.mainWeb{
  width: 100%;
  height: fit-content;
  padding: 0;
  margin: 0;
  background-color: var(--MainColor);
}

/* CopyRightLinear Style */
.CopyRightLinear{
  width: 100%;
  height: fit-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  position: relative;
  flex-wrap: wrap;
  padding: 10px 0px;
  margin: 0;
  background-color: var(--TextColor);
}

.CopyRightLinear a{
  width: 250px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CopyRightLinear #copy{
  margin: 5px 0px;
  width: 700px;
  max-width: 90%;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
  color: var(--MainColor);
  font-weight: 300;
}

.CopyRightLinear #copy:hover{
  font-weight: 800;
  text-decoration: underline rgb(156, 156, 156);
}

.theProgrammer{
  width: fit-content;
  max-width: 80%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--MainColor);
  padding: 5px;
  border-radius: 100px;
  overflow: hidden;
}

.programmerLogo{
  width: 35px;
  height: 35px;
  background-color: var(--TextColor);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  z-index: 0;
}

.programmerLogo img{
  width: 30px;
  height: auto;
  filter: brightness(0);
}

.textLinear{
  width: 0px;
  height: fit-content;
  padding: 0px;
  margin: 0;
  transition: all 0.5s ease-in-out;
  color: var(--TextColor);
}

.textLinear p{
  font-size: 10px;
  margin: 0px 5px -5px 5px;
  color: var(--TextColor);
  white-space: nowrap;
  font-weight: 500;
  overflow: hidden;
  text-overflow: clip;
}

.textLinear h1{
  font-size: 15px;
  margin: -5px 5px 0px 5px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 700;
  text-overflow: clip;
}

.theProgrammer:hover .textLinear{
  width: 125px;
}

/* Main Place For Coding */
.MainPlaceForCoding{
  width: 100%;
  height: 90vh;
  padding: 0px;
  margin: 0px;
}

.BackgroundImageFilter{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}


#companyDe{
  color: var(--TextColor);
  font-size: 15px;
  margin: 0px 10px 0px 10px;
  font-weight: 300;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  letter-spacing: 0px;
  color: var(--MainColor);
  transition: all 0.5s ease-in-out;
  background-color: var(--WhiteTrans);
  padding: 5px 15px;
  border-radius: 5px;
  top: 100%;
}

.introPage{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--MainColor);
  transition: all 0.3s ease-in-out;
  min-height: 100vh;
  min-width: 100%;
  z-index: 100;
  visibility: visible;
  padding: 0;
  margin: 0;
}

#introVideo{
  position: absolute;
  min-width: 100%; 
  min-height: 100vh;
}

.activeLinear{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--SecoundColorTrans);
  transition: all 0.3s ease-in-out;
  min-height: 100vh;
  min-width: 100%;
  z-index: 50;
  visibility: visible;
  margin: 0;
  padding: 0;
}

#activeBanMark{
  fill: var(--TextColor);
  width: 100px;
  height: 100px;
  opacity: 50%;
  transition: all 0.5s ease-in-out;
}

#activeBanMark:hover{
  width: 150px;
  height: 150px;
  opacity: 100%;
  rotate: 180deg;
}

#activeTitle{
  font-size: 50px;
  margin: 0px 2.5px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  color: var(--TextColor);
}

#activeText{
  font-size: 25px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 300;
  color: var(--TextColor);
  max-width: 600px;
  letter-spacing: 0x;
}

#activeButton{
  font-size: 20px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  margin: 25px 5px;
  font-weight: 200;
  padding: 0px 35px 2.5px 35px;
  border: var(--TextColor) 1px solid;
  color: var(--TextColor);
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}

#activeButton:hover{
  padding: 0px 75px 2.5px 75px;
  background-color: var(--TextColor);
  color: var(--SecoundColor);
}

#adminName{
  font-size: 10px;
  color: var(--TextColor);
  letter-spacing: 3px;
  margin: -20px 0px 0px 0px;
}


#mainImageInWeb{
  width: 250px;
  max-width: 90%;
  height: auto;
  background-color: var(--WhiteTrans);
  border-radius: 10px;
}

.secondPage{
  width: 100%;
  max-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--MainColor);
  margin: 0;
  padding: 0;
}

.partOne{
  width: 450px;
  max-width: 80%;
  padding: 60px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.secondPage h1{
  color: var(--TextColor);
  width: 500px;
  max-width: 85%;
  text-align: right;
  font-size: 40px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
}

.secondPage h2{
  color: var(--TextColor);
  width: 500px;
  max-width: 85%;
  text-align: right;
  font-size: 20px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 200;
}

.ourServices{
  width: 100%;
  height: fit-content;
  background-color: #222222;
  overflow: hidden;
}

#titelTextDiv{
  width: 100%;
  padding: 0px;
  background-color: var(--TextColor);
}

#titelText{
  width: 85%;
  position: relative;
  padding: 15px 0px;
  background-color: var(--bColor);
  color: var(--tColor);
}

#titelText::before{
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: var(--tColor);
  top: 50%;
  right: 30%;
  left: 9%;
}

@media only screen and (max-width: 1000px){
  #titelText::before{
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--tColor);
    top: 50%;
    right: 30%;
    left: 0%;
  }

  .ourServices h1::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #fff;
    top: 50%;
    right: 30%;
    left: 9%;
  }
}

.linearOfServices{
  width: 95%;
  max-height: fit-content;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  padding: 0px 20px 20px 20px;
}

.serviceLinear{
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin: 5px;
  transition: all 0.5s ease-in-out;
}

#servicsIcon{
  width: 100%;
}

#servicsText{
  height: 30px;
  bottom: 20%;
  z-index: 10;
  background-color: var(--WhiteTrans);
  border-radius: 0px 0px 10px 10px;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#servicsText h3{
  color: var(--MainColor);
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 17.5px;
  font-weight: 300;
  transition: all 0.5s ease-in-out;
}

#servicsText h2{
  color: var(--MainColor);
  font-size: 12.5px;
  font-weight: 700;
  max-width: 180px;
  transition: all 0.75s ease-in-out;
  text-align: center;
  letter-spacing: 0px;
  height: 0px;
  opacity: 0%;
}

.serviceLinear:hover{
  height: 250px;
  width: 250px;
}

.serviceLinear:hover #servicsText{
  height: 250px;
  bottom: 103.5%;
  font-size: 25px;
}

.serviceLinear:hover #servicsText h3{
  font-size: 25px;
}

.serviceLinear:hover #servicsText h2{
  height: fit-content;
  opacity: 100%;
}

/* Slider Codes */

.sliderBackgroundColor{
  width: 100%;
  background-color: var(--TextColor);
  overflow: hidden;
  position: relative;
}

.sliderBackgroundColor::before{
  position: absolute;
  width: 100%;
  content: 'سلايدر شركاء النجاح';
  top: 10%;
  right: 0%;
  font-size: 30px;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 200;
  letter-spacing: 2px;
}


.slider {
  width: 1800px;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  transition: all 0.3s ease-in-out;
  overflow-x: hidden;
  background-color: var(--WhiteTrans);
  border-radius: 50px;
}

@keyframes slide-in {
  from { right: 1800px; }
  to { right: -1800px; }
}

.slider {
  animation: slide-in 20s infinite linear;
}


.slide {
  display: inline-block;
  width: fit-content;
  scroll-snap-align: start;
  margin: 0px 20px;
}

.slide img {
  width: auto;
  height: 70px;
}


::-webkit-scrollbar:horizontal{
  width: 80%;
  height: 5px;
  background-color: var(--MainColor);
}


::-webkit-scrollbar-thumb:horizontal {
  border-radius: 10px;
  background-color: var(--SecoundColor);
}

/* Rules Codes */
.rulesCodes{
  background-color: var(--TextColor);
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.ruleLinear{
  background-color: transparent;
  border: var(--MainColor) 1px solid;
  width: 475px;
  max-width: 80%;
  margin: 35px 5px 25px 5px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.ruleLinear::before{
  position: absolute;
  content: var(--content);
  color: var(--MainColor);
  font-size: 120px;
  font-weight: 900;
  opacity: 10%;
  top: -70.5%;
  right: 5%;
}

#rulename{
  background-color: var(--MainColor);
  width: fit-content;
  font-size: 17.5px;
  padding: 5px 15px;
  margin: 0px;
  border-radius: 15px;
  top: -20px;
}

#ruleText{
  color: var(--MainColor);
  top: -15px;
  font-weight: 300;
}

#desText{
  color: var(--MainColor);
  font-weight: 500;
  font-size: 25px;
  width: 800px;
  max-width: 85%;
  letter-spacing: 0px;
  text-align: center;
  margin: 0px 0px 20px 0px;
}

/*social Media*/
.socialMedia{
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  background-color: var(--TextColor);
  padding: 0px 0px 10px 0px;
}

#socialMediaIcon{
  width: 50px;
  height: 50px;
  background-color: var(--MainColor);
  margin: 5px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  opacity: 70%;
  transition: all 0.3s ease-in-out;
}

#socialMediaIcon:hover{
  margin: 0px 5px 10px 5px;
  opacity: 100%;
}

.fa-brands{
  font-size: 20px;
}

.socialMedia a{
  margin: 0;
}

/* download Design */
.downloadDesign{
  width: 500px;
  max-width: 70%;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  background-color: var(--SecoundColorTrans);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 0px;
}

.downloadDesignFile{
  width: 100%;
  height: 100%;
  background-color: var(--SecoundColorTrans);
}

.downloadDesign img{
  width: 100%;
  position: absolute;
}

.downloadDesign h3{
  color: var(--TextColor);
  margin-top: 10px;
}

#activeButton{
  margin: 5px 5px 15px 5px;
}

/*info Linear*/

.infoLinear{
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--TextColor);
}

.mapLocation{
  position: relative;
  width: 600px;
  height: 300px;
  border: var(--SecoundColor) 1px solid;
  border-radius: 10px;
  margin-bottom: 10px;
  margin: 10px 20px 30px 20px;
  overflow: hidden;
}

.mapLocation iframe{
  width: 100%;
  height: 100%;
  border: 0px;
}

.mapLocation::after{
  position: absolute;
  content: 'موقعنا على خرائط جوجل';
  z-index: 100;
}

.infoLinearTexts{
  width: fit-content;
  height: fit-content;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 10px;
}

.infoLinearTexts h1{
  color: var(--SecoundColor);
  font-size: 20px;
  margin-top: 20px;
}

.phoneLinear{
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  background-color: var(--SecoundColor);
  border-radius: 15px;
  padding: 5px 15px;
}

.phoneLinear h2{
  font-size: 15px;
}

.phoneLinear i{
  color: var(--SecoundColor);
  background-color: var(--TextColor);
  margin: 5px 0px 5px 5px;
  padding: 5px;
  border-radius: 10px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

::selection {
  background-color: var(--SecoundColor);
  -webkit-text-fill-color: var(--MainColor);
}


#loadingCardView{
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

#loadingCardView img{
  width: 200px;
}
