@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');
:root {
   --theme-color: #697438;
   --font-head: "SUSE", sans-serif;
}
* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: sans-serif;
   text-decoration: none;
   list-style: none;
 }
 
 .header {
   position: sticky;
   /* margin-bottom: 200px; */
   top: 0;
   width: 100%;
   box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
   background-color: white;
   z-index: 100;
 }
 .headerPrdocutPage {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
  background-color: white;
  z-index: 100;
}
 
 nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 30px;
 }
 .logo {
   display: flex;
   flex-direction: row;
   width: 300px;
   justify-content: start;
   align-items: center;
 }
 .logo a {
   font-size: 1.5rem;
   font-weight: bold;
   color: #697438;
   font-family: "SUSE", sans-serif;
   font-style: normal;
 }

 .mainLogo {
   height: 50px;
   width: 50px;
   display: inline-block;
 }
 
 .menu {
   display: flex;
   justify-content: center;
   align-items: center;
 }
 
 .menu a {
   display: block;
   padding: 7px 15px;
   font-size: 17px;
   font-weight: 500;
   transition: 0.2s all ease-in-out;
   color: #697438;
   font-family: "SUSE", sans-serif;
   font-style: normal;
 }
 
 .menu:hover a {
   opacity: 0.4;
 }
 
 .menu a:hover {
   opacity: 1;
   color: #697438;
 }
 
 .menu-icon {
   display: none;
 }
 
 #menu-toggle {
   display: none;
 }
 
 #menu-toggle:checked ~ .menu {
   transform: scale(1, 1);
 }
 
 @media only screen and (max-width: 950px) {
   .menu {
     flex-direction: column;
     background-color: white;
     align-items: start;
     position: absolute;
     top: 90px;
     left: 0;
     width: 100%;
     z-index: 1;
     transform: scale(1, 0);
     transform-origin: top;
     transition: transform 0.3s ease-in-out;
     box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
   }
 
   .menu a {
     margin-left: 12px;
   }
 
   .menu li {
     margin-bottom: 10px;
   }
 
   .menu-icon {
     display: block;
     color: #697438;
     font-size: 28px;
     cursor: pointer;
   }
 }
 
/* SLIDER */
html,
    body {
      position: relative;
      height: 100%;
    }

    .swiper {
      width: 100%;
      height: 80vh;
      margin-top: 1rem;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .swiper-button-prev, .swiper-button-next{
      color: #383d1f !important;
      background-color: white;
    }
    .swiper-pagination-bullet-active {
      background: var(--theme-color) !important;
    }
/* ABOUT US */
.aboutUs {
   width: 90vw;
   margin-left: auto;
   margin-right: auto;
   display: flex;
   flex-direction: column;
   flex-wrap: wrap;
   justify-content: space-between;
   height: auto;
   padding-bottom: 10px;
}
.heading {
   font-family: "SUSE", sans-serif;
   color: var(--theme-color);
   text-align: center;
   font-size: 2.3rem;
   padding-top: 20px;
}
.aboutUsText {
   color: var(--theme-color);
   text-align: center;
   margin-top: 20px;
   margin-bottom: 10px;
   font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button {
   display: inline-block;
   border-radius: 4px;
   background-color: var(--theme-color);
   border: none;
   color: #FFFFFF;
   text-align: center;
   font-size: 1rem;
   padding: 16px;
   width: 150px;
   transition: all 0.5s;
   cursor: pointer;
   margin: 5px auto;
  }

  a {
   text-align: center;
   margin: 5px auto;
  }
  
  button span {
   cursor: pointer;
   display: inline-block;
   position: relative;
   transition: 0.5s;
   font-family: Verdana, Geneva, Tahoma, sans-serif
  }
  
  button span:after {
   content: '»';
   position: absolute;
   opacity: 0;
   top: 0;
   right: -15px;
   transition: 0.5s;
  }
  
  button:hover span {
   padding-right: 15px;
  }
  
  button:hover span:after {
   opacity: 1;
   right: 0;
  }

/* FOOTER */
/* From Uiverse.io by PapaUiiss404 */ 
.card {
  width: 90vw;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: .3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128C7E;
  transition-duration: .3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

footer {
  background-color: var(--theme-color);
  color: white;
  padding: 1rem 0;
  padding-bottom: 0;
  font-family: var(--font-head);
}
.footerProductPage {
  background-color: var(--theme-color);
  color: white;
  padding: 1rem 0;
  padding-bottom: 0;
  font-family: var(--font-head);
  margin-top: 0rem;
  position: relative;
}
footer h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 1rem;
}
.footerList {
  display: flex;
  justify-content: space-evenly;
  margin: 0.5rem auto;
  color: white;
  font-family: var(--font-head);
  max-width: 500px;
}
.footerList a {
  color: white;
  font-family: var(--font-head);
}
.lastLine {
  background-color: white;
  color: var(--theme-color);
  font-family: var(--font-head);
  text-align: center;
  padding: 0.25rem;
}
a {
  color: white;
}


/* CLIENTS */
.clientsContainer {
  display: flex;
  flex-direction: row;
  overflow-y: auto;
  align-items: center;
  justify-content: space-around;
  padding: 0 5px;
  margin-top: 10px;
}
.clientBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(171, 171, 171, 0.2);
  padding: 1rem;
  margin: 0 5px;
  border-radius: 10px;
}
.clientBox h2 {
  color: var(--theme-color) ;
  font-size: 1.3rem;
  font-family: var(--font-head);
}



/* CERTIFICATES */
.certImg {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: contain;
}
.gst {
  width: 100px;
  height: 150px;
}
.certsCotainer {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  margin: 15px 0;
}
.cardCerts {
  position: relative;
  width: 45%;
  max-width: 300px;
  height: 200px;
  background-color: #ffffff80;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 5px;
}

.cardCerts:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--theme-color);
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cardCerts:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  font-family: var(--font-head);
  margin: auto;
}


.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}


/* CONTACT US */
.contactDetails {
  background-color: var(--theme-color);
}
.contactUsHead, .contactUsHead1 {
  background-color: white;
  width: 100%;
  padding: 1rem;
}
.contactUsHead1 {
  font-size: 1.5rem;
  padding: 0.5rem;
}
.contactsHolder {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  background-color: var(--theme-color);
  width: 95vw;
}
.contactDetails {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 1.3rem 0;
  margin: 0.5rem 0 0 0;
  width: auto;
}
.contactDetailsText {
  color: white;
  font-family: var(--font-head);
  font-size: 1.2rem;
  padding-top: 0.25rem;
}

form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 80%;
  margin: 2rem auto 2rem auto;
}

label {
  font-size: 1rem;
  margin-bottom: 0rem;
  display: block;
  font-style: bold;
  font-family: var(--font-head);
  color: var(--theme-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 0.1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #42a5f5;
  outline: none;
  box-shadow: 0 0 8px rgba(66, 165, 245, 0.2);
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  width: 100%;
  background-color: #197fd3;
  color: white;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #1e88e5;
}

.form-group {
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  form {
      padding: 20px;
  }
}

/* PRDOUCTS */
.prdouctPage {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 90px;
}
.indexSection {
  width: 25%;
  max-width:  600px;
  min-width: 80px;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
}
.indexToggle {
  display: flex;
  flex-direction: column;
  height: 12%;
  background-color: var(--theme-color);
  color: white;
  font-family: var(--font-head);
  font-size: 0.7rem;
  border-bottom: 1px solid white;
  cursor: pointer;
}
@media (max-width: 500px) {
  .indexToggle {
    height: 6.5%;
    font-size: 0.7rem;
  }
}
.indexToggle:hover {
  background-color: rgb(255, 255, 255);
  color: var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}
.indexHeading {
  padding: 1.4rem 0rem;
  text-align: center;
  font-size: 1.3em;
}
.contentSection {
  margin-left: 27%;
  margin-top: 1px;
  overflow: hidden;
  /* width: min-content; */
}
.contentContainer {
  padding: 1em 0em;
  border-bottom: 1px solid black;
  margin-right: 2%;
  z-index: -3;
  height: auto;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: black;
}
.contentHeading1 {
  font-size: 1.1em;
  margin-top: 90px;
  font-family: var(--font-head);
}
.contentHeading {
  font-size: 1.1em;
  /* margin-top: 90px */
  font-family: var(--font-head);
}
.contentText {
  font-size: 0.8em;
  margin-bottom: 10px;
}