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


body {
  font-family: 'Segoe UI', sans-serif;
  background: url('./assets/bg-image.avif') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  color: #fff;
  padding: 40px 20px;
  overflow-y: auto;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.card h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}

select {
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

select:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.explore-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .explore-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .card h1 {
    font-size: 1.5rem;
  }

  select {
    width: 100%;
  }
}