Marlind Freight Services

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Marlind, LLC | Professional Freight Dispatch</title>
    <style>
        :root {
            --navy: #0a192f;
            --silver: #c0c0c0;
            --white: #ffffff;
            --gray: #f4f4f4;
        }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; color: var(--navy); line-height: 1.6; }
        header { background: var(--navy); color: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .hero { background: linear-gradient(rgba(10,25,47,0.8), rgba(10,25,47,0.8)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80&w=2000'); background-size: cover; color: white; padding: 100px 5%; text-align: center; }
        .hero h1 { font-size: 3rem; margin-bottom: 10px; }
        section { padding: 60px 5%; }
        .services { background: var(--gray); display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
        .service-card { background: white; padding: 20px; border-radius: 8px; width: 300px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
        .form-container { max-width: 600px; margin: 0 auto; background: white; padding: 30px; border: 1px solid var(--silver); border-radius: 10px; }
        input, select, textarea { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; }
        .btn { background: var(--navy); color: white; padding: 15px 30px; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; text-transform: uppercase; font-weight: bold; }
        .btn:hover { background: #1a2a44; }
        footer { background: var(--navy); color: white; text-align: center; padding: 40px 5%; }
        a { color: var(--silver); text-decoration: none; }
    </style>
</head>
<body>

<header>
    <div class="logo"><strong>MARLIND, LLC</strong></div>
    <nav>
        <a href="#about">About</a> | 
        <a href="#services">Services</a> | 
        <a href="#signup">Drive With Us</a>
    </nav>
</header>

<section class="hero">
    <h1>Moving Business Forward, Ground to Air</h1>
    <p>Precision logistics and freight management for the modern world.</p>
    <a href="#signup"><button class="btn">Partner With Us</button></a>
</section>

<section id="about">
    <h2 style="text-align:center;">About Us</h2>
    <p style="max-width: 800px; margin: 0 auto; text-align: center;">
        Marlind, LLC was founded to simplify the complexities of the freight industry. We offer innovative dispatch solutions tailored to your unique needs, with a vision expanding from ground transport to airborne freight.
    </p>
</section>

<section id="services" class="services">
    <div class="service-card">
        <h3>Expert Dispatch</h3>
        <p>Comprehensive management of your shipping needs, ensuring timely and safe delivery.</p>
    </div>
    <div class="service-card">
        <h3>Logistics Strategy</h3>
        <p>Tailored planning to optimize your supply chain and maximize profit margins.</p>
    </div>
    <div class="service-card">
        <h3>Airborne Freight</h3>
        <p>Exploring new horizons to ensure your cargo reaches its destination with speed and efficiency.</p>
    </div>
</section>

<section id="signup">
    <div class="form-container">
        <h2 style="text-align:center;">Driver Sign-Up</h2>
        <p style="text-align:center;">Join the Marlind network today.</p>
        <form action="#">
            <input type="text" placeholder="Full Name" required>
            <input type="email" placeholder="Email Address" required>
            <input type="text" placeholder="Phone Number" required>
            <input type="text" placeholder="MC# / DOT#" required>
            <select required>
                <option value="">Select Equipment Type</option>
                <option value="dryvan">Dry Van</option>
                <option value="reefer">Reefer</option>
                <option value="flatbed">Flatbed</option>
                <option value="boxtruck">Box Truck</option>
            </select>
            <textarea placeholder="Preferred Lanes (e.g., Southeast, West Coast)"></textarea>
            <button type="submit" class="btn" style="width:100%;">Submit Application</button>
        </form>
    </div>
</section>

<footer>
    <p>&copy; 2025 Marlind, LLC. All Rights Reserved.</p>
    <p>Mark Gibson | (919) 614-6822</p>
    <p><a href="mailto:markgibson6822@gmail.com">markgibson6822@gmail.com</a></p>
    <p><a href="http://www.marlindllc.com">www.marlindllc.com</a></p>
</footer>

</body>
</html>

Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *