File: //home/cafsindia/hrms_allyindian_com/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Under Maintenance</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
}
.container {
text-align: center;
max-width: 600px;
padding: 40px;
background: rgba(0, 0, 0, 0.35);
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 42px;
margin-bottom: 15px;
}
p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 25px;
}
.note {
font-size: 14px;
opacity: 0.85;
}
.loader {
margin: 25px auto;
width: 50px;
height: 50px;
border: 5px solid rgba(255,255,255,0.3);
border-top: 5px solid #ffffff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>?? Under Maintenance</h1>
<p>
We are currently performing scheduled maintenance.<br>
Our team is working to improve your experience.
</p>
<div class="loader"></div>
<p class="note">
Please check back shortly.<br>
Thank you for your patience.
</p>
</div>
</body>
</html>