:root {
  --primary-green: #2e7d32;
  --light-green: #4caf50;
  --soft-green: #e8f5e9;

  --accent-yellow: #fbc02d;
  --soft-yellow: #fff8e1;

  --text-dark: #333;
  --text-light: #666;
}




/* =========================
   HERO BACKGROUND SECTION
========================= */

.about-hero {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px;
  
  /* BACKGROUND IMAGE */
  background: url('../assets/images/about-hero-bg-v2.png') center/cover no-repeat;
  
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* DARK OVERLAY (very important for readability) */
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness here */
  z-index: 1;
}

/* Make content appear above overlay */
.hero-main-title,
.introduction-section {
  position: relative;
  z-index: 2;
}

/* =========================
   TITLE STYLING
========================= */

.hero-main-title {
  text-align: center;
  margin-bottom: 50px;
}

.hero-main-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.hero-main-title h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #4caf50;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =========================
   CONTENT LAYOUT
========================= */

.introduction-section {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.introduction-section img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TEXT */
.introduction-text {
  width: 55%;
  font-size: 17px;
  line-height: 1.8;
  color: #f1f1f1;
  text-align: justify;
}




/* =========================
   VISION & MISSION SECTION
========================= */

.about-mission {
  width: 100%;
  padding: 80px 20px;
  background: #f7faf7;
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.vision-main-title {
  text-align: center;
  margin-bottom: 60px;
}

.vision-main-title h1 {
  font-size: 40px;
  color: #1b5e20;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.vision-main-title h1::after {
  content: "";
  width: 70%;
  height: 4px;
  background: #4caf50;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* =========================
   CARD LAYOUT
========================= */

.about-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container for both cards */
.about-mission .vision-section {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* Hover effect */
.vision-section:hover {
  transform: translateY(-8px);
}

/* Alternate layout (Mission reversed) */
.about-mission .vision-section:nth-child(3) {
  flex-direction: row-reverse;
}

/* =========================
   IMAGE
========================= */

.vision-section img {
  width: 40%;
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* =========================
   TEXT
========================= */

.vision-section h2 {
  font-size: 26px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.Mission-text,
.Vision-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* Wrap text properly */
.vision-section div {
  width: 60%;
}


/******
==========================
   OBJECTIVES SECTION
   ==========================*/

.about-objectives {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(to right, #eef7f0, #f9fbf7);
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.objectives-main-title {
  text-align: center;
  margin-bottom: 60px;
}

.objectives-main-title h1 {
  font-size: 40px;
  color: #1b5e20;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.objectives-main-title h1::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #4caf50;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 1px;
}

/* =========================
   GRID LAYOUT
========================= */

.objectives-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.objective-card {
  background: #fff;
  padding: 25px;
  border-radius: 1px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.objective-card:hover {
  transform: translateY(-10px);
}

/* Top green bar */
.objective-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #4caf50;
}

/* IMAGE */
.objective-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* TEXT */
.objective-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* =========================
   LEGAL STATUS SECTION
========================= */

/* =========================
   LEGAL STATUS SECTION
========================= */

.about-legal-status {
  width: 100%;
  padding: 100px 20px;
  background: #f4f8f4;
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.legal-main-title {
  text-align: center;
  margin-bottom: 60px;
}

.legal-main-title h1 {
  font-size: 38px;
  color: #1b5e20;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* subtle professional underline */
.legal-main-title h1::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #fbc02d;
  display: block;
  margin: 10px auto 0;
}

/* =========================
   LAYOUT
========================= */

.legal-content-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT SIDE */
.legal-text h2 {
  font-size: 26px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.legal-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* subtle left border for official feel */
.legal-text {
  border-left: 4px solid #2e7d32;
  padding-left: 20px;
}

/* IMAGE SIDE */
.legal-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: grayscale(20%);
}

/* =========================
   WHERE WE WORK SECTION
========================= */

.about-where-we-work {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(to right, #f4f8f4, #eef7f0);
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.where-we-work-main-title {
  text-align: center;
  margin-bottom: 60px;
}

.where-we-work-main-title h1 {
  font-size: 40px;
  color: #1b5e20;
  font-weight: 700;
}

.where-we-work-main-title span {
  color: #fbc02d;
}

/* =========================
   LAYOUT
========================= */

.where-we-work-1 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.where-image img {
  width: 100%;
  border-radius: 1px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================
   TEXT CONTENT
========================= */

.where-content h2 {
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 15px;
}

.where-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* HIGHLIGHTS */
.highlight {
  color: #fbc02d;
  font-weight: 600;
}

.green {
  color: #2e7d32;
  font-weight: 600;
}

/* LISTS */
.work-list {
  margin: 15px 0 25px 20px;
}

.work-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

/* custom bullet */
.work-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-size: 14px;
}

/* PARTNERS */
.partners {
  color: #2e7d32;
  font-weight: 600;
}

/* QUOTE */
blockquote {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid #fbc02d;
  background: #fff8e1;
  font-style: italic;
  color: #555;
  border-radius: 5px;
}

/* =========================
   ANIMATION INITIAL STATE
========================= */

.where-image,
.where-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

























/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .introduction-section {
    flex-direction: column;
  }

  .introduction-section img,
  .introduction-text {
    width: 100%;
  }
  .vision-section {
    flex-direction: column !important;
    text-align: center;
  }

  .vision-section img {
    width: 100%;
  }

  .vision-section div {
    width: 100%;
  }
  .legal-content-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-text {
    border-left: none;
    border-top: 4px solid #2e7d32;
    padding-top: 20px;
  }
    .where-we-work-1 {
    grid-template-columns: 1fr;
  }
   .where-content {
    text-align: center;
  }
}






@media (max-width: 600px) {
  .hero-main-title h1 {
    font-size: 30px;
  }

  .introduction-text {
    font-size: 15px;
  }
  .vision-main-title h1 {
    font-size: 28px;
  }

  .vision-section {
    padding: 20px;
  }

  .Mission-text,
  .Vision-text {
    font-size: 15px;
  }
.legal-main-title h1 {
    font-size: 28px;
  }

  .legal-text p {
    font-size: 15px;
  }
  
 .where-we-work-main-title h1 {
    font-size: 28px;
  }

 .where-content p {
    font-size: 15px;
  }
  
}

@media (max-width: 1024px) {
  .objectives-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .objectives-main-title h1 {
    font-size: 28px;
  }

  .objective-card {
    padding: 20px;
  }

  .objective-card p {
    font-size: 15px;
  }
}