<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Website Under Construction</title>


    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: Arial, Helvetica, sans-serif;

        }


        body {

            background: linear-gradient(135deg, #0f172a, #1e3a8a);

            color: #fff;

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

            text-align: center;

            padding: 20px;

        }


        .container {

            max-width: 700px;

        }


        h1 {

            font-size: 3rem;

            margin-bottom: 15px;

        }


        p {

            font-size: 1.2rem;

            color: #d1d5db;

            margin-bottom: 25px;

            line-height: 1.6;

        }


        .icon {

            font-size: 70px;

            margin-bottom: 20px;

        }


        .progress {

            width: 100%;

            height: 12px;

            background: rgba(255,255,255,0.2);

            border-radius: 10px;

            overflow: hidden;

            margin-bottom: 20px;

        }


        .progress-bar {

            width: 65%;

            height: 100%;

            background: #38bdf8;

            animation: loading 2s ease-in-out infinite alternate;

        }


        @keyframes loading {

            from {

                width: 35%;

            }

            to {

                width: 75%;

            }

        }


        .footer {

            margin-top: 30px;

            font-size: 0.9rem;

            color: #cbd5e1;

        }


        .btn {

            display: inline-block;

            margin-top: 15px;

            padding: 12px 28px;

            background: #38bdf8;

            color: #fff;

            text-decoration: none;

            border-radius: 30px;

            transition: 0.3s;

        }


        .btn:hover {

            background: #0ea5e9;

        }

    </style>

</head>

<body>


<div class="container">

    <div class="icon">🚧</div>


    <h1>We're Under Construction</h1>


    <p>

        Our website is currently being built and will be launching soon.

        We're working hard to bring you an amazing experience.

    </p>


    <div class="progress">

        <div class="progress-bar"></div>

    </div>


    <p><strong>Coming Soon!</strong></p>


    <a href="mailto:info@example.com" class="btn">Contact Us</a>


    <div class="footer">

        &copy; 2026 Your Company. All Rights Reserved.

    </div>

</div>


</body>

</html>