* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f6f2ff;
  color: #2f2f2f;
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(246, 242, 255, 0.95);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

.logo img {
  width: 200px;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #5e4bb6;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #8e73ff;
}

/* BUTTONS */

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn {
  background: #7a5cff;
  color: white;
}

.secondary-btn {
  border: 2px solid #7a5cff;
  color: #7a5cff;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  color: #777;
}
.logo img {
  width: 200px;
  height: auto;
  display: block;
}

/* SMOOTH SCROLL */

html {
  scroll-behavior: smooth;
}

/* NAVBAR HOVER */

.nav-links a {
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* BUTTON ANIMATIONS */

.primary-btn,
.secondary-btn {
  transition: all 0.3s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

/* CARD HOVER */

.card,
.coming-soon-card {
  transition: all 0.3s ease;
}

.card:hover,
.coming-soon-card:hover {
  transform: translateY(-5px);
}

/* NAVBAR GLASS EFFECT */

.navbar {
  backdrop-filter: blur(10px);
}

/* HERO ANIMATION */

.hero {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}