
body {
  font-family: sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #111;
  overflow-x: hidden;
}
.navbar {
  background: #1a202c;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}
.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.logo a:hover {
  transform: scale(1.05);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 2rem;
}
.nav-links a {
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #3b82f6;
  text-shadow: 0 0 10px #60a5fa;
}
.main {
  padding: 2rem;
  text-align: center;
}
.headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
}
.subtext {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.cta-button {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.cta-button:hover {
  background-color: #1d4ed8;
}
.footer {
  background: #2d3748;
  color: white;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37,99,235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235, 0); }
}

.animate-fade {
  animation: fadeIn 1s ease forwards;
}
.animate-fade-delay {
  animation: fadeIn 1s ease 0.3s forwards;
}
