 
 body {
  font-family: "Open Sans", sans-serif;
  
  background: rgb(187, 184, 184)8d8;
}
/* Style the hero section */
#hero {
  background-image: url('./assets/img/heromain.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* 50px from the left and centered vertically */
  padding: 100px 0;
  color: #fff;
  margin-top: 4rem;
}


/* Style the form container */
#assignmentForm {
  background-color: rgba(239, 64, 55, 0.8);
  /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  /* Adjust width as needed */
  max-width: 600px;
  /* Limit maximum width */

  margin: 0 auto;
  /* Center the form horizontally */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  /* Add a subtle shadow */
}

@media (max-width: 768px) {

  #hero {
    background-image: url('./assets/img/pexels-armin-rimoldi-5553045.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center; /* Centered horizontally and at the top */
    padding: 100px 0;
    color: #fff;
    height: auto;
  }
  /* Adjust the form's position */
  #assignmentForm {
    margin-top: 5rem; /* Add spacing between hero and form */
  }
}

/* Style the form headings */
.hd2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.hd2 span {
  color: #ffc107;
  /* Highlight color */
}

/* Style the form input fields */
.__input-box {
  margin-bottom: 10px;
}

.form-control {

  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  /* Input background color */
  color: #333;
  /* Input text color */
}

.form_label {
  font-weight: bold;
  color: #fff;
}

/* Style the submit button */
.__button-container {
  text-align: center;
  margin-top: 20px;
}

.stepOne {
  background-color: #007bff;
  /* Button background color */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.stepOne:hover {
  background-color: #0056b3;
  /* Hover background color */
}

/* Style the checkbox label */
label[for="styled-checkbox-1"] {
  font-size: 14px;
  color: #fff;
}

/* Style the error messages */
.error-txt {
  color: red;
}

/* Add media queries for responsiveness */
@media (max-width: 768px) {
  .__form-container {
    width: 90%;
    /* Adjust width for smaller screens */
  }
}

.value.count-animate {
  /* Remove any width or height restrictions */
  width: auto !important;
  height: auto !important;
  /* Disable any text truncation */
  overflow: visible !important;
}

#partial {
  position: fixed;
  bottom: 8%;
  right: 20px;

  z-index: 99999;

}

.keyword {
  display: inline-block;
  width: 350px; /* Set your desired fixed width here */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Show ellipsis (...) for overflow text */
  color: #fff200;
}
.scroll-button {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px; /* Adjust this value as needed */
    left: 20px; /* Adjust this value as needed */
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 99999;
    border-radius: 30px;
}

/* Style the modal */
.modal {
    display: none; /* Initially hidden */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

/* Style the modal content */
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 70%;
}

/* Style the close button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
/* Style for session type options */
.session-type-options {
    display: flex;
    flex-direction: column;
  }
  
  .session-type-option {
    border: 2px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .session-type-option:hover {
    background-color: #f0f0f0; /* Add your preferred hover background color */
  }
  