'); background-size: cover; background-position: center; color: white; display: flex; align-items: center; position: relative; margin-top: 70px; } .hero-content { max-width: 700px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.3rem; margin-bottom: 30px; max-width: 600px; } .hero-btns { display: flex; gap: 20px; margin-top: 30px; } /* About section */ .about-content { display: flex; gap: 40px; align-items: center; } .about-text { flex: 1; } .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; } .stat-card { text-align: center; padding: 25px 15px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; transition: all 0.3s ease; } .stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .stat-card h3 { font-size: 2.5rem; color: var(--accent); margin-bottom: 5px; } .stat-card p { color: var(--gray); } .about-image { flex: 1; background-color: #e9ecef; height: 400px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); } /* Categories section */ .categories { background-color: #f8f9fa; } .category-tabs { display: flex; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; } .tab-btn { padding: 12px 25px; background: white; border: 1px solid #dee2e6; cursor: pointer; transition: all 0.3s ease; font-weight: 600; } .tab-btn:first-child { border-radius: 4px 0 0 4px; } .tab-btn:last-child { border-radius: 0 4px 4px 0; } .tab-btn.active, .tab-btn:hover { background: var(--primary); color: white; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .product-image { height: 200px; background-color: #e9ecef; display: flex; align-items: center; justify-content: center; color: var(--gray); } .product-info { padding: 20px; } .product-info h3 { font-size: 1.2rem; margin-bottom: 10px; } .product-meta { display: flex; justify-content: space-between; margin-top: 15px; color: var(--gray); font-size: 0.9rem; } .price { color: var(--secondary); font-weight: 700; font-size: 1.1rem; } /* Featured products */ .featured-products .section-title { margin-bottom: 30px; } .product-tabs { display: flex; gap: 10px; margin-bottom: 30px; justify-content: center; flex-wrap: wrap; } .product-tab { padding: 10px 20px; background: #e9ecef; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; } .product-tab.active, .product-tab:hover { background: var(--primary); color: white; } .featured-table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .featured-table th { background: var(--primary); color: white; padding: 15px; text-align: left; } .featured-table td { padding: 15px; border-bottom: 1px solid #dee2e6; } .featured-table tr:last-child td { border-bottom: none; } .featured-table tr:hover { background-color: #f8f9fa; } /* Production process */ .process-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 50px; } .step-card { width: 180px; text-align: center; position: relative; } .step-number { width: 50px; height: 50px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; margin: 0 auto 20px; } .step-card h3 { margin-bottom: 10px; color: var(--primary); } .step-card:not(:last-child):after { content: '→'; position: absolute; right: -25px; top: 25px; font-size: 1.5rem; color: var(--gray); } /* Certifications */ .certifications { background-color: #f8f9fa; text-align: center; } .cert-content { max-width: 700px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .cert-content p { margin: 20px 0; } .cert-id { font-weight: 700; color: var(--primary); font-size: 1.2rem; } /* Contact section */ .contact-wrapper { display: flex; gap: 40px; } .contact-info { flex: 1; } .contact-details { margin-top: 30px; } .contact-item-large { display: flex; align-items: flex-start; margin-bottom: 25px; gap: 15px; } .contact-map { flex: 1; background-color: #e9ecef; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); } /* Footer */ footer { background: var(--primary); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-column h3 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-column h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary); } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 10px; } .footer-column ul li a { color: #adb5bd; text-decoration: none; transition: color 0.3s ease; } .footer-column ul li a:hover { color: white; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #adb5bd; font-size: 0.9rem; } /* Responsive styles */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-wrapper { flex-direction: column; } .contact-map { height: 300px; } .hero h1 { font-size: 2.8rem; } } @media (max-width: 768px) { .header-container { flex-direction: column; gap: 15px; } nav ul { flex-wrap: wrap; justify-content: center; } nav ul li { margin: 5px 10px; } .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1.1rem; } .hero-btns { flex-direction: column; gap: 10px; } .section-title h2 { font-size: 2rem; } .about-stats { grid-template-columns: repeat(2, 1fr); } .step-card:after { display: none; } } @media (max-width: 480px) { .about-stats { grid-template-columns: 1fr; } .product-meta { flex-direction: column; gap: 5px; } .hero { height: auto; padding: 100px 0 80px; } section { padding: 60px 0; } }
Global manufacturer of high-quality sportswear, fitness apparel, tactical uniforms, and leather garments from Pakistan. Combining traditional craftsmanship with modern technology.
Global Manufacturer Since 2021
UNIFORCE ENTERPRISES is a leading manufacturer and exporter based in Sialkot, Pakistan - the renowned textile and apparel hub of South Asia. Founded in 2021, we've rapidly grown to become a trusted partner for global buyers seeking quality sportswear, casual wear, fitness apparel, tactical uniforms, and leather garments.
Our core philosophy blends "creative spirit" with "youthful energy", combining the traditional craftsmanship of Sialkot with advanced manufacturing techniques. We specialize in both OEM (Original Equipment Manufacturing) and ODM (Original Design Manufacturing) services, ensuring that customer satisfaction remains our top priority.
Employees
Factory Area
Annual Revenue
Response Rate
Response Time
Years Experience
Quality Apparel for Every Need
Quick-dry, compression fit for optimal performance. Perfect for gym and athletic activities.
Multi-purpose for motorcycling, cycling, and winter sports. Provides warmth and protection.
Plus size, unisex, pure cotton. Perfect for cooler weather and casual wear.
100% cotton/cotton blend, embroidery options available. Winter essential.
Customer Favorites
Product Name | Price Range | MOQ |
---|---|---|
Custom Tactical Long Sleeve Shirt (Security Uniform) | $3.99-9.99 | 20 pcs |
Blank Pure Cotton Men's T-Shirt (Custom Logo) | $2.99-5.29 | 15 pcs |
Men's Pure Cotton Camouflage Tactical Hiking Shirt | $7.99-13.99 | 15 pcs |
Men's Heavyweight Loose Retro T-Shirt | $2.49-5.99 | 15 pcs |
Metal Fringe (Gold/Silver) | $1.99-4.99 | 30 meters |
9-Step Quality Assurance
Client consultation and conceptualization
Precision pattern creation
High-quality printing techniques
Advanced dyeing process
Expert garment assembly
Detailed embellishments
Rigorous inspection
Secure packaging
Global shipping
Quality Assurance
Registered with the Government of Pakistan
Status: Active
Certified Since: August 26, 2022
A&V Check (Assessment and Verification) Certified
Get in Touch
We offer 24/7 customer support with a 100% response rate and less than 1 hour response time.
P/O Khas, Pathanwali, Sialkot, 51310, Pakistan
+92 349 6607962
+92 347 6473149
+92 347 4925460
www.uniforceenterprises.com