:root {
    --lightest-blue: #D4EBF2;
    --light-blue: #0084A9;
    --mid-blue: #005476;
    --text-blue: #003366;
    --dark-blue: #042D61;
    --bright-green: #28A745;
    --hov-green: #198754;
    --link-green: #1D4E32;
    --alert-red: #A92323;
  }



.source-serif {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-size: 60px;
  font-weight: 900; /* replace with 200–900 depending on your use */
  font-style: normal;
  color: #fff; 
}

  

  .alertMessage {
    background-color: var(--alert-red);
    border-radius: 6px;
    color: #FFF;
    display: none;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 0.75rem 1rem;
  }
  

  
  body {
    background-color: var(--dark-blue);
  }
  
  a {
    color: #fff;
    margin: 5px;
  }

  a:hover {
    color: var(--bright-green) !important;
  }

  a.list-link {
    color: black;
  }

  a.list-link:hover {
    color: var(--hov-green) !important;
  }
  
  

  
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #000; 
}

.pipes {
  margin: 0 10px; 
}


  .btnBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Ensures it is above .steps */
  }

  .btn-primary {
    background-color: transparent;
    border: 3px solid #28A745;
    border-radius: 2rem;
    font-weight: 700;
    padding: .5rem 3rem;
    text-transform: uppercase;
    transition: all .5s ease;
    }
  
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-secondary:hover,
    .btn-success:hover {
        color: #fff !important;
        background-color: var(--hov-green) !important;
        border-color: var(--hov-green) !important;
    }

.btn-info {
  background-color: transparent;
  border: 3px solid var(--bright-green);
  border-radius: 2rem;
  font-weight: 500;
  padding: .5rem 3rem;
  text-transform: uppercase;
  color: #fff;
}

.btn-info:hover {
  background-color: var(--hov-green);
  border-color: var(--hov-green);
  color: #fff !important;
}

.btn-success {
background-color: transparent;
border: 3px solid var(--bright-green);
border-radius: 2rem;
font-weight: 500;
padding: .5rem 1rem;
color: #042D61 !important;
}


    .button-block {
        background-color: transparent;
        border: 3px solid var(--bright-green);
        border-radius: 2rem;
        color: #fff;
        display: block;
        font-size: 2rem;
        font-weight: 600;
        padding: .5rem 3rem;
        text-transform: uppercase;
        transition: all .5s ease;
        width: 100%;
        margin-bottom:5%;
      }
      
      
      .button-block:focus,
      .button-block:hover {
        color: #fff;
        background-color: var(--hov-green);
        border-color: var(--hov-green);
        outline: none;
      }

      #question-24 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
/* .steps {
	display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -130px;
} */

.steps {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: -1; /* Ensures it stays behind */
}

        
  .landing-container {
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding: 35px 35px 10px 35px;
    position: relative;
  }
  
  
  header {
    font-size: 35px;
    font-weight: 600;
    margin: 3%;
  }

.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  position: absolute; /* Keeps layout stable when hidden */
  width: 100%;
}

.custom-hr {
  border-top: 2px solid rgba(0, 0, 0, .2);
}
  
.greeting {
    color:#fff;
    font-weight: 500;
    text-align: center;
    margin: 35px;
    font-size: 18px;
}

  .form-outer form .page {
    width: 25%;
    margin-top: 1%;
    transition: margin-left 0.3s ease-in-out;
    padding-left: 2%;
    padding-right: 2%;
  }
  
  
  form .page .input {
    height: 100%;
    width: 100%;
    padding-left: 15px;
    font-size: 18px;
  }
  
  .form-row {
    margin-bottom: 1%;
  }
  
  
  input:focus {
    border-color: var(--light-blue) !important;
  }

  input:focus {
    border-color: var(--light-blue) !important;
  }
  
  input[type='checkbox'] {
      cursor: pointer;
      float: left;
      margin-top: .7%;
      vertical-align: middle;
  }
  

label {
  display: block;
  color: #fff;
}

  
  label.checkBoxLabel {
    display: inline;
  }
  
  .field-wrap {
      padding: 1% 0 3% 0;
  }
  
  .instructions {
    text-align: left;
    margin-bottom: 2rem;
  }

  form .page button:hover {
    background-color: var(--hov-green);
  } 

h1 {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 2%;
}
  
  
 h2 {
  color: #fff;
 }

  h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 8%;
  }
  
h4 {
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top: 5%;
}

  h5 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 8%;
  }
  
  h6 {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
    /* margin-left: 10%; */
    margin-bottom: 7%;
  } 


legend {
  color: #FFFF;
  text-align: center;
  font-weight: bold;
  margin-top: 5%;
}


.highlight-pink {
background-color: #f9dbf3 !important;
border-radius: 10px;
padding: 10px;
}

.highlight-blue {
  background-color: #94c2e5 !important;
  border-radius: 10px;
  padding: 10px;
}

.highlight-purple {
  background-color: #b498cf !important;
  border-radius: 10px;
  padding: 10px;
}

.highlight-green {
  background-color: #c3dcb8 !important;
  border-radius: 10px;
  padding: 10px;
}

.highlight-yellow { 
  background-color: #ffefc1 !important;
  border-radius: 10px;
  padding: 10px;
}

.highlight-orange {
  background-color: #f5d3af !important;
  border-radius: 10px;
  padding: 10px;
}

  .btn-disabled {
    background-color: #91a3b0 !important;
    border-color: #91a3b0 !important;
    padding: 7px 30px;
    margin-right: 1%;
    pointer-events: none;
    }
    
    .btn-disabled:hover {
      background-color: #91a3b0 !important;
      border-color: #91a3b0 !important;
      pointer-events: none;
    }
    
    footer p {
        text-align: center;
        color: #fff;
      }
      
      footer a {
      color: #fff !important;
      text-decoration: underline;
      }


.navbar-nav .nav-link {
  font-size: 0.9rem;
}

.navbar .btn {
  font-size: 0.9rem;
  padding: 0.375rem 0.75rem;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.quiz-container {
 background-color: #0a3a74;
 margin: 10rem 1rem 18rem 1rem;
 border-radius: 12px;
 padding: 35px 35px 10px 35px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


    .req {
      color: var(--bright-green);
      font-weight: bold;
    }
  
    .question-box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 4%;
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        width: 100%;
    }  

    .question-box.activeQ {
      opacity: 1;
    }

    .radio-toolbar {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-bottom: 5%
    }

      .radio-toolbar input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        margin: 0;
        padding: 0;
        overflow: hidden;
      }
      
      input[type="radio"] {
        display: inline;
      }
      
      .radio-toolbar .btn-secondary {
        background-color: transparent;
        border: 3px solid #28A745;
        border-radius: 2rem;
        padding: .5rem 3rem;
        font-size: 20px;
        font-weight: 500px;
      }
      
      /* Hover Effect for Both Labels (Turns Green on Hover) */
.radio-toolbar label:hover {
  background-color: var(--hov-green) !important;
  border-color: var(--hov-green) !important;
}

/* Checked State for Both Positive and Negative Buttons (Stays Green After Click) */
.radio-toolbar input[type="radio"]:checked + label {
  background-color: var(--hov-green) !important;
  border-color: var(--hov-green) !important;
}

.radio-group {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}
.radio-group input[type="radio"] {
  margin-right: 5px;
}

/* for ADA compliance */
input[type="radio"]:focus + label {
  outline: 2px solid var(--bright-green); 
  outline-offset: 2px;
}

/* Center-align the main container */
#question-25 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center-align contents inside the email_info div */
.email_info {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  display: none;
}

.preferred_contact, 
.phone_info {
  display: none;
}

/* Style for the radio group within email_info */
.radio-group-inline {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* Center-align the alertMessage and submit button */
#alertMessage, #submitButton {
  text-align: center;
  margin-top: 10px;
}

/* Progress Bar */
.quiz_progress_box {
  padding-top: 5px;
  text-align: center;
  width: 100%;
  min-height: 50px;
}

.quiz_dot {
  /* cursor: pointer; */
  position: relative;
  display: inline-block;
  margin: 1px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
}

.active,
.complete {
background-color: var(--bright-green);
border-color: var(--bright-green);
}

.unanswered {
  background-color: var(--alert-red);
  border: var(--alert-red);
}

/* career type boxes */
.container {
    display: flex;
    flex-wrap: wrap;
    width: 70rem; /* Fixed width for a 3x2 grid */
}
.color-square {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 350px;
    box-sizing: border-box;
}
.placeholder-img {
    background-color: white;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.manatee-img {
  width: 180px;
  height: 100px;
  margin-bottom: 40px;
  margin-top: 10px;
}

.manateeTxt {
  font-size:45px; 
}

.rock-salt-regular.white {
  color: #fff !important;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  position: relative;
}

.custom-container .row {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.right-container {
  background-color: #EDF7F9;
  border-radius: 15px;
}

.apply-link {
  color: #fff !important;
}



form#mainForm {
  min-height: 350px;
}



/* results page */

.results-container {
  padding: 2rem 2rem 5rem 4rem;
}

.result-item {
  margin-bottom: 20px; /* Adds spacing between result items */
}

.category-container {
  display: flex;
  align-items: center;
  margin-bottom: 5px; /* Adds spacing between category section and progress bar */
}


.learn-more-button {
  font-size: 0.8em;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  padding: .3rem 1rem;
  border: 2px solid var(--bright-green);
  border-radius: 2rem;
}

.learn-more-button:hover {
  background-color: var(--hov-green);
  color: #ffffff !important;
}

.category-name {
  font-weight: bold;
  margin-bottom: 8px;
  margin-right: 10px; /* Space between category name and button */
  color:#fff;
}

.progress-bar-outer {
  background-color: #ffffff; /* Outer bar color */
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 30px;
  border: 1px solid #ccc; /* Optional: border for outer bar */
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1); /* Optional: shadow for a subtle effect */
}

.progress-bar-inner {
  height: 100%;
  border-radius: 5px 0 0 5px; /* Rounded left edge for inner bar */
  text-align: right;
  padding-right: 5px;
  color: white;
  font-weight: bold;
  line-height: 30px;
  min-width: 40px; /* Centers text vertically */
}

/* Custom colors for each category */
.doer { background-color: #0083B9; }       
.thinker { background-color: #008080; }    
.creator { background-color: #4CA64C; }    
.helper { background-color: #0a3a74; }     
.persuader { background-color: #195953; }  
.organizer { background-color: #005476; }  


.results-contact {
  background-color: #0a3a74;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontally centers the contents */
  margin: 3rem auto 1rem auto; /* Centers the container itself horizontally */
  padding: 0px 10px 20px 10px;
  text-align: center; /* Centers the text inside the div */
  max-width: 90%; 
}




@media (max-width: 1200px) {
  .container {
   width: 60rem;
  }

  .color-square {
    height: 300px;
    width: 300px;
  }

  h5 {
    font-size: 30px;
  }
} 


/* styles for screens over 1500px wide */
@media (min-width: 1500px) {
  .steps {
    margin-top: -65px;
  }
}
      /* Styles for screens up to 1000px wide */
      @media (max-width: 1000px) {
        .container {
          width: 60rem;
         }
       
         .color-square {
           height: 200px;
           width: 200px;
         }

         .manatee-img {
          width: 150px;
          height: 100px;
         }

         .manateeTxt {
          font-size: 25px;
         }

        .greeting {
          font-size: 12px
        }

      }

      @media (max-width: 768px) {
        .container {
          width: 100%; /* Make the container responsive */
        }
        
        .color-square {
          width: 100%; /* Stack the squares on top of each other */
          height: auto; /* Adjust height for smaller screens */
        }

        .manatee-img {
          width: 190px;
          height: 100px;
        }

        .greeting {
          font-size: 12px;
          margin: 7% 4% 7% 4%;

        }

        h5 {
          margin-bottom: 5%;
        }

        .source-serif {
          font-size: 55px;
        }

      }



      /* Mobile Styles (for screens up to 600px wide) */
      @media (max-width: 600px) {
        h4 {
            font-size: 1.1rem; /* Smaller font size for the question */
            text-align: center;
        }

        .greeting {
          font-size: 12px;
        }

        .radio-toolbar {
            flex-direction: column; /* Stack radio buttons vertically */
            gap: 15px; /* Increase gap for better spacing */
            margin-top: 8%;
            margin-bottom: 15%;
        }
      
        .radio-toolbar .btn-secondary {
            font-size: 0.9rem; /* Smaller font size for button labels */
            padding: 10px 20px; /* Adjust padding for smaller buttons */
        }

        .rock-salt-regular {
          font-size: 24px;
        }

        .quiz_dot {
          height: 4px;
          width: 4px;
        }

        .button-block {
          font-size: 1rem;
          padding: 3% 0;
        }

      }

      /* Mobile styles (for screens up to 400px wide) */
      @media (max-width: 400px) {
        .greeting {
          font-size: 9px;
        }
  
        .source-serif {
          font-size: 40px;
        }
      }


      