<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Cordova Corporation - Precision Machining & Electronic Assemblies</title>

    <meta name="description" content="Over 40 years of aerospace-grade machining and electronic assemblies. Featuring OMAX Maxiem 1530 water jet. Located in Burleson, TX.">

    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">

    <style>

        body {

            margin: 0;

            font-family: 'Roboto', sans-serif;

            color: #fff;

            background: linear-gradient(to bottom, #001f3f, #000);

            line-height: 1.6;

        }

        header {

            position: sticky;

            top: 0;

            background: rgba(0, 0, 0, 0.8);

            padding: 1rem;

            display: flex;

            justify-content: space-between;

            align-items: center;

            z-index: 10;

        }

        nav ul {

            list-style: none;

            display: flex;

            gap: 2rem;

        }

        nav a {

            color: #fff;

            text-decoration: none;

            font-weight: bold;

            transition: color 0.3s;

        }

        nav a:hover {

            color: #007bff;

        }

        .hero {

            height: 100vh;

            background: url('https://via.placeholder.com/1920x1080?text=Hero+Image:+Aerospace+Machining') no-repeat center/cover;

            display: flex;

            flex-direction: column;

            justify-content: center;

            align-items: center;

            text-align: center;

            position: relative;

        }

        .hero::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.5);

        }

        .hero h1 {

            font-family: 'Orbitron', sans-serif;

            font-size: 4rem;

            margin: 0;

            z-index: 1;

        }

        .hero p {

            font-size: 1.5rem;

            z-index: 1;

        }

        .btn {

            background: #007bff;

            color: #fff;

            padding: 1rem 2rem;

            text-decoration: none;

            border-radius: 5px;

            font-weight: bold;

            transition: background 0.3s;

            z-index: 1;

        }

        .btn:hover {

            background: #0056b3;

        }

        section {

            padding: 4rem 2rem;

            max-width: 1200px;

            margin: 0 auto;

        }

        h2 {

            font-family: 'Orbitron', sans-serif;

            text-align: center;

            margin-bottom: 2rem;

        }

        .grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

        }

        .card {

            background: rgba(255, 255, 255, 0.1);

            padding: 2rem;

            border-radius: 10px;

            text-align: center;

            transition: transform 0.3s;

        }

        .card:hover {

            transform: scale(1.05);

        }

        .card img {

            width: 100%;

            border-radius: 10px;

            margin-bottom: 1rem;

        }

        footer {

            background: #001f3f;

            text-align: center;

            padding: 1rem;

        }

        @media (max-width: 768px) {

            .hero h1 { font-size: 2.5rem; }

            .hero p { font-size: 1rem; }

        }

    </style>

</head>

<body>

    <header>

        <h1 style="font-family: 'Orbitron', sans-serif; margin: 0;">Cordova Corporation</h1>

        <nav>

            <ul>

                <li><a href="#about">About</a></li>

                <li><a href="#services">Services</a></li>

                <li><a href="#equipment">Equipment</a></li>

                <li><a href="#contact">Contact</a></li>

            </ul>

        </nav>

    </header>


    <div class="hero">

        <h1>Precision Engineering for the Skies</h1>

        <p>Machining & Electronic Assemblies with Over 40 Years of Excellence</p>

        <a href="#contact" class="btn">Get a Quote</a>

    </div>


    <section id="about">

        <h2>About Us</h2>

        <p>Centrally located in the heart of the aerospace industry at 4290 E. FM1187, Burleson, Texas 76028, Cordova Corporation delivers cutting-edge solutions in machining and electronic assemblies. With over 40 years of experience, we partner with industry leaders to build the future of flight.</p>

    </section>


    <section id="services">

        <h2>Our Services</h2>

        <div class="grid">

            <div class="card">

                <img src="https://via.placeholder.com/300x200?text=Machining" alt="Machining">

                <h3>Precision Machining</h3>

                <p>High-tolerance parts for aerospace applications, ensuring reliability and performance.</p>

            </div>

            <div class="card">

                <img src="https://via.placeholder.com/300x200?text=Electronic+Assemblies" alt="Electronic Assemblies">

                <h3>Electronic Assemblies</h3>

                <p>Advanced circuit and component integration for mission-critical systems.</p>

            </div>

        </div>

    </section>


    <section id="equipment">

        <h2>Advanced Equipment</h2>

        <div class="grid">

            <div class="card">

                <img src="https://via.placeholder.com/300x200?text=OMAX+Maxiem+1530" alt="OMAX Maxiem 1530">

                <h3>OMAX Maxiem 1530 Water Jet</h3>

                <p>State-of-the-art abrasive water jet cutting for precise, versatile material processing.</p>

            </div>

            <!-- Add more equipment cards as needed -->

        </div>

    </section>


    <section id="contact">

        <h2>Contact Us</h2>

        <p>Reach out for custom solutions: info@cordovacorporation.com | (123) 456-7890</p>

        <p>Address: 4290 E. FM1187, Burleson, Texas 76028</p>

        <!-- Add a form here for real implementation -->

    </section>


    <footer>

        <p>© 2026 Cordova Corporation. All rights reserved.</p>

    </footer>

</body>

</html>