* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
html , body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
/*navbar*/
.navbar {
  background: rgb(255, 255, 255);
  border-bottom: 1px solid #00c999;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: top 0.3s;
}

.lines-third {
	height: 4px;
	background-color: #00c999;
	display: block;
	margin-bottom: 10px;
	animation: thirdmove 5s infinite;
}

@keyframes thirdmove {
  from {width: 0%;}
  25% {width: 10%;}
  50% {width: 20%;}
  75% {width: 10%;}
  to { width: 0px;}
}
.lines-second {
	width: 20%;
	height: 4px;
	background-color: #00c999;
	display: block;
	margin-bottom: 10px;
	animation: secmove 10s infinite;
}
@keyframes secmove {
  from {width: 0%;}
  25% {width: 20%;}
  50% {width: 30%;}
  75% {width: 20%;}
  to { width: 0px;}
}
.lines-first {
	width: 30%;
	height: 4px;
	background-color: #00c999;
	display: block;
	margin-bottom: 10px;
	animation: firmove 15s infinite;
}
@keyframes firmove {
  from {width: 0%;}
  25% {width: 30%;}
  50% {width: 40%;}
  75% {width: 30%;}
  to { width: 0px;}
}
.address_details h2 {
  color: #00c999;
}

.address_details p {
  color: #0517bd;
}

.address_map iframe {
  width: 100%;
}
.sendus{
  margin: 34px auto;
  display: grid;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.form-group {
  margin-top: 30%;
}

.porject-comming-soon {
    margin: 0 auto;
    height: 80vh;
    display: grid;
    transform: translateY(50%);
    justify-content: center;
    color: #00c999;
    text-shadow: 1px 1px black;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
.logo_in_nav_bar {
    width: 150px;
    margin: 7px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__item {
    height: 5px;
    
}

.navbar__links {
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0 29px;
  background: #3432a8;
  color: #fff;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #32a852;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero__container {
  display: flex;
  width: 100%;
  height: 100vh;
  padding: 1px 0px;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;

}
.hero__container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.hero__container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: #dc0000;
    overflow: hidden;

}

.content__hero {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #ffffff;
  animation: moveup 0.8s ease-in-out forwards;
  text-shadow: 2px 2px 4px #000000;

}

@keyframes moveup {

  0% {opacity:0%; top:25%;}
  10% {opacity:10%; top:27.5%;}
  20% {opacity:20%; top:30%;}
  30% {opacity:30%; top:32.5%;}
  40% {opacity:40%; top:35%;}
  50% {opacity:50%; top:37.5%;}
  60% {opacity:60%; top:40%;}
  70% {opacity:70%; top:42.5%;}
  80% {opacity:80%; top:45%;}
  90% {opacity:90%; top:47.5%;}
  100% {opacity:100%; top:50%;}
}
.title__hero {
  font-size: 70px;
  line-height: 100px ;
  font-weight: bold;
  height: 100px;
  text-align: left ;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.content__hero p {
  margin: 20px auto;
  font-weight: 100px;
  line-height: 25px;
  font-size: 37px;

}

.slider__hero{
  color: #8fdb9b;
  margin-left: 12px;
  box-sizing: border-box;
  animation: slider 6s linear infinite;
}

@keyframes slider  {
  0%{margin-top: -400px;}
  5%{margin-top: -200px;}
  30%{margin-top: -200px;}
  35%{margin-top: 0px;}
  65%{margin-top: 0px;}
  70%{margin-top: 200px;}
  100%{margin-top: 200px;}
}
.button_content {
  padding: 15px 25px;
  margin: 20px;
  font-size: 16px;
  letter-spacing: 1px;
  border: 2px solid ;
  color: #FFFFFF;
  cursor: pointer;
  background: linear-gradient(to left, #05177a 0%, #0517bd 51%, #00c999 100%);
  background-size: 200%;
  background-position: right;
  transition: background-position 0.5s;
  border-radius: 0 26px;
  text-decoration: none;
}

.button_content:hover {
  background-position: left;
  color: wheat;
}

/* Define Section Styles */
.define_container {
  margin-top: 74px;
  margin-bottom: 74px;
  background-color: #fff;
  text-align: center;
}

.define_header {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.define-name {
  color: #00c999;
}

.define_description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 140%;
}

.define_description p {
  margin-bottom: 20px;
}

/* CEO Letter Section Styles */
.ceo__letter {
  padding: 80px 0;
  background-color: #f8f8f8;
  font-size: 140%;
}

.ceo__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ceo__content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ceo__content p {
  margin-bottom: 20px;
}

/* Cards Section Styles */
.cards__container {
  padding: 80px 0;
  text-align: center;
}

.cards__wrapper {
  display: grid;
  grid-template-columns: auto auto;
  width: 90%;
  margin:0 auto;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 48px;
  color: #00c999;
  margin-bottom: 20px;
}

.card__header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card__text {
  margin-bottom: 20px;
}

.why-section{
    margin: 0 auto;
    display: grid;
    width: 70%;
}
.why_item{
    margin: 20px auto;
    text-align: center;
    border: 1px solid #00c999;
    border-radius: 1px 29px;
    padding: 12px;
    display: grid;
    font-size:19px;
    font-weight: bold;
    transition: 2s all ease;
}

.why_item.be-active{
    opacity: 100;
}

.why_item i {
    color: #05177c;
    font-size: 25px;
    margin: 6px;
}

/*Customer and partner*/

.brand_container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section_div {
    height: 223px;
    display: flex;
    align-items: center;
    background-color: #eeeeee;
}

.container{
    max-width: 1240px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-wrapper{
    transition-timing-function: linear;
}

.swiper-slide {
    display: flex;
    padding: 0 10px;
    width: auto;
}

.img_part{
  height: 200px;
}


.partner_header_title {
  text-align: center;
  font-size: 45px;
  margin: 45px auto;
  border-bottom: 5px solid black;
  width: 30%;
  padding: 15px;
  background: #00C999;
  background: radial-gradient(ellipse farthest-side at bottom center, #00C999 11%, #05177C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 border-color: #05177a;
}

/*contact*/
.contact_whatsapp {
    position: absolute;
    display: flex;
    bottom: 7px;
    right: 12px;
    cursor: pointer;
    color: white;
    font-size: 25px;
    border-radius: 33px;
    padding: 17px;
    background: rgb(5,23,122);
    background: radial-gradient(circle, rgba(5,23,122,1) 0%, rgba(0,201,153,1) 100%);
    transition: 0.5s ease-in-out;
}
/*
.contact_whatsapp:hover{
  right: 0;
}*/

.services_wapper {
  display: grid;
  grid-template-columns: auto auto;
  border: 2px solid #00c999;
  margin: 43px;
  border-radius: 0 34px;
}
}

.services_discription{
  width:100%;
}
.services_image{
  width:100%
}
.services_image img {
  width: 500px;
  transition: 0.3s ease-in;
  border-radius: 0px 41px;
  border: 6px solid #05177a;
}

/* Footer CSS */
.footer__container {
  background-color: #131313;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer__logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

#footer__logo img{
  width: 200px;
}

.footer__links {
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;

}
.footer__links_ar {
  width: 100%;
  max-width: 1000px;
  justify-content: center;
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;

}

.footer__link--wrapper {
  display: flex;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer__link--items h3 {
  color: #fff;
  font-size: large;
  font-weight: bold;
 
}

.footer__link--items a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  padding-top: 10px;
  transition: 0.3 ease-out;
}

.footer__link--items a:hover {
  color: #e9e9e9;
  transition: 0.3 ease-out;
}

.social__icon--link {
  color: #fff;
  font-size: 24px;
}

.social__media {
    background-color: #131313;
    padding: 1px;
  max-width: 100%;
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 51px 0px 0px;
}

.social__icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website__rights {
  color: #fff;
}

.padding_page{
  height: 100px;
}

.services_wapper{
  padding: 5%;
}

.services_discription{
  font-weight: bold;
  font-size: 23px;
}
.services_discription dt {
    list-style: circle;
    margin: 8px;
    margin-left: 2rem;
    display: list-item;
}
.services_quality_assurance_section{
    margin: 8% auto;
    text-align: center;
    background: #0517bd;
    color: white;
    width: 80%;
    border: 2px solid #00c999;
    border-radius: 0 36px;
}
.quality_discription h2 {
  margin: 14px;
  font-size:39px;
}

.quality_discription p {
  font-size: 24px;
  text-align: justify;
  margin: 3%;
}
.quality_discription img {
  width: 10%;
}
.location_section{
  display: grid;
grid-template-columns: auto auto;
margin: 0 auto;
  margin-top: 0 px;
justify-content: center;
gap: 133px;
border: 3px solid #00c999;
padding: 4rem;
top: 40px;
margin-top: 40px;
width: 90%;
border-radius: 0 30px;
}
@media screen and (max-width: 1450px) {
  /* Hero Section */
  .title__hero{
    font-size: 50px;
  }
  .content__hero p {
  font-size: 29px;
}

/*Define Section*/
  .define_container{
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
    justify-content: center;
}
  .define_description{
    padding: 50px;
}
.define_description p {
    margin: 20px 71px 0px 9px;
}
.define_img{
    width:679px;
}

/*Letter Ceo*/
 .ceo-letter h2 {
  font-size: 40px;
 }
 .ceo-letter  {
   font-size: 18px;
 }
/* Card Section */
  .slide-wrapper {
      grid-template-columns: 1fr 1fr;
  }
  /*Why Section*/
.why-section{
    width: 70%;
}
.why_item{
  width:100%;

    }
.why_item i {
    margin: 4px;
    }
/*customer and partner*/
.partner_header_title {
  font-size: 35px;
  width: 50%;
 }
}

@media screen and (max-width: 960px) {
  /* Nav Bar Section */
  .navbar__container {
    direction: ltr;
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background:  rgb(237, 247, 240);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 80vh;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 20px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #ffff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
    background: #000000;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

.title__hero{
    font-size: 26px;
  }

.content__hero p {
  font-size: 15px;
}
/*Ceo Letter*/
 .ceo-letter h2 {
  font-size: 35px;
 }
 .ceo-letter  {
   width: 90%;
   font-size: 15px;
 }
 .services_wapper {
   display: grid;
   grid-template-columns: auto;
   gap: 30px;
 }
 .services_image img {
   width: 500px;
 }
 .location_section{
   grid-template-columns: auto;
 }
}



@media screen and (max-width: 820px) {
  /*Footer*/
.footer__container {
  padding: 2rem 0;
}
  .footer__links {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: auto auto;
  }

.footer__links_ar {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: auto auto;
  }

  #footer__logo {
    margin-bottom: 2rem;
  }

  .website__rights {
    margin-bottom: 2rem;
  }

  .footer__link--wrapper {
    flex-direction: column;
  }

  .social__media--wrap {
    flex-direction: column;
  }

  /*why Section*/
.why-section{
    width: 80%;
}
.why_item{
  widows: 100%;

    }
.why_item i {
    margin: 4px;

    }

.cards__wrapper {
  grid-template-columns: auto;
}
}

@media screen and (max-width: 700px) {
  /*hero section*/
  .title__hero{
    font-size: 26px;
  }

  /*define section*/
.define_container{
    grid-template-columns: 1fr;
}
/*
.define_description{
    font-size: 15px;
}*/
.define_img{
    width:300px;
    margin:9px auto;
}
.define_description p {
        margin: 8px -72px -36px -57px;
 }
/*Card Section*/
  .slide-wrapper {
     grid-template-columns: 1fr;
  }
  /*customer and partner*/
.partner_header_title {
  font-size: 25px;
  width: 75%;
 }
.services_image img{
  width:400px;
}
}
@media screen and (max-width: 480px) {
  .footer__links {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: auto;
    justify-content: left;
  }
  .footer__links_ar {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: auto;
    justify-content: right;
  }

  .footer__link--items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
.why-section{
    width: 80%;
}
.why_item li{
    height: 170px;

    }
.why_item i {
    margin: 4px;
    }
.define_description p {
  font-size: 18px;
 }
.services_image img {
  width: 300px;
}
.services_discription dt {
  font-size:14px;
}
.quality_discription h2 {
  font-size: 27px;
}
.quality_discription p{
  font-size: 14px;
}
  .title__hero{
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
.services_image img {
  width: 192px;
}
}
