* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.8rem;
  background-color: #faffff;
}

/*------------------------------------ Header ------------------------------------*/
.header-container {
  /* border: 2px red solid; */
  height: 15rem;
  padding: 15px;
  background-color: #b9d3ba;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.header-container i {
  display: none;
  font-size: 2rem;
  color: #003c00;
  cursor: pointer;
}

.header-logo {
  max-height: 7.2rem;
  width: auto;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
  text-transform: uppercase;
}

.menu a:link,
.menu a:visited {
  font-size: 2rem;
  color: #003c00;
  text-decoration: none;
  letter-spacing: 0.1px;
  font-weight: 400;
  transition: all 0.4s;
}

.menu a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    height: auto;
  }

  .menu {
    border-top: 1px solid #95bb72;
    display: none;
    flex-direction: column;
    background-color: #b9d3ba;
    text-align: center;
    width: 90%;
  }

  .menu a {
    border-bottom: 1px solid #95bb72;
    width: 100%;
    padding: 1rem;
  }

  .menu.menu-open {
    display: flex;
  }

  .header-container i {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

/*--------------------------------------------------------------------------------*/

/*---------------------------------- Menu Title ----------------------------------*/
.menu-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
}

.menu-title-container h1 {
  font-size: clamp(1.8rem, 7vw, 5rem);
  text-transform: uppercase;
  font-weight: 150;
}

/*--------------------------------------------------------------------------------*/

/*------------------------------------- Home -------------------------------------*/
.index-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 6rem);
  max-width: 125rem;
  width: 100%;
  min-height: 50rem;
  margin: 0 auto;
}

.index-left-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-heading {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  color: #0088aa;
  text-shadow: 2px 2px 3px #0088aa86;
  line-height: 1.01;
  letter-spacing: -3px;
}

.index-description-heading {
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 700;
  margin: 1rem 0 0 0;
  color: #555;
  line-height: 1.6;
}

.index-description {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  margin: 0 0 2rem 0;
  color: #555;
  line-height: 1.6;
}

.index-button {
  background-color: #195969;
  color: #c6ffff;
  width: clamp(14rem, 30vw, 21rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  text-align: center;
}

.index-button:hover {
  color: #34c7c7;
  text-decoration: none;
}

.btn:link,
.btn:visited {
  /* font-size: 2rem;
  padding: 1.6rem 2.6rem;
  border-radius: 10px;
  text-decoration: none; */
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  padding: clamp(0.8rem, 1.2vw, 1.6rem) clamp(1.2rem, 2vw, 2.6rem);
  border-radius: 10px;
  text-decoration: none;
}

.index-right-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 900px) {
  .index-container {
    min-height: auto;
  }

  .index-left-container {
    text-align: center;
  }

  .index-button {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .index-container {
    grid-template-columns: 1fr;
  }

  .index-right-container {
    order: 1;
    align-items: flex-start;
  }

  .index-left-container {
    order: 2;
  }

  .index-img {
    width: 60%;
    height: auto;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------------------------*/

/*----------------------------------- About Us -----------------------------------*/
.aboutus-container {
  height: auto;
  display: flex;
}

.aboutus-left-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.aboutus-img {
  width: clamp(200px, 60%, 100%);
  height: auto;
}

.aboutus-right-container {
  background-color: #b9d3ba;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  text-align: center;
}

.aboutus-right-container h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.6;
}

.aboutus-right-container p {
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  line-height: 1.6;
  padding: 1rem 5rem;
}

@media (max-width: 900px) {
  .aboutus-container {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .aboutus-img {
    width: clamp(200px, 40%, 100%);
    height: auto;
  }

  .aboutus-right-container p {
    font-size: 1.8rem;
    line-height: 1.6;
    padding: 1rem 5rem;
  }
}

.company-profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.company-profile-container a {
  background-color: #195969;
  color: #c6ffff;
  font-size: 2rem;
  padding: 1.6rem 2.6rem;
  border-radius: 10px;
  text-decoration: none;
}

.company-profile-container a:hover {
  color: #34c7c7;
  text-decoration: none;
}

.service-container-green {
  min-height: 10rem;
  background-color: #b9d3ba;
  display: block;
  text-align: center;
  padding: 5rem;
}

.service-container-green h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}

.service-container-green div {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.service-container-green p {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 1rem 0;
}

.service-container-white {
  min-height: 10rem;
  display: block;
  text-align: center;
  padding: 5rem;
}

.service-container-white h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}

.service-container-white div {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.service-container-white p {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 1rem 0;
}

.service-icon {
  width: 7rem;
  height: auto;
}

/*--------------------------------------------------------------------------------*/

/*----------------------------------- Products -----------------------------------*/
.products-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.img-wrapper {
  position: relative;
  display: inline-block;
}

.img-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.overlay-group {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: center;
}

.header-overlay {
  color: #41ab5d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 10rem);
}

.text-overlay {
  color: #41ab5d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  font-size: clamp(1.2rem, 3vw, 4rem);
}

.products-container,
.products-container-inverse {
  display: flex;
  min-height: 150px;
  gap: 1em;
  margin: 5em 2em;
}

.products-container-left,
.products-container-right2 {
  flex: 1;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-container-left img,
.products-container-right2 img {
  border: 1px black solid;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.products-container-right,
.products-container-left2 {
  background-color: #b9d3ba;
  flex: 1;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.products-container-right h1,
.products-container-left2 h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 20ch;
  margin: 0 auto 2rem;
}

.products-container-right p,
.products-container-left2 p {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  max-width: 65ch;
  margin: 0 auto 0;
  padding: 0 5rem;
}

.video-button {
  background-color: #195969;
  color: #c6ffff;
  width: clamp(14rem, 26vw, 24rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  text-align: center;
  white-space: nowrap;
}

.video-button:hover {
  color: #34c7c7;
  text-decoration: none;
}

@media (max-width: 1280px) {

  .products-container,
  .products-container-inverse {
    flex-direction: column;
    gap: 2em;
    margin: 5em 1em 5em;
  }

  .products-container-inverse {
    flex-direction: column-reverse;
  }

  .products-container-right {
    min-height: 20rem;
    padding: 2rem 0;
  }

  .products-container-left2 {
    min-height: 20rem;
    padding: 2rem 0;
  }
}

/*--------------------------------------------------------------------------------*/

/*---------------------------------- Contact Us ----------------------------------*/
.contactus-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactus-img {
  width: 99%;
  height: auto;
}

.contactus-section-container {
  display: flex;
  flex-wrap: wrap;
  padding: min(1em, 8%);
}

.contactus-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #ade8f4;
  border-radius: 0.5rem;
  max-width: 700px;
  width: 100%;
  height: 800px;
  padding: 50px;
  margin: 35px auto;
}

.contactus-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  max-width: 600px;
  width: 100%;
  min-height: 100px;
  background-color: #ade8f4;
  border-radius: 10px;
  filter: drop-shadow(0 0 0.75rem rgb(136, 179, 197));
  padding-left: 20px;
  padding-right: 20px;
}

.contactus-box img {
  width: 6rem;
  height: auto;
}

.contactus-box p {
  padding-top: 15px;
  padding-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.map-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.contactus-right-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  margin: 35px auto;
}

.right-heading {
  text-align: start;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contactus-right {
  background-color: #ade8f4;
  border-radius: 0.5rem;
  max-width: 700px;
  width: 100%;
  height: 650px;
  padding: 50px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

textarea {
  height: 300px;
  resize: none;
}

input[type='submit'] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

input[type='submit']:hover {
  background-color: #0056b3;
}

/*--------------------------------------------------------------------------------*/

/*----------------------------------- Projects -----------------------------------*/
.projects-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 18rem;
}

.projects-title-container h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 300;
}

.projects-title-container p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
}

.projects-container-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1rem;
}

.projects-container-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 1rem;
}

.project-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}

.projects-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {

  .projects-container-1,
  .projects-container-2 {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------------------------*/

/*------------------------------------ Footer ------------------------------------*/
.footer-container {
  background-color: #1a343b;
  min-height: 27.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-container section {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding: 1rem;
  width: 100%;
}

.footer-container h1 {
  font-size: 2.4rem;
  color: #c6ffff;
  padding-bottom: 1rem;
}

.footer-container p {
  font-size: 1.6rem;
  color: #c6ffff;
}

.footer-information {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}

.footer-information:link,
.footer-information:visited {
  color: #c6ffff;
  text-decoration: none;
}

.footer-information:hover {
  color: #34c7c7;
  text-decoration: none;
}

.footer-information:first-child {
  /* remove the space above the first one */
  margin-top: 0;
}

.social-link:link,
.social-link:visited {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #c6ffff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.social-link:hover,
.social-link:active {
  color: #34c7c7;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  font-family: inherit;
  font-size: 1.4rem;
  color: #c6ffff;
}

@media (max-width: 768px) {
  .footer-container section {
    flex-direction: column;
    padding: 2rem 4rem;
    gap: 4rem;
  }
}

/*--------------------------------------------------------------------------------*/