  /* create account */

  /* Form Styling */
  body {
      font-family: "Merriweather", serif;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .ninja .card {
      background-color: transparent;
      border: none;
      border-radius: 12px;
  }

  .ninja .form-label {
      font-weight: 500;
      color: #212529;
      margin-bottom: 0.5rem;
      text-align: left;
  }

  .ninja .form-control,
  .ninja .form-select {
      border-radius: 6px;
      border: 1px solid #ced4da;
      padding: 0.75rem;
      font-size: 0.875rem;
      height: 42px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      text-align: left;
      width: 100% !important;
      /* Ensure 100% width for all input fields */
      box-sizing: border-box;
  }

  .ninja .form-control:focus,
  .ninja .form-select:focus {
      border-color: #16b6ea;
      box-shadow: 0 0 0 0.2rem rgba(22, 182, 234, 0.25);
  }

  .ninja .form-check {
      margin-bottom: 0.5rem;
      text-align: left;
  }

  .ninja .btn-dark {
      background-color: #212529;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      text-align: left;
  }

  .ninja .btn-dark:hover {
      background-color: #343a40;
  }

  .ninja .alert {
      border-radius: 8px;
      font-size: 0.875rem;
      text-align: left;
  }

  .ninja .invalid-feedback {
      font-size: 0.75rem;
      color: #dc3545;
      text-align: left;
  }

  .ninja .breadcrumb {
      background-color: transparent;
      padding: 0;
      font-size: 0.875rem;
      text-align: left;
  }

  .ninja .form-check-input:checked {
      background-color: #16b6ea;
      border-color: #16b6ea;
  }

  /* Left alignment for all content */
  .ninja .card-body,
  .ninja .text-center,
  .ninja .text-muted,
  .ninja h1,
  .ninja h2,
  .ninja p {
      text-align: left !important;
  }

  .loader {
      border: 16px solid #f3f3f3;
      border-top: 16px solid #3498db;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      animation: spin 2s linear infinite;
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
      .ninja .card {
          padding: 0.5rem;
      }

      .ninja .form-check {
          display: block;
      }

      /* .ninja .d-flex.gap-3 {
                flex-direction: column;
                gap: 0.5rem;
            } */
      .ninja .btn-lg {
          width: 36%;
          font-size: 0.875rem;
      }

      .ninja h1 {
          font-size: 1.75rem;
      }

      .ninja h2 {
          font-size: 1.25rem;
      }

      .page-desc-section {
          height: 120px !important;
      }

      .page-desc-section h2 {
          font-size: 2rem !important;
          margin-top: 20px !important;
      }
  }

  @media (max-width: 767px) {
      .ninja .row.g-3>div {
          margin-bottom: 0.5rem;
      }

      .ninja .form-label {
          font-size: 0.875rem;
      }

      .ninja .card-body {
          padding: 0rem !important;
      }

      .page-desc-section {
          height: 100px !important;
      }

      .page-desc-section h2 {
          font-size: 1.5rem !important;
          margin-top: 15px !important;
      }
  }

  @media (max-width: 575px) {

      .ninja .form-control,
      .ninja .form-select {
          font-size: 0.75rem;
          height: 38px;
      }

      /* .ninja .btn-lg {
                padding: 0.5rem 1rem;
            } */
      .ninja h1 {
          font-size: 1.5rem;
      }

      .ninja h2 {
          font-size: 1rem;
      }

      .page-desc-section {
          height: 80px !important;
      }

      .page-desc-section h2 {
          font-size: 1.55rem !important;
          margin-top: 0px !important;
      }

      .ninja .btn-lg {
          width: 58%;
      }
  }


  /* step-01 */
  body {
      font-family: "Merriweather", serif;
      background-color: #FDF9F4;
      margin: 0;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .navbar-brand img {
      max-height: 60px;
  }

  .navbar-nav .nav-link {
      font-size: 13px;
      padding: 10px 15px;
      transition: color 0.3s;
  }

  .navbar-nav .nav-link:hover {
      color: #16b6ea;
  }

  .page-desc-section {
      /* background: linear-gradient(90deg, #16b6ea, #007bff); */
      background-color: #16b6ea;
      padding: 1.5rem 0;
      color: black;
  }

  .page-desc-section h2 {
      font-size: 3.5rem;
      /* font-weight: bold; */
      letter-spacing: 1px;
      font-weight: 400;

  }

  .progress {
      height: 6px;
      background-color: #e9ecef;
      border-radius: 4px;
  }

  .progress-bar {
      background-color: black !important;
  }

  .form-container {
      max-width: 800px;

      margin-bottom: 2rem;
  }

  .form-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #333;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      font-size: 1rem;
      font-weight: 500;
      color: #333;
  }

  .form-group input,
  .form-group select {
      width: 100%;
      padding: 0.60rem;
      font-size: 1rem;
      border: 1px solid #ced4da;
      border-radius: 5px;
      transition: border-color 0.3s;
      line-height: 18px;
  }

  .form-group input:focus,
  .form-group select:focus {
      border-color: #007bff;
      outline: none;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  }

  .form-error {
      color: #dc3545;
      font-size: 0.875rem;
      margin-top: 0.25rem;
  }

  .submit-button {
      background-color: black;
      color: white;
      padding: 0.75rem 2rem !important;
      border: none;
      border-radius: 25px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 100%;
      max-width: 200px;
      height: 50px;

  }

  .submit-button:hover {
      background-color: rgb(46, 47, 48);
  }

  .breadcrumb {
      background: transparent;
      margin-top: 30px;
  }

  .breadcrumb a {
      color: #007bff;
      text-decoration: none;
  }

  .breadcrumb a:hover {
      text-decoration: underline;
  }

  .sidebar {
      max-width: 300px;

  }

  .sidebar h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .sidebar ul {
      list-style: none;
      padding: 0;
  }

  .sidebar ul li {
      margin-bottom: 0.5rem;
  }

  .sidebar ul li a {
      color: #007bff;
      text-decoration: none;
  }

  .sidebar ul li a:hover {
      text-decoration: underline;
  }
      .px-md-5 {
        padding-right: 3rem !important; 
                 padding-left: 1rem !important; 
}

  footer {
      background-color: #343a40;
      color: white;
      /* padding: 2rem 0; */
      /* margin-top: 2rem; */
  }

  footer a {
      color: #16b6ea;
      text-decoration: none;
  }

  footer a:hover {
      text-decoration: underline;
  }

  .aj-01 {
      width: 400%;
  }

  .white-font-bold {
      margin-left: -12px;
  }

  .col-lg-8 {
      flex: 0 0 auto;
      width: 62.666667%;
  }

  #ddblueblockmenu {
      width: 9vw;
  }

  .nopadding {
      margin-left: -62px !important;

  }

  @media (min-width: 1024px) {

      /* .sidebar {
                position: sticky;
                top: 100px;
                margin-left: auto;
            } */
      .aj-01 {
          margin-left: 113px !important;
          margin-top: -28px;

      }
  }

  @media (max-width: 991px) {

      /* .sidebar {
                max-width: 100%;
                margin-top: 2rem;
                margin-bottom: 2rem;
            } */
      .form-container {
          padding: 1.5rem;
      }

      .page-desc-section h2 {
          font-size: 2rem;
      }
  }

  @media (max-width: 767px) {
      .form-container {
          padding: 1rem;
      }

      .form-title {
          font-size: 1.5rem;
      }

      .submit-button {
          max-width: 50%;
      }

      .page-desc-section h2 {
          font-size: 1.8rem;
      }
  }

  @media (max-width: 575px) {
      .navbar-brand img {
          max-height: 50px;
      }

      .form-group input,
      .form-group select {
          font-size: 0.9rem;
      }

      .form-title {
          font-size: 1.3rem;
      }

      /* .sidebar h3 {
                font-size: 1.3rem;
            } */
      .col-lg-8 {
          width: 99.666667%;

      }
  }


  /* step - 02 */

  body {
      font-family: "Merriweather", serif;
      background-color: #FDF9F4;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .col-md-8 {
      margin-left: -22px;
      margin-top: -18px;
  }

  .page-desc-section {
      background-color: #16b6ea;
      /* height: 135px; */
      width: 100%;
      display: flex;
      align-items: center;
      padding: 0.5rem;
  }

  .page-desc h2 {
      font-size: 3.5rem;
      color: black;
      margin: 0;
      letter-spacing: 2px;
      padding: 20px 0;
      font-weight: 400;

  }

  .progress-bar {
      background-color: black !important;
  }

  .breadcrumb {
      font-size: 16px;
      margin-top: 30px;
  }

  .basiclayoutforms {
      padding: 20px;
      margin-bottom: 20px;
  }

  .headingbottomborder {
      border-bottom: 1px solid #ccc;
      margin-bottom: 20px;
      padding-bottom: 10px;
  }

  .err_msg {
      color: red;
      font-size: 13px;
      margin-top: 5px;
      display: block;
  }

  .custom-select {
      width: 100%;
      margin-top: 10px;
      position: relative;
  }

  .select-selected {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 12px 15px;
      cursor: pointer;
      height: 38px;
      line-height: 12px;
      font-size: 14px;
      position: relative;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      width: 100% !important;
      box-sizing: border-box;
  }

  .select-selected:hover,
  .input.form-control:hover {
      border-color: #16b6ea;
  }

  .select-selected:focus,
  .input.form-control:focus,
  .blue-button:focus {
      border-color: #16b6ea;
      box-shadow: 0 0 5px rgba(22, 182, 234, 0.3);
      outline: none;
  }

  .select-selected:after {
      content: '⌄';
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: black;
      font-size: 18px;
  }

  .select-items {
      position: absolute;
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 100%;
      max-height: 200px;
      overflow-y: auto;
      z-index: 99;
      display: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      top: 100%;
      left: 0;
  }

  .select-items div {
      padding: 10px 15px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.2s ease;
  }

  .select-items div:hover {
      background-color: #DFFFC2;
      color: black;
  }

  .select-show {
      display: block;
  }

  .blue-button {
      background-color: black;
      color: white;
      border-radius: 42px;
      padding: 0.90rem 2rem;
      font-size: 16px;
      width: 100%;
      max-width: 200px;
      text-align: center;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  .blue-button:hover {
      background-color: black;
      color: white;
  }

  .smalltips {
      font-size: 13px;
      color: black;
      margin-top: 10px;
      display: block;
       background-color: #16b6ea;
      padding: 10px;
      width: 97%;
    border-radius: 6px;
    margin-left: 13px;
  }

  .ui-datepicker-trigger {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
      cursor: pointer;
      width: 20px;
      height: 20px;
  }

  .input.form-control {
      width: 100% !important;
      height: 36px;
      padding: 12px 15px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
  }

  .input.form-control::placeholder {
      color: #999;
      font-size: 14px;
  }

  .input-container {
      position: relative;
      width: 100%;
  }

  .jai-01 {
      line-height: 12px;
      width: 100% !important;
      padding: 12px 15px;
  }

  .form-container {
      display: flex;
      flex-wrap: wrap;
      /* gap: 20px; */
      padding: 0 15px;
  }

  .form-group {
      flex: 1 1 100%;
      min-width: 0;
  }

  .btn-container {
      /* width: 28px; */
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
  }

  .col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .col-md-8 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .col-md-4 {
      flex: 0 0 100%;
      max-width: 100%;
      margin-top: 20px;
      text-align: center;
      /* Center sidebar content */
  }

  .nav-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      /* width: 100% !important; */
  }

  .dj-07,
  .dj-08 {
      width: 27%;
      margin-left: 22px;

  }


  /* Responsive styles */
  @media (min-width: 1025px) {
      .col-md-8 {
          flex: 0 0 66.666667%;
          max-width: 66.666667%;
      }

      .col-md-4 {
          flex: 0 0 33.333333%;
          max-width: 33.333333%;
          margin-top: 0;
          text-align: left;
          /* Reset to left for desktop */
      }

      .form-group {
          flex: 0 0 calc(50% - 10px);
      }

      .nav-list {
          flex-direction: row;
          flex-wrap: wrap;
      }

      .btn-container {
          justify-content: space-between;
      }

      .blue-button {
          max-width: 200px;
      }
  }

  @media (max-width: 1024px) {
      .page-desc h2 {
          font-size: 40px !important;
      }

      .custom-select,
      .input.form-control {
          height: 42px;
          font-size: 13px;
      }

      .select-selected,
      .input.form-control {
          padding: 10px 12px;
      }

      .select-selected:after {
          font-size: 16px;
          right: 12px;
      }

      .breadcrumb {
          font-size: 16px;
          margin-bottom: 25px;
      }

      .btn-container {
          /* flex-direction: column; */
          align-items: center;
          gap: 10px;
      }

      .blue-button {
          max-width: 100%;
          width: 100%;
      }

      .dj-07,
      .dj-08 {
          /* width: 100% !important; */
          margin: 15 !important;
      }

      .col-md-4 {
          text-align: center;
      }

      .dj-08 {
          margin-right: 16px;
      }
  }

  @media (max-width: 770px) {
      .page-desc-section {
          height: 100px;
      }

      .page-desc h2 {
          font-size: 35px !important;
          margin-left: 0;
          padding: 10px 5px;
      }

      .custom-select,
      .input.form-control {
          height: 40px;
          font-size: 12px;
      }

      .select-selected,
      .input.form-control {
          padding: 8px 10px;
      }

      .select-selected:after {
          font-size: 16px;
          right: 12px;
      }

      .blue-button {
          width: 100%;
          max-width: 100%;
          font-size: 14px;
      }

      .smalltips {
          font-size: 12px;
      }

      .basiclayoutforms {
          padding: 10px;
      }

      .err_msg {
          font-size: 12px;
      }

      .dj-08 {
          margin-left: -15px;
      }
  }

  @media (max-width: 576px) {
      .page-desc h2 {
          font-size: 25px !important;
          margin-bottom: 18px;
          padding: 29px 14px 20px !important;

      }

      .page-desc-section {
          height: 80px;
      }

      .custom-select,
      .input.form-control {
          height: 38px;
          font-size: 11px;
      }

      .select-selected,
      .input.form-control {
          padding: 8px 10px;
      }

      .select-selected:after {
          font-size: 14px;
          right: 10px;
      }

      .select-items div {
          font-size: 11px;
          padding: 8px 10px;
      }

      .blue-button {
          width: 100%;
          max-width: 100%;
          font-size: 16px;
          padding: 13px;
      }

      .breadcrumb {
          font-size: 16px;
          margin-bottom: 20px;
      }

      .form-container {
          padding: 0 6px;
      }

      .ui-datepicker-trigger {
          width: 18px;
          height: 18px;
          right: 8px;
      }

      .dj-07,
      .dj-08 {
          width: 44%;
          margin-left: 10px;
      }
     
  .col-md-8 {
          margin: -2px;

  }
  .smalltips{
    margin-left: 7px;
  }
 /* .ninja h1{
    font-size: 24px;
    margin-top: -11px;
  } */

      /* #ddblueblockmenu{
                height: 40vh!important;
            } */


  }

  @media (max-width: 360px) {
      .page-desc h2 {
          font-size: 25px !important;
      }

      .page-desc-section {
          height: 70px;
      }

      .custom-select,
      .input.form-control {
          height: 36px;
          font-size: 10px;
      }

      .select-selected,
      .input.form-control {
          padding: 6px 8px;
      }

      .select-selected:after {
          font-size: 12px;
          right: 8px;
      }

      .select-items div {
          font-size: 10px;
          padding: 6px 8px;
      }

      .blue-button {
          width: 100%;
          max-width: 100%;
          font-size: 12px;
          padding: 6px;
      }

      .smalltips {
          font-size: 11px;
      }

      .err_msg {
          font-size: 11px;
      }

      .breadcrumb {
          font-size: 12px;
          margin-bottom: 15px;
      }
  }

  /* step - 03 */

  body {
      font-family: "Merriweather", serif;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .ninja {
      background-color: transparent;
  }

  .ninja .card {
      background-color: transparent;
      border: none;
      border-radius: 12px;
  }

  .ninja .form-label {
      font-weight: 500;
      color: #212529;
      margin-bottom: 0.5rem;
  }

  .ninja .form-select {
      border-radius: 6px;
      border: 1px solid #ced4da;
      padding: 0.75rem;
      font-size: 0.875rem;
      height: 42px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .ninja .form-select:focus {
      border-color: #16b6ea;
      box-shadow: 0 0 0 0.2rem rgba(22, 182, 234, 0.25);
  }

  .ninja .btn-dark {
      background-color: #212529;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      width: 26%;
  }

  .ninja .btn-dark:hover {
      background-color: #343a40;
  }

  .ninja .alert {
      border: none;
      border-radius: 8px;
      font-size: 0.875rem;
      background-color: rgba(220, 53, 69, 0.1);
  }

  .ninja .invalid-feedback,
  .ninja .error {
      font-size: 0.75rem;
      color: #dc3545;
  }

  .ninja .form-text {
      font-size: 0.90rem;
      color: black;
      border-radius: 5px;
      margin-top: 20px;
  }

  .ninja .breadcrumb {
      background-color: transparent;
      padding: 0;
      font-size: 0.875rem;
  }

  .small {
      background-color: #16b6ea;
      padding: 10px;
  }

  .page-desc-section {
      background-color: #16b6ea;
      /* height: 135px; */
      width: 100%;
      display: flex;
      align-items: center;
      padding: 0.5rem;
  }

  .page-desc h2 {
      font-size: 3rem;
      color: black;
      margin: 0;
      letter-spacing: 2px;
      padding: 20px 0;
      font-weight: 400;

  }

  .py-5 {
      padding-top: 1rem !important;
  }

  .col-lg-8 {
      margin-left: -48px;
      margin-top: -38px;
  }

  @media (max-width: 1024px) {

      .nav-list {
          width: 330% !important;
      }

      .aj-01 {
          margin-left: -63px !important;
      }
  }

  @media (max-width: 991px) {
      .ninja .card {
          padding: 1rem;
      }

      .ninja .btn-dark {
          width: 100%;
          font-size: 0.875rem;
      }

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

      /* .ninja .d-flex.justify-content-between {
                flex-direction: column;
                gap: 1rem;
            } */
      .aj-01 {
          margin-left: 32px !important;
      }

      /* .mb-4 {
          margin-top: -17px !important;
          margin-bottom: 0.5rem !important;

      } */
  }

  @media (max-width: 575px) {
      .ninja .form-select {
          width: 100%;
      }

      .ninja .form-label {
          font-size: 0.875rem;
      }

      .ninja .alert ul {
          padding-left: 1rem;
      }

      .row>* {
          padding: 6px !important
      }

      .aj-01 {
          margin-left: 22px !important;
      }

      #ddblueblockmenu {
          height: 40vh !important;
      }

      .animated {
          font-size: 27px !important;
      }

      .col-lg-8 {
          margin-left: 0px;
      }

      .rounded-3 {
          margin-left: 0px !important;
      }

  }

  /* step -05 */

  body {
      font-family: "Merriweather", serif;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .ninja {
      background-color: transparent;
  }

  .ninja .card {
      background-color: transparent;
      border: none;
      border-radius: 12px;
  }

  .ninja .form-label {
      font-weight: 500;
      color: #212529;
      margin-bottom: 0.5rem;
  }

  .ninja .form-control,
  .ninja .form-select {
      border-radius: 6px;
      border: 1px solid #ced4da;
      padding: 0.60rem;
      font-size: 0.875rem;
      height: 36px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      line-height: 13px;
      width: 100%;
  }

  .ninja .form-control:focus,
  .ninja .form-select:focus {
      border-color: #16b6ea;
      box-shadow: 0 0 0 0.2rem rgba(22, 182, 234, 0.25);
  }

  .ninja .btn-dark {
      background-color: #212529;
      border: none;
      padding: 0.75rem 2rem;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      border-radius: 36px;
      flex: 1;
      max-width: 200px;
      text-align: center;
  }

  .ninja .btn-dark:hover {
      background-color: #343a40;
  }

  .ninja .alert {
      border: none;
      border-radius: 8px;
      font-size: 0.875rem;
      background-color: rgba(220, 53, 69, 0.1);
  }

  .ninja .invalid-feedback,
  .ninja .error {
      font-size: 0.75rem;
      color: #dc3545;
  }

  .ninja .form-text {
      font-size: 0.75rem;
      color: #6c757d;
  }

  .ninja .breadcrumb {
      background-color: transparent;
      padding: 0;
      font-size: 0.875rem;
  }

  .ninja .button-container {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: nowrap;
  }

  .nav-list {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  /* .sidebar-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    } */
  @media (max-width: 1024px) {
      .nav-list {
          width: 320px !important;
      }

      .aj-01 {
          margin-left: -50px;

      }

  }

  @media (max-width: 991px) {

      .ninja .col-lg-8,
      .ninja .col-lg-4 {
          flex: 0 0 100%;
          max-width: 100%;
      }

      .ninja .order-lg-1 {
          order: 1;
      }

      .ninja .order-lg-2 {
          order: 2;
      }

      .ninja .card {
          padding: 1rem;
      }

      .ninja .btn-dark {
          padding: 0.5rem 1rem;
          font-size: 0.875rem;
          max-width: 120px;
      }

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

      .ninja .button-container {
          gap: 0.5rem;
      }

      .aj-01 {
          margin-left: -13px !important;
      }

      .p-4 {
          padding: 0rem !important;
      }
  }

  @media (max-width: 576px) {

      .ninja .form-control,
      .ninja .form-select {
          width: 100%;
      }

      .ninja .form-label {
          font-size: 0.875rem;
      }

      .ninja .alert ul {
          padding-left: 1rem;
      }

      .ninja .btn-dark {
          padding: 0.5rem 0.75rem;
          font-size: 0.75rem;
          max-width: 100px;
      }

      .ninja .button-container {
          gap: 0.5rem;
      }

      #ddblueblockmenu {
          height: 40vh !important;
      }
  }

  @media (max-width: 400px) {
      .ninja .btn-dark {
          padding: 0.5rem 0.5rem;
          font-size: 0.7rem;
          max-width: 90px;
      }
  }

  /* step - 06 */

  body {
      font-family: "Merriweather", serif;
  }

  h1,
  h2,
  p {
      font-family: "Merriweather", serif;
  }

  .ninja {
      background-color: #FDF9F4;
  }

  .ninja .card {
      background-color: transparent;
      border: none;
      border-radius: 12px;
  }

  .ninja .form-label {
      font-weight: 500;
      color: #212529;
  }

  .ninja .btn-dark {
      background-color: #212529;
      border: none;
      padding: 0.90rem 2rem;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      border-radius: 36px;
      width: 100%;
      max-width: 200px;
  }

  .ninja .btn-dark:hover {
      background-color: #343a40;
      cursor: pointer;
  }

  .ninja .alert {
      border: none;
      border-radius: 8px;
      font-size: 0.875rem;
      background-color: rgba(220, 53, 69, 0.1);
  }

  .ninja .breadcrumb {
      background-color: transparent;
      padding: 0;
      font-size: 1rem;
  }

  .headingbottomborder {
      border-bottom: 1px solid #dee2e6;
      margin-bottom: 1rem;
  }

  .page-desc-section {
      background-color: #16b6ea;
      text-align: center;
      text-align: left;
      height: 115px;
  }

  .progress {
      height: 6px;
  }

  /* Responsive Styles */

  @media (max-width: 1024px) {
      .white-font-bold {
          margin-top: -9px !important;
      }

      .nav-list {
          width: 320px !important;
      }

      #ddblueblockmenu {
          height: auto !important;
      }

      .aj-01 {
          margin-left: 50px !important;
          margin-top: 30px;
      }
  }

  @media (max-width: 991px) {
      .ninja .btn-dark {
          max-width: 55%;
      }

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

      .page-desc-section h2 {
          font-size: 2rem;
          margin-top: 1rem;
      }

      /* .sidebar { display: none; } */
      /* .sidebar.active { display: block; } */
      .card-body {
          padding: 1rem !important;
      }

      /* .col-md-8 {width: 62%;} */

  }

  @media (max-width: 767px) {
      .page-desc-section {
          height: auto;
          padding: 1rem 0;
      }

      .page-desc-section h2 {
          font-size: 2.5rem;
          text-align: left;
      }

      .ninja .card {
          margin: 0;
      }

      /* .buttons-container { flex-direction: column; gap: 0.5rem; } */
      .gap-2 {
          gap: 3.5rem !important;
      }
  }

  @media (max-width: 576px) {
      .ninja h1 {
          font-size: 1.25rem;
      }

      .ninja h2 {
          font-size: 1rem;
      }

      .ninja p {
          font-size: 0.875rem;
      }

      .progress {
          height: 4px;
      }

      .breadcrumb {
          font-size: 0.875rem;
      }
  }