/* Reset and Global Styles */
* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Google Sans', sans-serif;
  color: #333;
}

a {
  color: inherit;
}

.fade-in {
  opacity: 0;
  /* Start fully hidden */
  transform: translateY(10px);
  /* Slight move down */
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;

    
  


}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .logo img {
  height: auto;
	width: 300px;
  margin-right: 10px;
margin-left: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
}






.nav-links li {
  margin-left: 20px;
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #006A4E;
  padding: 10px 25px;
    border-radius: 10px;
    border: none;
}

.nav-links a.active {
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid #006A4E;
}

.nav-links a:hover {
  background: #006A4E;
  color: #FFFFFF;
}

/* Sidebar (Initially Hidden) */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  /* Sidebar starts hidden */
  width: 250px;
  height: 100%;
  background: #00332a;
  transition: left 0.3s ease-in-out;
  color: #F7F7F7;
  padding: 50px;
  z-index: 10000;
}

/* Sidebar Navigation */
.sidebar ul {
  list-style: none;
  /* Removes dots (bullets) */
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px 5px;
  /* Adds spacing between links */
  text-align: left;
  /* Align text to the left */
}

.sidebar ul li a {
  text-decoration: none;
  /* Removes underline */
  color: white;
  /* Keeps links white */
  font-size: 20px;
  /* Adjust text size */
  display: block;
  /* Makes the entire li clickable */
  font-weight: bold;
}

/* Optional: Add hover effect */
.sidebar ul li a:hover {
  color: #b3e0dc;
  /* Light green when hovered */
  transition: color 0.3s ease-in-out;
}

/* When sidebar is open */
.sidebar.open {
  left: 0 !important;
}

/* Hide menu button on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobile View - Show Sidebar */
@media screen and (max-width: 1100px) {
  .nav-links {
    display: none;
/*768*/
  }

  .menu-toggle {
    display: block;
    /* Show hamburger menu */
  }
}

/* Hero Section */
.hero {
  text-align: left;
  padding: 100px 110px;


 

}

.hero h1 {
  font-size: 3.15rem;
  color: #006A4E;
}

.hero p {
  font-size: 2.3rem;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  margin: 20px 0;
}

.hero-index {
  text-align: left;
  padding: 100px 110px;
}

.hero-index h1 {
  font-size: 3.15rem;
  color: #006A4E;
}

.hero-index p {
  font-size: 2.3rem;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  margin: 20px 0;
  z-index: 9999;
}

.hero-membership-benefits {
  text-align: left;
  padding: 100px 110px;
  font-size: 20px;
  color: #000000;
}

.hero-membership-benefits h1 {
  font-size: 40px;
  color: #006A4E;
  padding-bottom: 40px;
}

.hero-membership-benefits h2 {
  font-size: 1.2em;
  color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-membership-benefits h3{
  font-size: 20px;
  color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-membership-benefits ul {
  font-size: 20px;
  color: #666;
  padding: 20px;
}


.hero-membership-benefits p {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-privacy {
  font-size: 20px;
  color: #000000;
  text-align: left;
  padding: 100px 110px;
}

.hero-privacy h1 {
  font-size: 40px;
  color: #006A4E;
  padding-bottom: 40px;
}

.hero-privacy h2 {
  font-size: 20px;
  color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-privacy h3 {
  font-size: 20px;
  color: #000000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-privacy ul {
  font-size: 20px;
  color: #666;
  padding: 20px;
}


.hero-privacy p {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-us-button {
  display: inline-block;
  padding: 10px 20px;
  background: #006A4E;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 40px;
}


.learn-more-button {
  display: inline-block;
  padding: 10px 20px;
  margin-left: 110px;
  background: #006A4E;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 100px;
}

/* Mission Section */
.mission {
  background: #006A4E;
  color: white;
  text-align: left;
  padding: 90px 60px;
  padding-left: 110px;
  font-size: 1.5rem;
}

/* Membership Benefits */
.membership {
  padding: 80px 20px;
  text-align: center;
  font-size: 25px;
}

.membership h2 {
font-size: 2.3rem;
}

.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1000px;
  margin-left: 170px;
  padding-top: 30px;
  column-gap: 200px;
}

.benefits-grid ul {
  list-style-type: disc;
  text-align: left;

  font-size: 20px;
  
  padding: 20px;


}

.benefits-grid li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Projects Section */
.projects {
  text-align: left;
  padding: 30px 0px;
}

.project {
  text-align: left;
  font-size: 30px;
  margin-left: 140px;
  margin-right: 50px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.projects h2 {
  display: flex;
  color: #006A4E;
  align-items: left;
  font-size: 2.3rem;
  margin-left: 110px;
  margin-bottom: 20px;
}

.project h3 {
  display: flex;
  align-items: left;
  font-size: 2.1rem;
}

.project p {
  padding-top: 15px;
  color: #006A4E;
  font-size: 1.2rem;
  text-align: left;
}

.project img {
  height: 24px;
  margin-right: 10px;
}

.learn h2 {
  display: flex;
  color: #006A4E;
  align-items: left;
  font-size: 2.3rem;
  margin-left: 110px;
  margin-bottom: 50px;

}

/* Footer */
.footer-section {
  background: #F7F7F7;
  color:  #333;;
  padding: 40px 20px;
 text-align: left;
display:flex
justify-content: space-between;
}

.menu, .contact {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.menu, .contact h4 {
  margin-right: 20px;
}

.menu, .contact a {
  text-decoration: none;
  color: black;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  
  margin-left: 90px ;
}

.footer-content a {
  color: #333;
  text-decoration: none;
  margin-top: 5px;
}

.footer-bottom {
  background-color: #006A4E;
  color: #F7F7F7;
  padding: 20px;
}

.footer-bottom p {
text-align: center;
}


.footer-logo img {
  height: auto;
	width: 200px;
margin-right:90px;
}

#zoomInText {
    position: relative;
    opacity: 0;
    transform: scale(0);
    transition: transform 4s ease-out, opacity 1s ease-out;
transition-delay: 1s;
}

#zoomInText.zoomed {
    opacity: 1;
    transform:scale(1);
}

#fadeInText {
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

#fadeInText.visible {
            opacity: 1;
        }




/* Howwework */

.how {
    width: 80%;
    margin: 0 auto;
    padding: 40px;
   
 
}

.how h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.howcontent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.howtext {
    width: 60%;
	

}

.howtext p {
   font-size: 1.2rem;
	margin-bottom:10px;

}


.howgraphic {
    width: 40%;
}



