/* Hero Section */
.hero {
  background: url('../images/home/contactus-main.png') center/cover no-repeat;
  color: white;
  padding: 14rem 0;
  text-align: center;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  box-sizing: border-box;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.nav-link.active {
  color: #467B3A !important;
}

.nav-list .nav-link {
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}


/* Section Title (Generic) */
.section-title {
  color: #366E36;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 85px; /* Adjusted for better control */
  margin-bottom: 1rem;
}

/* Navigation Bar */
.nav-link {
  color: #000;
  font-weight: 600;
}

.get-started-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 76px;
  background: #467B3A;
  color: white;
}}

/* Home Page Headings & Text */
.home-heading1 {
  color: #FFF;
  text-align: center;
  font-family: Manrope, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 86px;
}

.home-heading2 {
  color: #FFF;
  text-align: center;
  font-family: Manrope, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

.home-text1 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

/* Explore Button */
.custom-explore-btn {
  color: #fff;
  border: 1px solid rgba(233, 180, 93, 0.5);
  border-radius: 30px;
  padding: 0.6rem 3rem;
  font-weight: 500;
  background-color: #355528;
  transition: all 0.3s ease;
}

.custom-explore-btn:hover {
  background-color: #fff;
  color: #198754;
  text-decoration: none;
}

/* Impact Section */
.impact-section {
  background: url('../images/home/home-bg2.png') center/cover no-repeat;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.impact-box {
  background-color: #2A401D;
  border: 1px solid #EBB968;
  color: white;
  border-radius: 12px;
  padding: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 220px;
}

/* Our Impact Highlights (Optional if used) */
.impact-icon {
  width: 3rem;
  height: 3rem;
}

.impact-image img {
  max-width: 500px;
  border-radius: 1rem;
  transition: all 0.5s ease;
}

.impact-texts {
  max-width: 500px;
}

.impact-item {
  padding: 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: transparent;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.impact-item.active {
  background-color: #fff;
  color: #333;
  border-left-color: #ffcc33;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.impact-title {
  color: #ffcc33;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Our Approach Section */
.approach-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.approach-title {
  color: #366E36;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.approach-description {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.approach-box {
  background-color: #2A401D;
  color: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #EBB968;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  max-width: 400px;
  width: 100%;
  min-height: 160px;
}

.box-title {
  color: #EBB968;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.box-desc {
  font-size: 14px;
  line-height: 1.5;
}

/* What We Do Section */
.what-we-do-section {
  background: url('background-texture.png') no-repeat center center/cover;
  padding: 4rem 1rem;
  color: white;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.what-box {
  background-color: #2a401d;
  border: 1px solid #bba145;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .impact-section,
  .approach-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .impact-image img {
    width: 100%;
  }

  .approach-box {
    max-width: 100%;
  }
}



#solutions h2 {
  font-size: 2rem;
  color: #2d572c;
}

.card-title {
  font-weight: 600;
  color: #333;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.card ul li {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}
