body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.heading {
  text-align: center;
  margin-bottom: 20px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex: 0 0 calc(25% - 20px); /* Adjust as needed */
  margin: 10px;
  box-sizing: border-box;
}

.card img {
  width: 100%;
  height: auto;
}

.form {
  border: 2px solid lightblue;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: rgb(59 130 246 / 0.5);
}

input[type="text"],
input[type="number"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
    
.step {
  margin-top: 20px;
  display: none;
}

.show-step .step {
  display: block;
}

.form-heading {
  margin-top: 20px;
}

.radio-button {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.radio-button input[type="radio"] {
  margin-right: 10px;
}

.radio-button label {
  font-weight: bold;
}

/* Style for header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
}

/* Style for links */
.left-link, .right-link {
  text-decoration: none;
  color: #fff;
}

/* Style for title */
.title {
  text-align: center;
  margin-top: 20px;
  color: #333;
}

  /* Style for full page image */
.full-page-img {
  width: 90%; /* Set width */
  height: 90%; /* Set height */
  border-radius: 10px; /* Add rounded corners */
  display: block;
  margin: 20px auto; /* Center image */
}

.html_headding {
  text-align: center;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.animation-container {
  text-align: center;
}

.animated-heading {
  animation: slideInFromTop 1.5s ease-out;
}

.animated-paragraph {
  animation: fadeIn 2s ease-out;
}

@keyframes slideInFromTop {
  0% {
      opacity: 0;
      transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}