Maintenance mode is on
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Arial, sans-serif;
}
body {
height: 100vh;
overflow: hidden;
}
/* Video Background */
.video-bg {
position: fixed;
inset: 0;
z-index: -2;
overflow: hidden;
}
.video-bg video {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Dark Overlay */
.video-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.55);
z-index: -1;
}
/* Content */
.content {
position: relative;
z-index: 2;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
}
.box {
max-width: 1100px;
width: 90%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}
/* Left Section */
.left img {
width: 90px;
margin-bottom: 20px;
}
.left h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
}
.left p {
font-size: 15px;
opacity: 0.9;
line-height: 1.6;
}
/* Right Section */
.right h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 20px;
}
.timer {
display: flex;
gap: 15px;
margin-bottom: 25px;
}
.time-box {
border: 1px solid rgba(255,255,255,0.4);
padding: 16px 18px;
text-align: center;
min-width: 90px;
}
.time-box span {
font-size: 30px;
font-weight: 600;
display: block;
}
.time-box small {
font-size: 12px;
opacity: 0.8;
}
/* Subscribe */
.subscribe {
margin-bottom: 20px;
}
.subscribe input {
width: 70%;
padding: 12px;
border: none;
outline: none;
}
.subscribe button {
padding: 12px 18px;
border: none;
background: #f4a024;
color: #fff;
cursor: pointer;
}
.subscribe button:hover {
background: #db8f1f;
}
/* Social */
.social a {
display: inline-block;
margin-right: 10px;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
border: 1px solid rgba(255,255,255,0.4);
border-radius: 50%;
color: #fff;
text-decoration: none;
}
/* Mobile */
@media (max-width: 900px) {
.box {
grid-template-columns: 1fr;
text-align: center;
}
.subscribe input {
width: 100%;
margin-bottom: 10px;
}
}
COMING SOON!
Our website is under maintenance.
We’ll be here soon with something meaningful and beautiful.
The maintenance will end in
Days
Hours
Minutes
Seconds
/* Countdown Timer */
const targetDate = new Date("2026-03-01T00:00:00").getTime();
setInterval(() => {
const now = new Date().getTime();
const diff = targetDate - now;
if (diff <= 0) return;
document.getElementById("days").innerText =
Math.floor(diff / (1000 * 60 * 60 * 24));
document.getElementById("hours").innerText =
Math.floor((diff / (1000 * 60 * 60)) % 24);
document.getElementById("minutes").innerText =
Math.floor((diff / (1000 * 60)) % 60);
document.getElementById("seconds").innerText =
Math.floor((diff / 1000) % 60);
}, 1000);