/*   Header Css Code */
 .top-bar {
      background-color: #7ac121;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }

    .top-bar a {
      color: #fff;
      margin-right: 15px;
      text-decoration: none;
    }

    .navbar {
      padding: 15px 0;
    }

    .navbar .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: #000 !important;
      font-weight: 500;
      padding: 8px 15px;
    }

    .nav-link:hover {
      color: #7ac121 !important;
    }

    .navbar-icons i {
      margin-right: 15px;
      font-size: 16px;
      color: #7ac121;
      cursor: pointer;
    }

    .cta-button {
      background-color: #f58220;
      border: none;
      color: #fff;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .cta-button:hover {
      background-color: #e6731b;
    }

    @media (max-width: 992px) {
      .navbar-icons {
        margin-top: 15px;
      }
    }

    /* End of Header Css File */

    /*hero Css Code */


     .hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
  }

  .mint-leaves {
    top: 20px;
    right: 20px;
    width: 150px;
    opacity: 0.2;
    z-index: 0;
  }

  .hero-circle {
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s ease;
  }

  .hero-content {
    max-width: 400px;
    padding: 20px;
  }

  .btn-orange {
    background-color: #fd7e14;
    color: white;
    border-radius: 50px;
  }

  .btn-green {
    border-color: #28a745;
    color: #28a745;
    border-radius: 50px;
  }

  .hero-image img {
    max-height: 400px;
    transition: transform 0.5s ease;
  }

  .hero-image:hover img {
    transform: scale(1.05);
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero-circle {
      border-radius: 30px;
      aspect-ratio: auto;
      max-width: 100%;
      padding: 30px !important;
    }

    .hero-content {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .hero-section {
      padding: 60px 0;
      text-align: center;
    }

    .hero-buttons {
      justify-content: center !important;
    }

    .hero-content {
      text-align: center !important;
    }

    .hero-image {
      margin-top: 40px !important;
    }

    .hero-image img {
      max-height: 300px;
    }
  }

#learn-more{
      background-color:white;
      color:black;
      transition:0.5s linear;
      border:1px solid  #7ac121;
    }
    #learn-more:hover{
      background-color: #7ac121;
      color: white !important;
    }
    #shopnow{
      background-color:orange;
      color:white;
    }
    #shopnow:hover{
      color:white;
      background-color:#7ac121;
    }

    /* Animated Leaves Background */
    .mint-leaves {
      position: absolute;
      top: 10%;
      left: -80px;
      width: 200px;
      height: auto;
      animation: floatLeaves 10s ease-in-out infinite alternate;
      z-index: 0;
    }

    @keyframes floatLeaves {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(30px) rotate(5deg); }
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }

      .hero-section {
        padding: 50px 0;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
      }

      .mint-leaves {
        display: none;
      }
    }

    /* End of Banner Css Code */



#learn-more{
      background-color:white;
      color:black;
      transition:0.5s linear;
      border:1px solid  #7ac121;
    }
    #learn-more:hover{
      background-color: #7ac121;
      color: white !important;
    }
    #shopnow{
      background-color:orange;
      color:white;
    }
    #shopnow:hover{
      color:white;
      background-color:#7ac121;
    }

    /* Second Section */
    body {
      background-color: #fff;
      font-family: 'Segoe UI', sans-serif;
    }

    .about-section {
      padding: 80px 0 40px;
    }

    .about-title h1 {
      font-size: 38px;
      font-weight: 700;
      color: #1b1b1b;
    }

    .founder-box {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .founder-box img {
      width: 50px;
      border-radius: 50%;
      margin-right: 15px;
    }

    .founder-name {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 2px;
    }

    .founder-title {
      font-size: 14px;
      color: #7ac121;
    }

    .signature {
      margin-top: 10px;
      max-width: 120px;
    }

    .about-image img {
      max-width: 100%;
      border-radius: 16px 16px 60px 16px;
    }

    .feature-list {
      margin-top: 20px;
    }

    .feature-list li {
      list-style: none;
      margin-bottom: 10px;
      font-size: 15px;
      color: #333;
    }

    .feature-list li i {
      color: #f58220;
      margin-right: 8px;
    }

    .about-button {
      background-color: #7ac121;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      color: #fff;
      margin-top: 15px;
      border-radius: 4px;
      transition: background 0.3s ease;
    }

    .about-button:hover {
      background-color: #5d9c16;
    }

    .features-section {
      background-color: #7ac121;
      padding: 40px 0 10px;
      margin-top: 50px;
    }

    .feature-box {
      background-color: #fff;
      text-align: center;
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 30px;
      color: #7ac121;
      margin-bottom: 15px;
    }

    .feature-title {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .feature-text {
      color: #666;
      font-size: 14px;
    }

    @media (max-width: 767px) {
      .about-title h1 {
        font-size: 28px;
      }
    }



    /* Third Section  */
    .footer-stats {
      background-color: #f58220;
      color: #fff;
      padding: 60px 0;
    }

    .footer-stats .stat-icon {
      font-size: 36px;
      margin-bottom: 15px;
      display: inline-block;
      animation: pop 1.5s infinite ease-in-out alternate;
    }

    @keyframes pop {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.15);
      }
    }

    .footer-stats .stat-number {
      font-size: 32px;
      font-weight: 700;
    }

    .footer-stats .stat-label {
      font-size: 14px;
      margin-top: 5px;
    }

    .footer-stats .col-md-3 {
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    .footer-stats .col-md-3:last-child {
      border-right: none;
    }

    @media (max-width: 767px) {
      .footer-stats .col-md-3 {
        border: none;
        margin-bottom: 30px;
      }
    }



    /* Fourth Section */
    body {
      background-color: #f3f9f6;
    }

    .featured-products {
      padding: 60px 0;
    }

    .featured-products h5 {
      color: #88b44e;
      font-weight: 600;
    }

    .featured-products h2 {
      font-weight: 700;
    }

    .product-card {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      text-align: center;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .product-card img {
      max-height: 120px;
      margin-bottom: 15px;
    }

    .sale-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #e74c3c;
      color: white;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 4px;
      font-weight: 600;
    }

    .product-title {
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .price del {
      color: #999;
      margin-right: 5px;
    }

    .price ins {
      color: #2c3e50;
      text-decoration: none;
      font-weight: 600;
    }

    .rating i {
      color: #f1c40f;
    }

    .product-card .btn {
      background-color: #006400;
      color: #fff;
      font-size: 14px;
      border-radius: 4px;
      margin-top: 10px;
      padding: 6px 14px;
    }

    .product-filter .nav-link {
      color: #444;
      font-weight: 500;
    }

    .product-filter .nav-link.active {
      color: #2c3e50;
      border-bottom: 2px solid #2c3e50;
    }





    /*  Services Section */
    body {
      background-color: #f6f6f6;
      font-family: 'Segoe UI', sans-serif;
    }

    .our-services {
      padding: 80px 0;
      background: radial-gradient(circle at top, #f0f0f0 0%, #f6f6f6 80%);
      text-align: center;
    }

    .our-services h6 {
      color: #555;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .our-services h2 {
      font-weight: 700;
      margin-bottom: 40px;
      font-size: 32px;
    }

    .service-card {
      background-color: #fff;
      border-radius: 8px;
      padding: 30px 20px 20px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 40px;
      color: #88b44e;
      margin-bottom: 15px;
    }

    .service-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 14px;
      color: #666;
      min-height: 80px;
    }

    .learn-more-btn {
      margin: 15px 0;
      padding: 8px 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      background: #E9F0E9;
      transition: all 0.3s;
      text-decoration: none;
      
    }

    .learn-more-btn:hover {
      background-color: #88b44e;
      color: #fff;
      border-color: #88b44e;
    }

    .service-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 6px;
      margin-top: 15px;
    }

    /* After Service Section */
     body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
    }

    .benefit-section {
      padding: 80px 0;
      background-color: #fff;
    }

    .benefit-title {
      color: #1e1e1e;
      font-size: 32px;
      font-weight: 700;
    }

    .benefit-subtitle {
      color: #666;
      font-size: 15px;
      margin-bottom: 35px;
      max-width: 500px;
    }

    .benefit-feature {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 25px;
    }

    .benefit-feature i {
      font-size: 28px;
      color: #88b44e;
    }

    .benefit-feature h6 {
      margin: 0;
      font-weight: 600;
      font-size: 16px;
    }

    .benefit-feature p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }

    .img-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .img-grid img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .img-overlap {
      position: absolute;
      bottom: -30px;
      left: -40px;
      width: 120px;
      z-index: 2;
    }

    @media (max-width: 768px) {
      .img-grid {
        grid-template-columns: 1fr;
      }
      .img-overlap {
        position: static;
        margin-top: 20px;
      }
    }



    /* Fourth Section */
    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
    }

    .faq-section {
      padding: 80px 0;
      background-color: #E9F0E9;
    }

    .faq-title {
      font-size: 32px;
      font-weight: 700;
      color: #2F452F;
;
    }

    .faq-subtitle {
      font-size: 18px;
      font-weight: 600;
      margin-top: 30px;
    }

    .faq-description {
      font-size: 15px;
      color: #666;
      margin-bottom: 30px;
    }

    .accordion-button {
      background-color: #edf4dd;
      font-weight: 600;
      color: #111;
    }

    .accordion-button:not(.collapsed) {
      color: #88b44e;
      background-color: #f5fce7;
      box-shadow: none;
    }

    .accordion-body {
      background-color: #fefefe;
      font-size: 14px;
    }

    .faq-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .faq-images img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .faq-images img.circle {
      border-radius: 50%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .faq-images {
        grid-template-columns: 1fr;
      }
    }


    /*Testimonial Section */
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: white;
    }

    .testimonial-section {
      padding: 60px 20px;
      text-align: center;
    }

    .testimonial-section h6 {
      font-size: 14px;
      color: #555;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .testimonial-section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 50px;
      color: #111;
    }

    .testimonial {
      text-align: left;
      display: flex;
      align-items: center;
      margin-bottom: 40px;
    }

    .testimonial img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 20px;
    }

    .testimonial h5 {
      margin: 0;
      font-weight: 700;
      font-size: 17px;
    }

    .testimonial p {
      margin: 0;
      color: #666;
      font-size: 14px;
    }

    .testimonial .text {
      flex: 1;
    }

    .herb-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 50px;
      padding-bottom: 40px;
      margin-top: 30px;
    }

    .herb-footer img {
      height: 90px;
    }

    @media (max-width: 768px) {
      .testimonial {
        flex-direction: column;
        text-align: center;
      }

      .testimonial img {
        margin-bottom: 15px;
      }

      .testimonial .text {
        text-align: center;
      }
    }




.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    animation: pulse 2s infinite;
    text-decoration:none;
  }
  
  .whatsapp-icon {
    margin-top: 4px;
  }
  
  .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
      font-size: 24px;
    }
  }







.pdf-preview {
  /* Remove scrollbars completely */
  overflow: hidden !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.pdf-preview::-webkit-scrollbar {
  display: none;
}