.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  color: #1a1a1a;
  width: 100%;
  z-index: 100;
  border-bottom: 2px solid #009443;
}

.navbar {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-link {
  color: #1a1a1a;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-link:hover {
  color: #009443;
}

.nav-link-lang {
  /* display: inline-block; */
  padding: 0.25rem 0.5rem; /* Adjust padding for size */
  background-color: #fff; /* Button color */
  color: #1a1a1a; /* Text color */
  border: none; /* No border */
  border-radius: 50px; /* Makes it pill-shaped */
  text-align: center; /* Center text */
  text-decoration: none; /* No underline */
  /* font-size: 16px; Font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.5s; /* Smooth transition */
}

.nav-link-lang:hover {
  background-color: #009443;
  color: #fff;
}

.nav-menu-btn,
.nav-close-btn {
  /* display: flex; */
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.3rem;
  font-size: 1.1rem;
}

.nav-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding-block: 3.5rem;
    background-color: #fff;
    display: none;
    transition: top 0.5s;
    transition: display 0.5s;
    /* opacity: 0; */
  }
}
.show-menu {
  top: 0;
  /* opacity: 1; */
  display: initial;
}

/* temp button jugaad */

.button {
  background-color: #009443;
  padding: 1.25rem 1.5rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  /* backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); */
  border-radius: 5px;
}

.button:hover {
  color: hsl(195, 56%, 10%);
}

/* <++++++++++++++++++++++++++  Main section  ++++++++++++++++++++++++++++++> */
.brochure-container {
  grid-template-columns: 1fr 1fr 1fr;
  /* background-color: dimgray; */
  /* justify-items: center; */
  grid-gap: 4rem;
  padding: 2rem;
  text-align: center;
}

.container .item {
  /* height: 420px; */
  width: 100%;
  /* background-color: chocolate; */
  margin-bottom: 1.5rem;
}

.brochure-img {
  width: 100%;
  overflow: hidden;
}

.brochure-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
/* <++++++++++++++++++++++++++  footer section  ++++++++++++++++++++++++++++++> */
.footer {
  padding-block: 2.5rem;
  background-color: #009443;
}

.footer-data {
  row-gap: 3.5rem;
}

.footer-data {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-address {
  color: var(--body-color);
  /* text-indent: 0.5rem; */
}

.footer-link-section {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.footer-title {
  font-size: var(--h3-font);
  margin-bottom: 1rem;
  color: var(--body-color);
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-links {
  display: grid;
  row-gap: 0.75rem;
}

.footer-link {
  color: var(--body-color);
  transition: color 0.5s;
}

.footer-link:hover {
  color: var(--para-color);
}

.footer-social-container,
.footer-social {
  display: flex;
}

.footer-social-container {
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.footer-social {
  column-gap: 1.5rem;
}

.footer-social-link {
  color: var(--body-color);
  font-size: 1.5rem;
  transition: color 0.5s, transform 0.5s;
}

.footer-social-link:hover {
  color: var(--body-color);
  transform: translateY(-0.25rem);
}

.footer-copyrights {
  font-size: var(--small-font);
  color: var(--body-color);
  text-align: center;
}

/*<+++++++++++++++ Breakpoints  +++++++++++++>*/

@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .footer-link-section {
    grid-template-columns: max-content;
  }

  .brochure-container {
    grid-template-columns: 1fr;
  }

  .container .item {
    width: 100%;
  }
}
/* @media screen and (min-width: 576px) {

} */

@media screen and (max-width: 768px) {
  .brochure-container {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .footer-data {
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-evenly;
  }
  .footer-copy {
    order: -1;
  }
}

@media screen and (min-width: 1023px) {
  .nav-menu-btn,
  .nav-close-btn {
    display: none;
  }

  .nav-menu-list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .footer-link-section {
    column-gap: 4.5rem;
  }
}
@media screen and (min-width: 1052px) {
  .container {
    margin-inline: auto;
  }

  .footer {
    padding-block: 5rem 3rem;
  }

  .footer-title {
    margin-bottom: 1.5rem;
  }
  .footer-social-container {
    column-gap: 2rem;
  }
  .footer-social-link {
    font-size: 1.5rem;
  }
}
