*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
font-family: Cairo;
}

body{
    background-color: #fff;
        transition: 0.5s ease;

}





body.dark-mode{
    background-color: #1a121e;
    transition: 0.5s ease;
}










a{
    text-decoration: none;

}

ul{
    list-style: none;
}
#hero{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 600px;
    transition: 1s;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  z-index: var(--z-fixed);
  padding: 25px;
}



.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content:space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: 700;
  font-size: 29px;
}

.nav__logo{
    color: #06b93f;
    
}
.nav__logo i {
    margin-left: 8px;
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--black-color);
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
text-align: center;
    z-index: 100000000;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;

  }

  .nav__list{
    background-color: #a3fdbf;
    padding: 30px;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 1rem;
}

.nav__link {
  position: relative;
  color: #333;
  font-size: 5px ;
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
  margin-right: -30px;
  margin-bottom: 32px;
  
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
  font-size: 14px ;

}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: width .4s ease-out;

}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
    color: #06b93f;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}


.darkmode{
    background-color: #06b93f;
    padding: 7px 50px;
    border-radius: 50px;
    color: #fff;
    border: none;
    transition: 0.5s;
    cursor:pointer;

}
.darkmode:hover{
    background-color: #8ef1ad;
    padding: 7px 20px;
    
}







.hero-content{
margin-bottom: 150px;
display: flex;
justify-content: center;
text-align: center;
}


.hero-text h1{
font-size: 2.5rem;
color: #06b93f;
line-height: 3.6rem;


}
.hero-text p{
    color: #535353;
    margin: 15px 0px;

    letter-spacing: 0.3px;
    line-height: 1.8rem;


}

.hero-text-btns{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-btns a:hover{
    transform: scaleX(1.1);
    background-color: #06b93f;
    color: #9bc7fe;
    opacity: 0.7;
}

.hero-text-btns i{
    margin-right: 5px;
}
.hero-text-btns a {
    height: 54px;
    padding: 0px 15px;
    margin-right: 10px;
    background-color: #06b93f;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
font-size: 0.9rem;
letter-spacing: 0.5px;
font-weight: 500;
transition: 0.9s;

}


.what-we-provide{
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.w-info-box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    margin-left: 20px;
    box-shadow: 1px rgba(0,0,0, 0.12);
    border-radius: 10px;
padding: 10px;

}

.w-info-icon{

    align-items: center;
    font-size: 2.5rem;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 5px;

}
.w-info-text{
    display: flex;
    flex-direction: column;
}

.w-info-text i {
    color: #000000;
}

.w-info-text strong{
    color: #06b93f;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.w-info-text p{
    color: #535353;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    margin-bottom: 10px;

}



#our_story{
    max-width: 1200px;
    width: 90%;
    margin: 80px auto;
    box-shadow: 2px 2px 30px rgba(0,0,0,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.our-story-img{
    width: 60%;
    display: flex;
}
.our-story-img img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.our-story-text{
    padding: 50px;
}
.our-story-text h2{
    font-size: 2.8rem;
    color: #06b93f;
    line-height: 3rem;
    margin-bottom: 19px;
}

.our-story-text p{
    font-size: 0.9rem;
    color: #535353;
    margin: 10px 0;
    line-height: 1.4rem;
    letter-spacing: 0.3px;
}


#our_services{
    width: 100%;
    background-color: #f5f7fb;
    margin: 50px auto 0px auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.services-heading-text strong{

color: #06b93f;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 0.3px;

}
.services-heading-text strong{
font-size: 2.2rem;
color: #06b93f;
font-weight: 700;
max-width: 600px;
}


.services-heading-text h2{
font-size: 17px;
color: #535353;
font-weight: 400;
max-width: 600px;
}




.services-box-container{

max-width: 1200px;
width: 90%;
margin: 40px auto;


}
.service-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    border: 2px solid #06b93f;
    border-radius: 5px;
    text-align: center;
    padding: 30px;


}

.service-box img{
    width: 60%;
}

.service-box:hover{
    border: 5px solid #c7d0eb;
}

.service-box i {
    font-size: 2rem;
    color: #06b93f;
    border-radius: 5px;
    padding: 10px;
    align-items: center;
    text-align: center;

}

.service-box strong{
    color: #06b93f;
    font-size: 1.4rem;
    margin-top: 20px;
}
.service-box p{
    color: #122853;
    font-size: 0.9rem;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.service-box a{
    height: 45px;
    background-color: #06b93f;
    color: #fff;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 30px;
    transition: 0.5s;
}

.service-box a:hover{
    background-color: #8ef1ad;
    color: #c7d0eb;
    transform: scale(1.1);

}


.s-box1 i{

    background-color: #d4e2ff;


}

.more-products{
    background-color: #06b93f;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    

}

.swiper-button-prev,.swiper-button-next{
    position: static !important;
    transform: translate(0,0);
    margin: 10px !important;
}
.services-slider-btns{
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev::after,.swiper-button-next::after{
    font-size: 25px !important;
    font-weight: 800;
    color: #122853;
}


#why_choose_us{
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
}

.why-choose-us-left{
    padding: 50px;
    background-color: #148b3a;
}
.why-choose-us-right{
    padding: 50px;
    background-color: #06b93f;
}
.why-choose-us-left h3
,.why-choose-us-right h3{
    font-size: 2.6rem;
    color: #fff;
    font-weight: 600;
    line-height: 3.2rem;
}

.why-choose-us-box-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    grid-gap: 10px;
}
.why-choose-us-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    background-color: #122853;
    border-radius: 5px;
}

.why-choose-us-box i{
padding: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #34579e;
    margin-left: 10px;
    color: #fff;

}

.why-choose-us-text{
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.why-choose-us-text strong{
    color: #fff;
    font-weight: 600;
}

.why-choose-us-text p{
    color: #ececec;
    font-size: 0.9rem;
    opacity: 0.7;
}

.why-choose-us-btn{
    background-color: #fff;
    color: #000;
    padding: 0px 10px;
    display: flex;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    max-width: 200px;
    margin-top: 30px;
    transition: 0.5s;
}

.why-choose-us-left p{
    color: #dfdfdf;
    font-size: 0.8rem;
    line-height: 1.4rem;
    letter-spacing: 0.5px;
    margin: 10px 0px;

}

.why-choose-us-right p{
    color: #dfdfdf;
    font-size: 0.8rem;
    line-height: 1.4rem;
    letter-spacing: 0.5px;
    margin: 10px 0px;

}

.w-right-contact-box-text a{
    color: #d8f9e8;
}

.w-right-contact-box-text span{
    color: #fff;
}

.w-right-contact-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: row;
    align-items: center;
}

.w-right-contact-box{
    align-items: center;
    background-color: #148b3a;
        padding: 19px;
    border-radius: 10px;
margin-bottom: 20px;
}
.w-right-contact-box i {

    background-color: #099b54;
    border-radius: 4px;

    align-items: center;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    margin-left: 10px;
}

.w-right-contact-box-text{
text-align: center;
}




.contact-box{
    width: 80%;
    max-width: 850px;
    margin: 50px auto;
    margin-top: 100px;
    background-color: #06b93f;
    padding: 50px;

}

.contact-box h2{
    text-align: center;
    color: #fff;
    margin-bottom: 50px
}

.contact-box form input{
    display: block;
    width: 80%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #d4e2ff;
    color: #333;
    align-items: center;
    margin-right: 60px;

}

.contact-box form input:focus , form textarea:focus{
    outline: none;
    box-shadow: 0 0 5px #333;
}


.contact-box form button{
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    margin-top: 20px;
}

.contact-box form button:hover{
    background-color: #1a121e;
    opacity: 0.7;
    border-radius: 10px;
}

form .input-report{
    height: 120px;
}

footer{
    background-color: #221527;
}


.footer_container{
    padding: 50px 0 ;
    max-width: 1200px;
    width: 90%;
    padding: 50px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-company-box{
    max-width: 250px;

}
.footer-company-box .logo{
    color: white;
    font-size: 19px;

}

.footer-company-box p{
    color: #ffffff;
    margin: 5px 0px;
    font-size: 0.9rem;
    line-height: 1.4rem;
    letter-spacing: 0.3px;
    margin-top: 20px;
}
.footer-social{
    display: flex;
    align-items: center;
    flex-wrap: wrap;

}
.footer-social a{
        margin-top: 10px;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e9e9ee;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-link-box strong{

color: #122853;
font-size: 1.2rem;
font-weight: 600;

}
.footer-link-box ul{
    margin-top: 5px;

}
.footer-link-box ul li a{
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
}

.footer-link-box ul li a:hover{
    color: #333;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
    border-top: 1px solid #e9e9e9;
    padding: 20px 0;
    max-width: 1200px;
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
}

.footer-bottom span{
    color: #ffffff;
    font-size: 0.9rem;

}


@media(max-width:1050px){

.hero-content{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 50px auto;
}

.hero-text{
    margin-bottom: 40px;
    padding: 30px;
    margin-top: 0px;
}

.what-we-provide{
    display: block;
 
}
.w-info-box{
    margin-top: 18px;
} 

.w-info-text{
    margin-top: 15px;
}

#our_story{
    grid-template-columns: 1fr;

}
.our-story-img{
    max-height: 400px;
    
}


.our-story-text{
    padding: 30px;
}


#why_choose_us{
    grid-template-columns: 1fr;
}




}


@media(max-width:620px){

.hero-text h1,
.our-story-text h2 ,
.services-heading h2 ,
.services-heading strong ,
.why-choose-us-left h3,
.why-choose-us-right h3 {
font-size: 1.6rem;
line-height: 2.2rem;

}

.hero-text-btns{
    flex-direction: column;
}

.hero-text-btns a {
    width: 100%;
    margin-top: 20px;
}

.appiontment-search{
    grid-template-columns: 1fr;
}
.appiontment-search button{
    height: 45px;
    margin-top: 20px;
}

.why-choose-us-box-container{
    display: inline-block;
}

.why-choose-us-box{
    margin-top: 10px;
}



}

@media(max-width:590px){

footer{
    align-items: center;
}


    .footer_container{
display: grid;
grid-template-columns: 1fr;

}

.hero-text h1,
.our-story-text h2 ,
.services-heading h2 ,
.services-heading strong ,
.why-choose-us-left h3,
.why-choose-us-right h3 {
font-size: 1.2rem;
line-height: 2.2rem;

}

.services-box-container img{
width: 40%;


}

.services-heading-text h2{
font-size: 10px;
line-height: 2.2rem;
color: #535353;
font-weight: 400;
letter-spacing: normal;
}




}

.language-selector{
    background-color: #06b93f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

