/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* Background image */
body {
  background: url("workspace\ -\ bg\ 01.jpeg") no-repeat center center fixed;
  background-size: cover;
}

/* Overlay for content */
.overlay {
  background: rgba(0, 0, 0, 0.6); /* dark transparent layer */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease-in-out;
}

/* Logo at top-left */
.logo-top {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 275px; /* increased size */
  animation: float 3s ease-in-out infinite;
}

/* Titles */
.title {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #fe8900; /* more whitish */
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e6f7ff; /* lighter whitish-blue */
}

/* Coming Soon Text */
.coming-soon {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #f9f9f9; /* whitish shade */
  animation: pulse 2s infinite;
}

/* Loader */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #fe8900;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;
  animation: spin 1.5s linear infinite;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #ddd;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.counter {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #ffffff; /* whitish shade */
}
