diff --git a/trustedby.jsx b/trustedby.jsx
new file mode 100644
index 0000000000000000000000000000000000000000..3ac89de6b7d0947280a6f090d38bf8b2d50d8321
--- /dev/null
+++ b/trustedby.jsx
@@ -0,0 +1,26 @@
+import React from "react";
+function Trusted() {
+    return (
+        <section className="flex flex-col py-10 bg-white">
+  <h2 className="text-4xl md:text-5xl  text-[#28409C] mb-6 px-[40px]">
+    Trusted By
+  </h2>
+  <div className="flex flex-col md:flex-row gap-6 justify-center items-center">
+    {[
+      { count: "100+", label: "Sellers" },
+      { count: "500+", label: "Buyers" },
+      { count: "200+", label: "Products" },
+    ].map((item, index) => (
+      <div
+        key={index}
+        className="bg-blue-50 p-6 rounded-lg shadow-md w-60 text-center border border-gray-200 ml-7"
+      >
+        <p className="text-3xl font-bold text-black">{item.count}</p>
+        <p className="text-lg text-blue-700">{item.label}</p>
+      </div>
+    ))}
+  </div>
+</section>
+    );
+}
+export default Trusted;
\ No newline at end of file