/* Full Width Image Box with Overlay */
.full-width-img-box {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  border-radius: 12px;
  height: 460px;
  margin-bottom: 60px;
}

.full-width-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.5s ease;
}

.full-width-img-box:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 480px;
}

.overlay-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.overlay-text p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-light {
  background-color: rgba(255,255,255,0.9);
  color: #2250A0;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-light:hover {
  background-color: #fff;
}

/* Features Cards */
.features-cards {
  margin-bottom: 70px;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  color: #ffff;
  font-weight: 700;
  margin-bottom: 38px;
}

.section-titleg {
  font-size: 2.3rem;
  color: #1c8200;
  font-weight: 700;
  margin-bottom: 38px;
}
.cards-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  flex-basis: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 38px 28px 30px;
  box-shadow: 0 8px 18px rgb(34 80 160 / 0.07);
  transition: transform 0.3s ease;
  cursor: default;
  user-select: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgb(34 80 160 / 0.12);
}

.feature-card .icon {
  font-size: 48px;
  color: #024731;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.36rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #024731;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Stylish Testimonials */
.stylish-testimonials, .fullp {
  background: linear-gradient(135deg, #e3f0ff 0%, #f0f7fe 100%);
  padding: 48px 20px 64px;
  margin-bottom: 68px;
  border-radius: 12px;
  text-align: center ;
  /*max-width: 960px;*/
  /*margin-left: auto;*/
  /*margin-right: auto;*/
}

.fullp {
  background: white !important;
  padding: 48px 20px 64px;
  margin-bottom: 68px;
  border-radius: 12px;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  flex-basis: 300px;
  padding: 26px 28px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgb(34 80 160 / 0.07);
  font-style: italic;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 32px rgb(34 80 160 / 0.13);
}

.testimonial-card span {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: #1c8200;
}

/* CTA Section */
.cta-section {
  background: #024731;
  color: #fff;
  padding: 48px 30px;
  text-align: center;
  /*border-radius: 12px;*/
  margin: 70px auto;
}

.cta-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.12rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.btn-primary {
  background-color: #f0a500;
  color: #13306A;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #d18a00;
}

/* Enhanced FAQ */
  .faq-container {
    display: flex;
    flex-wrap: wrap;
    /*gap: 20px;*/
    margin: 20px 0;
  }

  .faq-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .faq-column {
      max-width: 48%;
    }
    .faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  }

  .accordion-item {
    background: #e6f4ec;
    border: 1px solid #34a853;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .accordion-header {
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 600;
    color: #2c6f2d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .accordion-icon {
    font-weight: bold;
    font-size: 20px;
    color: #34a853;
    transition: transform 0.3s ease;
  }

  .accordion-panel {
    overflow: hidden;
    height: 0;
    padding: 0 16px;
    background: #f3faf6;
    transition: height 0.3s ease;
  }

  .accordion-panel-content {
    padding: 12px 0;
  }
/* Newsletter Subscription */
.newsletter-section {
  background: #024731;
  padding: 56px 30px;
  max-width: 600px;
  margin: 0 auto 90px;
  border-radius: 16px;
  text-align: center;
}

.newsletter-section h2.section-title {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #024731;
  width: 280px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #024731;
}

.newsletter-form button {
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  background-color: #f0a500;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #024731;
  border: 1px solid #f0a500 ;
}

/* Responsive tweaks */
@media (max-width: 760px) {
  .cards-wrapper {
    flex-direction: column;
    gap: 28px;
    padding: 20px;
  }
  .testimonial-cards {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
}






.about-main {
  font-family: 'Inter', Arial, sans-serif;
}

.about-hero {
  position: relative;
  min-height: 340px;
  max-width: 100vw;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 56px;
}

.about-hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.7);
}

.about-hero-text {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 640px;
}

.about-hero-text h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 3px 16px rgba(34,80,160,0.18);
}

.about-hero-text p {
  font-size: 1.22rem;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(34,80,160,0.18);
}

.btn-light {
  background-color: rgba(255,255,255,0.9);
  color: #13306A;
  padding: 12px 38px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-light:hover {
  background-color: #fff;
}

/* Mission/Highlights */
.about-mission {
  margin-bottom: 50px;
  text-align: center;
}

.about-mission h2 {
  font-size: 2.1rem;
  color: #2250A0;
  margin-bottom: 20px;
}

.mission-highlights {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 38px;
}

.highlight {
  background: #f5f9ff;
  border-radius: 12px;
  padding: 32px 22px;
  flex: 1 1 210px;
  max-width: 230px;
  box-shadow: 0 2px 14px rgba(34,80,160,0.04);
  text-align: center;
  margin-bottom: 18px;
}

.icon {
  font-size: 2.3rem;
  color: #27770b;
  margin-bottom: 16px;
}

.highlight h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #2250A0;
  margin-bottom: 10px;
}

.highlight p {
  font-size: 1rem;
  color: #555;
}

/* Impact Stats */
.impact-section {
  background: linear-gradient(90deg,#e3f0ff 0%,#f0f7fe 100%);
  padding: 38px 0;
  margin: 44px 0;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.impact-stat {
  flex: 1 1 120px;
  text-align: center;
  min-width: 120px;
  max-width: 180px;
}

.impact-stat span {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: #27770b;
  margin-bottom: 11px;
}

.impact-stat p {
  font-size: 1rem;
  color: #2250A0;
}

/* Team section */
.about-team {
  margin-bottom: 60px;
  text-align: center;
}

.about-team h2 {
  font-size: 2.0rem;
  color: #2250A0;
  margin-bottom: 32px;
}

.team-wrap {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(34,80,160,0.06);
  padding: 32px 18px;
  text-align: center;
  max-width: 170px;
  flex: 1 1 140px;
}

.team-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 1.07rem;
  color: #2250A0;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-card span {
  font-size: 0.95rem;
  color: #555;
}

/* Testimonials */
.about-testimonials {
  background: linear-gradient(110deg,#e3ffe7 0%,#f5f6fa 100%);
  padding: 28px 12px 40px;
  border-radius: 16px;
  margin-bottom:54px;
  text-align:center;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

.about-testimonials h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #27770b;
  margin-bottom: 26px;
}

.testimonial-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  background: #fff;
  flex-basis: 320px;
  padding: 20px 24px;
  border-radius: 13px;
  box-shadow: 0 3px 16px rgba(34,80,160,0.05);
  font-style: italic;
  color: #355c28;
  transition: box-shadow .22s;
}
.testimonial:hover {box-shadow: 0 6px 26px rgba(34,80,160,0.13);}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 500;
  color: #2250A0;
  font-size: 0.97rem;
}

/* CTA */
.about-cta {
  background: #27770b;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  margin: 50px auto 56px;
  padding: 41px 30px;
  max-width: 500px;
}

.about-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-cta p {
  font-size: 1.03rem;
  margin-bottom: 22px;
}

.btn-primary {
  background-color: #f0a500;
  color: #13306A;
  padding: 11px 32px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  transition: background-color 0.23s;
  display: inline-block;
}
.btn-primary:hover { background-color: #d18a00; }

/* Accent eco panel */
.about-accent {
  background: #f5f7ea;
  border-radius: 14px;
  padding: 28px 30px;
  margin:44px 0 60px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.eco-icon {
  font-size: 2rem;
  color: #27770b;
  background: #eafde5;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 3px 12px rgba(39,119,11,0.09);
}

.about-accent h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #27770b;
  margin-bottom: 8px;
}

/* Responsive tweaks */
@media (max-width:820px) {
  .mission-highlights, .team-wrap, .impact-section, .testimonial-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .impact-section { gap: 18px; }
}

@media (max-width:540px) {
  .about-hero img {height:200px;}
  .about-hero-text h1 {font-size:1.15rem;}
  .about-hero-text {max-width:98vw; padding:0 4vw;}
  .highlight, .team-card {padding:18px 8px;}
  .impact-stat span, .impact-stat p {font-size:.99rem;}
}


   /* Services Section */
    .services-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
      font-family: Arial, sans-serif;
    }



    /* Grid Container */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      margin-top: 80px;
    }

    /* Individual Card */
    .service-card {
      background: #e6f4ec;
      border: 1px solid #34a853;
      border-radius: 10px;
      padding: 60px 20px 20px;
      position: relative;
      box-shadow: 0 4px 8px rgba(52, 168, 83, 0.15);
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
    }

    /* Circular Image Container */
    .service-image-circle {
      background-color: #34a853;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border: 4px solid #ffffff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
    .service-image-circle img {
      max-width: 70%;
      max-height: 70%;
      object-fit: contain;
    }

    /* Service heading */
    .service-heading {
      margin-top: 30px;
      margin-bottom: 12px;
      font-size: 1.25rem;
      font-weight: 600;
      color: #2c6f2d;
    }

    /* Service description */
    .service-description {
      font-size: 1rem;
      color: #4a704a;
      line-height: 1.5;
      padding: 0 10px;
    }
    
    .scrap-note-section {
  max-width: 720px;
  margin: 3rem auto;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, #d2f8d2 0%, #b0e6b0 100%);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(34, 97, 34, 0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1b451b;
  user-select: text;
}

.scrap-note-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #216e21;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.scrap-note-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.scrap-note-list li {
  position: relative;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 2.8rem;
  color: #114d11;
  transition: color 0.3s ease;
}

/* Custom bullet icon */
.scrap-note-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.8rem;
  color: #1c8200;
  font-weight: 900;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}

/* Link styling inside text */
.scrap-note-list a {
  color: #1c8200;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.scrap-note-list a:hover,
.scrap-note-list a:focus {
  text-decoration: underline;
  color: #145214;
}

/* Responsive text resizing */
@media (max-width: 480px) {
  .scrap-note-section {
    padding: 1.2rem 1.5rem;
  }
  .scrap-note-section h3 {
    font-size: 1.5rem;
  }
  .scrap-note-list li {
    font-size: 1rem;
    padding-left: 2rem;
  }
  .scrap-note-list li::before {
    font-size: 1.5rem;
    top: 0;
  }
}









.price-section {
      max-width: 1000px;
      margin: 50px auto;
      padding: 0 20px;
      min-height: 500px;
      font-family: 'Inter', Arial, sans-serif;
    }
    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-bottom: 24px;
    }
    .filter-btn {
      background: #024731;
      color: white;
      border: none;
      border-radius: 32px;
      padding: 9px 20px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      text-transform: uppercase;
      transition: background .22s;
      user-select: none;
      outline: none;
    }
    
    
    .filter-btn:hover,
    .filter-btn.active {
      background: #1c8200;
      box-shadow: 0 4px 14px rgb(19 48 106 / 0.38);
    }
    .price-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 14px;
    }
   .price-card-sleek {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(34,80,160,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px 9px 12px;
  transition: box-shadow .18s, transform .18s;
  max-width: 270px;
  min-width: 0;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
}

.price-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 7px;
  background: #e9f3ff;
  flex-shrink: 0;
  margin-right: 10px;
}

.price-name {
  font-size: 1.01rem;
  font-weight: 600;
  color: #1c8200;
  flex: 1 1 120px;
  margin-right: 10px;
  white-space: normal;     /* Allow wrapping */
  overflow: visible;       /* Show all text */
  text-overflow: unset;    /* No ellipsis */
}

.price-amount {
  font-weight: 700;
  font-size: 1rem;
  color: #1c8200;
  background:#f0f3fb;
  padding: 6px 14px;
  border-radius: 22px;
  box-shadow: 0 1px 6px rgba(34,80,160,0.07);
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
}

    /* Responsive tweaks */
    @media (max-width:500px) {
      .price-list {
        grid-template-columns: 1fr;
      }
      .price-card-sleek {
        max-width: 97vw;
        font-size: 0.98rem;
        padding: 10px 8px;
      }
      .price-img {
        width: 34px;
        height: 34px;
      }
      .price-name,
      .price-amount {
        font-size: 0.98rem;
      }
    }
