@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

/* style header */

.header {
  height: 125px;
  background: #e6e4e2;

  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  border-radius: 8px 0;
  transition-timing-function: ease-in;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;

  -webkit-border-radius: 8px 0;
  -moz-border-radius: 8px 0;
  -ms-border-radius: 8px 0;
  -o-border-radius: 8px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}

.logo__image {
  height:58%;
  width: 58%;
  margin-top: 5px;
  -webkit-border-top-left-radius: 40px;
-webkit-border-bottom-right-radius: 40px;
-moz-border-radius-topleft: 40px;
-moz-border-radius-bottomright: 40px;
border-top-left-radius: 40px;
background :#d3d2d2;
border-bottom-right-radius: 40px;
  object-fit: contain;
}
.menu__icon {
  display: none;
  align-items: center;
  position: absolute;
  right: 5%;
  color: #50d890;
  cursor: pointer;
}
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-item {
  height: 40px;
}

.nav-link {
  color: #50d890;
  display: flex;
  align-items: center;
  font-size: 1rem;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  font-weight: 600;
  cursor: pointer;
}

.active {
  border-bottom: 2px solid #283739;
}

.nav-link:hover {
  transition: all 0.5s ease-in-out;

  border: 0;
  border-radius: 8px;
  background: #2f3130;
  color: #d9d9d9;
  padding: 10px 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  /*Tablets [601px -> 1200px]*/
  .nav__menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 60vh;

    padding: 20px;
    left: 0;
    position: absolute;
    top: 88px;
    right: 45%;
    display: none;

    transition: all 0.5s ease;

    gap: 5px;
    list-style-type: none;
  }

  .nav__menu.nav__active {
    background: #071013;

    display: flex;
    transition: all 0.5s ease;
    z-index: 1;
    align-content: center;
  }
  .nav-link {
    padding: 0;
  }

  .logo__image {
    width: 60%;
    position: relative;
    left: -40px;
    top: 2%;
    
  }
  .menu__icon {
    display: flex;
    align-items: center;
    font-size: 30px;
  }
}

@media screen and (max-width:350px){
  .logo__image {
    width: 70%;
  }
}

/* style hero */

.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo/hero2.png);
  z-index: 1;
  background-repeat: no-repeat;
  object-fit: contain;

  background-size: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  border-radius: 0px 0px 80px 0px;
}

.hero {
  height: 45rem !important;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}
.container {
  width: 80%;
  padding: 20px;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: white;
}
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: 30px;
}

.brand__name {
  width: 80%;
  margin: auto;
  text-align: center;
  font-weight: 800;

  font-size: 4.5rem;
}
.sub {
  color: #faf1e6;
  padding: 10px;
  font-size: 20px;
  text-transform: capitalize;
}
.slogan {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}
.cta__container {
  padding: 20px;
  margin: 20px auto;
}
.button {
  background: #283739;
  color: white;
  padding: 12px;
  height: fit-content;
  border-radius: 5px;
font-size : 19px;
}

@media screen and (max-width: 1024px) {
  .hero {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 90%;
    margin: auto;
    text-align: center;
  }
  .heading {
    margin-top: 40px;
  }

  .brand__name {
    width: 90%;
    font-size: 50px;
  }
  .sub {
    width: 70%;
    text-align: center;
    margin-left: 35px;
  }
  .background {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/logo/hero2.png);

    height: 100%;
    background-repeat: no-repeat;
    object-fit: contain;
    background-position: center;

    background-size: 1970px;
  }
}

@media only screen and (max-width: 600px) {
  .brand__name {
    font-size: 3rem;
  }
}
@media screen and (max-width: 350px) {
  .hero {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
  }

  .brand__name {
    font-size: 30px;
  }
  .sub {
    font-size: 16px;
  }
  .slogan {
    font-size: 15px;
  }
}

/* style intro */

.intro {
  height: 100% !important;
  background: #fdfaf6;
  width: 100%;
  display: flex;
}
.intro__container {
  width: 80%;

  padding: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.intro__heading {
  padding: 10px;
  font-size: 3rem;
  color: #283739;
}
.intro-text {
  width: 85%;
  margin: auto;
  text-align: center;

  padding: 20px;
  font-size: 18px;
}
.services__intro {
  width: 90%;

  padding: 20px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.services__heading {
  font-size: 2rem;
  padding: 10px;
  text-align: center;
  color: #283739;
  font-weight: 400;
}

.card_container {
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}
.ser_card {
  width: 100%;
  height: 400px;
  padding: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 7px 7px 24px #d9d9d9, -7px -7px 24px #ffffff;
}
.image {
  height: 250px;
  object-fit: contain;
}
.ser-name {
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 85%;
  font-size: 17px;
}

@media screen and (max-width: 1024px) {
  .intro__container {
    width: 100%;
  }
  .intro-text {
    width: 100%;
    text-align: left;
  }
  .card_container {
    flex-direction: column;
  }
  .image {
    width: 100%;
  }
}

.breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: 40px auto;
  margin-top: 90px;
}
.breadcrumb__heading {
  font-size: 4rem;
  color: #ffffff;
}
.breadcrumb__link {
  font-size: 22px;
  color: #50d890;
}
.breadcrumb__span {
  color: #fafdff;
  font-size: 22px;
}

@media only screen and (max-width: 1024px) {
  .breadcrumb__heading {
    font-size: 30px;
  }
}

/* style about us page */

.about {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about__content {
  width: 100%;
  height: 100%;
  background: rgb(245, 245, 245);
  margin: auto;
  padding: 20px;
}
.about__heading {
  text-align: center;
  width: 89%;
  margin: 20px, auto;
  font-size: 3rem;
  color: #283739;
}
.company__intro {
  width: 99%;
  margin: auto;
  padding: 20px;
  height: 500px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;

  -webkit-clip-path: polygon(0 0, 100% 0, 100% 62%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 0% 100%);
  box-shadow: -21px 21px 57px #ede9e9, 21px -21px 57px #ffffff;
}
.p{
  font-size: 18px;
  padding: 20px;
}
.display__container{
 max-width : 65%;
  height: 120px;
  justify-content: space-evenly;
  margin:0 auto;
  display: flex;
  gap: 15px;
  justify-content: center;
  
  

}
.display__card{
  max-width: 70%;
  height: fit-content;
  background: #e9e8e8;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
 
  align-items: center;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.display__card > h3{
  width:100%;
}
.display__card >  a{
  margin-top: 5px ;
  padding: 8px;
  background: #283739;

  border-radius: 5px;
  
  color: #fff;
  
}

.about__card__container {
  width: 80%;
  margin: auto;
  position: relative;
  top: -110px;
  z-index: 1;
  height: 390px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
}

.card__content {
  width: 100%;

  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
  box-shadow: 1px 6px 5px 0px rgba(225, 205, 205, 0.75);
  -webkit-box-shadow: 1px 6px 5px 0px rgba(225, 205, 205, 0.75);
  -moz-box-shadow: 1px 6px 5px 0px rgba(225, 205, 205, 0.75);
}
#card {
  position: relative;
  top: -60px;
}

.card__content__heading {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 40px;
  color: #283739;
}
.card__content__text {
  width: 100%;
  padding: 10px;
  font-size: 17px;
}
.icons {
  color: #139b47;
}

@media only screen and (max-width: 1024px) {
  .about {
    height: 100%;
  }
  .about__content {
    width: 100%;
    padding: 5px;
    height: 100%;
  }
  .display__container{
    width: 100%;
    height: 100%;
    flex-direction: column;
  }
  .display__card{
    width: 100%;
  }
  .company__intro {
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  }
 
  .about__heading {
    width: 100%;
    font-size: 30px;
  }

  .about__card__container {
    height: 100%;
    width: 100%;
    padding: 2px;

    flex-direction: column;
    margin-top: 50px;
    position: unset;
    gap: 2px;
  }
  .card__content {
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
  }
}

@media screen and (max-width:600px){
  .display__container{
    max-width: 100%;
    max-height: 100%;
    flex-direction: column;
  }
  .display__card{
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (max-width:350px){
  display__card{
    max-width: 100%;
    max-height: 100%;
  }
  .display__container{
    max-width: 100%;
    max-height: 100%;
    
  }
}

/* style services page */

.services {
  width: 85%;

  height : 100%;
  margin:  auto;
}
.services__container{
  display: flex;
  align-items: center;
  flex-direction: column;
  height : 100%;
 
}

.content__section{
  display: flex;
  height : 100%;
  margin: 20px;
  flex-direction: column;
  align-items: center;
 
 
}
.bg__img{
  width: 100%;
  height:900px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.bg__img > h1{
  color: rgb(255, 255, 255);
  font-size: 4rem;
  width: 85%;
  font-weight: bold;
  text-align: center;

}
#bg-1,#bg-2,#bg-3{
  background-size: 100%;
  object-fit: contain;
  height : 100%;
  background-repeat: no-repeat;

}
#bg-1{
  background-image: url('../images/services/water_treatment.png');
 
}
#bg-2{
  background-image: url('../images/services/industrialpackaging.png');
  background-position: center;
 
}
#bg-3{
  background-image: url('../images/services/industrial_design.png');
 
}
.section__card{
 width : 80%;
  height: 700px;
  
  background: #eff1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}
.service_info{
 
  margin: auto;
  padding: 10px;
 
  height : 100%;
}
.info_text{
  width: 100%;
  font-size:18px;
  color: #080808;
}
.info_text > p {
  margin: 10px auto;
  height : 100%;
}
.text_list{
  display: flex;
  
  flex-direction: column;
  margin: 15px 0;
 

}
span > i{
  color: #139b47;
}
.text_list > span {
  display: flex;
  width : 100%;
  height: fit-content;
  align-items: center;
  margin: 10px auto;
  gap: 5px;
}


@media screen and (max-width:1024px){
.services{
  width: 100%;
  height: 100%;
}
.bg__img{
  height : auto;
}
.bg__img > h1{
  font-size: 2.8rem;
}
}
@media screen and (max-width: 600px) {
  .services{
    width: 100%;
    height: 100%;
  }
  .info_text > p{
    width : 100%;
  }
  .bg__img > h1{
    font-size:2rem;
  }
  .section__card{
    width : 100%;
    height : 100%;

  }
  .service_info{
    width: 100%;
    height : 100%;
  }
}
@media screen and (max-width: 350px) {
  .bg__img > h1{
    font-size: 1rem;
  }
}
.product__heading {
  margin-top: 20px;
  padding: 20px;
  font-size: 25px;
}

@media screen and (max-width: 1024px) {
  
.product__heading {
  margin-top: 40px;
  padding: 20px;
  font-size: 20px;
}
}

.gallery {
  height: 100%;
  width: 100%;
  margin-top: 40px;
  z-index: 1;
}
.gallery__container {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  height: 100%;
  z-index: 1;
  background: #f9f9f9;
}

.button__tab {
  display: flex;
  gap: 20px;
  align-items: center;

  height: fit-content;
}
.filter-btn {
  padding: 5px 10px;
  font-size: 16px;
  outline: none;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  color: #283739;
  background: #e8f0f2;
  cursor: pointer;
}
.filter-btn.btn-active {
  color: White;
  background: #283739;
}
.gallery__show {
  width: 95%;
  height: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 10px 10px;

  align-items: center;
  margin-bottom: 240px;
}
.gallery__image__card {
  width: 80%;
  height: 400px;
  margin: 20px auto;

  display: none;
  flex-direction: column;

  align-items: center;
}

.gallery__container {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  height: 100%;
  z-index: 1;
  background: #f9f9f9;
}
.gallery__image__card > img {
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}
.gallery__image__card > h5 {
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.show {
  width: 95%;
  height: 250px;
  margin: 40px auto;
  transition: all 0.5s ease-in;
  display: flex;
  flex-direction: column;

  align-items: center;
}

@media screen and (max-width: 1024px) {
  .gallery {
    width: 100%;
    height: 100%;
  }
  .button__tab {
    margin-top: 50px;
  }
  .gallery__container {
    width: 100%;
    height: 100%;
  }
  .gallery__show {
    width: 90%;
    height: 100%;
    margin-bottom: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__image__card {
    width: 100%;
  }
  .show {
    width: 100%;
    margin: 20px auto;
  }
  .gallery__image__card > img {
    height: 80%;
    object-fit: contain;
  }
  .gallery__image__card > h5 {
    width: 70%;
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
  }
}

@media screen and (max-width: 520px) {
  .gallery__show {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 320px) {
  .button__tab {
    width: 70%;
    flex-direction: column;
  }
}

.__header {
  height: 350px !important;
  width: 100%;
  display: flex;

  align-items: center;
}

/* style contact us page */

.contact {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__details {
  width: 80%;
  border-radius: 10px;
  height: 100%;
  z-index: 10;
  margin: 40px auto;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 120px;
  background: #ffffff;
}

.contact__card {
  width: 95%;
  margin: auto;
  height: 100%;

  display: flex;
  border-radius: 8px;
  background: #ffffff;
  background: #ffffff;
  box-shadow: -21px 21px 36px #ebebeb, 21px -21px 36px #ffffff;

  align-items: center;
  text-align: center;
  flex-direction: column;
}
.contact__card > i {
  color: #139b47;
  padding: 10px;
  font-size: 35px;
}
.contact__text > a {
  width: 85%;
  color: #283739;
}
.contact__card > p {
  width: 80%;
  padding-bottom: 10px;
  font-size: 18px;
}
.contact__container {
  width: 90%;
  margin: auto;
  height: 650px;
  background: #faf1e6;
  display: flex;
  border-right: 8px solid #50d890;
}
.map {
  width: 100%;
  background: rgb(255, 255, 255);
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 79%, 0 100%, 0% 38%);
  clip-path: polygon(0 0, 100% 0, 100% 79%, 0 100%, 0% 38%);
}

.form {
  width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  right: 5%;
  margin-top: 10px;

  border-radius: 8px;
  border-radius: 5px;
  background: #fffafa;
}
.form__text {
  width: 80%;
  text-align: center;
  padding: 5px;
  color: #282828;
}
.form__text > h4 {
  font-size: 30px;
}
.form__text > p {
  font-size: 16px;
  margin-top: 10px;
}
form {
  display: flex;
  flex-direction: column;

  padding: 10px;
  width: 90%;
  margin: auto;
}
input {
  padding: 10px;
  max-width: 320px;
  margin-top: 10px;
  border: none;
  outline: none;
  color: #080808;
  border-radius: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  background: #e8f0f2;
}
textarea {
  max-width: 320px;
  max-height: 210px;
  margin-top: 10px;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  background: #e8f0f2;
}

form > button {
  width: 250px;
  margin-top: 10px;
  background: #283739;
  color: #faf1e6;
  font-size: 20px;
  font-weight: 4 00;

  padding: 8px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .contact__header {
    height: 100%;
  }
  .contact__details {
    flex-direction: column;
    margin: 30px, auto;
    height: 100%;
    width: 89%;
  }

  .contact {
    overflow: hidden;
    height: 100%;
    width: 90%;
    margin: auto;
    flex-direction: column;
  }
  .contact__card {
    width: 100%;
  }
  .contact__text {
    width: 20px;
    text-align: center;
  }
  .contact__container {
    width: 100%;
    height: 100%;
    flex-direction: column;
    border-right: 3px solid #50d890;
  }

  .map {
    height: 100%;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0% 38%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0% 38%);
  }
  .form {
    height: 100%;
    width: 100%;
    right: 0;
  }
  form {
    width: 100%;
    align-items: center;
  }
  input {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
  form > button {
    width: 50%;
  }
}

/* style footer */

footer {
  overflow: hidden;
  bottom: 0;
  background: #282828;
  height: 100%;
  width: 100%;
  color: #f8f5f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.copyright {
  text-align: center;
}
