  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Work+Sans:wght@300;400;500;600&display=swap');
  body {
      margin: 0;
      padding: 0;
      background-color: #f9f9f9 !important;
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
      /* background-color: #177539; */
      background-color: #ffffff;
      padding: 0.3rem 3rem  0.3rem 7rem !important;
    }

    .navbar-brand img {
      height: 70px; /* Adjust this for logo size */
      width: auto;
    }

    .nav-link {
      color: #177539 !important;
      /* color: #ffffff !important; */
      font-family: 'Work Sans', sans-serif !important;
      margin-right: 1.5rem;
      font-weight: 500;
    }
     .navbar-nav .nav-link.active {
  color: #14BFDD !important;
}

    .contact-btn {
      background-color:#14BFDD ;
      /* background-color: #ffffff; */
      color: #ffffff;
      /* color: #000000; */
      border: none;
      margin-right: 15px;
      padding: 8px 20px;
      border-radius: 25px;
      font-family: 'Work Sans', sans-serif;
      font-weight: 500;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .contact-btn:hover {
    background-color: #10bad7 ;
    }
/* Grey Toggler Icon */
.navbar-toggler {
  border-color: rgba(128,128,128,0.6) !important; /* grey border */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='grey' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
    /* HERO SECTION */
    .hero-section {
      background-color: #177539;
      color: #ffffff;
      padding: 40px 0 100px;
      height: 95vh !important;
    }

    .hero-text h1 {
      font-family: 'Work Sans', sans-serif;
      font-size: 3.7rem !important;
      font-weight: 400;
   letter-spacing: -3px !important;
      /* color: #f1f1f1; */
    }

    .hero-text p {
      font-family: 'Work Sans', sans-serif;
      font-size: 1rem;
      margin: 1rem 0 2rem 0;
    }

    .hero-text .btn {
      background-color: #14BFDD;
      color: #ffffff;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      font-family: 'Work Sans', sans-serif;
      transition: all 0.3s ease;
    }

    .hero-text .btn:hover {
      background-color: #0fa6c1;
    }

    .hero-img img {
      width: 75%;
      max-width: 700px !important;
    }
/* ==================services section============== */
    /* SERVICES SECTION */
    .services-section {
      background-color: #f9f9f9;
      color: #2E4F21;
      text-align: center;
      padding: 100px 0 30px;

    }

    .services-section h5 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      /* letter-spacing: 1px; */
      /* text-transform: uppercase; */
      letter-spacing: -0.5px;
    }

    .services-section h2 {
      font-family: 'Work Sans', sans-serif;
      font-size: 3.7rem !important;
      font-weight: 400;
   letter-spacing: -3px !important;
      margin: 25px 0;
    }

    .services-section p {
      font-family: 'Work Sans', sans-serif;
      font-size: 1rem;
      max-width: 1000px;
       letter-spacing: -0.5px !important;
      margin: 0 auto 30px auto;
    }

    .services-section .btn {
      background-color: #14BFDD;
      color: #ffffff;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      font-family: 'Work Sans', sans-serif;
      transition: all 0.3s ease;
    }

    .services-section .btn:hover {
      background-color: #0fa6c1;
     color: #ffffff;
    }

    /* @media (max-width: 992px) {
      .hero-text {
        text-align: center;
        margin-bottom: 2rem;
      }
    } */

    /* ========== service card section======= */
     .service-card {
  background-color: #177539;
  color: #ffffff;
  border-radius: 25px;
  padding: 30px 60px 30px 40px;
  margin: 80px 30px 40px 50px;
  max-width: 1100px;
  height: 500px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);

  /* ✅ Added for alignment */
  display: flex;
  align-items: center;       /* Vertically center */
  justify-content: space-between; /* Horizontally space image & text */
  gap: 40px; /* Optional spacing between image and text */
}

.service-card img {
  width: 100%;
  max-width: 450px !important;
  border-radius: 10px;
}

.service-content {
  flex: 1; /* Ensures text uses available space */
}

.service-content h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.service-content p {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 1rem;
  font-weight: 100 !important;
  line-height: 1.4;
  /* letter-spacing: -0.3px; */
  padding-right: 50px;
  margin-bottom: 0;
  color: #f9f9f9;
}

    /* =============== CARD VARIATIONS ================= */
    /* Card 1 (Image Left) */
    .service-card.one {
      margin-right: 150px; /* Space on right side */
    }

    /* Card 2 (Image Right) */
    .service-card.two {
      margin-left: 170px; /* Space on left side */
      
    }

    /* Card 3 (Same as 1) */
    .service-card.three {
      margin-right: 150px;
    }

    @media (max-width: 992px) {
      .service-card {
        margin: 40px 20px;
        padding: 40px 25px;
        text-align: center;
      }

      .service-card img {
        max-width: 250px;
        margin-bottom: 20px;
      }
    }

    /* =========full screen image section====== */
    .full-image-section {
  position: relative;
  width: 100%;
  height: 105vh; /* full viewport height */
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the image covers the section without distortion */
  display: block;
}

/* =========plans section========== */
.plans-section {
  background-color: #ffffff !important;
  color: #2E4F21;
 padding: 80px 0 30px;
  font-family: 'Work Sans', sans-serif;
}

.plans-heading {
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #2E4F21;
}

.plans-points {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.plans-points li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  color: #2E4F21;
  letter-spacing: -0.5px !important;
}

.plan-boxes {
  margin-top: 80px !important;
}




/* Reduce top spacing */


/* Reduce spacing inside each plan */
.plan-box {
  padding: 10px 0 !important;
  margin-bottom: 20px !important;  
}

/* Plan content spacing */
.plan-content {
  margin-top: 5px;   
  padding-left: 15px;
}

/* Remove extra margin under last plan */
.plan-box:last-child {
  margin-bottom: 10px !important;
}

/* Reduce gap before the button */
.plans-section .mt-5 {
  margin-top: 20px !important; /* reduced from default 3–4rem */
}





.plan-box {
  border-left: 1px solid #2E4F21;
  padding: 0 20px 0 30px !important;
}

.plan-content {
  text-align: left;
  margin-top: 20px;
  padding-left: 30px;
}

.plan-content i {
  font-size: 1.8rem;
  color: #2E4F21;
  margin-bottom: 15px;
  display: block;

}

.plan-content h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.plan-content p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.explore-btn {
  background-color: #14BFDD !important;
  color: #ffffff !important;
  border: none;
   padding: 10px 25px !important;
      border-radius: 25px !important;
  font-weight: 500;

  transition: 0.3s ease;
}

.explore-btn:hover {
  background-color: #0fa6c1;
}

/* @media (max-width: 992px) {
  .plan-box {
    border-left: none;
    border-top: 1px solid #2E4F21;
    padding-top: 30px;
    margin-top: 30px;
  }

  .plan-content {
    text-align: center;
  }

  .plans-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .plans-points {
    text-align: left;
  }
} */
/* =========combination of 2 container sect5ion as well as======== */
/* ========== FIRST SECTION ========== */
.solution-section {
  background-color: #ffffff !important;
  padding: 80px 80px;
  display: flex;
  justify-content: center;
}

.solution-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

/* Left Content */
.solution-content {
  background-color: #177539 !important; /* dark green same as text in plans */
  color: #ffffff;
  border-radius: 20px;
  padding: 50px 60px;
  flex: 1;
  box-shadow: 0 8px 16px rgba(46, 79, 33, 0.2);
}

.solution-content h2 {
 font-family: 'Work Sans', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;

}

.solution-content p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
  letter-spacing: -0.2px;
  color: #e7f1e8;
}
.text-para{
  margin-bottom: 30px !important;
}
/* Button */
.learn-btn {
  background-color: #14BFDD; /* same as explore-btn */
  border: none;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none !important;
  
  
}

.learn-btn:hover {
  background-color: #0fa6c1;
}

/* Right Image */
.solution-image {
  flex: 1.3;
  background-color: #D2F8DC;
  /* background-color: #b8f7ce;  */
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-image img {
  width: 85%;
  max-width: 350px;
  border-radius: 10px;
}

/* ========== SECOND SECTION ========== */
.growth-section {
  text-align: center;
  padding: 80px 20px 70px;
  background-color: #f9f9f9 !important;
}

.growth-section h2 {
   font-family: 'Work Sans', sans-serif;
  font-size: 3.7rem;
  color: #2E4F21;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -3px;
  margin-bottom: 40px;

 
}

.connect-btn {
  background-color: #14BFDD;
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none !important;
}

.connect-btn:hover {
  background-color: #0fa6c1;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  /* .solution-container {
    flex-direction: column;
  }

  .solution-content,
  .solution-image {
    width: 100%;
  }

  .solution-section {
    padding: 60px 20px;
  }

  .growth-section h2 {
    font-size: 1.8rem;
  } */
}

/* ========footer section========= */
.footer-section {
  background-color: #177539;
  color: #ffffff;
  padding: 80px 40px !important;
  font-family: 'Work Sans', sans-serif;
}

.footer-section h5 {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: -0.2px;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Column spacing */
.check-class {
  padding-left: 40px !important;
}

/* Logo */
.footer-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

/* ✅ Paragraph and other text (except links and icons) */
.footer-text,
.footer-section p:not(.hello-class p) {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 12px;
}

/* General links */
.footer-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e0e0e0;
  text-decoration: underline;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}
/* ✅ Ensure equal width and vertical alignment */
.footer-section .row > div {
  /* display: flex; */
  flex-direction: column;
  justify-content: flex-start;
}

/* ✅ Optional: center text for better visual balance on tablets */
@media (max-width: 992px) {
  .footer-section .row > div {
    text-align: center;
    align-items: center;
  }
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ffffff;
}

.footer-links a:hover {
  color: #e0e0e0;
}

/* Contact Info */
.hello-class p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Social Icons */
.bi {
  font-size: 1.5rem;
  color: #ffffff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.bi:hover {
  color: #e0e0e0;
}

/* ✅ Space above bottom footer */
.footer-bottom {
  background-color: #177539;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px; /* added space above */
  padding: 30px 40px 0;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-bottom-links a {
  color: #ffffff;
  margin-right: 48px;
  font-size: 0.95rem;
}

.footer-bottom-links a:hover {
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  /* .footer-section {
    text-align: left;
    padding: 40px 20px;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  } */
}

/* ============ mobile view section============= */
/* Mobile Fixes */
@media (max-width: 768px) {
 .navbar {
    padding: 0.4rem 1rem  0.8rem !important;  /* Less padding */
  }

  .navbar-brand img {
    height: 60px;   /* Smaller logo on mobile */
  }

  .nav-link {
    margin-right: 0 !important;
    padding: 0.4rem 0 !important;
    font-size: 0.9rem !important;  /* Smaller text */
    text-align: left !important;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  /* Add spacing around the Contact button */
  .navbar-nav .nav-item .contact-btn {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding: 8px 18px;
     font-size: 0.9rem;
    display: inline-block; /* ensures margin applies properly */
  }

 
    .navbar-toggler {
    padding: 2px 5px !important;   /* Smaller button */
  }

  .navbar-toggler-icon {
    width: 30px !important;        /* Reduce width */
    height: 30px !important;       /* Reduce height */
    background-size: 20px 20px !important; /* Scale the SVG */
  }

  /* =========lading page section================ */
   .hero-img {
    order: 1 !important;
    text-align: left !important;
  }

  /* IMAGE SIZE */
  .hero-img img {
    width: 80% !important;
    max-width: 700px !important;
    margin-bottom: 20px;
  }

  /* TEXT SECOND */
  .hero-text {
    order: 2 !important;
    text-align: left !important;
    margin-bottom: 20px;
  }

  /* HEADING */
  .hero-text h1 {
    font-size: 2rem !important;
    letter-spacing: -1px !important;
    text-align: left !important;
  }

  /* PARAGRAPH */
  .hero-text p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: left !important;
  }

  /* BUTTON */
  .hero-text .btn {
    background-color: #14BFDD;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 25px;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
    margin-left: 0 !important;    /* left align the button */
  }

  .hero-text .btn:hover {
    background-color: #0fa6c1;
  }

  /* HERO SECTION SPACING */
  .hero-section {
    height: auto !important;
    padding: 30px 10px 30px !important;
  }
  /* =========== service section========*/
    .services-section {
    padding: 60px 20px; /* reduce padding for mobile */
  }

  .services-section h5 {
    font-size: 1rem; /* keep same feel, optional */
  }

  .services-section h2 {
    font-size: 2rem !important;
    letter-spacing: -1px !important;
    line-height: 1.3;
  }

  .services-section p {
    font-size: 0.9rem !important;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .services-section .btn {
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
    border-radius: 25px !important;
  }
   .services-section h2 br {
    display: none;
  }

  /* ===============service card variatiuons===== */
  .service-card {
    flex-direction: column !important;   /* Always image first, content second */
    text-align: left !important;         /* Left-align text */
    padding: 30px 20px  35px!important;
    margin: 5px 20px 40px !important;
    height: auto !important;
    gap: 20px !important;
  }

  /* Ensure ALL card layouts follow image → text order */
  .service-card .row {
    flex-direction: column !important;
  }

  /* Make sure image always comes first */
  .service-card img {
    order: 1 !important;
    max-width: 250px !important;
    width: 100%;
    margin: 0 auto 35px auto;   /* Center image */
    display: block;
  }

  /* Content always comes after the image */
  .service-content {
    order: 2 !important;
    width: 100%;
  }

  .service-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }

  .service-content p {
    font-size: 0.9rem !important;
    padding-right: 0 !important;
    line-height: 1.4;
  
  }

  /* Remove desktop card offset margins */
  .service-card.one,
  .service-card.two,
  .service-card.three {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
     /* =========full screen image section====== */
      .full-image-section {
    height: 70vh; /* reduce height for mobile */
  }

  .full-image-section img {
    object-position: center top; /* shows better portion of the image */
  }
  /* ===========plans section======== */
  .plans-section {
padding: 35px 0 !important;
  }
 .plans-heading {
    font-size: 2rem !important;
  }

  .plans-points li {
    font-size: 0.9rem !important;
  }

  .plan-content h4 {
    font-size: 1.5rem !important;
  }

  .plan-content p {
    font-size: 0.9rem !important;
  }

  .plan-boxes{
    margin-top: 10px !important;
  }

  /* No vertical line in mobile */
  .plan-box {
    border-left: none !important;
    padding: 5px 0 !important;
    position: relative;
    margin-bottom: 5px !important;
  }

  /* Horizontal line between plans */
  .plan-box:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2E4F21;
    margin: 30px 0 0 0;  
  }

  /* Ensure button is close to plans */

.explore-btn {
  background-color: #14BFDD !important;
  color: #ffffff !important;
  border: none;
    padding: 8px 18px;
      font-size: 0.9rem;
      border-radius: 25px;
  font-weight: 500;

  transition: 0.3s ease;
}
/* ==================2 container section======= */
 .solution-section {
    padding: 40px 20px !important; /* reduced padding */
  }

  /* Stack vertically */
  .solution-container {
    flex-direction: column;
    gap: 25px; /* reduced gap */
  }

  /* Content on TOP */
  .solution-content {
    order: 1;
    width: 100%;
    padding: 25px 20px !important; /* reduced padding left/right */
  }

  /* Image at BOTTOM */
  .solution-image {
    order: 2;
    width: 100%;
    padding: 20px;
  }

  /* Mobile font sizes */
  .solution-content h2 {
    font-size: 1.5rem !important;
  }

  .solution-content p {
    font-size: 0.9rem !important;
  }

  /* Adjust image */
  .solution-image img {
    width: 85%;
    max-width: 260px;
  }
  .learn-btn {
  background-color: #14BFDD; /* same as explore-btn */
  border: none;
  color: #ffffff;
  padding: 8px 18px !important;
  font-size: 0.9rem !important;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none !important;
}
/* ========growth section======== */
 .growth-section {
    padding: 35px 20px !important; /* Reduced top & bottom padding */
  }

  .growth-section h2 {
    font-size: 2rem !important;  /* Requested font size */
    line-height: 1.3;
    letter-spacing: -1px;        /* Slightly tighter for mobile */
    margin-bottom: 25px;         /* Reduced space before button */
  }

  .connect-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
  /* =========footer section======= */
   footer.footer-section,
  .footer-section.py-5,
  .footer-section.mt-5.py-5 {
    padding-top: 2rem !important;    /* py-3 top */
    padding-bottom: 2rem !important; /* py-3 bottom */
    padding-left: 15px !important;   /* keep some horizontal breathing room */
    padding-right: 20px !important;
    text-align: left !important;
  }

  /* Row spacing fixes */
  .footer-section .row {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Remove extra padding from columns */
 .footer-section .row > div {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Logo */
  .footer-logo {
    width: 100px !important;
    margin-bottom: 15px;
  }

  /* Headings */
  .footer-section h5 {
    font-size: 1.2rem !important;
    margin-bottom: 15px;
  }

  /* Text + Icons */
  .footer-text,
  .footer-section p,
  .footer-links a,
  .hello-class p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 5px !important;
    text-align: left !important;
  }

  /* Social icons */
  .bi {
    font-size: 1.2rem !important;
    margin-right: 12px;
  }

  /* Quick Links */
  .footer-links li {
    margin-bottom: 8px !important;
  }

  /* Remove left padding in Quick Links column */
  .check-class {
    padding-left: 0 !important;
  }

  /* Contact info */
  .hello-class {
    padding-left: 0 !important;
  }

  /* Bottom footer */
  .footer-bottom {
    padding: 15px 0px 5px !important;   /* equal spacing */
    text-align: left !important;
  }

  /* Bottom row stacked */
  .footer-bottom .container-fluid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px;
  }

  /* Bottom links */
  .footer-bottom-links a {
    margin-right: 1px !important;
    font-size: 0.9rem !important;
   
  }
   .check-class,
  .hello-class {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Social Icons */
  .footer-section a .bi {
    margin-right: 12px;
  }
  .footer-text{
    padding-bottom: 10px !important;
  }

}