'); background-size: cover; background-position: center; color: var(--white); padding: 100px 0; text-align: center; } .hero h2 { font-size: 3rem; margin-bottom: 20px; color: var(--white); } .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; } /* About Section */ .about-content { display: flex; align-items: center; gap: 50px; } .about-text { flex: 1; } .about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; } .stat-box { text-align: center; padding: 20px; background: var(--white); border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .stat-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 5px; } /* Products Section */ .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .product-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .product-card:hover { transform: translateY(-10px); } .product-image { height: 250px; background-color: #f8f9fa; display: flex; align-items: center; justify-content: center; } .product-content { padding: 20px; } .product-content h3 { color: var(--primary); margin-bottom: 10px; } /* Advantages */ .advantages { background: var(--white); } .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .advantage-card { padding: 30px; background: var(--light); border-radius: 10px; text-align: center; transition: all 0.3s ease; } .advantage-card:hover { background: var(--primary); color: var(--white); } .advantage-card:hover h3 { color: var(--white); } .advantage-icon { font-size: 48px; margin-bottom: 20px; color: var(--primary); } .advantage-card:hover .advantage-icon { color: var(--white); } /* Process Section */ .process-steps { display: flex; justify-content: space-between; position: relative; margin-top: 50px; } .process-steps::before { content: ""; position: absolute; top: 40px; left: 0; right: 0; height: 3px; background: var(--gray); z-index: 0; } .step { text-align: center; position: relative; z-index: 1; width: 20%; } .step-icon { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; color: var(--primary); } /* Certifications */ .certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; } .cert-item { background: var(--white); padding: 20px; border-radius: 10px; text-align: center; width: 150px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } /* Testimonials */ .testimonials { background: linear-gradient(rgba(142, 68, 173, 0.05), rgba(142, 68, 173, 0.05)); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; } .testimonial-card::before { content: """; font-size: 80px; position: absolute; top: -25px; left: 20px; color: rgba(142, 68, 173, 0.1); } .client-info { display: flex; align-items: center; margin-top: 20px; } .client-info img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; background: var(--gray); } /* FAQ */ .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--gray); padding-bottom: 20px; } .faq-question { font-weight: 700; font-size: 18px; cursor: pointer; position: relative; padding-right: 30px; } .faq-question::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 24px; } .faq-answer { display: none; padding-top: 15px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; } .contact-info { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; align-items: flex-start; gap: 15px; } .contact-icon { font-size: 24px; color: var(--primary); } .contact-form { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 5px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; } /* Footer */ footer { background: var(--dark); color: var(--white); padding: 60px 0 30px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: var(--white); } .footer-links h4 { color: var(--white); margin-bottom: 20px; position: relative; } .footer-links h4::after { content: ""; display: block; width: 40px; height: 3px; background: var(--secondary); margin-top: 8px; } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 10px; } .footer-links a { color: var(--gray); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--gray); } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .stats { grid-template-columns: repeat(2, 1fr); } .process-steps { flex-direction: column; gap: 40px; } .process-steps::before { display: none; } .step { width: 100%; display: flex; align-items: center; gap: 20px; text-align: left; } .step-icon { margin: 0; flex-shrink: 0; } } @media (max-width: 768px) { .nav-menu { position: fixed; top: 80px; left: -100%; flex-direction: column; background: var(--white); width: 100%; text-align: center; transition: all 0.3s ease; box-shadow: 0 10px 10px rgba(0,0,0,0.1); } .nav-menu.active { left: 0; } .nav-menu li { margin: 0; padding: 15px; border-bottom: 1px solid #eee; } .mobile-toggle { display: block; } .hero h2 { font-size: 2.2rem; } .section { padding: 60px 0; } }
Since 2007, providing high-quality human hair extensions, synthetic wigs, and custom hair solutions worldwide
Your Trusted Hair Solutions Partner Since 2007
Founded in 2007, Rebecca Hair has grown to become a leading manufacturer of premium hair extensions and wigs. With over 16 years of industry expertise, we specialize in creating high-quality human hair and synthetic hair products that meet the diverse needs of our global clientele.
Our state-of-the-art manufacturing facility employs skilled artisans who handcraft each piece with meticulous attention to detail. We pride ourselves on our ethical sourcing practices, ensuring all human hair is responsibly collected with donor consent.
At Rebecca Hair, we believe in empowering beauty professionals and individuals worldwide with superior hair solutions that enhance confidence and style.
Years Experience
Monthly Production
Countries Served
Quality Guarantee
High-Quality Hair Solutions for Every Need
100% virgin human hair in various textures: Brazilian, Peruvian, Malaysian, and Indian. Available in tape-in, clip-in, micro-link, and pre-bonded options.
Heat-resistant synthetic fiber wigs available in diverse styles, lengths, and colors. Perfect for fashion, medical, or theatrical use.
Easy-to-use temporary extensions with secure clips. Available in both human hair and premium synthetic options.
Ultra-thin, lightweight extensions with medical-grade adhesive tape. Provides seamless, natural-looking volume.
Instant updo solutions in various styles and sizes. Perfect for special occasions or daily wear.
Hand-tied wigs customized to your specifications: hair type, density, cap construction, and style.
Our Competitive Advantages
All hair undergoes 8-step quality control process to ensure cuticle alignment, texture consistency, and durability.
Customize products with your brand, packaging, and specifications. Minimum order quantity from 100 pieces.
Factory-direct pricing with no middlemen. Save 30-60% compared to retail prices.
Reliable logistics partners with door-to-door delivery to over 40 countries. DDP shipping options available.
Flexible MOQ starting at 100 pieces for standard products. Custom orders from 500 pieces.
30-day quality assurance with free replacement for manufacturing defects.
Meticulous Craftsmanship at Every Step
Ethical collection of 100% human hair from approved donors
Hand-sorting by length, texture, and color consistency
Deep cleansing with natural solutions to preserve cuticles
Strand-by-strand inspection for uniformity and strength
Handcrafted by skilled artisans using premium materials
Committed to Excellence and Safety
Quality Management
Cosmetic GMP
Standard 100
Compliant
What Our Customers Say
"Rebecca Hair has been our primary supplier for 5 years. Their human hair extensions maintain quality batch after batch, and their customer service team is incredibly responsive."
Owner, Elite Hair Salon, USA
"We've worked with multiple suppliers, but Rebecca Hair stands out for their consistency and attention to detail. Their custom wig service has helped us create unique products for our clients."
Director, Locks & Co, UK
"The tape-in extensions from Rebecca Hair have transformed our salon services. Clients love how natural they look and how comfortable they feel. The durability is exceptional!"
Stylist, Bella Capelli, Italy
Get Answers to Common Queries
Human hair extensions are made from 100% real human hair, offering the most natural look and feel. They can be styled with heat tools and colored just like your natural hair. Synthetic hair extensions are made from artificial fibers and are more affordable, but have limitations in styling and generally last 3-6 months with proper care.
For our standard products, we accept orders starting at 100 pieces. For custom OEM/ODM orders, the minimum quantity is 500 pieces. We offer flexibility for first-time buyers to establish our partnership.
Standard orders ship within 7-10 business days. Custom orders require 15-25 business days depending on complexity. We provide a detailed production schedule upon order confirmation.
Yes, we provide comprehensive OEM/ODM services including custom packaging, labeling, and product specifications. Our design team will work closely with you to develop products that match your brand identity.
We ship worldwide via DHL, FedEx, UPS, and sea freight. Shipping method depends on order volume and destination. For samples, we typically use express couriers (3-5 days). Bulk orders ship via sea freight (25-40 days) or air freight (7-15 days).
Get in Touch for Quotations and Inquiries
No. 128 Hair Industrial Park, Xuchang City, Henan Province, China
[email protected]@rebeccahair.com
+86 371 6688 7777+86 188 8888 6666 (WhatsApp/WeChat)
Monday-Friday: 8:30 AM - 6:00 PM (GMT+8)Saturday: 9:00 AM - 12:00 PM