body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  background: #0d0221;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('B1.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0d6ff;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  background: linear-gradient(145deg, #171aaa, #2515b1);
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  background: transparent;
  border-color: #b066ff;
  color: #b066ff;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .btn {
    padding: 14px 30px;
  }
}
