* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(180deg, #120018, #0a0010);
  color: #e9d5ff;
  line-height: 1.7;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(10, 0, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #6b21a8;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.nav-logo {
  width: 30px;
}

.nav-links a {
  margin-left: 22px;
  color: #d8b4fe;
  text-decoration: none;
}

/* Hero */

.hero {
  padding: 120px 20px 140px;
  text-align: center;
  background: radial-gradient(circle at top, #4c1d95 0%, #120018 60%);
}

.hero-logo-container {
  margin-bottom: 30px;
}

.hero-logo {
  width: 300px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.35));
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 14px;
  color: #f5d0fe;
}

.tagline {
  font-size: 1.25rem;
  color: #d8b4fe;
  max-width: 760px;
  margin: auto;
}

/* Cards */

main {
  max-width: 1000px;
  margin: auto;
  padding: 90px 20px;
}

.card {
  background: linear-gradient(
    180deg,
    rgba(76, 29, 149, 0.12),
    rgba(10, 0, 16, 0.35)
  );
  border: 1px solid #6b21a8;
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  text-align: center;
}

/* Footer */

footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid #6b21a8;
}

.contact-email {
  color: #c084fc;
  text-decoration: none;
}






