<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>OneHomee - Interior Design</title>
  <style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
    header {
      background-image: url('your-hero-image.jpg');
      background-size: cover;
      background-position: center;
      height: 100vh;
      color: white;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    header h1 {
      font-size: 3rem;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }
    section {
      padding: 50px 20px;
      text-align: center;
    }
    .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .service {
      width: 300px;
      margin: 20px;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .portfolio img {
      width: 100%;
      border-radius: 8px;
    }
    footer {
      background: #333;
      color: white;
      padding: 20px;
      text-align: center;
    }
    footer a {
      color: #FFD700;
      text-decoration: none;
    }
  </style>
</head>
<body>
  <header>
    <div>
      <h1>Welcome to OneHomee</h1>
      <p>Transforming Spaces, Creating Dreams</p>
      <a href="#services" style="color: white; text-decoration: none; border: 2px solid white; padding: 10px 20px; border-radius: 5px;">Explore Services</a>
    </div>
  </header>

  <section id="services">
    <h2>Our Services</h2>
    <p>We specialize in creating stunning interiors for kitchens, wardrobes, and more.</p>
    <div class="services">
      <div class="service">
        <h3>Home Interior Design</h3>
        <p>Custom solutions to beautify your space.</p>
      </div>
      <div class="service">
        <h3>Painting & Wallpaper</h3>
        <p>Bring walls to life with vibrant colors and textures.</p>
      </div>
      <div class="service">
        <h3>False Ceiling & Wall Art</h3>
        <p>Add sophistication and elegance to your interiors.</p>
      </div>
    </div>
  </section>

  <section class="portfolio">
    <h2>Our Portfolio</h2>
    <p>Take a look at our latest projects.</p>
    <img src="your-portfolio-image1.jpg" alt="Project 1">
    <img src="your-portfolio-image2.jpg" alt="Project 2">
  </section>

  <footer>
    <p>© 2025 OneHomee | <a href="privacy-policy.html">Privacy Policy</a></p>
  </footer>
</body>
</html>