<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Business Landing Page</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { background: #f9f9fb; color: #333; line-height: 1.6; } header { background: linear-gradient(135deg, #007bff, #00c6ff); color: white; text-align: center; padding: 60px 20px; } header h1 { font-size: 2.5rem; margin-bottom: 10px; } header p { font-size: 1.2rem; } nav { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); display: flex; justify-content: center; gap: 30px; padding: 15px; position: sticky; top: 0; z-index: 1000; } nav a { text-decoration: none; color: #007bff; font-weight: 600; transition: color 0.3s ease; } nav a:hover { color: #00c6ff; } section { padding: 60px 20px; max-width: 1000px; margin: auto; } section h2 { text-align: center; color: #007bff; margin-bottom: 30px; font-size: 2rem; } .about { text-align: center; } .about p { font-size: 1.1rem; color: #555; margin-top: 10px; } .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .testimonial { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease; } .testimonial:hover { transform: translateY(-5px); } .testimonial p { font-style: italic; color: #555; } .testimonial h4 { margin-top: 15px; color: #007bff; } .contact form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin: auto; background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); } .contact input, .contact textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; width: 100%; } .contact button { background: linear-gradient(135deg, #007bff, #00c6ff); color: white; padding: 12px; border: none; border-radius: 5px; font-size: 1rem; cursor: pointer; transition: background 0.3s ease; } .contact button:hover { background: linear-gradient(135deg, #00c6ff, #007bff); } footer { background: #007bff; color: white; text-align: center; padding: 20px; margin-top: 40px; } /* Responsive Design */ @media (max-width: 768px) { header h1 { font-size: 2rem; } section { padding: 40px 15px; } } </style></head><body> <header> <h1>Welcome to BrightBiz Solutions</h1> <p>Your trusted partner for innovative business growth</p> </header> <nav> <a href="#about">About</a> <a href="#testimonials">Testimonials</a> <a href="#contact">Contact</a> </nav> <section id="about" class="about"> <h2>About Us</h2> <p> BrightBiz Solutions is a forward-thinking business consultancy focused on helping companies grow, innovate, and achieve their goals. Our team of experts brings years of experience in strategy, marketing, and digital transformation. </p> </section> <section id="testimonials"> <h2>Testimonials</h2> <div class="testimonials"> <div class="testimonial"> <p>"BrightBiz completely transformed our business operations. Highly recommend!"</p> <h4>— Sarah Johnson, CEO of TechNova</h4> </div> <div class="testimonial"> <p>"Exceptional service and professional insights that really made a difference."</p> <h4>— Michael Brown, Founder of StartSmart</h4> </div> <div class="testimonial"> <p>"Their strategies helped us achieve 50% growth in just six months!"</p> <h4>— Emma Wilson, Marketing Director at BluePeak</h4> </div> </div> </section> <section id="contact" class="contact"> <h2>Contact Us</h2> <form action="#" method="post"> <input type="text" name="name" placeholder="Your Name" required /> <input type="email" name="email" placeholder="Your Email" required /> <textarea name="message" rows="5" placeholder="Your Message" required></textarea> <button type="submit">Send Message</button> </form> </section> <footer> <p>© 2025 BrightBiz Solutions. All Rights Reserved.</p> </footer> </body></html>