/* ========== Global Styles ========== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
/* ========== Social Foundation Section ========== */
.social-foundation {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.foundation-logo {
  width: 70px; /* reduced from 100px to 70px */
  height: auto;
  margin-bottom: 20px;
}

.foundation-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
}

.foundation-title .line1 {
  color: #3caa66;
  font-weight: 400;
  font-size: 22px;
}

.foundation-title .line2 {
  color: #1a88cc;
  font-weight: 700;
  font-size: 26px;
}

.foundation-tagline {
  color: #4a682d;
  font-size: 16px;
  margin: 20px 0;
  font-weight: 500;
}

.foundation-tagline .highlight {
  color: #269c68;
  font-size: 20px;
  font-weight: 700;
}

.foundation-image img {
  margin-top: 10px;
  max-width: 60%; /* reduced from 90% to 60% */
  height: auto;
  opacity: 0.85;
}


/* ========== Meet the Founder Section ========== */
.founder-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.founder-photo img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 100px;

}

.founder-info {
  flex: 1;
  min-width: 300px;
}

.founder-info h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.highlight {
  color: #1b8a4e;
  font-weight: bold;
}

/* ========== SDG Section ========== */
.sdg-section {
  background-color: #f5fdf7;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-color: #0cec04;
  /* Light green background */
}

.sdg-section h3 {
  background-color: #10e410;
  /* Light green heading background */
  font-size: 22px;
  text-align: center;
  color: #0071bc;
  /* Bright blue heading */
  margin-bottom: 20px;
}

.sdg-icons {
  text-align: center;
  margin-bottom: 25px;
}

.sdg-icons img {
  width: 100%;
  max-width: 900px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.sdg-text {
  color: #444;
  /* Dark body text */
}

.sdg-text p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Make important mentions stand out in green */
.sdg-text strong {
  color: #1b8a4e;
  font-weight: 600;
}

/* SDG list */
.sdg-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.sdg-text ul li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2d2d2d;
}

/* Optional: Numbering in green */
.sdg-text ul li::marker {
  color: #1b8a4e;
}

/* Optional: underline or decorate specific terms if needed */
/* Example: For "Women empowerment" in pink or "Health" in red, you can target via nth-child */
/*.sdg-text ul li:nth-child(5) {
  color: #e91e63; /* Women empowerment - pink 
}

.sdg-text ul li:nth-child(7) {
  color: #d32f2f; /* Health - red 
}*/

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .founder-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-info {
    text-align: left;
  }

  .sdg-icons img {
    max-width: 100%;
  }
}

/* ========== Table of Content Section ========== */
.toc-section {
  margin: 60px 0;
  padding: 0 20px;
}

.toc-heading {
  color: #00b050;
  /* Green heading */
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}

/* Side-by-side layout */
.toc-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
} 

/* Left Column */
.toc-list {
  flex: 1 1 50%;
  max-width: 600px;
}

.toc-item {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Background color blocks */
.toc-yellow {
  background-color: #fff9c4;
  /* pale yellow*/ 
}

.toc-green {
  background-color: #e6f4ea;
  /* pale green */
}

.toc-blue {
  background-color: #e1ecf9;
  /* pale blue */
  color: #1a237e;
  /* dark blue text */
}

.toc-peach {
  background-color: #ffe5d1;
  /* light peach */
} */

/* List number styling */
.toc-number {
  font-weight: 600;
  margin-right: 8px;
  color: #333;
}

/* Highlighted text like 'Grassroots Foundation' */
.toc-green-bold {
  color: #00a859;
  font-weight: bold;
}

/* Right Column: Image */
.toc-illustration {
  flex: 1 1 40%;
  text-align: center;
}

.toc-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .toc-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .toc-illustration {
    margin-top: 20px;
  }
}

/* ========== Foundation & Trustees Section ========== */
.foundation-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.foundation-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Left block: content */
.foundation-left {
  flex: .5 45%;
}

.foundation-logo {
  max-width: 500px;       /* Increased from 300px to 500px */
  width: 100%;            /* Ensures it scales responsively */
  display: block;
  margin: 0 auto 20px auto;
}



/* Bullet points */
.foundation-points {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  color: #333;
}

.foundation-points li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Italics & Bold (via tags already in HTML) */
.foundation-points em {
  font-style: italic;
  color: #444;
}

.foundation-points strong {
  font-weight: 700;
  color: #1a4d2e;
}

/* Highlight box */
.highlighted-box {
  background-color: #fff3cd;
  padding: 12px;
  border-left: 5px solid #ffc107;
  margin-top: 15px;
  font-style: italic;
  color: #5b4e00;
}

/* Right block: trustees */
.foundation-right {
  flex: 1 1 45%;
}

.trustee-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2e2e2e;
}

/* Grid for members */
.trustees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trustee {
  flex: 0 0 45%;
  text-align: center;
}

.trustee img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2e7d32;
  margin-bottom: 8px;
}

.trustee p {
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .foundation-content {
    flex-direction: column;
    align-items: center;
  }

  .trustees-grid {
    justify-content: center;
  }

  .trustee {
    flex: 0 0 100%;
  }
}

.foundation-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.foundation-left {
  flex: .5;
  background-color: #f2f9f4;
  padding: 20px;
  border-radius: 10px;
}

.foundation-points li {
  margin-bottom: 10px;
  padding: 8px;
  background-color: #fff5cc;
  border-left: 5px solid #c9b458;
}

.foundation-points li.no-background {
  background-color: transparent;
  border-left: none;
}

.foundation-right {
  flex: 1.5;
  text-align: center;
}

.foundation-logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.foundation-logo {
  max-width: 300px;
}

.trustee-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #444;
}

.trustees-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trustee {
  width: 160px;
  text-align: center;
}

.trustee img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* ========== Agencies Section ========== */
.agencies-section {
  padding: 40px 20px;
}

.agencies-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  color: #222;
  background-color: #c1e9f3;
  /* Light blue background */
}

.agencies-heading .highlight {
  color: green;
  font-weight: bold;
}

.agency-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.agency-card {
  background: #fcfcfc;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.agency-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* ========== Completed Works Section ========== */
.recent-works-section {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recent-works-section h2 {
  text-align: center !important;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.works-table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
  font-size: 15px;
}

.works-table th,
.works-table td {
  border: 1px solid #333;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}

.works-table th {
  background-color: #d4eec9;
  /* Light green for header */
  font-weight: bold;
}

.works-table td img {
  max-width: 160px; /* Increased from 100px to 160px */
  height: auto;
  display: block;
  margin: auto;
}


/* Background color for each row */
.works-table tr:nth-child(2) {
  background-color: #fff6da;
  /* Pale yellow */
}

.works-table tr:nth-child(3) {
  background-color: #fff6da;
}

.works-table tr:nth-child(4) {
  background-color: #fff6da;
}

.works-table tr:nth-child(5) {
  background-color: #fbe5dc;
  /* Pale peach */
}

.works-table tr:nth-child(6) {
  background-color: #deeef6;
  /* Light blue */
}

.works-table tr:nth-child(7) {
  background-color: #e1f3de;
  /* Soft green */
}

.works-table tr:nth-child(8) {
  background-color: #fff6da;
}

.works-table tr:nth-child(9) {
  background-color: #fbe5dc;
}

.works-table tr:nth-child(10) {
  background-color: #fbe5dc;
}

.works-table tr:nth-child(11) {
  background-color: #deeef6;
}

.works-table tr:nth-child(12) {
  background-color: #deeef6;
}

.works-table tr:nth-child(13) {
  background-color: #deeef6;
}

/* ========== Award And Achievements & Publications Section ========== */
/* Flex container for side-by-side layout */
.awards-publications-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* Each section takes half width */
.awards-subsection,
.publications-subsection {
  flex: 1;
}

/* Common heading style */
.awards-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
  text-align: left;
}

/* Grid for inner items */
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Each item */
.awards {
  flex: 0 0 calc(50% - 15px);
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Image style */
.awards-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
}

/* Text */
.awards p {
  font-size: 14px;
  color: #333;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .awards-publications-container {
    flex-direction: column;
  }

  .awards {
    flex: 0 0 100%;
  }
}

/* ========== Project Section ========== */
.igsss-project {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.background {
  width: 100%;
  opacity: 0.8;
  display: block;
}

.content1 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  width: 95%;
  box-sizing: border-box;
  color: #1f451f;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  color: #2e6c2e;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.divider {
  border: none;
  height: 4px;
  background-color: #fff;
  margin: 20px 0;
  width: 100%;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.location {
  color: #000;
  font-size: 16px;
}

.foundation {
  color: #2e6c2e;
  font-size: 16px;
}

.beneficiaries {
  border: 1px solid #2e6c2e;
  background-color: #ffffffd0;
  padding: 12px;
  width: fit-content;
  font-size: 14px;
  color: #000;
}

/* ========== Nashik Section ========== */
.nashik-container {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  border: 1px solid #ccc;
}

.image-section {
  position: relative;
}

.composite-image {
  width: 100%;
  height: auto;
  display: block;
}

.beneficiary-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #2f6b2f;
  padding: 10px 15px;
  font-size: 14px;
  color: #000;
  max-width: 270px;
  line-height: 1.4;
  font-weight: 500;
}

.footer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #76b041;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
}

.footer-right {
  color: #1f451f;
}

/* ========== Nanded Section ========== */
.nanded-container {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  border: 1px solid #ccc;
}

.image-block {
  width: 100%;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #76b041;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
}

.footer-right {
  color: #1f451f;
}

/* ========== Nanded Section ========== */
.plantation-container {
  max-width: 1200px;
  margin: 30px auto;
  border: 1px solid #ccc;
  background-color: white;
}

.image-holder {
  width: 100%;
}

.plantation-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #76b041;
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
}

.right-text {
  color: #2d562d;
}

/* ========== Matheran Project Section ========== */
.Matheran-project {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.background {
  width: 100%;
  height: auto;
  display: block;
}

.content1 {
  position: absolute;
  top: 30%;
  left: 5%;
  color: #2d562d;
  font-weight: bold;
}

.content1 h1 {
  font-size: 28px;
  margin: 0;
  color: #3d6e1d;
}

.divider {
  margin: 15px 0;
  width: 95%;
  height: 5px;
  background-color: #fff;
  border: none;
}

.info-row {
  display: flex;
  justify-content: flex-end;
  width: 95%;
}

.foundation {
  font-size: 16px;
  color: #2d562d;
}

.beneficiaries {
  position: absolute;
  bottom: 10%;
  left: 5%;
  padding: 10px;
  border: 2px solid #3d6e1d;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  max-width: 320px;
  line-height: 1.5;
}

/* ========== Benefits of Lake Rejuvenation and Restoration Section ========== */
.lake-benefits-container {
  padding: 30px;
  border: 2px solid #333;
  max-width: 1200px;
  margin: 20px auto;
}

.intro {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.row {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  gap: 15px;
}

.label {
  background-color: #cfe2b3;
  border: 2px solid #537b51;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 180px;
  text-align: center;
  color: white;
}

.label.green {
  background-color: #acc67a;
  color: white;
}

.arrow {
  font-size: 30px;
  align-self: center;
  color: #4a4a4a;
}

.content-box {
  background-color: #e9f4ed;
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid #6ea68c;
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.footer {
  margin-top: 40px;
  background-color: #8cc152;
  color: white;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 5px solid #5d8737;
  text-align: left;
}

/* ========== Matheran Lake Section ========== */
.Matheran-Lake-container {
  max-width: 1200px;
  margin: 20px auto;
  border: 2px solid #333;
}

.image-holder img.matheran-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-banner {
  background-color: #8cc152;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 4px solid #5d8737;
}

.left-text {
  color: white;
}

.right-text {
  color: #2d572c;
}

/* ========== Vireshwar Lake Section ========== */
.Vireshwar-Lake-project {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.background {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

.content1 {
  position: absolute;
  top: 30%;
  left: 5%;
  right: 5%;
  color: #2e6b24;
  font-weight: bold;
  text-shadow: 1px 1px 2px #fff;
}

.h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #3e7435;
}

.divider {
  height: 5px;
  background-color: white;
  border: none;
  width: 100%;
  margin: 20px 0;
}

.info-row {
  text-align: right;
  margin-bottom: 10px;
}

.foundation {
  font-size: 16px;
  color: #2d562d;
}

.beneficiaries {
  position: absolute;
  bottom: 10%;
  left: 5%;
  padding: 10px;
  border: 2px solid #3d6e1d;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  max-width: 320px;
  line-height: 1.5;
}

/* ========== Vireshwar Lake Work in Progress Section ========== */
.Vireshwar-Lake-container {
  max-width: 1200px;
  margin: 20px auto;
  border: 2px solid #333;
}

.image-holder img.vireshwar-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-banner {
  background-color: #8cc152;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 4px solid #5d8737;
}

.left-text {
  color: white;
}

.right-text {
  color: #2d572c;
}

/* ========== Jawaharlal Nehru Port Authority(JNPA) Section ========== */
.Jawaharlal-Nehru-Lake-project {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.background {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.6; /* Controls the lightness effect */
  z-index: 1;
  pointer-events: none;
}

.content1 {
  position: absolute;
  top: 30%;
  left: 5%;
  right: 5%;
  color: #2e6b24;
  font-weight: bold;
  text-shadow: 1px 1px 2px #fff;
  z-index: 2; /* Make sure it's above the overlay */
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #3e7435;
}

.divider {
  height: 5px;
  background-color: white;
  border: none;
  width: 100%;
  margin: 20px 0;
}

.info-row {
  text-align: right;
  margin-bottom: 10px;
}

.foundation {
  font-size: 16px;
  color: #2d562d;
}

/* ========== Jhaskar Lake Work in Progress Section ========== */
.Jhaskar-Lake-container {
  max-width: 1200px;
  margin: 20px auto;
  border: 2px solid #333;
}

.image-holder img.jhaskar-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-banner {
  background-color: #8cc152;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 4px solid #5d8737;
}

.left-text {
  color: white;
}

.right-text {
  color: #2d572c;
}

/* ========== Chindhran Lake Section ========== */
.Chindhran-Lake-project {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.background {
  width: 100%;
  height: auto;
  display: block;
}

/* NEW overlay */
.Chindhran-Lake-project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.6; /* You can tweak this to match */
  z-index: 1;
  pointer-events: none;
}

.content1 {
  position: absolute;
  top: 30%;
  left: 5%;
  right: 5%;
  color: #2e6b24;
  font-weight: bold;
  text-shadow: 1px 1px 2px #fff;
  z-index: 2; /* Important to bring text above overlay */
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #3e7435;
}

.divider {
  height: 5px;
  background-color: white;
  border: none;
  width: 100%;
  margin: 20px 0;
}

.info-row {
  text-align: right;
  margin-bottom: 10px;
}

.foundation {
  font-size: 16px;
  color: #2d562d;
}

/* ========== Chindhran Lake Work in Progress Section ========== */
.Chindhran-Lake-container {
  max-width: 1200px;
  margin: 20px auto;
  border: 2px solid #333;
}

.image-holder img.chindhran-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-banner {
  background-color: #8cc152;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 4px solid #5d8737;
}

.left-text {
  color: white;
}

.right-text {
  color: #2d572c;
}

/* ========== Green Skill Section ========== */
.green-skill-section {
  text-align: center;
  padding: 40px 20px;
}

.green-skill-section {
  font-size: 24px !important;
  font-weight: bold  !important;
  margin-bottom: 30px  !important; 
  color: #222  !important;
}

.green-skill-section h2 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 10%;
  color: #111;
}

.objectives {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.objective {
  max-width: 160px;
  text-align: center;
}

.objective img {
  width: 64px;
  height: auto;
  margin-bottom: 15px;
}

.objective p {
  font-size: 14px;
  color: #333;
}

.bottom-illustration {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.bottom-illustration img {
  max-height: 160px; 
  height: auto;
}

/* ========== Workshop by Grassroots Foundation Section ========== */

.workshop-section {
  padding: 40px 5%;
  text-align: center;
}

.workshop-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: start;
  margin-top: 20px;
}


figure {
  margin: 0;
  text-align: left;
  max-width: 100%;
}

figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

figcaption {
  font-size: 14px;
  font-style: italic;
  color: #333;
  margin-top: 8px;
}

/* ========== Watershed Analysis Section ========== */
.watershed-section {
  padding: 40px 5%;
  text-align: center;
  background-color: #fdfcf9;
}

.watershed-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #111;
}

.watershed-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

.top-row,
.bottom-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.top-row img,
.bottom-row img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {

  .top-row img,
  .bottom-row img {
    max-width: 100%;
  }

  .watershed-section h2 {
    font-size: 18px;
    padding: 0 10px;
  }
}