



@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
:root {
  --br: 20px;
  direction: rtl;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.zoom img{transition: transform .5s ease;   
    
  }
  .zoom:hover img{transform: scale(1.2);}

/*navbar*/
nav {
  width: 100%;
  box-sizing: border-box;
  text-align: justify;
}
nav .btn {
  display: none  !important;
}
.navbar {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
  display: flex;
  font-family: Poppins;
  font-size: 20px;
  color: #043758;
  font-weight: 600;
 
}
.navbar .navbar-brand img {
  max-width: 200px;
}
.navbar .navbar-nav .nav-link {
  padding: 0.5em 1em;
  z-index: 888;
   font-size: 19px;
  font-weight: 600;
}
.navbar-nav{
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.top {
  width: 50%;
  align-items: center;
  justify-content: center;
  padding-top: 0 !important;
  
}
.top-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
width: 100% !important;
padding-left: 20px;
padding-right: 10px;
}
.navbar-nav .btn {
  display: flex !important;
}
.top-main .btn{
display: flex !important;
margin-top: 15px;
}
.top form {
  flex: 1;
}
.location {
  font-size: 18px;
  text-align: left;
  padding: 5px;
  text-align: justify;
}
.location .btn{
  display: flex !important;
}
.contact {
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

.contact p{
  margin-bottom: 0;
  margin-top: 15px;
}
.contact a{
  font-size: 13px;
}


/*     */
/*Fullscreen*/

 .full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item .video{
  width: 100%;
  height: auto;
  position: absolute;
}


/*      */



h1{
  font-family: Poppins;
  font-size: 30px;
    line-height: 50px;
    font-weight: 600;
  color:  #043758;
  padding-right: 40px;
  text-align: right;
}
h2 {
  margin: 15px 0 5px;
}
h5{
  font-family: Poppins;
  font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color:  #043758;
}

/*Services*/

.slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
    padding-top: 10px;
}

.slider-container {  /*slider for the home page*/
    display: flex;
    animation: slideLoop 20s linear infinite; /* Change the animation duration as needed */
}

.slider-item {
       flex: 0 0 calc(25% - 1px); /* Divide equally with a 1px margin */
    margin-right: 15px; /* Create a 1px gap between images */
    position: relative;
   
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    padding: 3px 25px 30px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
}

.slider-link {
    color: white;
    text-decoration: none;
}

.arrow {
    margin-right: 10px; /* Adjust the margin as needed */
}

@keyframes slideLoop {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(+100% * 2));
  }
}





/*        */

/*Chairman Words*/

/*.message h1{
padding-top: 10px;
}*/

.message .container-fluid .row {
  margin: 0 20px;
  padding: 10px 0;
  padding-left: 23px;
  font-family: Poppins;
  border-radius: 30px;
  text-align: justify;
}

.message-text {
  min-height: 400px;
  width: 50%;
  background-color: #043758;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-img{
  height: 400px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.message p {
  padding: 10px 40px;
  color: white;
  line-height: 30px;
  text-align: justify;
  font-size: medium;
}

.message img {
  width: 100%;
  height: 100%;
  object-fit:contain;
}


/*Company*/
.company .row{
  margin-right :25px;
  padding-left: 40px;
  padding-bottom: 10px;
}

.company img{
  width:100%;
  height: 300px;
  /*border: 1px solid white;*/
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  padding: 40px;
  padding-left: 50px;
}

.company img:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}

@media(max-width: 768px){
  .company {
    padding: 10px;
  }
}

/*Our clients*/

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 20px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;

}
/* Add some styling for the company name */
.logos-slide .logo-item {
  display: inline-block;
  text-align: center;
  margin: 10px 0;
  animation: slide 20s linear infinite;
}

.logos-slide .logo-item img {
  height: 80px;
  margin: 0 40px;
}

.logos-slide .logo-item p {
  margin-top: 5px;
  font-size: 14px;
}


/*.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
*/
.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap; /* Prevent logos from wrapping to a new line */
  overflow: hidden; /
  
  
}

.logos-slide img {
  height: 80px;
  margin: 0 40px;

   /*border: 1px solid black;*/
}

/*.client{
   background: #f2f2f2;
}*/

     /*      */

/*footer*/

 a{
  color: white;
  text-decoration:none;
  margin-left: 10px; 
 }
footer-top{
  font-family: Poppins;
  text-align: justify;
   font-size: 20px;
  font-weight: 400;
}


footer .certification .row img{
  display:  inline-block;
 height: 75px;
  width: 100px;
  border-radius:10% ;
  /*margin-right: 5px;*/
  /*column-gap: 5px; */
  margin-right: 40px;
  object-fit:contain;
}
 .footer-majan{
  height: 75px;
  width: 200px;
 }

/*     */

/*Indoor & Outdoor Services*/
/*About Services*/
.abtservice img{
  width: 100%;
  object-fit: contain;
}
.abtservice{
  padding: 30px;
  text-align: justify;
}

.abtservice h2{
   padding-left: 470px;
   padding-bottom: 10px;
  /*padding-left: 70px;*/
   font-family: Poppins;
  font-size: 25px;
    line-height: 10px;
    font-weight: 600;
  color:  #043758;
}
.abtservice h1{
  font-size: 20px;
}
.abtservice-text{

}

.abtservice li{
  padding-left: 300px;
  padding-top: 10px;
   font-family: Poppins;
  font-size: 20px;
    line-height: 30px;
  color:  #043758;
  /*margin-left: 80px;*/
  margin-right: 40px;
  font-weight: 400;
}

@media screen and (min-width:481px) and (max-width: 768px) {
  .abtservice h1 {
    font-size: 18px;
    line-height: 25px;
    padding-top: 10px;
  }
  .abtservice h2 {
    font-size: 18px;
    line-height: 0;
  }

  .abtservice-text{
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 12pxx;
  }
  .abtservice-img{
    padding: 0;
  }
  .abtservice li{
  padding-left: 50px;
  padding-top: 10px;
   font-family: Poppins;
  font-size: 16px;
    line-height: 30px;
  color:  #043758;
  /*margin-left: 80px;*/
  margin-right: 40px;
  text-align: justify;
}
.abtservice h2{
   padding-left: 70px;
   padding-bottom: 10px;
  /*padding-left: 70px;*/
   font-family: Poppins;
  font-size: 25px;
    line-height: 10px;
    font-weight: 600;
  color:  #043758;
}
}
}
@media screen and (max-width: 481px) {
  .abtservice h1 {
    font-size: 16px;
    line-height: 25px;
    padding-top: 10px;
    padding-left: 0;
  }
  .abtservice h2 {
    font-size: 10px;
    line-height: 0;
    padding-left: 0;
  }
  .abtservice ul{
padding-left: 0;
  }
  .abtservice-text{
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 12pxx;
  }
  .abtservice-img{
    padding: 0;
  }
  
}
/*      */

/* What we do for you */
.do{
   padding-top: 170px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: justify;
}

.do .row{
  background-color: #043758;
  padding-left: 40px;
  padding-right: 40px;
  /*padding: 40px;
*/
}
.do h1{
  padding-right: 20px;
   padding-top: 25px;
   /*padding-left: 150px;*/
   font-family: Poppins;
  font-size: 20px;
    line-height: 10px;
    font-weight: 600;
  color:  white;
justify-content: center;
}
.do-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.do p{
  color: white;
  padding: 15px;
  font-family: Poppins;
  font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 400;
}

.do img{
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width:768px) {
  .do p{

    font-size: 10px;
      line-height: 20px;
      margin-bottom: 0;
  }
  .do h1{
    font-size: 14px;
  }
   .do{
   padding-top: 100px;
 
  text-align: justify;
}
}

/*      */

/*Our Client*/

.clients{
  padding-top: 170px;
}


.card {
  /*min-height: 100vh;*/
  background: #f3f3f3;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  padding: 2rem 1rem;
  background: #fff;
  position: relative;
  display: flex;
  /*align-items: flex-end;*/
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  /*transition: 05s ease-in-out;*/
  width: 300px;
  max-height: 200px;
  margin:10px;




}
.clients .container-card {
  text-align: center;
 padding: 10px 20px;
  width: 100%;
}

.row-sm {
  display: flex;
  gap: 10x;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  padding: 15px;
  /*border-radius: var(--br);*/
  transition: 0.5s;
   display: block;
}
.card:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
.card img {
  width: 100%;
  height: 100px;
 
}

.card h5{
  font-family: Poppins;
  font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color:  #043758;
    /*text-align: center;*/
    padding: 10px;
}
/*.card-text{
  font-family: Poppins;
  font-size: 14px;
}*/

@media(max-width: 768px){
  .clients .container{
    padding-right: 80px;
  }
  .clients h1{
   padding-top: 80px;
 
  text-align: justify;
}
}

/*projects*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(+250px * 9));
    }
}

.project {
    align-items: center;
    background: #fff;
    display: flex;
    /*height: 100vh;*/
    justify-content: center;
}

.project .slider {
    background: white;
    height: 250px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

 .project .slider::before, .slider::after {
    /*background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);*/
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.service .slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

 .project .slider::before {
    left: 0;
    top: 0;
}

.project .slider .slide-track {
    animation: scroll 70s linear infinite;
    display: flex;
    width: calc(250px * 18);

}


.project .slider .slide-track:hover {
    animation-play-state: paused;
    height: 100%;
}

.project .slider .slide {
    height: 250px;
    width: 280px;
    padding: 15px;
}

.project .slider .slide img{
  height: 250px;
    width: 250px;
    align-content: center;
    object-fit: contain;
}



.slider  .slide-caption {
 margin: 40px;
 /*padding: 40px;*/
 font-size: 23px;
 font-weight: 800;
 font-family: Poppins;
 align-content: center;

}

.para-client{
  font-size: .7em;
}



/*About Us*/

/*about*/
.about{
   padding-top:170px ;
   /*padding-top: 20px;*/
  padding-bottom: 10px;
  max-width: 100vw;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
 
}
.about .row {
   background-color: #043758;
}

.about h1{
  padding-top: 10px;
  padding-right: 30px;
  color: white;

}

.about img{
  /*padding-top:120px ;*/
  /*padding-left:70px ;
  padding-right: 30px;*/
  width: 100%;
  height: auto;
  /*border-radius: 100%;*/
  /*border: 1px solid #A0A3A5;*/
  object-fit: contain;
}
.about p{

  /*padding: 10px;*/
  font-size: 20px;
  font-family: Poppins;
  color:white ;
  /*padding-right: 100px;*/
  text-align: justify;
  /*background-color: #043758;*/
  padding: 30px;
  padding-top: 20px;
  font-weight: 400;
}


/*     */
 


/* video-section */

.video-section {
  max-height:100vh;
  overflow: hidden; /* Hide overflow */
  padding-top: 285px;
  position: relative; 
}

.video-container {
  width: 100vw;
  height: 100%; 
  padding-top: 56.25%; /* 16:9 aspect ratio for the video container */
  position: relative;
}

.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:fill; 
}





/*mission % vision*/
.mission {
  padding: 20px;
  padding-right: 70px;
   /*background-color:#F8F8F8;*/

}

.mission .mision{
   background-color:#F8F8F8 ;
   
}
.mission .vision{
   background-color:#F8F8F8 ;
   margin-top: 10px;

}
.mission img{
  max-width: 180px;
  min-height: 150px;

}
.mission h1{
  padding-left: 0;
}
.mission p{
  font-size: 20px;
  font-family: Poppins;
  color:#043758 ;
  text-align: justify;
  font-weight: 400;
}
.mision:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
.vision:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
@media(max-width: 1024px){
.about-image img{
margin-top: -20px;
}
.container-fluid1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  .mission{
    padding-left: 30px;
    padding-right: 2px;
  }
  .about{
    margin-left: 23px;
   }
   .about p{
     padding-right: 30px;
   }
   .about img{
    width: 100%;
   }
   .qhse{
    padding: 30px;
  }
 .about-image1{
  margin-right: 60px;
  margin-top: 30px;
 }
.loyality{
  margin-left:170px;
}
 .container-fluid1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 }
 .container-fluid1 h1{
  margin-right:  60px;
 }
 .slider-text{
  font-size: 10px;
  padding-top: 60px;
 }
 .row{
  display: flex;
  flex-wrap: wrap;
 }
 #about{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
 }
 .about-us{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 
}

@media(max-width: 768px){
  
  .about{
   padding-top: 100px;
 
  text-align: justify;
}
}


.values .row {
  width: 96%;
  /*border-radius: 50%;*/
  /*box-shadow: 0px 3px 10px 5px #e9e9e9;*/
}

.values span {
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #043758;
  text-align: center;
}

.container-value .row {
  text-align: center;
  object-fit: contain;
}

.container-value {
  display: flex;
  justify-content: center; 
  align-items: center; /* Center-align the container vertically */
}


/*our service*/
/*.ourservice .slider-item{
  width: 300px;
  height: 200px;
}*/
.ourservice img{
width: 300px;
height: 200px;
}

/*     */

/* Contact us */
.loc{
  padding-top: 170px;
}
.map{
  width: 100%;
  padding-right: 30px;
}
.map iframe {
  width: 100%;
}
.contact-us{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-top: 60px;
  text-align: justify;
}
.contact-us p {
font-size: 18px;
}

.loc iframe{
 width: 500;
 height: 400;
 padding-right: 40px;
 padding-top: 20px;

}
.loc fa-phone{
  color:#043758 ;
}
.loc button{
  border: 1px solid #D9D9D9;
  background-color: #D9D9D9;
  width: 50px;
  height: 50px;
  border-radius: 10%;
}

.loc a{
  color: black;
}



.loc h2{
  /*padding-top: 120px;*/
  color: #043758;
  font-size: 25px;
  font-weight: 600;
  font-family: Poppins;
  text-align: justify;
}
.loc p{
  padding-left: 70px;
  padding-bottom: 20px;
  font-weight: 700;
  max-width: 400px;
  font-size: 20px;
  font-weight: 600;
}
/*      */

/*send message*/
.sendmessage .container{
  /*padding-left: 200px;*/
  /*padding-right: 140px;*/
  justify-content: center;
}
.form{
  border: #D9D9D9;
  background-color:#D9D9D9 ;
  /*padding: 20px;*/
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  max-width: 700px;
  width: 100%;
  /*background: #fff;*/
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}

.input-box label {
  color: #333;
}
textarea label{
  color: #333;
}

.form :where(.input-box input ) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.input-box textarea{
  position: relative;
  /*height: 50px;*/
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-box textarea:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
  display: flex;
  column-gap: 15px;
}



.form button {
  height: 55px;
  width: 40%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #043758;
}
/*.form button:hover {
  background: rgb(88, 56, 250);
}*/
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  
}
@media(max-width: 768px){
  
  .loc{
   padding-top: 100px;
 
  text-align: justify;
}
}

/*a{
  color:#db750f ;
  align: center;
}*/

@media screen and (max-width:992px){
  .qhse{
    padding-right: 30px !important;
  }
}
@media screen and (max-width:500px){
  .qhse{
    padding-top: 100px !important;
  }
}

.qhse {
  
  padding-right: 65px;
   /*background-color:#F8F8F8;*/
   padding-top: 170px;

}

.qhse .mision{
   background-color:#F8F8F8 ;
  /* margin-right: 65px;*/
   padding: 30px;
   
}
.qhse .vision{
   background-color:#F8F8F8 ;


}
.mission img{
  max-width: 180px;
  min-height: 150px;
  object-fit: contain;

}
.qhse h1{
  padding: 0;
}
.qhse p{
  font-size: 16px;
  font-family: Poppins;
  color:#043758 ;
  text-align: justify;
}
.mision:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
.vision:hover {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}

@media(max-width: 768px){
  
  .qhse{
   padding-top: 100px;
 
  text-align: justify;
}
}


#hero {
  padding-top: 100px; 
}

#header {
  z-index: 999;
  background-color: white; 
}
.about-image{
  margin: 0px 10px 10px 0px ;
  width:100%;
}
.about-image img {
  max-width: 100%;
  height: auto;
  width: 100%; 
  display: block;
 
}

.request{
  padding-top: 170px;
}

.request h1{
  text-align: center;
}
.request p{
  font-size: 20px;
  font-family: Poppins;
  text-align: center;
  color:#043758 ;
  font-weight: 600;
}
.request label{
  font-size: 20px;
  font-family: Poppins;
  text-align: right;
  color:#043758 ;
  font-weight: 400;
  direction: rtl;
}
@media screen and (max-width:768px){
  .request{
    padding-top: 100px !important;
  }
}

.request .container{
  /*padding-left: 200px;*/
  /*padding-right: 140px;*/
  justify-content: center;
}

.barloader {
  /*height:100vh;*/
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: #e8e8e8;
  font-family:arial;
  z-index: 9999;
  height: 100%;
  width: 100%;
  position: fixed;
  transition: all 0.5s;
}
.loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loading:before,
.loading:after {
  position: absolute;
  top: 0;
  content: '';
}

.loading:before {
  left: -19.992px;
}

.loading:after {
  left: 19.992px;
  -webkit-animation-delay: 0.32s !important;
  animation-delay: 0.32s !important;
}

.loading:before,
.loading:after,
.loading {
  background: #076fe5;
  -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  animation: loading-keys-app-loading 0.8s infinite ease-in-out;
  width: 13.6px;
  height: 32px;
}

.loading {
  text-indent: -9999em;
  margin: auto;
  position: absolute;
  right: calc(50% - 6.8px);
  top: calc(50% - 16px);
  -webkit-animation-delay: 0.26s !important;
  animation-delay: 0.26s !important;
}

@keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}


@keyframes loading-keys-app-loading {

  0%,
  80%,
  100% {
    opacity: .75;
    box-shadow: 0 0 #076fe5;
    height: 32px;
  }

  40% {
    opacity: 1;
    box-shadow: 0 -8px #076fe5;
    height: 40px;
  }
}
















