Home

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

  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      height: 100vh;
      background: linear-gradient(
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.75)
        ),
        url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?fit=crop&w=1600&q=80')
        center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .container {
      text-align: center;
      max-width: 700px;
      padding: 40px;
    }

    h1 {
      font-size: 52px;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    p {
      font-size: 18px;
      line-height: 1.7;
      color: #d6d6d6;
      margin-bottom: 35px;
    }

    .btn {
      display: inline-block;
      padding: 15px 35px;
      background: #c8a45d;
      color: #000;
      text-decoration: none;
      font-weight: bold;
      border-radius: 50px;
      transition: 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .sub-text {
      margin-top: 20px;
      font-size: 14px;
      color: #bbbbbb;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 34px;
      }

      p {
        font-size: 16px;
      }

      .container {
        padding: 20px;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Welcome to Vidhi Architecture</h1>

    <p>
      Crafting timeless spaces with creativity, innovation, and architectural excellence.
      Click below to explore our complete portfolio, services, and projects.
    </p>

    <a href="https://vidhiarchitects.in" class="btn">
      Full Access Website
    </a>

    <div class="sub-text">
      Powered by Vidhi Architecture
    </div>
  </div>
</body>
</html>