@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
html{
  height: 100%;
}
body{
    font-family: "Zain", sans-serif;
    direction: rtl;
     background-color: #0d141b;
 }
body::before {
  content: "";
  position: fixed; /* or absolute if you want it to scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/backgroundb.png');
  background-size: cover;
  background-position: center;
  opacity: 0.01; /* Adjust opacity here */
  z-index: -999;
  pointer-events: none; /* Prevent it from blocking clicks */
}
.bodycontainer {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1E1E2F 100%);
  position: absolute;
  top: 0;
  left:0 ;
  z-index: -998;
  overflow: hidden;
 
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: 30px;
   
    z-index: 6;
    background: #0d141b;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    transition: all 0.4s;
    text-decoration: none;
}

    .back-to-top i {
        font-size: 2rem;
        color: #059652;
        line-height: 0;
        font-weight: 900;
    }

    .back-to-top:hover {
        background: #382828;
        color: #77706e;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #0d141b;

}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #f2f2f2;
        border-top: 6px solid #e47944;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        animation: animate-preloader 1s linear infinite;
    }
        #preloader::after {
        content: "";
        position: fixed;
        top: calc(50% - 22px);
        left: calc(50% - 22px);
        background-image: url('../img/logo.png');
        background-size:90% 90%;
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 65px;
        height: 65px;
       
     }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bodycontainer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      rgba(255, 255, 255, 0.05) 0deg,
      rgba(255, 255, 255, 0.05) 10deg,
      transparent 10deg,
      transparent 30deg
    );
  box-shadow:
    50px 50px 2px rgba(255, 255, 255, 0.7),
    250px 300px 1px rgba(255, 255, 255, 0.8),
    450px 150px 3px rgba(255, 255, 255, 0.6),
    650px 400px 2px rgba(255, 255, 255, 0.9),
    850px 600px 1px rgba(255, 255, 255, 0.7),
    150px 450px 3px rgba(255, 255, 255, 0.8);
}

.bodycontainer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.03) 50px,
      rgba(255, 255, 255, 0.03) 52px,
      transparent 52px,
      transparent 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.03) 50px,
      rgba(255, 255, 255, 0.03) 52px,
      transparent 52px,
      transparent 60px
    );
  box-shadow:
    75px 125px 1px rgba(255, 255, 255, 0.6),
    275px 225px 2px rgba(255, 255, 255, 0.8),
    475px 325px 3px rgba(255, 255, 255, 0.7),
    675px 175px 1px rgba(255, 255, 255, 0.9),
    875px 275px 2px rgba(255, 255, 255, 0.6),
    125px 375px 3px rgba(255, 255, 255, 0.8);
}
 
 .head{
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  z-index: 100;
   font-family: "Zain", sans-serif;
   display: flex;
   justify-content: space-around;
   align-items: center;
   max-height: 100px;
   padding: 15px 0;
   transition: all .5s ease;
   transition-delay: .3s;
}
 .head.sticked {
  background: #0d141b;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 95px;
 
}
.logoimg{
  width:110px;
  align-self: center;
}
.navbar{
  list-style-type:none;
    align-self: center;

}
.navitem{
  margin: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
  transition: 0.5s ease;
}
.navitem a{
  text-decoration: none;
  color:  #e47944;
}
.navitem a:hover {
  color: #fff;
  transition-delay: 0.5s;
  transition:  0.7s ease;
  z-index: -1;

}
.navitem .active {
  color: #fff;
  transition-delay: 0.5s;
  transition:  0.7s ease;
  z-index: -1;

}
 
.CTA{
  background-color:#e47944;
  padding: 8px 15px 8px 15px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
    align-self: center;

}
.CTA i{
  margin-right: 10px;
}

/* Hero Start */
.hero{
  height: 100vh; 
}
.hero .container{
  padding: 45vh 100px 80px;
}
.heroimg{
  width:100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
  z-index: -11;
  height: 100vh;
}
.herocontent{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  z-index: 2;
}
.herocontent p{
  color: #e47944;
  font-size: 4.5rem;
  font-weight: 900;
}
.herocontent h1{
  color: #fff;
}
.social{
  width: 80%;
  display: flex;
  justify-content: center;

}
.social a{
  font-size: 2.5rem;
  margin: 10px;
  text-decoration: none;
  transition: all 1s;
}
.facebook :hover{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5f99e4;
  padding: 3px;
  border-radius: 5px;
  color: #fff;
  transition: all .4s;
}
.whatsapp :hover{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #18d441;
  padding: 3px;
  border-radius: 5px;
  color: #fff;
  transition: all .4s;
}
.instagram :hover{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83049c;
  padding: 3px;
  border-radius: 5px;
  color: #fff;
  transition-delay: .3;
  transition: all .2s;
}
.facebook  {
  color: #5f99e4;
}
.whatsapp  {
  color: #18d441;
}
.instagram {
  color: #bc2ed8;
}
.herobtn{
  margin-right:20x;
  align-self:flex-start;
  padding: 15px;
  text-decoration: none;
  color: #000;
  background-color: #e47944;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 900;
}
.herobtn i{
  margin-right: 10px;
}
/* Hero End */
/* Clients Start */
.clients {
  padding: 0 0 60px 0;

}

.clients .swiper-slide img {
  opacity: 0.7;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/* services Start */
.services{
  padding: 20px 20px;
}
.services h2{
  font-size: 3rem;
  color: #fff;
  display: inline;
  text-align: right;
  font-weight: 700;
}
.services h2 span{
font-size: 2rem;
}
.services p{
    color: #e47944;
    font-size: 1.5rem;
    margin-right: 40px;
      display: inline;

}
.toprow{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.servtitle{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  width:40%
}
.toprow img{
  width: 280px;
  align-self: center;
}
.toprow > div >div >i,.toprow  >div >i{
  font-size: 4rem;
  color:#cabf1d ;

}
.servbody{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.servitem{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 30%;
  background-color:#1c2835;
  padding: 20px;
  border-radius: 10px;
  height: 350px;
  margin: 15px;
}
.servbody .servitem{
  width: 30%;
}
.servitem i{
  color: #e47944;
  margin-bottom: 20px;
  font-size: 4rem;
}
.servitem h3{
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
    margin-bottom: 20px;
}
.servitem p{
  font-size: 1.3rem;
  color: #b8b1b1;
  margin-right: 5px;
}
/* about  */
.about{
  margin: 80px;
}

.about .row{
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: nowrap;
}
.about  img{
  width: 50%;
  border-radius: 40px;
}
.aboutcont{
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.aboutcont h2{
  color: #fff;
}
.aboutcont h2 span{
  color: #e47944;
  font-size: 4rem;
}
.aboutcont p{
  text-align: right;
  color: #CCCCCC;
  font-size: 1.2rem;
}
.btnabout{
 
  align-self: self-end;
}
/* facts */

.facts h2{
  color: #fff;
  text-align: center;
  font-size: 3rem;
}
.facts h2 > span{
  color: #e47944;
  font-weight: 900;
}
.facts p{
  color: #CCCCCC;
  text-align: center;
  font-size: 2rem;
}

 
.outer {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;

}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 35px);
  }
  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }
  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
}
.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.card .text {
  font-weight: bolder;
  font-size: 4rem;
  background: linear-gradient(45deg, #000000 4%, #fff, #000);
  background-clip: text;
  color: transparent;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
}
.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}

.factsrow{
  display: flex;
  justify-content: space-around;
  margin: 20px;
}
.morbtn{background-color: #059652;}
.btnb {
  margin-top: 40px;
  background-color: #00BFA6;
  padding: 14px 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px dashed #00BFA6;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .4s;
 }
 
 .btnb span:last-child {
  display: none;
 }
 
 .btnb:hover {
  transition: .4s;
  border: 2px dashed #00BFA6;
  background-color: #fff;
  color: #00BFA6;
 }
 
 .btnb:active {
  background-color: #87dbd0;
 }
 /* packages */
 .packcont{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  margin-top: 80px;
 }
 .packages h2{
  color: #fff;
  text-align: center;
  font-size: 3rem;
}
.packages h2 > span{
  color: #e47944;
  font-weight: 900;
}
.packages p{
  color: #CCCCCC;
  text-align: center;
  font-size: 2rem;

}
.packages h4{
  color: #CCCCCC;
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #b8b1b1;
}
.packcont .servitem{
  height: 450px;
}
.packcont .CTA{
  text-align: center;
  margin: 20px;
} 
/* contact */
.contact{
  margin-top: 80px;
  margin-bottom: 80px;
}
.infoitem i{
  color: #a09490;
  font-size: 4rem;
}
.infocontent{
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 40%;
}
.infoitem{
  text-align: center;
  margin: 30px;
  background-color: #1c2835;
  border-radius: 20px;
  padding: 20px;
}
.infoitem h3{
  color: #e47944;
  margin-top: 10px;
  font-weight: 600;
}
.infoitem p{
  color: #c7c7c7;
  direction: ltr;
}
.contact .rowcontact{
 display: flex;
 justify-content: space-between;
 flex-direction: row;
}
.contact .contactform{
  width: 60%;
}
.contactform>form >div{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items:flex-start;
}
.contactform label{
  color: #b97963;
  font-size: 1.5rem;
   margin-right: 20px;
}
.contactform input{
   height: 50px;
}
.contactform input,.contactform textarea{
  color: #b97963;
  font-size: 1.5rem;
  margin: 20px;
  width: 100%;
  background-color: #0d141b;
  outline: none;
  border: none;
  border: solid 2px #1c2835;
  padding: 20px;
  border-radius: 10px;
}
.contactform input:focus,.contactform textarea:focus{
  color: #f1f0ef;
  border: solid 2px #fff;
  transition: all .03s;
  transition-duration: 0.001s;
}
/* footer */
.footer{
  margin-top: 80px;
  border-top: solid 3px #c7c7c7;
  background-color: #04080f;
 }
 .footer .container .row{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.coinfo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.footlist{
  padding-right: 50px;
  width: 70%;
  align-self: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footlist ul{
  width: 100%;
  align-items: center;
  justify-content: center;
}
.coinfo img{
  width: 200px;
}
.coinfo p{
  color: #c7c7c7;
  text-align: center;
  font-weight: 900;
}
.copyright{
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.copyright a{
  text-decoration: none;
  color: #e47944;
}
.contbtn{
  align-self: flex-end;
  margin: 20px;
}

  .listshow{
    transition: all .5s ease;
    transition-delay: .5s;
  }

.phonelist{
  display: none;
}


/* heroabout */
.heroabout{
  height: 50vh;
  background-color: #04080f;
}
.heroabout p{
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30vh;
  font-size: 4rem;
  color: #fff;
}
.about .herobtn{
  align-self: flex-end;
}
.services-cards .container .row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.services-cards .infoitem{
  width: 25%;
  height: 500px;
}
.services-cards h2{
  color: #e47944;
  margin: 15px 0 15px 0;
  font-size: 1.2rem;
  height: 50px;
}
.services-cards p{
  margin: 15px;
  text-align: center;
  height: 150px;
  overflow: hidden;
  margin-bottom: 25px;
}
.portfolio-details{
  margin: 80px 20px;
  
}
.portfolio-details .container .row{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.servcontent{
  width: 50%;
  text-align: justify;
}
.portfolio-details img{
  width: 45%;
}
.servcontent h2{
  color: #e47944;
  font-weight: 700;
}
.servcontent h3{
  color: #e47944;
  font-weight: 700;
}
.servcontent p{
  color: #CCCCCC;
  font-size: 1.5rem;
}
.servcontent > div{
  color: #CCCCCC;
  font-size: 1.5rem;
}
.lastwork {
  margin: 80px;
}
.lastwork h3{
  font-size: 1.1rem;
}
.proitem{
  width: 25%;
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.servicespara{
  max-height: 250px;
  overflow: hidden;
    color: #c7c7c7;
    margin-bottom: 20px;

}
.servicespara h3{
  font-size: 1rem;
      color: #c7c7c7;
}
.servicespara p{
  color: #c7c7c7;
}
.lastwork .infoitem{
  width: 100%;
  height: 130px;
  margin: 0;
  padding: 5px;
  border-radius: 0 0 20px 20px;
}
.lastwork .infoitem p{
 height: 30px;
 overflow: auto;
}
.lastwork .container  {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.proitem .svg{
  width: 100%;
  height: 200px;
  padding: 0;
  
  border-radius: 20px 20px 0 0;
}
.zoom-container {
      width: 100%;  /* ممكن تعدل الحجم زي ما تحب */
      height: 200px;
      border-radius: 10px 10px 0 0; /* اختياري */
      overflow: hidden; /* يمنع الصورة من الخروج */

    }

    .zoom-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform-origin: center center;

      transition: transform 0.5s ease; /* الوقت هنا نص ثانية */
    }

    .zoom-container:hover img {
      transform: scale(1.2); /* نسبة التكبير */
    }
    .heroabout h1{
      position: relative;
      font-size: 1rem;
      color: #b8b1b1;
      top: 45vh;
      text-align: center;
    }
    .service-details{
      padding: 80px 20px;
    }
    .service-details img{
      border-radius:  20px;
    }
    .service-details h2{
      color: #e47944;
    }
    .service-details p{
      color: #f1f0ef;
      font-size: 1.5rem;
    }
    .service-details i{
      color: #e47944;
      margin: 5px;
    }
     .service-info h3{
      color: #CCCCCC;

    }
    .service-info h4{
      color: #e47944;

    }
    .xorder{
      position: sticky;
      top: 100px;
    }
    .packages .row .row h3{
      text-align: center;
      color: #e47944;
      font-weight:900;
    }
    .servimg{
      height: 90vh;
      position: sticky;
      top: 100px;
    }
    .whatsconn{
      position: fixed;
      bottom: 30px;
      left: 30px;
               width: 60px;
         height: 60px;
         border-radius: 50%;
         padding: 0;
      text-decoration: none;
       background-color:#04080f;

       z-index: 6;
    }
     .whatsconn i{
     font-size: 4rem;
     text-decoration: none;
     color: #059652;

     --fa-animation-duration: 5s;

    }

.heroabout > h1{
  color: #e47944;
}
.priceafter i{
  color: #e47944;
    font-size: 2.9rem;
}
.pricepefore i{
  text-decoration: line-through;
  text-decoration-color: red;
  color: #ffffff;
  font-size: 2rem;
}
.service-details .content{
  color: #fff;
  font-size: 1.2rem;
}
.service-details .content h3{
  color: #e47944;
  font-size: 1.7rem;
  margin: 20px;
}
.service-details .pricepefore ,.service-details .priceafter{
 text-align: center;
 font-style: normal;
}
.pricepefore i , .priceafter i{
 
 font-style: normal;
}
.marktingpacks .packcont{
  color: #fff;
}
.marktingpacks .packcont i{
  font-size: 1rem;
}
.marktingpacks .servitem{
  height: 900px;
}
.servitem article {
  height: 850px;
  overflow: hidden;
  font-size: 1rem;
  text-align: center;
}
.servitem article h3 {
 color: #e47944;
 
  font-size: 1.5rem;
  width: 100%;
}
.marktingpacks .servitem >div >i{
  font-size: 4rem;
}
 .marktingpacks .servitem >div >.priceafter>i{
    color: #e47944;
  font-size: 2.9rem;
}
.marktingpacks .servitem >div >.pricepefore > i {
  text-decoration: line-through;
  text-decoration-color: red;
  color: #000;
  font-size: 2rem;
}
.pricecontainer{
  background-color: #2a3a4a;
  border-radius: 20px 5px;
  margin-top: 50px;
 display: flex;
 justify-content: space-around;
 align-items: center;
 width: 100%;

}
 
.priceafter i{
  color: #e47944;
  font-size: 2.9rem;
}
.pricepefore i{
  text-decoration: line-through;
  text-decoration-color: red;
  color: #ffffff;
  font-size: 2rem;
}
/* phone */
@media (max-width: 700px) {

  .portfolio-details .container .row{
    flex-direction: column;
    width: 100%;
  }


  .heroabout p{
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30vh;
  font-size: 2rem;
  color: #fff;
}
.about .herobtn{
  align-self: center;
}
  #header{
    width:100% ;
      padding: 0;
  }
  .head{
    width: 100%;
    margin: 0px;
    padding: 10px;
    justify-content: space-between;
  }
  .marketingview{
    text-align: center;
  }
  .logoimg{
    width: 100px;
  }
  .head .CTA{
    margin-left: 10px;
  }

.phonelist{
  display: flex;
}
  .listshow{
    display: flex;
    transition: all .5s ease;
    transition-delay: .5s;
  }
  .hero {
    height: 70vh;
  }
  .heroimg{
    height: 70vh;
    opacity: .2;
  }
  .herocontent {
    width:100%;
  }
  .hero .container{
    padding: 35vh 0px 80px;
  }
  .herobtn{
    font-size: 1.1rem;
  }
  .herocontent p{
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }
    .herocontent h1{
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }
   .herocontent .social{
      width: 100%;
  }
     .herocontent .herobtn{
      align-self: center;
      height: 40px;
      padding-top: 10px;
      text-align: center;
  }
  .bodycontainer {
  height: 70vh;
  }
  nav{
    display: none;
    width: 100%;
    position: fixed;
    background-color: #0d141b;
    margin: 0;
    top:67px;
    right: 0;
    height: 100vh;
    z-index: 99999998;
    overflow:auto;
 
  }
    nav >ul{
    display: flex;
    width: 95%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     
  }
  nav ul li{
    align-self: center;
    width: 100%;
    height: 40px;
    background-color: #1c2835;
    text-align: center;
    border-radius: 10px;
    padding-top: 8px;
  }
  .clients{
    height: 15vh;
    padding: 10px;
    margin-bottom: -5px;
  }
  .clients img{
    height: 12vh;
  }
  .services .container{
    padding: 0;
  }
  .toprow{
   flex-direction: column;
   width: 100%;
   margin: 0;
   margin-bottom: -40px;
  }
  .servtitle{
    width: 100%;
 
  }
  .servtitle h2{
       text-align: center;
       font-size: 2.5rem;
  }
  .servtitle p{
    width: 100%;
    font-size: 1.1rem;

  }
  .servitem{
    width: 100%;
  }
  .servbody{
    flex-direction: column;
    margin-top: 40px;
  }
    .servbody  .servitem{
      width: 100%;
      margin: 20px 0 ;
  }
  .about{
    width: 100%;
    margin: 0 0 80px 0;
  }
  .about .container{
     margin: 0;
    padding: 0;
  }
  .about .row{
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .about img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .aboutcont{
    text-align: center;
    width: 100%;
  }
  .aboutcont h2{
    font-size: 2rem;
  }
   .aboutcont h2 span{
    font-size: 2.5rem;
    font-weight: 900;
  }
  .aboutcont p{
    text-align: center;
  }
  .btnabout{
    align-self: center;
  }
  .facts h2{
    font-size: 2rem;
  }
  .facts p{
    font-size: 1.3rem;
  }
  .facts img{
    margin-bottom: 20px;
  }
  .factsrow{
    margin: 0;
    padding: 30px;
  }
  .outer {
    margin-bottom: 30px;
    width: 100%;
  }
  .packages h2{
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }
  .packages p{
    font-size: 1.1rem;
    text-align: center;
  }
  .packcont{
    flex-direction: column;
  }
   .packcont .servitem{
    width:300px;
  }
 .contact .rowcontact{
    flex-direction: column;

    flex-wrap: wrap;
  }
  .infocontent{
    width: 100%;
  }
  .contact .contactform {
    width: 100%;
  }
  .formitem{
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .formitem label ,.formitem input ,.formitem textarea{
    margin: 0;
    width: 100%;
    text-align: center;
   }
   .contbtn{
  align-self: center;
   
  }
  .footer .container .row{
   flex-direction: column;
  }
  .coinfo{
    width: 100%;
  }
  .footlist{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .services-cards .container .row{
    flex-direction: column;
    padding-top: 30px;
  }
  .services-cards .infoitem{
    width: 90%;
    margin: 10px;
    
  }
    .lastwork {
    margin: 60px 10px 10px 10px;
  }
  .lastwork .container{
    flex-direction: column;
    padding: 0;
  }
  .lastwork .proitem {
    width: 90%;
  }
    .servcontent{
    width: 100%;
  }
   .portfolio-details img{
     width: 100%;
     height: 300px;
     position: static;

     }
     .phonelist{
      padding: 0;
 
     }
}