'); background-size: cover; background-position: center; color: 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-transform: uppercase; letter-spacing: 1.5px; } .hero p { font-size: 1.2rem; margin-bottom: 30px; } .cta-button { display: inline-block; background-color: var(--accent); color: var(--secondary); padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; border: 2px solid var(--accent); } .cta-button:hover { background-color: transparent; color: var(--accent); } /* Section Styling */ section { padding: 80px 0; } .section-title { text-align: center; margin-bottom: 50px; position: relative; } .section-title h2 { font-size: 2.5rem; color: var(--secondary); text-transform: uppercase; display: inline-block; padding-bottom: 15px; } .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 3px; background-color: var(--primary); } /* About Section */ .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; } .about-text h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 20px; } .about-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; } .highlight-card { background-color: var(--light); padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary); } .highlight-card h4 { color: var(--primary); margin-bottom: 10px; } .certifications { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; margin-top: 30px; } .cert-badge { text-align: center; margin: 15px; min-width: 150px; } .cert-badge i { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; } .stats-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; } .stat-card { text-align: center; background-color: var(--light); padding: 25px 15px; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); } .stat-card .number { font-size: 2.5rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; } /* Products Section */ .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .product-card { background-color: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; } .product-card:hover { transform: translateY(-10px); } .product-img { height: 250px; background-color: var(--light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3rem; } .product-info { padding: 20px; } .product-info h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.3rem; } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; border-top: 1px solid #eee; padding-top: 15px; } .price { color: var(--primary); font-weight: 700; font-size: 1.2rem; } .moq { color: var(--text); font-size: 0.9rem; } .features { margin-top: 15px; } .features ul { padding-left: 20px; } .features li { margin-bottom: 8px; } /* Quality Section */ .quality-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 40px; } .step-card { text-align: center; padding: 30px 20px; background-color: var(--light); border-radius: 8px; position: relative; } .step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background-color: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; } /* Services Section */ .services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { padding: 30px; background-color: white; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); border-top: 4px solid var(--primary); } .service-card h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.4rem; } .service-card ul { padding-left: 20px; margin-top: 15px; } .service-card li { margin-bottom: 10px; } /* Contact Section */ .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.6rem; } .contact-details { margin-top: 25px; } .contact-item { display: flex; margin-bottom: 20px; } .contact-icon { min-width: 50px; height: 50px; background-color: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--primary); font-size: 1.2rem; } .contact-form { background-color: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary); } .form-group input, .form-group textarea, .form-group select { 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(--secondary); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h4 { font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--accent); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: var(--accent); padding-left: 5px; } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content, .contact-container { grid-template-columns: 1fr; } .hero h2 { font-size: 2.8rem; } .stats-container { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { nav ul { display: none; } .hero { padding: 70px 0; } .hero h2 { font-size: 2.2rem; } .section-title h2 { font-size: 2rem; } .stats-container { grid-template-columns: 1fr; } .about-highlights { grid-template-columns: 1fr; } }
Manufacturer & Global Supplier of 100% Virgin Human Hair Products
Explore Our CollectionGuangzhou Kabeilu Trading Co., Ltd. is a leading manufacturer and global supplier specializing in 100% human hair extensions. With over 14 years of industry experience, we've perfected the art of creating premium virgin hair bundles, wigs, closures, and extensions.
As both manufacturer and multispecialty supplier, we control the entire production chain from raw material sourcing to final product delivery, ensuring exceptional quality at competitive prices.
15,000 m² factory with 600+ skilled workers producing 3.6 million pieces annually
91-100% export focus serving North America, Europe, South America, and Africa
Dedicated QC team and 8-step production process ensuring premium products
2,000 m² warehouse enabling 10,000 pieces shipment within 24 hours
100% human hair with natural hairline, specially designed for Black women
Unprocessed virgin hair with cuticle alignment for tangle-free experience
Premium Remy hair sourced from Indian temples
10th Anniversary special edition - our softest hair ever
High-quality virgin hair at affordable prices
Cool-toned blonde perfect for European and American markets
Our commitment to quality is reflected in every step of our production process, ensuring you receive the finest human hair products on the market.
We source only premium 100% virgin human hair from trusted suppliers worldwide
Each hair bundle is carefully sorted by length, texture, and color consistency
Expert technicians create durable wefts with double stitching for longevity
Dedicated QC team examines each product for texture, density, and quality
Specialized cleaning process that maintains hair's natural oils and softness
Final styling and premium packaging that protects hair during transit
Quick returns for any quality issues
Products designed for durability and repeated use
Batch-to-batch consistency guaranteed
Create your own branded hair products with our OEM services:
We accommodate businesses of all sizes:
Efficient worldwide shipping solutions:
Grow your business with our expertise:
We actively participate in international hair and beauty exhibitions to connect with distributors worldwide. Recent events include:
Atlanta, Las Vegas, New York, Miami, St. Paul
London, Paris, Barcelona
South Africa, Mexico, Dubai
We're ready to answer your questions and discuss how we can meet your hair product needs.
Guangzhou City, Guangdong Province, China
We welcome clients for factory inspections by appointment
Guaranteed response within 4 hours during business days
Visit our Alibaba store for instant ordering