@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: "Montserrat", sans-serif;

  scroll-behavior: smooth;

}

#preloader {

  position: fixed;

  width: 100%;

  height: 100vh;

  background: #fff url(img/loading.gif) no-repeat center;

  z-index: 999;

  background-size: 20%;

}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  color: #333;
  height: 100vh;
  min-height: 100vh;
  flex-direction: column;
}

header,
nav,
.login-container {
  flex: 1;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}



body::-webkit-scrollbar {

  display: none;

}

header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  transition: 0.6s;

  padding: 40px 100px;

  z-index: 100000;

}

header.sticky {

  padding: 5px 100px;

  background: #fff;

  height: auto;

}

header .logo {

  position: relative;

  font-weight: 700;

  color: #fff;

  text-decoration: none;

  font-size: 1em;

  text-transform: uppercase;

  letter-spacing: 2px;

  transition: 0.6s;

}

header ul {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

}

header ul li {

  position: relative;

  list-style: none;

}

header ul li a {

  position: relative;

  margin: 0 15px;

  text-decoration: none;

  color: #fff;

  letter-spacing: 2px;

  font-weight: 500px;

  transition: 0.6s;

}

.banner {

  position: relative;

  width: 100%;

  height: 100vh;

  background: url(img/imgg.gif);

  background-size: cover;

  background-attachment: fixed;

}

header.sticky .logo,

header.sticky ul li a {

  color: #000;

}

header ul li a::after {

  content: "";

  position: absolute;

  background-color: #248a47;

  height: 3px;

  width: 0;

  left: 0;

  bottom: -3px;

  transition: 0.3s;

}

header ul li a:hover:after {

  width: 100%;

}

header.sticky ul li a::after {

  content: "";

  position: absolute;

  background-color: #4ade5b;

  height: 3px;

  width: 0;

  left: 0;

  bottom: -10px;

  transition: 0.3s;

}

.banner .txt {

  text-align: center;

  padding: 400px 0;

  font-size: 2.5em;

  color: #fff;

}

.infor .title {

  font-size: 1.5em;

  font-weight: 500;

  text-align: center;

  justify-content: center;

  padding-top: 40px;

}

.infor .tag {

  text-align: center;

  justify-content: center;

  padding-top: 10px;

}

.infor .basic-info {

  padding-left: 30px;

  padding-top: 20px;

}

.infor .start {

  padding-left: 30px;

  padding-top: 20px;

  font-size: 1.5em;

}

.title1 {

  padding-left: 30px;

  padding-top: 30px;

  font-size: 1.5em;

}

.para {

  padding-left: 30px;

  padding-top: 40px;

}

footer {

  position: relative;

  top: 100px;

  background: #111;

  height: auto;

  width: 100vw;

  padding-top: 40px;

  color: #fff;

}

.footer-content {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;

}

.footer-content h3 {

  font-size: 1.8rem;

  text-transform: capitalize;

  line-height: 3rem;

}

.footer-content p {

  max-width: 500px;

  margin: 10px auto;

  line-height: 28px;

  font-size: 14px;

}

.socials {

  list-style: none;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 1rem 0 3rem 0;

}

.socials li {

  margin: 0 10px;

}

.socials a {

  text-decoration: none;

  color: #fff;

}

.socials a i {

  font-size: 1.1rem;

  transition: color 0.4s ease;

}

.socials a:hover i {

  color: aqua;

}

.footer-bottom {

  width: 100vw;

  padding: 20px 0;

  text-align: center;

}

.footer-bottom p {

  font-size: 14px;

  word-spacing: 2px;

}

.footer-bottom span {

  opacity: 0.4;

  font-weight: 200;

}

.logo {
  width: 50px;
  height: auto;
}

.hamburger {

  position: fixed;

  display: block;

  width: 35px;

  height: 35px;

  cursor: pointer;

  appearance: none;

  background: none;

  outline: none;

  border: none;

  margin-left: 200px;

}

.hamburger .bar,

.hamburger:after,

.hamburger:before {

  content: "";

  display: block;

  width: 100%;

  height: 3px;

  background-color: #fff;

  margin: 6px 0px;

  transition: 0.4s;

}

.hamburger.is-active:before {

  transform: rotate(-45deg) translate(-7px, 6px);

}

.hamburger.is-active:after {

  transform: rotate(45deg) translate(-7px, -6px);

}

.hamburger.hamburger.is-active .bar {

  opacity: 0;

}

.mobile-nav {

  position: fixed;

  top: 0;

  left: 100%;

  width: 100%;

  min-height: 100vh;

  z-index: 98;

  background-color: #0b470a;

  padding-top: 120px;

  transition: 0.4s;

}

.mobile-nav.is-active {

  left: 0;

}

.mobile-nav a {

  display: block;

  width: 100%;

  max-width: 200px;

  margin: 0 auto 160px;

  text-align: center;

  margin-bottom: 16px;

  padding: 12px 16px;

  background-color: #0e3e16;



  color: #fff;

  text-decoration: none;

}

.mobile-nav a:hover {

  background-color: #2a7e3f;

}

@media (max-width: 850px) {

  header ul li a {

    display: none;

  }

  header.sticky {

    background-color: #111;

  }

  header.sticky .logo {

    color: white;

  }

}

@media (min-width: 768px) {

  .mobile-nav {

    display: none;

  }

  .hamburger {

    display: none;

  }

}

#team {
  text-align: center;
  padding: 50px 0;
  background: #f4f4f4;
}

#team h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#mentor {
  text-align: center;
  padding: 50px 0;
  background: #ffffff;
}

#mentor h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.mentor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 30px;
}

.mentor-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ddd;
}

.mentor-info {
  text-align: left;
  max-width: 600px;
}

.mentor-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.mentor-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

@media (min-width: 768px) {
  .mentor-container {
    flex-direction: row;
    align-items: center;
  }

  .mentor-image {
    flex: 1;
    text-align: center;
  }

  .mentor-info {
    flex: 2;
    text-align: left;
  }
}

.instagram-button {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  color: white;
  background-color: #387F39;
  border-radius: 5px;
  text-decoration: none;
  font-size: 12px;
}

.instagram-button:hover {
  background-color: #A2CA71;
}

.nav-icons {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.fa-user {
  font-size: 20px;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.account-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.account-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.account-menu a:hover {
  background-color: #f0f0f0;
}

.cart-icon {
  font-size: 20px;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.cart-icon i {
  font-size: 20px;
  color: #fff;
}

.cart-menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  width: 200px;
}

.cart-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.cart-menu a:hover {
  background-color: #f0f0f0;
}

.sustainablers-container {
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap to a new line if necessary */
  justify-content: center;
  /* Centers the items horizontally */
  align-items: flex-start;
  padding: 20px;
  background-color: #f4f4f4;
  gap: 15px;
  /* Adjusted to bring boxes closer */
}

.sustainablers-box {
  flex: 1 1 300px;
  /* Allows for flexible sizing while maintaining a minimum width */
  max-width: 300px;
  padding: 15px;
  background-color: white;
  border-radius: 12px;
  /* Slightly increased border-radius for a modern look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Slightly more pronounced shadow */
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transitions */
}

.sustainablers-box img {
  width: 100%;
  /* Ensures the image takes the full width of the box */
  height: auto;
  /* Maintains aspect ratio */
  border-radius: 10px;
  transition: opacity 0.3s ease;
  /* Smooth transition for opacity */
}

.sustainablers-title {
  margin-top: 10px;
  font-size: 1.2em;
  /* Slightly smaller font size for a better fit */
  color: #2c3e50;
}

.sustainablers-info {
  font-size: 0.9em;
  /* Adjusted font size */
  color: #7f8c8d;
  margin-top: 8px;
}

.sustainablers-box:hover {
  transform: translateY(-8px);
  /* More noticeable hover effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* Enhanced shadow on hover */
}

.sustainablers-box:hover img {
  opacity: 0.9;
  /* Slightly reduced opacity on hover */
}

.activities-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: #f7f7f7;
}

.activity-box {
  flex: 1;
  min-width: 250px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.activity-icon {
  width: 50px;
  margin-bottom: 15px;
}

.activity-box h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #2c3e50;
}

.activity-box p {
  font-size: 0.95em;
  color: #7f8c8d;
}

.activity-box.animate {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.activity-box:hover .activity-icon {
  transform: rotate(360deg);
  transition: transform 0.5s ease-in-out;
}