'); background-size: cover; background-position: center; color: white; text-align: center; padding: 120px 0; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 48px; margin-bottom: 20px; font-weight: 800; line-height: 1.2; } .hero p { font-size: 22px; margin-bottom: 40px; opacity: 0.9; } .hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; } .hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 60px; flex-wrap: wrap; } .stat-item { text-align: center; } .stat-item .number { font-size: 42px; font-weight: 700; color: var(--secondary); } .stat-item .label { font-size: 16px; opacity: 0.9; } /* Features Section */ .features { background-color: var(--light); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; text-align: center; padding: 40px 25px; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: rgba(0,102,204,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--primary); } .feature-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark); } /* Products Section */ .products-grid { display: grid; grid-template-columns: repeat(auto-fit, 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-img { height: 250px; background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; position: relative; } .product-badge { position: absolute; top: 15px; left: 15px; background: var(--accent); color: white; padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; } .product-content { padding: 25px; } .product-title { font-size: 20px; margin-bottom: 10px; color: var(--dark); } .product-meta { display: flex; justify-content: space-between; margin: 15px 0; } .product-price { font-weight: 700; font-size: 20px; color: var(--primary); } .product-moq { color: #666; font-size: 14px; } .product-specs { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 10px; } .spec-item { background: #f0f5ff; padding: 4px 12px; border-radius: 20px; font-size: 13px; color: var(--primary); } /* About Section */ .about { background: linear-gradient(to right, #f8f9fa 50%, white 50%); } .about-container { display: flex; align-items: center; gap: 50px; } .about-img { flex: 1; height: 500px; background: #f0f5ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; } .about-content { flex: 1; } .about-content h2 { font-size: 36px; color: var(--dark); margin-bottom: 20px; } .about-content p { margin-bottom: 25px; font-size: 17px; line-height: 1.8; } .certifications { display: flex; gap: 15px; margin: 25px 0; flex-wrap: wrap; } .cert-badge-large { background: #e6f0ff; padding: 10px 20px; border-radius: 4px; font-weight: 600; color: var(--primary); } /* Services Section */ .services { background-color: var(--light); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .service-card { background: white; border-radius: 8px; padding: 40px 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; overflow: hidden; z-index: 1; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary); z-index: -1; transition: width 0.3s ease; } .service-card:hover::before { width: 100%; } .service-card:hover { color: white; } .service-card:hover h3, .service-card:hover p { color: white; } .service-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark); } .service-card p { color: #666; margin-bottom: 20px; } /* Contact Section */ .contact-container { display: flex; gap: 50px; } .contact-info { flex: 1; } .contact-form { flex: 1; } .contact-info h3 { font-size: 24px; margin-bottom: 25px; color: var(--dark); } .contact-item { display: flex; align-items: flex-start; margin-bottom: 25px; } .contact-icon { width: 50px; height: 50px; background: #e6f0ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; font-size: 20px; color: var(--primary); } .contact-details h4 { font-size: 18px; margin-bottom: 5px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; transition: border-color 0.3s ease; } .form-control:focus { outline: none; border-color: var(--primary); } textarea.form-control { min-height: 150px; resize: vertical; } /* Footer */ footer { background: var(--dark); color: white; padding: 70px 0 0; } .footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } .footer-col h3 { font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; } .footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--secondary); } .footer-links { list-style: none; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: #aaa; transition: color 0.3s ease; } .footer-links a:hover { color: white; padding-left: 5px; } .footer-about p { color: #aaa; margin-bottom: 25px; line-height: 1.8; } .social-links { display: flex; gap: 15px; } .social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; } .social-link:hover { background: var(--secondary); } .copyright { text-align: center; padding: 25px 0; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaa; font-size: 14px; } /* Responsive Styles */ @media (max-width: 992px) { .about-container { flex-direction: column; } .contact-container { flex-direction: column; } .footer-container { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .header-container { flex-wrap: wrap; } nav { width: 100%; margin-top: 15px; display: none; } nav.active { display: block; } nav ul { flex-direction: column; gap: 10px; } nav ul li { margin-left: 0; margin-bottom: 10px; } .mobile-menu-btn { display: block; } .hero h1 { font-size: 36px; } .hero p { font-size: 18px; } .hero-btns { flex-direction: column; align-items: center; } .footer-container { grid-template-columns: 1fr; } }
Manufacturer of high-quality, safe, and vibrant glow products for parties, events, and emergency situations
We combine quality, innovation, and reliability in every product we manufacture
Our glow sticks undergo rigorous quality control to ensure consistent brightness, durability, and safety.
Made with non-toxic, PE plastic and environmentally conscious manufacturing processes.
Products with glow durations ranging from 6 to 24 hours for extended event enjoyment.
Customize colors, shapes, and packaging to match your brand or event theme.
Discover our collection of vibrant and reliable glow products
Multi-colored bracelets with connectors for creating custom designs
High-intensity glow stick with hook for emergency and outdoor use
Fun star-shaped glow products perfect for festivals and celebrations
Comfortable necklace-style glow products for hands-free illumination
Founded in 2010, Red Shark Glowsticks has grown to become a leading manufacturer of high-quality glow products. Based in Guangzhou, China, our 5,000+ sq. ft. facility houses state-of-the-art manufacturing equipment and a dedicated team of professionals.
We specialize in producing innovative glow products that meet international safety standards while delivering exceptional brightness and longevity.
Our commitment to "Quality First, Customer-Oriented" has earned us partnerships with major retailers worldwide and a reputation for reliability in the industry.
Comprehensive solutions for all your glow product needs
Custom manufacturing of glow products according to your specifications, including unique shapes, colors, and packaging.
Request Custom QuoteBrand our high-quality glow products with your logo and branding for a unique product line.
Start Private LabelComprehensive shipping solutions including sea freight, air cargo, and express delivery worldwide.
Shipping OptionsGet in touch for quotes, samples, or any inquiries
Industrial Park, Baiyun District, Guangzhou, China 510000
+86 138 8888 8888
Monday-Friday: 9:00 AM - 6:00 PM (GMT+8)