/* Global Variables */

body {
  font-family: 'Inter', sans-serif !important;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .desktop-nav {
    display: none;
  }
}


/* Added by: John Carlo Tulin @ 07/04/25 */

h1 {
  font-size: 2.5rem;
}

/* 2.5 * 16 = 40px default */
h2 {
  font-size: 2rem;
}

/* 32px */
h3 {
  font-size: 1.75rem;
}

/* 28px */
h4 {
  font-size: 1.5rem;
}

/* 24px */
h5 {
  font-size: 1.25rem;
}

/* 20px */
h6 {
  font-size: 1rem;
}

/* 16px */


/* Navbar button
Added by: John Carlo Tulin @ 07/07/25 */

/* 1) Transparent hover for buttons & links in the main navbar
   Excludes .accessibility-toggle and .accessibility-option-btn */
#navbarSupportedContent button:not(.accessibility-toggle):not(.accessibility-option-btn):hover,
#navbarSupportedContent .nav-link:hover {
  background-color: transparent !important;
  color: #1cb423 !important;
  transition: color 0.4s ease-out, transform 0.4s ease-out;
  transform: translateY(-3px);
}


/* 2) Base styles for dropdown toggles inside main navbar
   (still excluding your accessibility controls) */
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn) {
  background-color: transparent !important;
  box-shadow: none !important;
  transition: color 0.4s ease-out, transform 0.4s ease-out;
}

/* 3) Hover/focus/show animation for those dropdown toggles */
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn):hover,
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn):focus,
#navbarSupportedContent .dropdown-toggle:not(.accessibility-toggle):not(.accessibility-option-btn).show {
  transform: translateY(-3px);
  color: #1cb423 !important;
}


a.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}


/* Search botton state */
.search-btn.disabled {

  pointer-events: none;
  background-color: rgb(137, 136, 136);
  border-color: rgb(137, 136, 136);
  cursor: not-allowed;

}

[ng-cloak] {
  display: none !important;
}

/* For the Matching percentage color*/
.bg-orange {
  background-color: #fd7e14 !important;
}

/* Code Migrated @ 04/07/2025 */

/********* Code ni Lorenzo *********/

/* Login/Register Modal */
/* modal global style */
.information-entry-modal a {

  color: black;
}

.modal-btn {

  background-color: #0F7414;
  color: white !important;
  border-radius: 10px;

}


.modal-overlay {

  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 1050;
  /* Placed higher than the nav bar (1030) */
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out, visibility 0.4s ease-in-out;

}

.modal-overlay.active {

  opacity: 1;
  visibility: visible;

}

.modal-overlay.active-unmount {

  opacity: 0;
  visibility: hidden;

}


.modal-overlay .information-entry-modal {
  background-color: #fff;
  flex: 0 0 auto;
  position: relative;
  padding: 10px;
  border-radius: 20px;
  height: 90%;
  width: 70%;
  max-width: 500px;
  max-height: 800px;
  overflow: hidden;
  transform: translateY(50%);
  transition: transform 0.4s ease-in-out;
}

.modal-overlay .information-entry-modal.active {

  transform: translateY(0%);

}

.information-entry-modal .close-btn {

  position: absolute;
  top: 10px;
  z-index: 10000;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;

}

.link-text {
  text-decoration: underline !important;
}

.form-control {

  border-radius: 20px !important;
  font-size: 1rem !important;

}

.form-control.password {

  border-radius: 20px 0 0 20px !important;

}

.toggle-visibility {

  border-radius: 0 20px 20px 0 !important;
  cursor: pointer;
}


/* All content styles */

.login-content,
.register-content,
.verify-content,
.confirm-user-type,
.forgot-pass,
.verify-forgot-pass-content,
.change-password-content {
  user-select: none !important;
  position: absolute;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}


/* Setting content state */

.login-content {
  transform: translateX(0);
}

.register-content,
.verify-content,
.confirm-user-type,
.forgot-pass,
.verify-forgot-pass-content,
.change-password-content {
  transform: translateX(100%);
  /* Hidden off-screen */
}

/* Active State */
.login-content.active-slide-out,
.register-content.active-slide-out,
.verify-content.active-slide-out,
.confirm-user-type.active-slide-out,
.forgot-pass.active-slide-out,
.verify-forgot-pass-content.active-slide-out,
.change-password-content.active-slide-out {
  transform: translateX(100%);
  /* Slide out to the left */
}


.register-content.active-slide-in,
.login-content.active-slide-in,
.verify-content.active-slide-in,
.confirm-user-type.active-slide-in,
.forgot-pass.active-slide-in,
.verify-forgot-pass-content.active-slide-in,
.change-password-content.active-slide-in {
  transform: translateX(0);
  /* Slide in from the right */
}




/* Within login-content */

.some-animation {

  background-color: gray;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 30px;


}


/* Password input field */
.custom-width {

  max-width: 236px !important;

}


/* End of login-content */

/* Within Register-content */

/* Modified by Lorenzo @ 04/25/2025 */
.register-btn.disabled,
.change-pass-btn.disabled,
.verify-btn.disabled {


  pointer-events: none !important;
  background-color: rgb(137, 136, 136) !important;
  border-color: rgb(137, 136, 136) !important;
  cursor: not-allowed !important;
  user-select: none !important;

}

.subtitle-header {
  color: #0f7414 !important;
}

.navbar {
  background-color: white;
}

/* End of register-content */

/********* End of Code ni Lorenzo *********/

/* End of Code Migrated @ 04/07/2025 */


/* Toggle Attribute */
/* Push your chrome (nav/header/buttons) above that overlay */
header,
.navbar,
.accessibility-toggle,
.accessibility-panel {
  position: relative;
  z-index: 10;
}

/* Widget UI */
.accessibility-toggle {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: #2eaa42;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  /* Drag animations */
  transition:
    left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.1s ease;
}

.accessibility-toggle.dragging {
  transition: none;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(46, 170, 66, 0.4);
}

.accessibility-toggle img {
  width: 30px;
  height: 30px;
}


/* Panel slide-in animation */
@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Button hover animations */
.accessibility-toggle:hover {
  transform: translateY(-50%) scale(1.05);
  transition: transform 0.2s ease;
}

.accessibility-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.label {
  font-weight: bold;
  margin-bottom: 5px;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-group button {
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background-color: white;
  color: black;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

/* Button hover effect */
.option-group button:hover {
  transform: translateY(-1px);
}

.option-group button:active {
  transform: translateY(0);
}

.option-group:not(.font-size) button.active {
  background-color: black;
  color: white;
  animation: buttonActivate 0.2s ease;
}

/* Button activation animation */
@keyframes buttonActivate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Smooth transitions for all elements */
body,
.accessibility-toggle,
.accessibility-panel,
.accessibility-panel .option-group button,
.accessibility-panel .option-group button.active {
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

/* Sir jess login reg form emp css*/
.background-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 60vw;
  background-color: #6db5ff;
  border-radius: 50%;
  transform: translate(25%, -20%);
  z-index: -1;
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
  /* Prevents horizontal scrolling */
}


.blue-circle-left {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}



.blue-circle-lower-right {
  position: absolute;
  top: 80%;
  right: -50%;
  width: 50vw;
  height: 50vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.blue-small-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 20vw;
  height: 20vw;
  background-color: #6eb7ff;
  border-radius: 50%;
  transform: translate(-100%, 160%);
  z-index: -1;

}


.custom-fields::placeholder {
  font-size: 14px;
  opacity: 1;
}


.custom-fields {

  font-size: 16px;
  color: red;
  border: 1px solid #0160af;
}



#about-ojtgo {

  margin-top: 200px;
}








/* Jess Baggs and Millard */
/* Popup background */

/* Modified by Lorenzo @ 03/31/2025 */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 1050;
  /*Higher that the fixed nav bar (1030)*/
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Popup box */
.popup-box {
  background: #fff;

  padding: 10px;
  width: 30%;
  position: relative;
}


@media (max-width: 991px) {
  .popup-box {
    width: 70%;
  }
}


@media (max-width: 767px) {
  .popup-box {
    width: 90%;
  }
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}



@media (max-width: 991px) {
  #about-ojtgo {
    margin-top: 100px;
    /* Applies for 991px and below */
  }
}

/* Sir jess login reg form emp css end */






/************* Landing Page Modifications *************/

/* Globaly set styles */

.input-styles {
  width: 500px;
  border-radius: 20px !important;
  font-size: 1rem !important;

}

body {
  background-color: #FFFFFF !important;
  /* Set Correct Background Color */
  overflow-x: hidden;
}


/* End of globaly set styles */

/* Modified by: John Carlo Tulin
Date: 06/27/2025*/

.navbar-btn {

  background: var(--gridient, linear-gradient(241deg, #1CB423 0%, #0F7414 100%)) !important;
  color: white !important;
  border: none !important;
  padding: 5px 15px;

}

#createAnAccountBtn {
    white-space: nowrap;
     text-wrap-mode: nowrap !important;
  background: #ffffff !important;
  color: #0F7414 !important;
  border: #0F7414 1px solid !important;
  text-wrap-mode: nowrap;

}

/* Hero Container */

.kickstart-hero-container,
.kickstart-hero-skeleton {

  background: #ffffff !important;
  margin-left: -10px;
  /* Move the entire container to the left */
  width: calc(100% + 20px);
  /* Fill the remaining space to the right */
  min-height: 400px;
  /* ✅ Replaces fixed height with flexible one */
  padding: 0 10px;
}






.hero-header {

  max-width: 600px;
  width: 100%;

}


.filter-btn {

  width: 200px !important;

}


/* Job list and details container */


/* Main Find Your Match Content */
.job-list-container {}



/* .job-details-pane {
    height: fit-content;
} */

/* modified by Lorenzo @ 04/24/2025 */
.job-details-container {
  box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
  -webkit-box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
  -moz-box-shadow: -1px 5px 5px 1px rgba(106, 106, 106, 0.75);
}

.posting-description {
  overflow-y: scroll;
  padding-right: 1rem;
  max-height: 200px;
  word-break: break-all;
}

/* modified by Lorenzo @ 04/24/2025 */
.job-list-wrapper {
  height: calc(100vh + 310px);
}

.job-list-pane {
  flex: 1;
  height: inherit;
  overflow-y: scroll;
}


/* Job list (Cards) */

.tag {

  background-color: #d4e8e9;
  padding: 5px 25px !important;

}

/* modified by Lorenzo @ 04/24/2025 */
/* Apply styling if the job card is selected */
.job-card {
  border: 1px solid #bebebe;
  /* box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75);
    -webkit-box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75);
    -moz-box-shadow: -1px 5px 5px 1px rgba(106,106,106,0.75); */
  transition: background-color 0.3s ease;
  /* Ensures smooth animation */
}

.job-card.active {
  border: 1px solid #0F7414;
  /* box-shadow: 0 0 10px 2px rgba(0, 123, 255, 0.5); glowing blue shadow */
}

.job-card:hover {
  background-color: #cfcece !important;
  color: #fff !important;
}

.job-card:hover h3#job-title {
  color: #fff !important;
  /* or your preferred color */
}

#info-capsule-list li {
  font-size: 0.7rem;
  padding: 8px !important;
  border-radius: 10px !important;
  background-color: #e9ecef;
  /* Bootstrap gray-200 */
  color: #212529;
  /* text-dark */
}

.job-description-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* limit to 3 lines */
  -webkit-box-orient: vertical;
  font-size: 0.75rem;
}



/* Job Details */

/* Modified by: John Carlo Tulin
06/27/2025
*/

.modal-send-request {

  line-height: 1;
  color: white !important;
  background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
  border-radius: 10px;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1rem;

}

.progress-bar {

  background-color: #70B7FB !important;

}

.progress {

  background-color: #C8E0F2 !important;
  height: 20px;

}


.create-account-banner {

  background: var(--gridientt_4, linear-gradient(180deg, #1CB423 0%, #0F7414 100%)) !important;
  padding: 15px 0;
  border-radius: 0 0 0.4rem 0.4rem !important;
  /* Modified by Lorenz o@ 04/24/2025 */
  width: 100%;
  margin-top: auto;
  /* Push to bottom */

}

.create-acc-link {

  text-decoration: underline !important;
  text-decoration-color: navy;

}



/* shimmer loading animation */
.skeleton-loader {
  padding: 2rem;
}

.skeleton-block {
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.skeleton-block::after {
  /* Deals with the animation */
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #f0f0f0 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
  /*Deals with the shimmer speed*/
}

@keyframes shimmer {
  100% {
    transform: translateX(100vw);
    /*Determines the length of the shimmer will travel*/
  }
}



/* 
    Migrated @ 04/11/2025
    added code by Lorenzo @ 04/11/2025 
    For register format guideline    
    
*/


/* For password */
.guidelines {
  font-size: 13px;
  color: #666;
  background: #f9f9f9;
  border: 1px solid #ddd;
  line-height: 1.3;
  width: 310px;
}

.condition {
  font-size: 13px;
  line-height: 1.3;
  width: 310px;
}

/* Added by Lorenzo @ 04/24/2025 */
/* Override bootstrap styling */
.is-invalid {

  transition: none !important;
}

.reg-field.highlight {

  border-color: #ED2939 !important;

}





/* added by lorenzo @ 05/06/2025 */
/* for responsive design */


@media (max-width: 767px) {



  .modal-overlay {

    padding: 0 !important;

  }


  .modal-overlay .information-entry-modal {

    width: 100%;
    max-width: unset;
    height: 95%;
    max-height: 900px;
    overflow-y: scroll;

  }

  .modal-overlay .information-entry-modal.active {

    transform: translateY(5%);

  }


  .custom-width {

    max-width: 100% !important;

  }

}


@media (max-width: 480px) {

  .kickstart-hero-container,
  .kickstart-hero-skeleton {

    height: 500px;
    /* Changed by lorenzo @ 05/09/2025*/

  }





}


/*Footer*/

.footer-container {
  background-color: #1565c0;
  color: white;
}

/* For the Whilte Logo */
/* Makes the logo white if needed */
/* .footer-logo {
        filter: brightness(0) invert(1); 
    }*/

.social-circle {
  transition: all 0.3s ease;
}

.social-circle:hover {
  background-color: #e0e0e0;
}

/* Center logo and social icons on small screens */
/*@media (max-width: 400px) {*/
/*    .footer-container .col-lg-4,*/
/*    .footer-container .col-lg-3,*/
/*    .footer-container .col-lg-5 {*/
/*        text-align: center !important;*/
/*    }*/

/*    .footer-container .align-items-lg-start {*/
/*        align-items: center !important;*/
/*    }*/

/*    .footer-container .text-lg-start {*/
/*        text-align: center !important;*/
/*    }*/

/*    .footer-container .d-flex {*/
/*        justify-content: center;*/
/*    }*/
/*}*/

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.feature-icon {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.feature-description {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.content-wrapper {
  padding: 2rem;
}

/* container clips anything sliding outside */
.information-entry-modal {
  position: relative;
  overflow: hidden;
}

/* remove any default transform/transition on panels */
.information-entry-modal>div {
  /* no transform or transition here: we’ll rely on keyframes */
}

/* slide-in animation */
.active-slide-in {
  animation: slideIn 0.3s ease forwards;
}

/* slide-out animation */
.active-slide-out {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 2rem;
  }

  .content-wrapper {
    padding: 1.5rem;
  }
}

/* added by Charls */

/* Legal footer responsiveness */
@media (min-width: 992px) {
  .legal-offset {
    margin-left: 4rem !important;
  }
}

/* MOBILE FOR JOB POST (max-width 575.98px) */
@media (max-width: 575.98px) {
  .card-body {
    padding: 1rem !important;
    /* reduce padding */
  }

  .card-body .rounded-circle {
    width: 120px !important;
    /* smaller circle */
    height: 120px !important;
  }

  .card-body figure {
    width: 100px !important;
    /* smaller lottie */
    height: 80px !important;
  }

  .card-title {
    font-size: 1.25rem !important;
    /* slightly smaller title */
    margin-bottom: .5rem !important;
  }

  .badge {
    font-size: .65rem !important;
    /* smaller badge text */
    padding: .25rem .5rem !important;
  }

  .card-footer small {
    font-size: .75rem !important;
    /* smaller footer text */
  }
}


/* Mobile for Kickhero */
@media (max-width: 576px) {
  .hero-container .col-md-6 {
    margin-top: 50px !important;
  }

  .kickstart-hero-container {
    width: 95% !important;
  }

  .fs-1 {
    font-size: 1.8rem !important;
  }

  #pwd_e_landing,
  #pwd_e_welcome {
    width: 250px !important;
    height: 200px !important;
  }
}

@media (max-width: 768px) {
  .subtitle-header {
    font-size: 1.5rem;
  }
}

#signBtn {
    white-space: nowrap;
    text-wrap-mode: nowrap !important;
  width: 80px !important;
}

#createAnAccountBtn {
  width: 171px !important;
}


/* Added by Timothy @ 08/20/2025 */
/* Light mode (default) */
.text-highlight {
  color: #212529;
  /* Bootstrap text-dark */
}

/* Light mode */
.text-mode-toggle {
  color: #000 !important;
  /* black */
}


/* End of Addition by Timothy @ 08/20/2025 */

/* Logo safety + consistent sizing */
#register-content .modal-logo {
  max-width: 100%;
  max-height: 70px;
  height: auto !important;
}

/* Keep rows tidy inside custom modal */
#register-content .row {
  margin-left: 0;
  margin-right: 0;
}

/* Label alignment tweaks */
#register-content .col-form-label {
  line-height: 1.25;
}

/* Clickable visibility toggles */
#register-content .toggle-visibility {
  cursor: pointer;
  user-select: none;
}

/* Added by Timothy @ 08/22/2025 */
/* Darkmode Toggle Switch */
/* Wrapper */
.custom-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}


/* Subtle background for guidelines */
#register-content .guidelines {
  background: var(--bs-light, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: .5rem;
}


/* Track (background bar) */
.toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.toggle-track.active {
  background: #188754;
  /* green theme */
}

.toggle-track.active .toggle-thumb {
  transform: translateX(32px);
}

/* End of Darkmode Toggle Switch */


/* Contrast Toggle Switch */
/* Wrapper */
.custom-contrast-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Track (background bar) */
.contrast-toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.contrast-toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.contrast-toggle-track.active {
  background: #188754;
  /* green theme */
}

.contrast-toggle-track.active .contrast-toggle-thumb {
  transform: translateX(32px);
}

/* End of Contrast Toggle Switch */

/* Dyslexia Toggle Switch */
/* Wrapper */
.custom-dyslexia-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Track (background bar) */
.dyslexia-toggle-track {
  width: 60px;
  height: 28px;
  background: #ccc;
  border-radius: 50px;
  position: relative;
  transition: background 0.3s ease;
}

/* Thumb (circle) */
.dyslexia-toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active State */
.dyslexia-toggle-track.active {
  background: #188754;
  /* green theme */
}

.dyslexia-toggle-track.active .dyslexia-toggle-thumb {
  transform: translateX(32px);
}

/* End of Dyslexia Toggle Switch */


/* Added by Timothy @ 08/26/2025 */


/* Added by Allen @09/23/2025 */

/* Added by Allen @09/23/2025 */
.hero-wrap {
  padding: 1rem !important;
}

.hero-title{
  font-weight: 800 !important;
  line-height: 1.1;
  letter-spacing: .2px;
}


.hero-sub {
  max-width: 34rem;
}

.highlight {
  color: #0f7414;
  text-decoration: underline 4px #1f9d39;
  text-underline-offset: .2em;
}

.search-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.search-form-control-lg {
  border: 0 !important;
}

.search-form-control-lg:focus {
  box-shadow: none !important;
}


/* Search submit button (overrides Bootstrap) */
.btn-search{
  background: #0f7414 !important;
  border-color: #1f9d39 !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
  padding: .875rem 1rem !important;
  height: 100% !important;
  border-radius: 0px !important;   /* change to 999px for pill */
  box-shadow: 0 6px 14px rgba(31,157,57,.20) !important;
  transition: transform .12s ease, box-shadow .12s ease !important;
}
.btn-search:hover{
  background: #18812e !important;
  border-color: #18812e !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 18px rgba(31,157,57,.28) !important;
}
.btn-search:active{
  transform: translateY(0) !important;
  box-shadow: 0 4px 10px rgba(31,157,57,.18) !important;
}
.btn-search:focus{
  outline: 0 !important;
  box-shadow: 0 0 0 .25rem rgba(31,157,57,.35) !important;
}
.btn-search:disabled{
  opacity: .7 !important;
  cursor: not-allowed !important;
}




@media (min-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

 /* ==== Events carousel polish ==== */
  .event-carousel { max-width: 560px; margin-inline: auto; }
  @media (min-width: 992px){ .event-carousel { max-width: 640px; } }

  .event-carousel .carousel-inner{
    border-radius: 1rem;           /* nice rounded corners */
    overflow: hidden;              /* clip overlays & images */
  }

  .event-carousel .carousel-item{
    position: relative;            /* enable overlay layer */
    isolation: isolate;            /* keep overlay local */
  }

  .event-carousel .carousel-item img{
    width: 100%;
    aspect-ratio: 16/9;            /* consistent height */
    object-fit: cover;             /* crop nicely */
    display: block;
  }

  /* Contrast overlay + inner shadow ring */
  .event-carousel .carousel-item::after{
    content: "";
    position: absolute; inset: 0;
    background:
      /* bottom gradient for captions */
      linear-gradient(to top, rgba(0,0,0,.58) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,0) 75%),
      /* subtle global darkening */
      rgba(0,0,0,.10);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,.08),        /* thin inner ring */
      inset 0 -110px 130px rgba(0,0,0,.38),   /* bottom inner shadow */
      inset 0  70px  90px rgba(0,0,0,.10);    /* top inner shadow */
    pointer-events: none;
    z-index: 1;                     /* under caption, over image */
  }

  /* Readable captions */
  .event-carousel .carousel-caption{
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1.25rem;
    z-index: 2;                     /* above overlay */
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
  }
  .event-carousel .carousel-caption h5,
  .event-carousel .carousel-caption p { color: #fff; }

  /* Indicators: compact dots with subtle shadow for contrast */
  .event-carousel .carousel-indicators { bottom: .5rem; }
  .event-carousel .carousel-indicators [data-bs-target]{
    width: 8px; height: 8px; border-radius: 50%;
    background-color: rgba(255,255,255,.8);
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
  }
  .event-carousel .carousel-indicators .active{
    background-color: #fff;
  }

 /* Make prev/next controls transparent (no pink bar) */
.event-carousel .carousel-control-prev,
.event-carousel .carousel-control-next{
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 12% !important;            /* nice hit area without big overlay */
}

.event-carousel .carousel-control-prev:hover,
.event-carousel .carousel-control-prev:focus,
.event-carousel .carousel-control-prev:active,
.event-carousel .carousel-control-next:hover,
.event-carousel .carousel-control-next:focus,
.event-carousel .carousel-control-next:active{
  background-color: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* Ensure icons stay white and visible */
.event-carousel{
  --bs-carousel-control-color: #fff;
  --bs-carousel-control-opacity: .9;
  --bs-carousel-control-hover-opacity: 1;
}
.event-carousel .carousel-control-prev-icon,
.event-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

  
  .event-carousel .carousel-control-prev::before,
.event-carousel .carousel-control-next::before{
  content: none !important;
}

/* Default: hide controls (but keep keyboard accessible) */
.event-carousel .carousel-control-prev,
.event-carousel .carousel-control-next{
  opacity: 0 !important;
  pointer-events: none;                 /* no accidental taps/clicks */
  transition: opacity .18s ease;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 12% !important;                /* reasonable hit area when visible */
}

/* Show controls when hovered or any child is focused (keyboard) */
.event-carousel:hover .carousel-control-prev,
.event-carousel:hover .carousel-control-next,
.event-carousel:focus-within .carousel-control-prev,
.event-carousel:focus-within .carousel-control-next{
  opacity: 1 !important;
  pointer-events: auto;
}

/* Keep chevrons crisp */
.event-carousel{
  --bs-carousel-control-color: #fff;
  --bs-carousel-control-opacity: .95;
  --bs-carousel-control-hover-opacity: 1;
}
.event-carousel .carousel-control-prev-icon,
.event-carousel .carousel-control-next-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

/* On touch devices (no hover), always show controls */
@media (hover: none){
  .event-carousel .carousel-control-prev,
  .event-carousel .carousel-control-next{
    opacity: 1 !important;
    pointer-events: auto;
  }
}

/* Hide carousel arrows on mobile (≤ 991.98px, Bootstrap's lg breakpoint) */
@media (max-width: 991.98px){
  .event-carousel .carousel-control-prev,
  .event-carousel .carousel-control-next{
    display: none !important;
  }
  #hero-section-text {
    margin-top: 0px !important;
}
  #hero-section-events {
    margin-top: 4em !important;
}

}

#find-job-btn {
    text-wrap-mode: nowrap;
}
/* Slightly smaller than Bootstrap's modal-xl */
@media (min-width: 1200px){
  .modal-slim { max-width: 800px; } /* adjust to taste: 960–1040px */
}




