/* ==== General Reset & Typography ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f7f9fb;
  color: #222;
  line-height: 1.62;
}

/* ==== Header & Navigation ==== */
/* Wrapper for header row and nav menu */
.header-wrapper {
  width: 100%;
 
}



/* Header: flex container for logo + hamburger in single row */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c8200;
  padding: 12px 30px;
  position: relative;
  z-index: 10;
}

/* Logo styles */
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  text-decoration: none;
  letter-spacing: 0.06em;
}

/* Hamburger menu button - hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

/* Hamburger icon bars */
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
}

.menu-icon span {
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Navigation menu: below the header row */
.header-right {
  background: #1c8200;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 30px;
}

/* Nav links style */
.header-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-right a:hover,
.header-right a.active {
  background: #fff;
  color: #024731;
}

/* Responsive Styles */
@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }
  
  /* Stack nav links vertically and hide by default */
  .header-right {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease;
  }
  /* Nav links visible when menu open */
  .header-right.open {
    max-height: 320px; /* Adjust for number of links */
    padding: 12px 30px 20px;
  }
  /* Nav links stacked and full width */
  .header-right a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin: 0;
  }
  .header-right {
    gap: 0;
  }
}

/* ==== Hero Banner ==== */


.responsive-section {
  display: flex;
  gap: 2rem;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 3rem 2rem;
  box-sizing: border-box;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.1);
  align-items: flex-start;
  flex-wrap: wrap;

  /* Background image with gradient overlay */
  background-image:
    linear-gradient(rgba(34, 51, 84, 0.75), rgba(37, 58, 102, 0.75)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #f0f0f0; /* Light text for contrast */
}

.responsive-section .content-col {
  flex: 1 1 300px;
  min-width: 280px;
  box-sizing: border-box;
  padding: 0 1rem;
}

.responsive-section .form-col {
  flex: 1 1 400px;
  min-width: 320px;
  box-sizing: border-box;
  padding: 0 1rem;
}

.responsive-section .content-col h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #e1e8ff;
}

.responsive-section .content-col p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d3d9ff;
}

/* Override form text colors inside the section for better visibility */
.responsive-section .msform-container {
  background: rgba(255 255 255 / 0.95);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.2);
}

/* Stack on small screens */
@media (max-width: 720px) {
  .responsive-section {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }
  .responsive-section .content-col,
  .responsive-section .form-col {
    padding: 0;
    min-width: 100%;
  }
}


.hero-image {
  /* Gradient overlay on image background */
  background: linear-gradient(rgba(85, 108, 214, 0.7), rgba(118, 75, 162, 0.7)),
              url('your-image-path.jpg') center center/cover no-repeat;
  padding: 3rem 1rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  color: white;
}

/* Left column text */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right column form */
.hero-form {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: black;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }
  .hero-form {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .hero-image {
    min-height: auto;
    padding: 2rem 1rem;
  }
}

/*.btn {*/
/*  background: #1c8200;*/
/*  color: #fff;*/
/*  padding: 14px 36px;*/
/*  border: none;*/
/*  border-radius: 60px;*/
/*  font-weight: 500;*/
/*  text-decoration: none;*/
/*  font-size: 1.08rem;*/
/*  cursor: pointer;*/
/*  transition: background .21s;*/
/*}*/

/*.btn:hover {*/
/*  background: #024731;*/
/*}*/

/* ==== Image Box Section ==== */
.img-box,
.service-box {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 20px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  max-width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.img-box img,
.service-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.img-text,
.img-grid-content {
  padding: 20px;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ==== Responsive Image Grid ==== */
.img-grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.img-grid-box {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.img-grid-box:hover {
  transform: translateY(-8px) scale(1.03);
}

.img-grid-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.img-grid-content {
  padding: 18px;
}

/* ==== Full Width Section ==== */
.full-width-section {
  display: flex;
  align-items: center;
  background: #fbfbfb;
  margin: 48px 0;
  padding: 48px 0;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.full-width-img {
  flex: 1 1 400px;
  max-width: 600px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

.full-width-info {
  flex: 1 1 280px;
  min-width: 280px;
  max-width: 480px;
  padding: 0 24px;
}

.half-col {
  flex: 1 1 280px;
  min-width: 280px;
  
  padding: 0 24px;
}



/* ==== Testimonials ==== */
.testimonials {
  margin: 60px auto;
  max-width: 800px;
  text-align: center;
  position: relative;
}

.testimonial-box {
  display: none;
  padding: 24px 26px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,80,160,0.08);
  border-radius: 6px;
  font-style: italic;
  color: #222;
}

.testimonial-box.active {
  display: block;
}

.testimonial-author {
  margin-top: 16px;
  font-weight: bold;
  color: #2250A0;
}

.testimonial-nav {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.nav-dot {
  width: 10px; height: 10px;
  background: #dbe4fc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.nav-dot.active { background: #2250A0; }

/* ==== Accent Panel & Ghost Button ==== */
.ghost-btn {
  border: 2px solid #2250A0;
  background: transparent;
  color: #2250A0;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 100px;
  transition: background .2s, color .2s;
  cursor: pointer;
  margin: 34px auto;
  display: block;
  font-weight: 500;
  letter-spacing: .07em;
}

.ghost-btn:hover {
  background: #2250A0;
  color: #fff;
}

.accent-panel {
  background: linear-gradient(90deg, #E3F0FF 0%, #F0F7FE 100%);
  padding: 38px 30px;
  margin: 56px 0;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(34,80,160,0.07);
  text-align: center;
  color: #2250A0;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ==== Footer ==== */
.footer {
  background: #024731;
  padding: 40px 0 20px 0;
  color: #bfbfbf;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  justify-content: center;
}

.footer-col {
  min-width: 150px;
  margin: 0 18px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.11rem;
}

.footer-col .links {
  list-style: none;
  padding: 0;
}

.footer-col .links li {
  margin: 8px 0;
}

.footer-col .links li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: color .18s;
  font-size: .99rem;
}

.footer-col .links li a:hover {
  color: #fff;
}

.footer p {
  text-align: center;
  color: #fff;
  font-size: .99rem;
  margin: 16px 0 0 0;
}

/* ==== Responsive Queries ==== */
@media (max-width:900px) {
  .img-grid-row {
    gap: 16px;
  }
  .img-grid-box {
    width: 48%;
  }
  .full-width-section {
    flex-direction: column;
    padding: 30px 0;
  }
  .full-width-img,
  .full-width-info {
    margin: 0;
  }
  .footer-row {
    gap: 24px;
  }
}

@media (min-width:1024px) {
.header-wrapper {
    display: flex;
    flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #1c8200;
 }
}


@media (max-width:600px) {
  .header {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-row {
    flex-direction: column;
    
    
  }
  .logo {
      
  }
  
  .header-right{}
  
  .footer-col {
    margin: 10px 0 0 18px;
  }
  .img-grid-box,
  .service-box {
    width: 100%;
    margin: 12px 0;
  }
  .full-width-section {
    padding: 16px 0;
  }
  .full-width-img {
    height: 160px;
  }
  .faq-q,
  .faq-a {
    padding: 12px 12px;
    font-size: .98rem;
  }
  .accent-panel {
    font-size: 1rem;
    padding: 20px 8px;
  }
}



.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Arial, sans-serif;
}

.chat-btn {
  background-color: #1c8200; /* WhatsApp green */
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 2px rgb(0 0 0 / 23%);
  transition: background-color 0.3s ease;
}

.chat-btn:hover {
  background-color: #1ebe5a;
}

.chat-options {
  margin-bottom: 10px;

  /* Position above by translating upwards */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;

  /* Move options above the button */
  order: -1;
}

.chat-widget.active .chat-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.chat-option {
  background-color: #1ebe5a;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.chat-option:hover {
  background-color: #1c8200;
}




/* Icons: You can replace with SVG or font icons if preferred */








.about-founder-main {
  font-family: 'Inter', Arial, sans-serif;
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 18px;
  color: #222;
}

/* Hero Section */
.hero-founder {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 54px;
}

.hero-founder img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.68);
  transition: transform 0.45s ease;
}

.hero-founder:hover img {
  transform: scale(1.05);
}

.hero-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 650px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(15,40,68,0.8);
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 26px;
}

/* Founder Section */
.founder-section {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.founder-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(34,80,160,0.12);
}

.founder-content {
  flex: 1 1 420px;
}

.founder-content h2 {
  font-size: 2rem;
  color: #1c8200;
  margin-bottom: 18px;
}

.founder-content p {
  font-size: 1.03rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}

/* Mission & Vision */
.mission-vision {
  text-align: center;
  margin-bottom: 70px;
}

.mission-vision h2 {
  font-size: 2.3rem;
  color: #1c8200;
  margin-bottom: 36px;
}

.mission-vision-cards {
  display: flex;
  gap: 42px;
  justify-content: center;
  flex-wrap: wrap;
}

.mv-card {
  background: #f5f8ff;
  border-radius: 14px;
  padding: 38px 28px;
  max-width: 290px;
  box-shadow: 0 5px 19px rgba(34,80,160,0.07);
}

.mv-card h3 {
  font-size: 1.3rem;
  color: #1c8200;
  margin-bottom: 12px;
  font-weight: 700;
}

.mv-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.48;
}

/* Team Highlights */
.team-highlights {
  text-align: center;
  margin-bottom: 70px;
}

.team-highlights h2 {
  font-size: 2rem;
  color: #1c8200;
  margin-bottom: 32px;
}

.team-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px 22px;
  max-width: 180px;
  box-shadow: 0 5px 18px rgba(34,80,160,0.08);
  text-align: center;
  cursor: default;
  user-select: none;
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 10px 30px rgba(34,80,160,0.15);
}

.team-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 1.04rem;
  color: #1c8200;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Impact Statistics */
.impact-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 70px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  max-width: 140px;
}

.stat-box span {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #27770b;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  color: #1c8200;
}

/* Call to Action */
.about-cta {
  background-color: #27770b;
  border-radius: 14px;
  color: #fff;
  padding: 44px 30px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 80px;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.about-cta .btn-primary {
  background-color: #f0a500;
  color: #13306A;
  padding: 14px 40px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-cta .btn-primary:hover {
  background-color: #d18a00;
}

/* Responsive Adjustments */
@media (max-width: 860px) {
  .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder-content {
    max-width: 100%;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .mission-vision-cards,
  .team-cards,
  .impact-stats {
    flex-direction: column;
    gap: 26px;
    align-items: center;
  }
  .mv-card,
  .team-card,
  .stat-box {
    max-width: 280px;
  }
  .about-cta {
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .hero-founder img {
    height: 200px;
  }
  .hero-text {
    max-width: 90vw;
    padding: 0 5vw;
  }
}


   /* Services Section */
    .services-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
      font-family: Arial, sans-serif;
    }

    .services-title {
      font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1c8200;
    }

    /* Grid Container */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
    }

    /* 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;
    }




/*process section*/

.scrap-steps-section {
  /*width: 100vw;*/
  padding: 3rem 1rem;
  background: #e8f5e9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #225522;
  text-align: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

.scrap-steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.scrap-steps-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1c8200;
}

.scrap-steps-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.scrap-step {
  flex: 1 1 290px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 6px 20px rgb(28 130 0 / 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}

.scrap-step:hover,
.scrap-step:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 14px 36px rgb(28 130 0 / 0.3);
}

.scrap-step-image {
  width: 110px;
  height: 110px;
  margin-bottom: 1.5rem;
  user-select: none;
  pointer-events: none;
  object-fit: contain;
  border-radius: 16px;
  background-color: #daf4d7;
  padding: 1.1rem;
  filter: drop-shadow(0 3px 5px rgba(28,130,0,0.15));
  transition: filter 0.3s ease;
}

.scrap-step:hover .scrap-step-image {
  filter: drop-shadow(0 6px 12px rgba(28,130,0,0.25));
}

.scrap-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #145214;
}

.scrap-step-desc {
  font-size: 1rem;
  color: #3c3c3c;
  max-width: 260px;
  user-select: none;
  line-height: 1.5;
}

/* Responsive: stack vertically on small devices */
@media (max-width: 768px) {
  .scrap-steps-list {
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
  }
  .scrap-step {
    max-width: 100%;
  }
}