 body {
      font-family: "Poppins", sans-serif;
      background-color: #fff;
    overflow-x: hidden;
    }


    /* Top bar */
     .top-bar {
      background-color: #0C3C01;
      color: white;
      font-size: 15px;
      padding: 6px 0;
    }

    .top-bar a {
      color: white;
      text-decoration: none;
    }

    .top-bar a:hover {
      text-decoration: underline;
    }

    @media (max-width: 576px) {
      .top-bar .row > div {
        text-align: center !important;
        margin-bottom: 5px;
      }
    }

    /* Navbar styling */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 1px 6px rgba(12, 60, 1, 0.5);
      padding: 0.8rem 4rem;
      z-index: 10;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      padding-left: 10px;
      gap: 2px;
     
      width: 200px;
      height: 100%;
    }

    .navbar-brand img {
      width: 65px;
      height: auto;
    }

   

    .navbar-nav .nav-link {
      color: #5B6D49;
      font-weight: 600;
      font-size: 18px;
      margin: 0 10px;
      position: relative;
      transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #0C3C01;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: #0C3C01;
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

     /* -------------------------------------
       Mobile view custom styles
    -------------------------------------- */
    @media (max-width: 992px) {
      .navbar {
        padding: 0.8rem 2rem;
      }

      .navbar-collapse {
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border-top: 1px solid #cfd8dc;
        padding: 15px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: inset 0 1px 6px rgba(12, 60, 1, 0.5);
      }

      .navbar-nav .nav-link {
        color: #5B6D49;
        text-align: center;
        padding: 12px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
      }

      .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.4);
        color: #0C3C01;
      }

      .navbar-nav .nav-link::after {
        display: none;
      }

      .navbar-toggler {
        border: none;
        margin-right: 10px;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }

      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23003366' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 12.5a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
      }
    }

/* =========================Carousel========================= */
    /* Carousel Image Style */
    .carousel-item img {
      width: 100%;
      height: 550px;
      object-fit: cover; /* Image zoom adjust */
    }

    /* Responsive Height */
    @media (max-width: 768px) {
      .carousel-item img {
        height: 300px;
      }
    }

    @media (max-width: 576px) {
      .carousel-item img {
        height: 220px;
      }
    }

    /* About Section */
     .about-section {
      padding: 60px 0;
    }

    .about-section h6 {
      color: #0046ad;
      font-weight: 600;
      text-transform: uppercase;
    }

    .about-section h2 {
      color: #0a2c67;
      font-weight: 700;
    }

    .about-section p {
      font-size: 15px;
      color: #333;
      line-height: 1.7;
    }

    .btn-primary {
      background-color: #0046ad;
      border: none;
    }

    .btn-primary:hover {
      background-color: #00327e;
    }

    /* Responsive image height adjustment */
    .about-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
    }

    @media (max-width: 768px) {
      .about-section {
        text-align: center;
      }
      .about-section img {
        margin-bottom: 20px;
      }
    }

    /* Features */
     .features-section {
      padding: 60px 0;
      text-align: center;
      background-color: #f3f8fc;
    }

    .features-section h2 {
      color: #0a2c67;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .feature-box {
      background-color: #5b6d49;
      color: #000;
      padding: 40px 20px;
      border-radius: 6px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .feature-box:hover {
      background-color: #0C3C01;
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      color: white;
    }

    .feature-box i {
      font-size: 36px;
      margin-bottom: 15px;
      color: white;
    }

    .feature-box h5 {
      font-size: 16px;
      margin-top: 10px;
      font-weight: 500;
    }

    /* Our Products Section */

  .product-card {
    transition: all 0.3s ease;
    border: none;
    background: #fff;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .product-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
  }

  .card-body {
    padding: 1rem;
    background-color: #a2ac82;
    
  }




  /* 🔹 Title */
    .section-title {
      color: #002a75;
      font-weight: 700;
      text-align: center;
      margin-bottom: 45px;
      letter-spacing: 0.5px;
      font-size: 2rem;
    }

    /* 🔹 Industry Card */
    .industry-box {
      background-color: #3066c9;
      color: #fff;
      text-align: center;
      padding: 35px 15px;
      border-radius: 15px;
      transition: all 0.4s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .industry-box i {
      font-size: 38px;
      margin-bottom: 10px;
      display: block;
      transition: transform 0.6s ease, color 0.3s ease;
    }

    .industry-box h6 {
      font-size: 15px;
      margin-top: 8px;
      letter-spacing: 0.3px;
    }

    /* 🔹 Hover Effect */
    .industry-box:hover {
      transform: translateY(-10px) scale(1.05);
      background-color: #1e4ea5;
      box-shadow: 0 0 25px rgba(30, 78, 165, 0.9);
    }

    .industry-box:hover i {
      transform: rotate(360deg);
      color: #ffcc00;
    }

    /* 🔹 Glow Border */
    .industry-box::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      width: 0;
      height: 0;
      border: 2px solid #ffcc00;
      border-radius: 15px;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .industry-box:hover::before {
      width: 100%;
      height: 100%;
      opacity: 1;
    }

    @media (max-width: 767px) {
      .industry-box {
        margin-bottom: 15px;
      }
    }


    /* Footer Section */
.footer {
  background-color: #2e2d1d;
  /* color: #ccc; */
  color: #f1f2ed;
}

.footer h6 {
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer h6::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgb(3, 82, 3);
  margin: 6px auto 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: green;
  padding-left: 4px;
}

.footer .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  /* background: #1b1b1b; */
  background: white;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border: 1px solid #222;
}

.footer .social-icon:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer h6::after {
    margin: 6px auto 0;
  }
  .footer ul {
    padding-left: 0;
  }
  .footer .social-icon {
    margin: 0 5px;
  }
  .footer .col-md-6 {
    margin-bottom: 25px;
  }
}

/* Whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #04f564;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* Smaller screens optimization */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

/* About File Css */

.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  }

  .about-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .about-title {
    font-weight: 700;
    color: #0d6efd;
  }

  .about-text {
    color: #555;
    line-height: 1.7;
  }

  .icon-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
    padding: 25px 20px;
    transition: 0.3s;
    height: 100%;
  }

  .icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
  }

  .icon-box i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 10px;
  }

  @media (max-width: 991px) {
    .about-section {
      padding: 60px 0;
    }
  }


  /* contact us */
    .contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  }

  .contact-title {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .contact-card {
    background: #a2ac82;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: 0.3s;
  }

  .contact-card:hover {
    transform: translateY(-5px);
  }

  .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
  }

  .info-box {
    background: #5b6d49;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.08);
    transition: 0.3s;

  }

  .info-box i {
    font-size: 28px;
    color: #0d6efd;
    margin-right: 10px;
  }

  .info-box:hover {
    transform: translateY(-3px);
  }

  iframe {
    border-radius: 12px;
    width: 100%;
    height: 250px;
  }

  /* ==================Products============================ */
  .product-section {
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }

        .product-card {
            background: #f1f2ed;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-card .card-body {
            text-align: center;
            padding: 20px;
        }

        .product-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .headingcolor{
          color: #0C3C01 !important;
        }
        .smallheadingcolor{
          color: #2e2d1d !important;
        }

        .btn-buy, .btn-apply {
            /* background-color: #007bff !important; */
            background-color: #0C3C01 !important;
            color: #fff !important;
            font-weight: 500 !important;
            padding: 8px 18px !important;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-view, .btn-apply-all {
            /* background-color: #6c757d !important; */
            background-color: #a2ac82 !important;
            color: #000 !important;
            
            padding: 8px 18px;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-buy:hover,.btn-apply:hover {
            background-color: #5B6D49 !important;
            /* color: black !important; */
            color: black !important;
        }

        .btn-view:hover, .btn-apply-all:hover {
            background-color: #5B6D49 !important;
            color: black !important;
        }

/* ========================FAQ Section=========================== */
         .faq-section {
      padding: 60px 0;
      background-color: #f1f2ed;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-title h2 {
      font-weight: 700;
    }

    .accordion-button {
      font-weight: 600;
      font-size: 1rem;
      background-color: #5b6d49 !important;
      box-shadow: none !important;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .accordion-button:hover {      
      color: #f1f2ed;
    }

    .accordion-item {
      border: none;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .accordion-body {
      background-color: #fff;
      border-radius: 0 0 10px 10px;
      line-height: 1.6;
      color: #555;
    }

    @media (max-width: 576px) {
      .faq-title h2 {
        font-size: 1.6rem;
      }

      .accordion-button {
        font-size: 0.95rem;
      }
    }
       
/* ==============About Section-2==================== */

    section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-weight: 700;
      /* color: #0C3C01; */
    }

    .mission-box, .vision-box, .why-box {
      background: #5b6d49;
      color: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      transition: all 0.3s ease;
      height: 100%;
    }

    .mission-box:hover, .vision-box:hover, .why-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      background-color: #a2ac82;
      color: #000;
    }

    .mission-box i, .vision-box i, .why-box i {
      font-size: 2.5rem;
      color: #0C3C01;
      margin-bottom: 20px;
    }

    .why-list li {
      margin-bottom: 12px;
      line-height: 1.7;
    }

    @media (max-width: 767px) {
      .mission-box, .vision-box, .why-box {
        margin-bottom: 25px;
      }
    }

    /* ===============Products Scroll================ */
    .product-scroll {
      max-height: 195px;
      overflow-y: scroll;
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE/Edge */
    }

    .product-scroll::-webkit-scrollbar {
      display: none;
      /* Chrome/Safari */
    }

    @media (max-width: 576px) {
      .product-scroll {
        max-height: 140px;
      }
    }


    /*  */
            .product-list .item {
            padding: 14px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid transparent;
        }

        .product-list .item:hover,
        .product-list .item.active {
            background: #0d6efd;
            color: white;
            border-color: #0d6efd;
            transform: translateX(5px);
        }

        .product-image {
            border-radius: 15px;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        }

        .product-title {
            font-size: 26px;
            font-weight: 600;
        }

        .product-desc {
            font-size: 16px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .product-list {
                margin-bottom: 20px;
            }
        }

/* ======= product list for sticky and scroll bar ====== */
.product-list a{
  text-decoration: none;
}
/* Desktop/Large screen = sticky + scrollbar */
.sticky-list {
    position: sticky;
    top: 115px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* Mobile screen me sticky aur scroll dono off */
@media (max-width: 767px) {
    .sticky-list {
        position: static;
        /* max-height: unset; */
        max-height: 40vh;
        /* overflow: visible; */
        overflow-y: auto;
        overflow-x: hidden;
    }
  .rightside-list{
    margin-bottom: 50px;
  }
}

        