/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F68B1F;
    color: white;
}

/* Header Styling */
header {
    background-color: #2C2E7D;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 20px;
}

/* Content Sections */
.content {
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #fff;
}

/* Footer Styling */
footer {
    background-color: #2C2E7D;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Us - NexAuto</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <div class="logo">
            <img src="images/logo.png" alt="NexAuto Logo">
        </div>
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="products.html">Products & Stock</a></li>
                <li><a href="contact.html">Contact Us</a></li>
                <li><a href="admin.html">Admin Login</a></li>
            </ul>
        </nav>
    </header>
    
    <main class="content">
        <section class="hero">
            <h1>About Us</h1>
            <p>NexAuto is India's leading auto accessories distributor, covering pan India with multiple branches across the country. We manufacture products under the Make in India scheme and are committed to delivering high-quality accessories for various vehicles.</p>
        </section>
        
        <section class="info">
            <h2>Why Choose NexAuto?</h2>
            <ul>
                <li>Wide range of premium auto accessories</li>
                <li>Nationwide distribution network</li>
                <li>Commitment to quality and innovation</li>
                <li>Dedicated R&D team</li>
                <li>Reliable and customer-focused service</li>
            </ul>
        </section>
        
        <section class="testimonials">
            <h2>Customer Testimonials</h2>
            <blockquote>
                <p>"NexAuto provides top-quality accessories that perfectly suit my vehicle. Their customer support is outstanding!" - Rajesh Kumar</p>
            </blockquote>
            <blockquote>
                <p>"I love the Pionex brand by NexAuto. They truly understand the needs of Indian car owners!" - Sneha Sharma</p>
            </blockquote>
        </section>
    </main>
    
    <footer>
        <p>&copy; 2025 NexAuto Distribution | 31 Sarodamani Road, Ashrampara, Siliguri-734001 | +91 7029 76 6360</p>
    </footer>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</body>
</html>
