/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  overflow: hidden;
  position: relative;
}

/* Background image */
.bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/business-bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  filter: brightness(0.8); /* darken for contrast */
}

/* Card */
.card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: floatUp 2s ease, floating 6s ease-in-out infinite;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floating {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Logo */
.logo img {
  max-width: 130px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #0073e6;
}

/* Heading */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0073e6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* optional for readability */
}

/* Description */
.description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #555;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.time-box {
  background: #f0f4f8;
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 70px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0,115,230,0.3);
}

.time-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0,115,230,0.5);
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0073e6;
}

.label {
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 5px;
  color: #555;
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  opacity: 0.8;
}
