Empowering Farmers Through Integrated Agricultural Solutions

Building a stronger agricultural future by empowering farmers through integrated solutions, modern technology, and on ground support that enhance productivity, strengthen national food security, and create long term prosperity and resilience for farming communities.
Explore
0
Farmers have been integrated
0
Acres of Land
0
Farms households improved
Welcome to HBL Zarai Services Limited

Welcome to HBL Zarai Services Limited

HBL Zarai is transforming Pakistan’s agricultural landscape through modern, technology driven, and farmer centric solutions designed to improve productivity, operational efficiency, and long-term prosperity for farming communities across the country.
Learn More

Join us in transforming agriculture

Contact Us

Services that help farming community flourish

Explore tailored services for your agricultural needs.
View All
View All

Success story

Farmer Testimonial
"Farmers in our area have greatly benefited from HBL Zarai Services. Their support has made farming more profitable and hassle-free. With HBL Zarai, it's not just our fields that flourish—it's our families and communities too."
Muhammad Taha Bashir
Farmer (Burewala)
Farmer Testimonial
"I recommend HBL Zarai Services to all my farmer brothers. Their machines deliver more output and make harvesting cost-effective."
Khaleel-Ur-Rehman
Farmer (Sadhoke)
Farmer Testimonial
"I was worried about my rice crop after the rains, but HBL Zarai Services provided the perfect machinery and helped me harvest it efficiently."
Abdul Ghaffar
Farmer (Sadhoke)
Farmer Testimonial
"Farmers in our area have greatly benefited from HBL Zarai Services. Their support has made farming more profitable and hassle-free. With HBL Zarai, it's not just our fields that flourish—it's our families and communities too."
Muhammad Taha Bashir
Farmer (Burewala)
Farmer Testimonial
"I recommend HBL Zarai Services to all my farmer brothers. Their machines deliver more output and make harvesting cost-effective."
Khaleel-Ur-Rehman
Farmer (Sadhoke)
Farmer Testimonial
"I was worried about my rice crop after the rains, but HBL Zarai Services provided the perfect machinery and helped me harvest it efficiently."
Abdul Ghaffar
Farmer (Sadhoke)
/* Services Carousel [START] */
.services-carousel .splide__slide {
    filter: drop-shadow(3px 5px 24px rgba(0, 0, 0, 0.08));
}

/* Services Carousel [END] */

/* Success Story [START] */
#brxe-cpybfe .splide__slide * {
    transition: all 0.4s ease-in-out;
}

#brxe-cpybfe.brxe-slider-nested .splide__slide {justify-content: flex-start !important;}

#brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) {
    z-index: 99999;
    filter: drop-shadow(0px 41px 54px rgba(0, 0, 0, 0.25));
}

#brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .brxe-image {
    transform: scale(1.4);
}

#brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .brxe-video {
    transform: scale(1.6);
}

#brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .brxe-audio {
    bottom: -19px;
}

#brxe-cpybfe .splide__slide .success-story-content {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0s, opacity 0s linear;
    margin-top: 85px;
    display: none;
}

#brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .success-story-content {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s linear;
    display: flex;
}

#brxe-cpybfe .splide__track {
    padding: 110px 0 0;
}

.brxe-audio {
    padding: 2px 12px;
}

.brxe-audio .mejs-container .mejs-controls .mejs-button.mejs-play button {
    background-color: #000;
    filter: brightness(100) !important;
    border-radius: 100%;
    background-size: 18px !important;
    background-position: 70%;
}

.success-story-carousel .splide__arrow {top: 230px !important}

.success-story-carousel .splide__slide {pointer-events: none;}
.success-story-carousel .splide__slide.is-active {pointer-events: auto;}

.splide__slide .brxe-video .bricks-video-overlay-icon {
  display: none;
}

.splide__slide.is-active .brxe-video .bricks-video-overlay-icon {
    display: block;
}

/* Success Story [END] */


@media (max-width: 766px) {
  #brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .brxe-image, 
  #brxe-cpybfe .splide__slide.is-active:not(.splide__slide--clone) .brxe-video {
      transform: scale(1.1);
  }
  .services-carousel .splide__arrow--prev {left: 0 !important;}
  .services-carousel .splide__arrow--next {right: 0 !important;}
}
// document.addEventListener("DOMContentLoaded", function () {
//   let players = [];
//   let youtubeAPILoaded = false;

//   // Function to load the YouTube API dynamically
//   function loadYouTubeAPI(callback) {
//     if (!youtubeAPILoaded) {
//       let tag = document.createElement("script");
//       tag.src = "https://www.youtube.com/iframe_api";
//       document.head.appendChild(tag);

//       // Ensure YouTube API is loaded before executing callback
//       window.onYouTubeIframeAPIReady = function () {
//         youtubeAPILoaded = true;
//         if (callback) callback();
//       };
//     } else {
//       if (callback) callback();
//     }
//   }

//   // Function to initialize YouTube players
//   function initializeYouTubePlayers() {
//     players = []; // Reset players array

//     document.querySelectorAll("iframe").forEach((iframe) => {
//       if (iframe.src.includes("youtube.com/embed")) {
//         let player = new YT.Player(iframe, {
//           events: {
//             onReady: function (event) {
//               players.push(event.target);
//             },
//           },
//         });
//       }
//     });
//   }

//   // Event listener for clicking .brxe-video
//   document.querySelectorAll(".brxe-video").forEach((videoButton) => {
//     videoButton.addEventListener("click", function () {
//       loadYouTubeAPI(initializeYouTubePlayers);
//     });
//   });

//   // Initialize Splide carousel after page load
//   setTimeout(() => {
//     document.querySelectorAll(".success-story-carousel").forEach((slider) => {
//       let splideInstance = new Splide(slider);
//       splideInstance.mount();
//       splideInstance.go(1);
//       splideInstance.refresh();
//     });

//     // Add event listener to Splide arrows to pause videos
//     document.querySelectorAll(".splide__arrow").forEach((arrow) => {
//       arrow.addEventListener("click", () => {
//         players.forEach((player) => player.pauseVideo()); // Pause all videos
//       });
//     });
//   }, 100);
// });
“Thanks to HBL Zarai Services, my crop yields have improved significantly. The agronomy advice and access to quality inputs have been invaluable”
Abdul Ghaffar
Farmer (Sadhoke)
"Farmers in our area have greatly benefited from HBL Zarai Services. Their support has made farming more profitable and hassle-free. With HBL Zarai, it’s not just our fields that flourish—it’s our families and communities too."
Muhammad Taha Bashir
Farmer (Burewala)

Zarai Dera

Zarai Dera’ serves as HBL Zarai’s integrated agricultural service hub, providing farmers with accessible, end to end support under one platform. Strategically located within key farming regions, each Dera offers modern agricultural solutions including Free Precision Agronomy advisory, Agri Inputs, Mechanization Support, Veterinary Services, Crop Procurement, Quality Assurance, and technology driven field assistance.

Zarai Deras also promote financial inclusion by facilitating access to basic banking services, Agri financing, digital financial solutions and availability of a 24/7 ATM, helping strengthen agricultural productivity, operational efficiency, and long term prosperity for farming communities across Pakistan.

Zarai Dost Shop

Zarai Dost Shops’ are part of the broader Zarai Dera ecosystem, helping create a wider agricultural support network that connects smaller villages and farming communities with HBL Zarai’s services and solutions. These shops serve as localized touchpoints that bring farmers closer to agricultural products, advisory, and on ground assistance within their own communities.

Through Zarai Dost Shops, farmers gain timely access to quality Agri Inputs, basic agronomy guidance, and farmer support services aimed at improving productivity and operational efficiency. By strengthening last mile connectivity across rural areas, HBL Zarai continues to extend accessible agricultural support deeper into farming communities across Pakistan.

News & Updates

Stay informed about HBL Zarai’s latest initiatives, achievements, and industry engagement through our News & Updates section. Here, you will find a collection of articles, press releases, videos; media coverage highlighting our work across Pakistan’s agricultural sector. Explore how HBL Zarai is driving innovation, empowering farming communities, and contributing towards the transformation of agriculture in Pakistan.
View All
HBL Zarai Services launch ceremony

HBL Zarai Services launch ceremony

The launch event took place in Burewala, where HBL launched HBL Zarai Services on 26th Feb 2024, marking a significant step forward in agricultural development and food security in Pakistan.
HBL Zarai Services, a wholly owned subsidiary of HBL, stands as the pioneer agriculture-specialized extension services company in the country. By providing access to essential resources and expertise, HBL Zarai Services aims to empower farmers and enhance productivity, efficiency, and profitability throughout the agricultural value chain.
View All

Transform your farm's future with our expert support.

Get in Touch Now!