'); background-size: cover; background-position: center; color: var(--white); padding: 100px 0; text-align: center; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h2 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); } .hero p { font-size: 1.3rem; margin-bottom: 30px; } .btn { display: inline-block; background-color: var(--primary); color: var(--white); padding: 12px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid var(--primary); } .btn:hover { background-color: transparent; color: var(--primary); } .btn-secondary { background-color: transparent; border-color: var(--white); margin-left: 15px; } .btn-secondary:hover { background-color: var(--white); color: var(--dark); } /* Features Section */ .features { padding: 80px 0; background-color: var(--white); } .section-title { text-align: center; margin-bottom: 50px; } .section-title h2 { font-size: 2.5rem; color: var(--secondary); position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--primary); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background-color: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s; } .feature-card:hover { transform: translateY(-10px); } .feature-img { height: 200px; background-color: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: bold; } .feature-content { padding: 25px; } .feature-content h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.4rem; } /* Company Info */ .company-info { padding: 80px 0; background-color: var(--light); } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .info-card { background-color: var(--white); border-radius: 8px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); } .info-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.5rem; display: flex; align-items: center; } .info-card h3::before { content: ''; display: inline-block; width: 30px; height: 3px; background-color: var(--primary); margin-right: 15px; } .stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .stat-item { text-align: center; padding: 15px; background-color: var(--light); border-radius: 8px; } .stat-value { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; } .stat-label { font-size: 0.9rem; color: var(--dark); } /* Products Section */ .products { padding: 80px 0; background-color: var(--white); } .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { background-color: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s; } .product-card:hover { transform: translateY(-5px); } .product-img { height: 200px; background-color: var(--accent); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: bold; } .product-content { padding: 20px; } .product-title { font-size: 1.3rem; color: var(--secondary); margin-bottom: 10px; } .product-price { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; } .product-specs { font-size: 0.9rem; margin-bottom: 15px; color: #666; } .product-specs span { display: block; margin-bottom: 5px; } /* Certifications */ .certifications { padding: 80px 0; background-color: var(--light); text-align: center; } .cert-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 40px; } .cert-logo { width: 150px; height: 100px; background-color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); font-weight: bold; color: var(--secondary); } /* Contact */ .contact { padding: 80px 0; background-color: var(--white); } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .contact-info { padding: 30px; background-color: var(--light); border-radius: 8px; } .contact-info h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.5rem; } .contact-details { margin-bottom: 30px; } .contact-item { display: flex; margin-bottom: 15px; } .contact-icon { width: 40px; height: 40px; background-color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--secondary); } .contact-form { padding: 30px; background-color: var(--light); border-radius: 8px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 500; } .form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; } .form-group textarea { height: 150px; resize: vertical; } /* Footer */ footer { background-color: var(--dark); color: var(--white); padding: 50px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { color: var(--accent); margin-bottom: 20px; font-size: 1.3rem; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--accent); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--accent); } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: #999; } /* Responsive */ @media (max-width: 768px) { .header-top { flex-direction: column; text-align: center; } nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; } nav li { margin: 5px 10px; } .language-selector { margin: 15px 0 0; } .hero h2 { font-size: 2.5rem; } .btn { display: block; width: 100%; margin-bottom: 10px; } .btn-secondary { margin-left: 0; } }
Manufacturer of 100% Remy Unprocessed Virgin Hair Since 2015 - SGS Verified & Alibaba Certified Supplier
Our products are made from premium quality 100% Remy hair with intact cuticles aligned in the same direction for minimal tangling.
All hair is unprocessed, chemical-free, and sourced ethically.
Operating from our 5,000m² facility equipped with state-of-the-art technology and staffed by 200+ skilled professionals.
Annual production capacity exceeds 1 million units.
Serving clients across Africa, Western Europe, North America, and domestic markets with customized solutions.
Multilingual support available for international clients.
Henan Feibin Hair Products E-Business Co., Ltd. has been a leading manufacturer and supplier of premium human hair products since 2015.
We specialize in 100% Remy human hair extensions, lace wigs, closures, and hair bundles sourced from Brazil, Malaysia, India, Peru, and Cambodia.
Our mission is to provide superior quality hair products with exceptional customer service.
Customization Services: OEM production with custom colors, lengths, textures, and styles tailored to your requirements.
Quality Assurance: Rigorous on-site material inspection and finished product quality control with third-party verification.
Fast Delivery: 24-hour dispatch for in-stock items, 3-7 days production for custom orders.
Competitive Pricing: Factory-direct prices with no middlemen, offering exceptional value.
Facility: 5,000-10,000 m² manufacturing plant equipped with advanced technology
Monthly Output: 50,000+ units of various hair products
Certifications: SGS Verified, Alibaba Certified Supplier, Quality Inspection Reports
Verified Quality and Reliability
Get in touch for quotes and inquiries
"Integrity, Efficiency, Wholeness, and Serving Customers" - We approach every business relationship with gratitude and a positive attitude, committed to providing exceptional products and service.