<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oviyaa Organics - Pure, Fresh & Sustainable</title>
<style>
:root {
--primary: #2e7d32;
--dark: #1b5e20;
--light: #f1f8e9;
--text: #2c3e50;
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: system-ui, -apple-system, sans-serif; }
body { line-height: 1.6; color: var(--text); background: #fdfdfd; }
header { background: var(--dark); color: white; padding: 3rem 1rem; text-align: center; }
header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
header p { font-size: 1.2rem; opacity: 0.9; }
.container { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }
.hero-card { background: var(--light); padding: 2rem; border-radius: 12px; margin-bottom: 2rem; border-left: 5px solid var(--primary); }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.product-card { border: 1px solid #e0e0e0; border-radius: 8px; padding: 1.5rem; text-align: center; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.product-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.contact-btn { display: inline-block; background: var(--primary); color: white; text-decoration: none; padding: 0.8rem 1.8rem; border-radius: 6px; font-weight: bold; margin-top: 1rem; }
footer { text-align: center; padding: 2rem; background: #fafafa; border-top: 1px solid #eee; margin-top: 3rem; color: #777; font-size: 0.9rem; }
</style>
</head>
<body>
<header>
<h1>Oviyaa Organics</h1>
<p>Pure, Fresh & Sustainable Organic Solutions</p>
</header>
<div class="container">
<div class="hero-card">
<h2>Welcome to Oviyaa Organics</h2>
<p>We are dedicated to bringing high-quality, natural, and sustainably sourced organic produce directly to you. Our commitment is to health, purity, and eco-friendly farming practices.</p>
</div>
<h2 style="text-align: center; margin-top: 2.5rem;">What We Offer</h2>
<div class="products">
<div class="product-card">
<h3>Organic Produce</h3>
<p>Naturally cultivated fruits, vegetables, and sustainable agricultural products.</p>
</div>
<div class="product-card">
<h3>Dry Produce & Foods</h3>
<p>Premium quality processed organic items packed with nutrients and care.</p>
</div>
<div class="product-card">
<h3>Bio Solutions</h3>
<p>Promoting soil health and eco-conscious cultivation methods.</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<h2>Connect With Us</h2>
<p>Have inquiries or want to learn more about our products?</p>
<a href="mailto:contact@oviyaaorganics.com" class="contact-btn">Email Us Today</a>
</div>
</div>
<footer>
<p>© 2026 Oviyaa Organics. All rights reserved.</p>
</footer>
</body>
</html>