<!DOCTYPE html>
<html lang="en">
<head>

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

<title>D Vision Gym & Fitness Centre | Coming Soon</title>

<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    width:100%;
    min-height:100vh;
    overflow:hidden;
    font-family:Arial, Helvetica, sans-serif;
    background:#050505;
    color:#fff;
}

/* ================= BACKGROUND VIDEO ================= */

.background-video{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-5;
    filter:brightness(.55);
}

.video-overlay{
    position:fixed;
    inset:0;
    z-index:-4;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.88),
        rgba(0,0,0,.55),
        rgba(0,0,0,.78)
    );
}

/* RED LIGHT EFFECT */

.red-light{
    position:fixed;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#e00000;
    filter:blur(180px);
    opacity:.20;
    right:-180px;
    top:-120px;
    z-index:-3;
}

.red-light-two{
    position:fixed;
    width:400px;
    height:400px;
    border-radius:50%;
    background:#ff0000;
    filter:blur(170px);
    opacity:.12;
    left:-180px;
    bottom:-150px;
    z-index:-3;
}

/* ================= MAIN ================= */

.page{
    min-height:100vh;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}

/* CONTENT */

.content{
    width:100%;
    max-width:1100px;
    text-align:center;
    position:relative;
    z-index:5;
}

/* LOGO */

.logo{
    width:170px;
    height:170px;
    object-fit:contain;
    margin:0 auto 20px;

    filter:
    drop-shadow(0 0 12px rgba(255,0,0,.35))
    drop-shadow(0 0 35px rgba(255,0,0,.18));
}

/* WELCOME */

.welcome{
    font-size:20px;
    font-weight:700;
    letter-spacing:7px;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:15px;
}

/* BRAND */

.brand{
    font-size:68px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
}

.brand span{
    color:#ed1c24;
}

/* TAGLINE */

.tagline{
    margin-top:20px;
    font-size:21px;
    color:#d4d4d4;
    letter-spacing:2px;
}

/* COMING SOON */

.coming{
    margin-top:38px;
    font-size:78px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;

    text-shadow:
    0 0 20px rgba(255,0,0,.25);
}

.coming span{
    color:#ed1c24;
}

/* LINE */

.red-line{
    width:100px;
    height:4px;
    background:#ed1c24;
    margin:25px auto;
    box-shadow:0 0 15px rgba(255,0,0,.7);
}

/* DESCRIPTION */

.description{
    max-width:650px;
    margin:0 auto;
    font-size:18px;
    line-height:30px;
    color:#bdbdbd;
}

/* BUTTONS */

.buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-size:17px;
    font-weight:800;
    transition:.3s;
}

.btn-red{
    background:#ed1c24;
    color:white;
    box-shadow:0 8px 25px rgba(237,28,36,.25);
}

.btn-red:hover{
    background:#ff2525;
    transform:translateY(-3px);
    box-shadow:0 10px 35px rgba(237,28,36,.45);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.5);
    color:white;
    background:rgba(0,0,0,.25);
}

.btn-outline:hover{
    border-color:#ed1c24;
    color:#ed1c24;
    transform:translateY(-3px);
}

/* ================= FEATURES ================= */

.features{
    margin:50px auto 0;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.feature{
    min-width:180px;
    padding:15px 20px;

    background:rgba(10,10,10,.65);
    border:1px solid rgba(255,0,0,.22);
    border-radius:12px;

    backdrop-filter:blur(5px);
}

.feature strong{
    display:block;
    font-size:22px;
    color:#ed1c24;
}

.feature small{
    color:#aaa;
    font-size:13px;
}

/* ================= FOOTER ================= */

.footer{
    position:fixed;
    bottom:18px;
    left:0;
    width:100%;
    text-align:center;
    color:#777;
    font-size:13px;
    letter-spacing:1px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    body{
        overflow:hidden;
    }

    .page{
        padding:25px 18px 60px;
    }

    .logo{
        width:115px;
        height:115px;
        margin-bottom:15px;
    }

    .welcome{
        font-size:13px;
        letter-spacing:4px;
    }

    .brand{
        font-size:38px;
        line-height:45px;
    }

    .tagline{
        font-size:15px;
        line-height:25px;
        margin-top:12px;
    }

    .coming{
        margin-top:25px;
        font-size:48px;
    }

    .red-line{
        margin:18px auto;
    }

    .description{
        font-size:15px;
        line-height:24px;
    }

    .buttons{
        margin-top:25px;
    }

    .btn{
        padding:13px 25px;
        font-size:15px;
    }

    .features{
        margin-top:28px;
        gap:8px;
    }

    .feature{
        min-width:135px;
        padding:10px;
    }

    .feature strong{
        font-size:18px;
    }

    .feature small{
        font-size:11px;
    }

    .footer{
        bottom:10px;
        font-size:10px;
    }

}

</style>

</head>

<body>

<!-- ================= BACKGROUND VIDEO ================= -->

<video
    class="background-video"
    autoplay
    muted
    loop
    playsinline>

    <source src="gym-video.mp4" type="video/mp4">

</video>

<div class="video-overlay"></div>

<div class="red-light"></div>
<div class="red-light-two"></div>


<!-- ================= PAGE ================= -->

<main class="page">

    <div class="content">

        <!-- LOGO -->

        <img
            src="logo.png"
            class="logo"
            alt="D Vision Gym Logo"
        >


        <!-- WELCOME -->

        <div class="welcome">
            Welcome To
        </div>


        <!-- BRAND -->

        <h1 class="brand">

            D VISION
            <span>GYM</span>

        </h1>


        <!-- TAGLINE -->

        <p class="tagline">

            FITNESS  • 
            STRENGTH  • 
            TRANSFORMATION

        </p>


        <!-- COMING SOON -->

        <h2 class="coming">

            COMING
            <span>SOON</span>

        </h2>


        <div class="red-line"></div>


        <!-- DESCRIPTION -->

        <p class="description">

            Get ready for a completely new fitness experience.
            D Vision Gym & Fitness Centre is coming with
            modern equipment, expert trainers, powerful workouts
            and a community built for transformation.

        </p>


        <!-- BUTTONS -->

        <div class="buttons">

            <a
                href="#"
                class="btn btn-red">

                GET READY

            </a>

            <a
                href="tel:+919876543210"
                class="btn btn-outline">

                CONTACT US

            </a>

        </div>


        <!-- FEATURES -->

        <div class="features">

            <div class="feature">

                <strong>💪</strong>

                <small>
                    Strength Training
                </small>

            </div>


            <div class="feature">

                <strong>🏋️</strong>

                <small>
                    Modern Equipment
                </small>

            </div>


            <div class="feature">

                <strong>🔥</strong>

                <small>
                    Fat Loss
                </small>

            </div>


            <div class="feature">

                <strong>🥗</strong>

                <small>
                    Diet & Nutrition
                </small>

            </div>

        </div>

    </div>

</main>


<!-- FOOTER -->

<div class="footer">

    © 2026 D VISION GYM & FITNESS CENTRE
    • ALL RIGHTS RESERVED

</div>


</body>

</html>