'); background-size: cover; background-position: center; color: white; text-align: center; padding: 180px 0 100px; margin-top: 70px; } .hero h1 { color: white; font-size: 3.2rem; max-width: 800px; margin: 0 auto 20px; } .hero p { color: var(--light); font-size: 1.3rem; max-width: 700px; margin: 0 auto 30px; } .hero-btns { display: flex; justify-content: center; gap: 15px; margin-top: 30px; } /* About Section */ .about { background: white; } .about-content { display: flex; align-items: center; gap: 50px; margin-top: 40px; } .about-text { flex: 1; } .about-image { flex: 1; background: #f1f1f1; height: 400px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .stats { display: flex; justify-content: space-around; text-align: center; margin-top: 50px; flex-wrap: wrap; } .stat-item { padding: 20px; } .stat-item h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; } .stat-item p { color: var(--gray); font-weight: 600; } /* Products Section */ .products { background-color: #f5f7fa; } .products-container { margin-top: 40px; } .product-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 50px; } .category-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; } .category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .category-img { height: 200px; background: #ddd; display: flex; align-items: center; justify-content: center; color: var(--gray); font-weight: bold; } .category-content { padding: 20px; text-align: center; } .category-content h3 { margin-bottom: 10px; } /* Services Section */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; } .service-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } .service-icon { width: 70px; height: 70px; background: var(--light); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.8rem; } /* Process Section */ .process { background: linear-gradient(to bottom, #2c3e50, #1a2530); color: white; } .process h2 { color: white; } .process h2:after { background: var(--accent); } .process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; margin-top: 50px; position: relative; } .process-step { text-align: center; width: 20%; position: relative; padding: 0 15px; } .step-number { width: 50px; height: 50px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: bold; } .step-content h3 { color: white; margin-bottom: 15px; } /* Testimonials */ .testimonials { background: white; } .testimonial-container { max-width: 800px; margin: 50px auto 0; text-align: center; } .testimonial { background: #f9f9f9; padding: 30px; border-radius: 8px; margin-bottom: 30px; position: relative; } .testimonial:after { content: '"'; position: absolute; top: -30px; left: 20px; font-size: 6rem; color: var(--light); font-family: Georgia, serif; } .client-info { display: flex; align-items: center; justify-content: center; gap: 15px; } .client-avatar { width: 60px; height: 60px; background: #ddd; border-radius: 50%; } /* Contact Section */ .contact { background-color: #f5f7fa; } .contact-container { display: flex; gap: 50px; margin-top: 40px; } .contact-form { flex: 1; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; } .form-group textarea { height: 150px; } .contact-info { flex: 1; } .info-item { display: flex; align-items: flex-start; margin-bottom: 25px; } .info-icon { width: 50px; height: 50px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--secondary); margin-right: 15px; flex-shrink: 0; } .info-content h3 { margin-bottom: 5px; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; } .footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.4rem; position: relative; padding-bottom: 10px; } .footer-col h3:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--secondary); } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--secondary); } .copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: #bdc3c7; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 992px) { .about-content { flex-direction: column; } .contact-container { flex-direction: column; } .process-step { width: 50%; margin-bottom: 30px; } } @media (max-width: 768px) { nav ul { display: none; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .hero-btns { flex-direction: column; align-items: center; } .process-step { width: 100%; } }
RCGIFT specializes in high-quality custom promotional products and corporate gifts designed to elevate your brand and create lasting impressions.
With over 15 years of industry experience, RCGIFT has established itself as a leading manufacturer of premium promotional gifts and corporate merchandise. Our commitment to quality, innovation, and exceptional customer service has earned us a reputation for excellence in the promotional products industry.
As a factory-direct manufacturer, we control every aspect of production to ensure the highest quality standards. Our state-of-the-art facility employs advanced manufacturing techniques while maintaining a strong commitment to sustainable practices.
We specialize in OEM and ODM services, working closely with businesses of all sizes to create custom promotional items that effectively communicate their brand message and values.
Years Experience
Product Categories
Global Clients
Quality Guarantee
Eco-friendly reusable bags including tote bags, drawstring bags, backpacks, and shopping bags with custom printing and branding.
View ProductsCustom tumblers, water bottles, mugs, and glassware with your logo printed, engraved, or embossed for maximum brand visibility.
View ProductsBranded power banks, USB drives, phone accessories, and other tech gadgets that combine functionality with promotional impact.
View ProductsCustom pens, pencils, markers, and highlighters with your logo for everyday brand exposure in offices and events.
View ProductsBranded products for home and office environments including desk accessories, kitchen items, and organizational tools.
View ProductsSpecial promotional items for holidays and events with custom branding for Christmas, New Year, and other celebrations.
View ProductsWe produce promotional products according to your specifications, designs, and requirements.
Our design team creates unique products tailored to your brand identity and marketing goals.
Advanced printing techniques including screen printing, digital printing, and heat transfer.
Professional design services to optimize your artwork for promotional products.
Custom packaging options to enhance product presentation and brand experience.
Efficient shipping and logistics solutions to deliver your products worldwide.
We discuss your requirements, budget, and timeline to understand your needs.
Our team creates design concepts and provides digital proofs for approval.
We manufacture your products using premium materials and strict quality control.
Every product undergoes rigorous quality inspection before shipping.
We arrange reliable shipping with tracking to your specified destination.
"RCGIFT delivered exceptional quality products for our corporate event. The custom bags we ordered were not only beautifully designed but also durable. Their team was responsive and professional throughout the process."
Marketing Director, TechGlobal Inc.
"We've been working with RCGIFT for 3 years now for all our promotional merchandise. Their ability to handle complex custom orders and meet tight deadlines is unmatched. Highly recommended!"
Procurement Manager, BrandSolutions Co.
123 Industrial Park, Yiwu City, Zhejiang Province, China 322000
Monday-Friday: 8:30 AM - 5:30 PM
Saturday: 9:00 AM - 12:00 PM
Sunday: Closed
We welcome clients to visit our manufacturing facility. Please contact us to schedule a factory tour.