Index HTML
Index HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Next Level Wireless - Professional Phone & Device Repair</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.0.0-beta3/css/all.min.css">
<style>
/* Global Styles */
:root {
--primary-color: #3a86ff;
--secondary-color: #8338ec;
--accent-color: #ff006e;
--light-color: #f8f9fa;
--dark-color: #212529;
--success-color: #28a745;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
line-height: 1.6;
color: var(--dark-color);
background-color: #f5f5f5;
}
a {
text-decoration: none;
color: var(--primary-color);
}
ul {
list-style: none;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background: var(--primary-color);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}
.btn-accent {
background: var(--accent-color);
}
.btn-accent:hover {
background: #d8005f;
}
.section-title {
text-align: center;
margin-bottom: 40px;
font-size: 2.5rem;
color: var(--dark-color);
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--primary-color);
margin: 10px auto;
border-radius: 2px;
}
/* Header */
header {
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color);
}
.logo span {
color: var(--secondary-color);
}
.nav-links {
display: flex;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
color: var(--dark-color);
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary-color);
}
.hamburger {
display: none;
cursor: pointer;
}
/* Hero Section */
.hero {
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-
1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
text-align: center;
color: white;
padding-top: 80px;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}
/* Services Section */
.services {
padding: 80px 0;
background: white;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.service-card {
background: var(--light-color);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.service-card:hover {
transform: translateY(-10px);
}
.service-img {
height: 200px;
overflow: hidden;
}
.service-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}
.service-content {
padding: 20px;
}
.service-content h3 {
margin-bottom: 10px;
color: var(--primary-color);
}
/* Pricing Section */
.pricing {
padding: 80px 0;
background: var(--light-color);
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.pricing-card {
background: white;
border-radius: 10px;
padding: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
transition: transform 0.3s;
}
.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-card.popular {
border: 2px solid var(--primary-color);
position: relative;
}
.popular-tag {
position: absolute;
top: -15px;
right: 20px;
background: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
}
.price {
font-size: 2.5rem;
font-weight: bold;
color: var(--primary-color);
margin: 20px 0;
}
.price span {
font-size: 1rem;
color: var(--dark-color);
}
.pricing-features {
margin-bottom: 30px;
}
.pricing-features li {
padding: 10px 0;
border-bottom: 1px solid #eee;
}
/* About Section */
.about {
padding: 80px 0;
background: white;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
.about-img {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-img img {
width: 100%;
height: auto;
display: block;
}
.about-text h2 {
margin-bottom: 20px;
color: var(--primary-color);
}
.about-text p {
margin-bottom: 15px;
}
/* Testimonials */
.testimonials {
padding: 80px 0;
background: var(--light-color);
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.testimonial-card {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-card .quote {
font-style: italic;
margin-bottom: 20px;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-img {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
margin-right: 15px;
}
.author-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.author-info h4 {
margin-bottom: 5px;
}
.author-info p {
color: #666;
font-size: 0.9rem;
}
/* Contact Section */
.contact {
padding: 80px 0;
background: white;
}
.contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 50px;
}
.contact-info h3 {
margin-bottom: 20px;
color: var(--primary-color);
}
.contact-info p {
margin-bottom: 30px;
}
.contact-details {
margin-bottom: 30px;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.contact-item i {
width: 40px;
height: 40px;
background: var(--light-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
color: var(--primary-color);
}
.contact-form .form-group {
margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
}
.contact-form textarea {
height: 150px;
resize: vertical;
}
/* Footer */
footer {
background: var(--dark-color);
color: white;
padding: 50px 0 20px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}
.footer-col h3 {
margin-bottom: 20px;
color: var(--primary-color);
}
.footer-col ul li {
margin-bottom: 10px;
}
.footer-col ul li a {
color: #ddd;
transition: color 0.3s;
}
.footer-col ul li a:hover {
color: var(--primary-color);
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
transition: all 0.3s;
}
.social-links a:hover {
background: var(--primary-color);
transform: translateY(-3px);
}
.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #aaa;
}
/* Responsive Styles */
@media (max-width: 992px) {
.about-content {
grid-template-columns: 1fr;
}
.about-img {
order: -1;
}
}
.nav-links.active {
left: 0;
}
.nav-links li {
margin: 15px 0;
}
.hamburger {
display: block;
}
.hero h1 {
font-size: 2.5rem;
}
.section-title {
font-size: 2rem;
}
}
.hero p {
font-size: 1rem;
}
.btn {
padding: 8px 16px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<nav class="navbar">
<a href="#" class="logo">Next <span>Level</span> Wireless</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#about">About</a></li>
<li><a href="#testimonials">Reviews</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="hamburger">
<i class="fas fa-bars"></i>
</div>
</nav>
</div>
</header>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1601784551446-
20c9e07cdbdb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Battery
Replacement">
</div>
<div class="service-content">
<h3>Battery Replacement</h3>
<p>Is your phone dying too quickly? We install premium
batteries that restore your device's original battery life and performance.</p>
<a href="#pricing" class="btn">View Pricing</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1597852074816-
d933c7d2b988?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Water Damage
Repair">
</div>
<div class="service-content">
<h3>Water Damage Repair</h3>
<p>Accidental water exposure? Our specialized cleaning and
repair process can often save water-damaged devices when acted upon quickly.</p>
<a href="#pricing" class="btn">View Pricing</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1598327105666-
5b89351aff97?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Charging Port
Repair">
</div>
<div class="service-content">
<h3>Charging Port Repair</h3>
<p>Having trouble charging your device? We repair or
replace faulty charging ports to get your device charging like new again.</p>
<a href="#pricing" class="btn">View Pricing</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1595941069915-
4ebc5197c14a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Software
Issues">
</div>
<div class="service-content">
<h3>Software Troubleshooting</h3>
<p>From software updates to virus removal, our technicians
can diagnose and fix a wide range of software-related issues.</p>
<a href="#pricing" class="btn">View Pricing</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1517336714731-
489689fd1ca8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="iPad Repair">
</div>
<div class="service-content">
<h3>iPad Repairs</h3>
<p>Digitizer replacement, LED replacement, and other iPad
repairs performed by certified technicians using quality parts.</p>
<a href="#contact" class="btn">Contact Us</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1517336714731-
489689fd1ca8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="MacBook Repair">
</div>
<div class="service-content">
<h3>MacBook Repairs</h3>
<p>Screen replacement, battery replacement, and other
MacBook repairs performed by Apple-certified technicians.</p>
<a href="#contact" class="btn">Contact Us</a>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1607853202273-
797f1c22a38e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Console Repair">
</div>
<div class="service-content">
<h3>Console Repairs</h3>
<p>HDMI replacement, power button replacement, power supply
replacement for all major gaming consoles.</p>
<a href="#contact" class="btn">Contact Us</a>
</div>
</div>
</div>
</div>
</section>
<div class="pricing-card">
<h3>Other Services</h3>
<div class="price">$29 <span>and up</span></div>
<ul class="pricing-features">
<li>Charging Port: $29-$59</li>
<li>Camera Repair: $49-$89</li>
<li>Speaker Repair: $39-$69</li>
<li>Water Damage: $69-$129</li>
<li>Software Reset: $29-$49</li>
<li>Console HDMI Port: $79</li>
<li>Diagnostic: Free</li>
</ul>
<a href="#contact" class="btn">Book Now</a>
</div>
</div>
<p style="text-align: center; margin-top: 30px; font-style:
italic;">Prices may vary depending on device model and damage extent. Contact us
for exact pricing.</p>
</div>
</section>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1540932239986-
30128078f3c5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Phone
Activation">
</div>
<div class="service-content">
<h3>Phone Service Activations</h3>
<ul style="text-align: left; padding-left: 20px;">
<li>T-Mobile</li>
<li>Simple Mobile</li>
<li>AT&T</li>
<li>Verizon</li>
<li>H2O</li>
<li>Lycamobile</li>
<li>Xfinity Prepaid ($45/month unlimited)</li>
</ul>
</div>
</div>
<div class="service-card">
<div class="service-img">
<img src="https://images.unsplash.com/photo-1546054454-
aa26e2b734c7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Accessories">
</div>
<div class="service-content">
<h3>Accessories We Carry</h3>
<ul style="text-align: left; padding-left: 20px;">
<li>Screen Protectors (Regular & Privacy)</li>
<li>Phone Cases (Regular & Defender)</li>
<li>Charging Adapters & Cables</li>
<li>Portable Chargers</li>
<li>Speakers & Bluetooth Headphones</li>
<li>AirPods & Apple Watch Accessories</li>
<li>Gaming Controllers & HDMI Cables</li>
<li>Firesticks 4K & Electric Scooters</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<div class="testimonial-card">
<div class="quote">
"My Samsung's battery was draining crazy fast. These guys
replaced it same day and now my phone lasts longer than when it was new! Super
professional service and fair pricing."
</div>
<div class="testimonial-author">
<div class="author-img">
<img
src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T.">
</div>
<div class="author-info">
<h4>Michael T.</h4>
<p>Yelp Review</p>
</div>
</div>
</div>
<div class="testimonial-card">
<div class="quote">
"After my phone took a swim in the pool, I thought it was
done for. Next Level Wireless managed to save all my data and get it working again.
Lifesavers! Will never go anywhere else."
</div>
<div class="testimonial-author">
<div class="author-img">
<img
src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emily R.">
</div>
<div class="author-info">
<h4>Emily R.</h4>
<p>Facebook Review</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="contact-details">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<div>
<h4>Location</h4>
<p>1104 Chestnut St STORE<br>Philadelphia, PA
19107</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-phone-alt"></i>
<div>
<h4>Phone</h4>
<p>(267) 307-8893</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<div>
<h4>Email</h4>
<p>[email protected]</p>
</div>
</div>
<div class="contact-item">
<i class="fas fa-clock"></i>
<div>
<h4>Hours</h4>
<p>Mon-Sat: 10am - 10pm<br>Sun: 11am - 9pm</p>
</div>
</div>
</div>
</div>
<div class="contact-form">
<form>
<div class="form-group">
<input type="text" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<input type="tel" placeholder="Your Phone">
</div>
<div class="form-group">
<input type="text" placeholder="Device Model">
</div>
<div class="form-group">
<textarea placeholder="Describe your repair
needs"></textarea>
</div>
<button type="submit" class="btn btn-accent">Send
Message</button>
</form>
</div>
</div>
</div>
</section>
<div class="footer-col">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Our Services</h3>
<ul>
<li><a href="#">Screen Repair</a></li>
<li><a href="#">Battery Replacement</a></li>
<li><a href="#">Water Damage</a></li>
<li><a href="#">iPad/MacBook Repair</a></li>
<li><a href="#">Console Repair</a></li>
<li><a href="#">Device Reset</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Contact Info</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i> 1104 Chestnut St
STORE, Philadelphia, PA 19107</li>
<li><i class="fas fa-phone-alt"></i> (267) 307-8893</li>
<li><i class="fas fa-envelope"></i>
[email protected]</li>
<li><i class="fas fa-clock"></i> Mon-Sat: 10am-10pm, Sun:
11am-9pm</li>
<li><i class="fas fa-globe"></i>
www.nextlevelwireless.com</li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2023 Next Level Wireless. All Rights Reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile Navigation
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.addEventListener('click', () => {
navLinks.classList.toggle('active');
});
// Close mobile menu when clicking a link
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
navLinks.classList.remove('active');
});
});
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>