one EAZY

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ONE EAZY - Digital Payments</title>

<style>
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
}

/* HEADER */
header {
    background: #0b5ed7;
    color: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0b5ed7, #00c6ff);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
}

.btn {
    background: #fff;
    color: #0b5ed7;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}
</style>
</head>

<body>

<header>
    <h1>ONE EAZY</h1>
    <nav>
        <a href="#">Home</a>
        <a href="#">Products</a>
        <a href="#">Franchise</a>
        <a href="#">Contact</a>
    </nav>
</header>

<section class="hero">
    <h2>One Platform. Unlimited Earnings.</h2>
    <p>ATM | UPI | Cards | Franchise | Fintech Solutions</p>
    <a href="#" class="btn">Get Started</a>
    <a href="#" class="btn">Become Partner</a>
</section>

<section class="section">
    <h2>Our Services</h2>
    <div class="grid">
        <div class="card">💳 Prepaid & Gift Cards</div>
        <div class="card">🏧 ATM Machines</div>
        <div class="card">📱 UPI & AEPS</div>
        <div class="card">🧾 Billing Software</div>
    </div>
</section>

<section class="section" style="background:#eef3ff;">
    <h2>Business Plans</h2>
    <div class="grid">
        <div class="card">
            <h3>Franchise</h3>
            <p>₹5 Lakhs</p>
        </div>
        <div class="card">
            <h3>Master Franchise</h3>
            <p>₹25 Lakhs</p>
        </div>
        <div class="card">
            <h3>State Partner</h3>
            <p>₹50 Lakhs</p>
        </div>
        <div class="card">
            <h3>White Label</h3>
            <p>₹1 Crore</p>
        </div>
    </div>
</section>

<section class="section">
    <h2>Why ONE EAZY?</h2>
    <div class="grid">
        <div class="card">High Income Potential</div>
        <div class="card">Multiple Revenue Streams</div>
        <div class="card">Pan India Network</div>
        <div class="card">Secure Platform</div>
    </div>
</section>

<section class="section" style="background:#eef3ff;">
    <h2>Contact Us</h2>
    <p>Website: nearcash.velatm.com</p>
    <p>Email: info@oneeazy.com</p>
</section>

<footer>
    <p>©️ 2026 ONE EAZY | Powered by VEL ATM Technologies</p>
</footer>

</body>
</html>