 


.about-us-wrapper {
    padding: 60px 0;
    /* Vertical padding for the section */
    background-color: #f7f7f7;
    /* Very light background for contrast */
  }

  /* --- Section Headings --- */
  .section-title {
    font-size: 38px !important;
    font-weight: 700;
    color: #02AD58;
    /* Deep Green */
    margin-bottom: 5px;
  }

  .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
  }

  /* --- Feature Headings and Content --- */
  .feature-heading {
    font-size: 34px !important;
    font-weight: 600;
    color: #02AD58;
    /* Deep Green */
    margin-bottom: 15px;
    position: relative;
  }

  /* Horizontal line under feature headings for visual appeal */
  .feature-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    /* Short underline */
    height: 3px;
    background-color: #7ED957;
    /* Light Green */
  }

  /* --- List Styles (Quality, Innovation, Sustainability) --- */
  .about-list {
    list-style: none;
    padding: 0;
  }

  .about-list li {
    padding-bottom: 12px;
    display: flex;
    /* Aligns icon and text */
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
  }

  /* Icon (bi bi-check-circle-fill) Styling */
  .about-list i {
    font-size: 18px;
    margin-right: 10px;
    color: #7ED957;
    /* Light Green for checkmarks/icons */
    line-height: inherit;
    flex-shrink: 0;
    /* Prevents icon from shrinking */
  }

  /* --- Image Styling --- */
  /* img-fluid, rounded, and shadow-sm are Bootstrap classes, 
   but this ensures compatibility and adds margin: */
  .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .rounded {
    border-radius: 8px !important;
  }

  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  /* Vertical space adjustments for content columns */
  .row.content>div {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  @media (min-width: 768px) {

    /* Align image with content on desktop */
    .row.content {
      align-items: center;
    }
  }

  /* --- Call to Action Button --- */
  .btn-main-cta {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    background: #02AD58;
    /* Deep Green for the button background */
    color: #fff;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #02AD58;
    /* Deep Green border */
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .btn-main-cta:hover {
    background: #7ED957;
    /* Light Green on hover */
    color: #02AD58;
    /* Deep Green text on hover */
    border: 2px solid #7ED957;
    /* Light Green border on hover */
  }

  /* mission and vision  */

  /* Color Scheme */
:root {
  --deep-green: #02AD58;
  --light-green: #7ED957;
}

.mission-vision-wrapper {
  background-color: #ffffff;
  padding: 60px 0;
}

/* Card Styling */
.mv-icon svg {
  display: inline-block;
  vertical-align: middle;
}

.mission .mv-icon { color: var(--deep-green); }
.vision .mv-icon { color: var(--light-green); }
.mv-card {
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-card.mission { border-top: 5px solid var(--deep-green); }
.mv-card.vision { border-top: 5px solid var(--deep-green); }

.mv-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

/* --- List Styling --- */
.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.5;
}

/* Custom Bullet Point using Brand Color */
.mv-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.mission .mv-list li::before { color: var(--deep-green); }
.vision .mv-list li::before { color: var(--light-green); }

/* --- Hover Effect --- */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- Animation --- */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.anim-delay {
  animation-delay: 0.3s;
}
/* Owner Section start */
.owner-section {
  background: #ffffff;
  overflow: hidden;
}

/* Vector Background Decoration */
.vector-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90%;
  height: 110%;
  background: var(--deep-green);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic Vector Shape */
  opacity: 0.1;
  z-index: 1;
}

.owner-img-wrapper {
  position: relative;
  z-index: 2;
}

.owner-photo {
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
  border-bottom: 8px solid var(--deep-green);
}

/* Typography */
.ls-2 { letter-spacing: 2px; }
.color-light { color: var(--light-green); font-weight: 600; }
.owner-name { font-size: 38px; font-weight: 800; color: #333; margin-top: 10px; }
.owner-title { color: var(--deep-green); margin-bottom: 25px; font-style: italic; }

.owner-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Read More Animation */
.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.collapse-content.show {
  max-height: 500px; /* Large enough to fit text */
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--deep-green);
  font-weight: 700;
  padding: 0;
  margin-top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-read-more:hover { color: var(--light-green); }

/* Entrance Animations */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s all ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s all ease; }

.reveal-visible { opacity: 1; transform: translateX(0); }
/* Owner Section end */
  /* About Page Responsive Design Start  */
  @media (max-width: 768px) {
    .feature-heading {
      font-size: 22px !important;
    }
  }


  /* About Page Responsive Design End  */