


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f7faf8;
    color: #1f2933;
    line-height: 1.6;
}


@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


nav {
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.5rem;
  background: #2A7A44;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
}



/* ---------- TEAM SECTION ---------- */

.team-section {
    text-align: center;
    padding: 80px 20px 60px;
}

.team-section h1 {
    font-size: 48px;
    font-weight: 700;
}

.team-section h1 span {
    color: #5fa77a;
}

.subtitle {
    margin-top: 16px;
    color: #6b7280;
    font-size: 16px;
}

.team-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.team-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.avatar-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px dashed #cfe3d7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.badge {
    display: inline-block;
    margin: 12px 0 20px;
    padding: 6px 14px;
    background: #e7f3ec;
    color: #4c8c68;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.team-card p {
    font-size: 14px;
    color: #6b7280;
}

/* ---------- WHY SECTION ---------- */

.why-section {
    text-align: center;
    padding: 80px 20px 100px;
}

.why-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.why-section h2 span {
    color: #5fa77a;
}

.why-text {
    max-width: 800px;
    margin: 24px auto 60px;
    font-size: 16px;
    color: #6b7280;
}

.features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    width: 260px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.05);
}

.icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    background: #e7f3ec;
    color: #5fa77a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
}

.cta-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.cta-button {
    background: #5fa77a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
  
  color: #ffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.icons{
    margin-right: 10px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    
}