@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #0d1c2d, #000);
  color: #fff;
  min-height: 100vh;
  overflow-y: auto; /* Enable scrolling */
}

.overlay {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 12px rgba(0, 255, 150, 0.4));
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00b0ff;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a8ff60;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  color: #d6e6f2;
  margin-bottom: 20px;
}

.services {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.services li {
  margin: 12px 0;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

/* Contact Section */
.contact {
  margin-top: 40px;
  background: rgba(0, 176, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 176, 255, 0.3);
}

.contact h2 {
  font-size: 1.5rem;
  color: #00b0ff;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1rem;
  margin: 5px 0;
}

.contact a {
  color: #a8ff60;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  font-size: 0.9rem;
  margin-top: 40px;
  color: #9baec8;
}

.footer .credit {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
}

.footer .credit a {
  color: #00b0ff;
  text-decoration: none;
  font-weight: 600;
}

.footer .credit a:hover {
  text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  .tagline {
    font-size: 1rem;
  }
  .description {
    font-size: 0.95rem;
  }
  .services li {
    font-size: 0.95rem;
    padding: 12px;
  }
  .contact h2 {
    font-size: 1.3rem;
  }
  .contact p {
    font-size: 0.95rem;
  }
  .footer {
    font-size: 0.8rem;
  }
}
