/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f9fafc;
  color: #333;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0056ff;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero-content {
  max-width: 600px;
}

.emoji {
  width: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b73ff, #000dff);
  padding: 30px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #0056ff;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #0056ff;
  color: white;
}

.btn.primary:hover {
  background-color: #003fc2;
}

.btn.secondary {
  border: 1.5px solid #d0d0d0;
  color: #333;
}

.btn.secondary:hover {
  background-color: #f3f3f3;
}


.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f9f9f9;
}

.hero-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.hero h1 {
  font-size: 2.2rem;
  color: #333;
  margin-top: 10px;
}

.hero span {
  color: #0066ff;
}

.hero p {
  color: #555;
  margin-top: 10px;
  font-size: 1.1rem;
}

.buttons {
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background-color: #0066ff;
  color: white;
}

.btn-secondary {
  background-color: white;
  border: 2px solid #0066ff;
  color: #0066ff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.05);
}
