@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
  --orange: #d45e16;
}

* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: none;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

*::selection {
  background: var(--orange);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  padding: .1rem ;
}

.heading span {
  font-size: 1.3rem;
  background: rgba(255, 165, 0, 0.2);
  color: var(--orange);
  border-radius: 0.2rem;
  padding: 0.2rem 1rem;
}

.heading span.space {
  background: none;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.8rem 3rem;
  border: 0.2rem solid var(--orange);
  cursor: pointer;
  font-size: 1.7rem;
}

.btn:hover {
  background: rgba(255, 165, 0, 0.2);
  color: var(--orange);
}







/* header styles starts here */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgb(102, 101, 101); */
  background: #B8B8B8;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 9%;
}

header .logo {
  
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
  text-transform: none;
}

header .logo span {
  color: var(--orange);
}

header .navbar a {
  /* color: #fff; */
  color: white;
  font-size: 1.5rem;
  margin: 0 0.8rem;
}

header .navbar a:hover {
  color: var(--orange);
}

header .icons i {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  margin-right: 2rem;
}

header .icons i:hover {
  color: var(--orange);
}

header .search-bar-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: #333;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  z-index: 1001;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar {
  width: 100%;
  padding: 1rem;
  text-transform: none;
  color: #333;
  font-size: 1.7rem;
  border-radius: 0.5rem;
}

header .search-bar-container label {
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
  margin-left: 1.5rem;
}

header .search-bar-container label:hover {
  color: var(--orange);
}

#menu-bar {
  /* color: #fff; */
  color: #383838;
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
  font-size: 3rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  display: none;
}
/* header styles ends here */

/* login form container styles starts here */
.login-form-container {
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 10000;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}



.register-form-container {
  position: fixed;
  top: -120%;
  left: 0;
  z-index: 10000;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}




.login-form-container.active {
  top: 0;
}

.register-form-container.active {
  top: 0;
}




.login-form-container form {
  margin: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  width: 50rem;
}

.register-form-container form {
  margin: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  width: 50rem;
}


.login-form-container form h3 {
  font-size: 3rem;
  color: #444;
  text-transform: none;
  text-align: center;
  padding: 1rem 0;
}

.register-form-container form h3 {
  font-size: 3rem;
  color: #444;
  text-transform: none;
  text-align: center;
  padding: 1rem 0;
}

.login-form-container form .box {
  width: 100%;
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  margin: 0.6rem 0;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  text-transform: none;
}
.register-form-container form .box {
  width: 100%;
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  margin: 0.6rem 0;
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  text-transform: none;
}





.login-form-container form .box:focus {
  border-color: var(--orange);
}

.register-form-container form .box:focus {
  border-color: var(--orange);
}



.login-form-container form #remember {
  margin: 2rem 0;
}

.register-form-container form #remember {
  margin: 2rem 0;
}



.login-form-container form label {
  font-size: 1.7rem;
}

.register-form-container form label {
  font-size: 1.7rem;
}



.login-form-container form .btn {
  display: block;
  width: 100%;
}

.register-form-container form .btn {
  display: block;
  width: 100%;
}



.login-form-container form p {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: #666;
}


.register-form-container form p {
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: #666;
}



.login-form-container form p a {
  color: var(--orange);
}

.register-form-container form p a {
  color: var(--orange);
}

.login-form-container form p a:hover {
  color: #333;
  text-decoration: underline;
}

.register-form-container form p a:hover {
  color: #333;
  text-decoration: underline;
}



.login-form-container #form-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
}

.register-form-container #register-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 5rem;
  color: #fff;
  cursor: pointer;
}
/* login form container styles ends here */

/* home styles starts here */
.home {
  /* min-height: 30vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}

.home .content {
  text-align: center;
}

.home .content h3 {
  padding-top: 20px;
  font-size: 4.5rem;
  color: #fff;
  text-transform: none;
  /* text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1); */
}

.home .content p {
  font-size: 2.5rem;
  /* color: #fff; */
  color: #d45e16;
  padding: 0.5rem 0;
}

.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* .home .landimage-container video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
} */

.home .landimage-container img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 40%;
  width: 100%;
  object-fit: cover;
}







.home .controls {
  padding: 1rem;
  border-radius: 5rem;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  top: 10rem;
}

.home .controls .vid-btn {
  height: 2rem;
  width: 2rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin: 0 0.5rem;
}

.home .controls .vid-btn.active {
  background: var(--orange);
}
/* home styles ends here */

/* book styles starts here */
.book .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.book .row .image {
  flex: 1 1 40rem;
}

.book .row .image img {
  width: 100%;
}

.book .row form {
  flex: 1 1 40rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.book .row form .inputBox {
  padding: 0.5rem 0;
}

.book .row form .inputBox input {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  font-size: 1.7rem;
  color: #333;
  text-transform: none;
}

.book .row form .inputBox h3 {
  font-size: 2rem;
  padding: 1rem 0;
  color: #666;
}
/* book styles ends here */

/* packages styles starts here */
.packages .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.packages .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.packages .box-container .box img {
  height: 25rem;
  width: 100%;
  object-fit: cover;
}

.packages .box-container .box .content {
  padding: 2rem;
}

.packages .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}

.packages .box-container .box .content h3 i {
  font-size: 2rem;
  color: var(--orange);
}

.packages .box-container .box .content p {
  font-size: 1.7rem;
  color: #666;
  padding: 1rem 0;
}

.packages .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--orange);
}

.packages .box-container .box .content .price {
  font-size: 2rem;
  color: #333;
  padding-top: 1rem;
}

.packages .box-container .box .content .price span {
  color: #666;
  font-size: 1.5rem;
  text-decoration: line-through;
}
/* packages styles ends here */

/* services styles starts here */
.services .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.services .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.services .box-container .box i {
  padding: 1rem;
  font-size: 5rem;
  color: var(--orange);
}

.services .box-container .box h3 {
  font-size: 2.5rem;
  color: #333;
}

.services .box-container .box p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}

.services .box-container .box:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
/* services styles ends here */

/* gallery styles starts here */
.gallery .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.gallery .box-container .box {
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border: 1rem solid #fff;
  border-radius: 0.5rem;
  flex: 1 1 30rem;
  height: 25rem;
  position: relative;
}

.gallery .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .box-container .box .content {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  padding-top: 5rem;
}

.gallery .box-container .box:hover .content {
  top: 0;
}

.gallery .box-container .box .content h3 {
  font-size: 2.5rem;
  color: var(--orange);
}

.gallery .box-container .box .content p {
  font-size: 1.5rem;
  color: #fff;
  padding: 0.5rem 0;
}
/* gallery styles ends here */

/* review styles starts here */
.review .review-slider {
  padding-bottom: 2rem;
}

.review .box {
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.review .box img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.review .box h3 {
  color: #333;
  font-size: 2.5rem;
}

.review .box p {
  color: #666;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.review .box .stars i {
  color: var(--orange);
  font-size: 1.7rem;
}
/* review styles ends here */

/* contact styles starts here */
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.contact .row .image {
  flex: 1 1 35rem;
}

.contact .row .image img {
  width: 100%;
}

.contact .row form {
  flex: 1 1 50rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.contact .row form .inputBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputBox input,
.contact .row form textarea {
  width: 49%;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  background: #f7f7f7;
  text-transform: none;
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
  width: 100%;
}
/* contact styles ends here */

/* brand section starts here */
.brand-container {
  text-align: center;
}
/* brand section ends here */


/* footer styles starts here */
.footer {
  background: #B8B8B8;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
  flex: 1 1 25rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: 0.7rem 0;
  color: #fff;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: 0.7rem 0;
  color: #eee;
}
.footer .box-container .box a {
  /* display: block; */
  font-size: 1.5rem;
  padding: 0.7rem 0;
  color: #eee;
}

.footer .box-container .box a:hover {
  color: var(--orange);
  text-decoration: none;
}

.footer .credit {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
  border-top: 0.1rem solid rgba(225, 225, 225, 0.2);
}

.footer .credit span {
  color: var(--orange);
}
/* footer styles ends here */

/* media queries */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }

}

@media (max-width: 991px) {
  header {
    padding: .5rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #menu-bar {
    display: initial;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #9b9898;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a {
    display: flex;
    border-radius: 0.5rem;
    padding: 1.5rem;
    /* margin: 1.5rem 0; */
    /* background: #222; */
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .heading span {
    font-size: 2.5rem;
  }

  .contact .row form .inputBox input {
    width: 100%;
  }
}



/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(102, 101, 101);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #d45e16}





/* qualification Table */

.qualTable{
  display: flex;
  justify-content: center;
  /* align-items: center; */
  
}

table, th, td {
  /* border: .1px solid #d45e16; */
}



/* qualification add new button */


.qualificationbtn {
  display: inline-block;
  margin-top: 1rem;
  /* background: yellow; */
  color: #fff;
  padding: 0.8rem 3rem;
  /* border: 0.2rem solid var(--orange); */
  cursor: pointer;
  font-size: 1.7rem;
}

.qualificationbtn:hover {
  /* background: rgba(255, 165, 0, 0.2); */
  color: var(--orange);
}




.portfolioWrap{
  display: flex;
  flex-direction:column;
  justify-content: center;
  border: 1px solid #222;
  width: 100%;
}





/* *********** slide*********************************** */






* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  /* max-width: 1000px; */
  max-width: 100%;
  position: relative;
 margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
 
  font-size: 36px;
  padding: 8px 12px;
  position: absolute;
  bottom: 250px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  /* color: #f2f2f2; */
  color: red;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  /* background-color: #717171; */
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4.0s;
  animation-name: fade;
  animation-duration: 4.0s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px;
  color: white;
bottom: 50px;}
}

/* **** Me * * * * * */


@media only screen and (max-width: 200px) {
  .text {font-size: 11px;
  color: white;
bottom: 50px;}
}

@media only screen and (max-width: 400px) {
  .text {font-size: 11px;
  color: white;
bottom: 50px;}
}

@media only screen and (max-width: 500px) {
  .text {font-size: 11px;
  color: white;
bottom: 50px;}
}


@media only screen and (max-width: 700px) {
  .text {font-size: 11px;
  color: white;
bottom: 50px;}
}


/* ******    ndza******* */

.employerLink{
  text-decoration-line: underline;
  /* color: yellow;
  background-color:#d45e16;
   */
}


/* *****ndza  try pop up for add Job*/

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  /* position: fixed; */
  /* bottom: 23px;
  right: 28px; */
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  /* right: 15px; */
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

.open-button:hover{
  color: #d45e16;
}






/* ******************multi step form   ************** ********** */

.jobContainer{
 width: 450px;
 height: 550px;
 margin:8% auto;
 background-color: #fff;
 border-radius: 5px;
 /* font-size: 10px; */
 position: relative;
 overflow: hidden ;
}

h3{
  /* text-align: center; */
  font-weight: bold;
  margin-bottom: 0px;
  color: #d45e16;
}
 
  /* there is issue of inputs not coming one after another and not being inside the container */
.jobContainer form{
  width: 370px;
  position: absolute;  
  top: 50px;
  left: 40px;
  transition: 0.5s;

}

form input{
  /* width: 100px; */
  width: 100%;
  padding: 10px 5px;
  margin: 5px 0;
  font-size: 11px;
  border: 0;
  border-bottom: 1px solid;
  outline: none;
  background:transparent; 
}

::placeholder{
 color: #777; 
}

.btn-box{
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

form button{
  width: 110px;
  height: 35px;
  margin: 0 10px;
  background: linear-gradient(to right, #9c6c0c, #ffad06 );
  border-radius: 30px;
  border: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
}


/* **** also display wrong and things not as is */


#Form2{
  left:480px;
}

#Form3{
  left: 480px;
}

#Form4{
  left: 480px;
}


/* *** end of as is  */

/* ******line under step 1 step 2 and so on ***** */
.step-row{
  width: 480px;
  height: 40px;
  /* font-weight: bolder; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  box-shadow: 0 -1px 5px -1px #000;
  position: relative;
}

.step-col{
  width: 120px;
  text-align: center;
  font-size: 17px;
  font-weight: bolder;
  /* color: #2980b9; */
  color: #333;
  position: relative;
}

#progress{
  position: absolute;
  height: 100%;
  width:120px;
  background: linear-gradient(to right, #9c6c0c, #ffad06 );
  transition: 1s;

}

#progress::after{
  content: '';
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  right: -20px;
  top: 0;
  border-left: 20px solid #ffad06 ;

}









/* ******  ndzalama drop down on signup link *//* Style the dropdown button */


/* Style the dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the text that toggles the dropdown */
.dropdown span {
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
}

/* Style the dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background-color: #333;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0,0,0,.15);
  padding: 10px;
}

/* Style the links inside the dropdown */
.dropdown-menu a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

/* Change the background color of the dropdown links on hover */
.dropdown-menu a:hover {
  /* background-color: yellow; */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}





/* *****************   register as company button at home page */

.regAsCompanyButton{
  
  font-size: large;
  font-weight: bold;
  background-color: #d45e16;
  padding: 10px 10px;

}

.regAsCompanyButton{
  
    position: relative;
    right: -100%;
    animation: slide-in 3.5s forwards;
  
}
@keyframes slide-in {
  100% {
    right: 0;
  }
}



/* ********   pricing table for subscriber ************* */


.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 960px;
}

.pricing-plan {
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  flex-basis: calc(33% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.pricing-plan:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.pricing-plan.recommended {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.pricing-plan h2 {
  color: #666;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-plan p.price {
  color: #d45e16;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}

.pricing-plan p.price span {
  font-size: 16px;
}

.pricing-plan ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

.pricing-plan li {
  color: #999;
  font-size: 16px;
  list-style-type: none;
  padding: 10px 0;
  position: relative;
}

.pricing-plan li:before {
  content: "\2713";
  color: #d45e16;
  font-size: 16px;
  position: absolute;
  left: -24px;
  top: 10px;
}

.pricing-plan button {
  background-color: #d45e16;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.pricing-plan button:hover {
  background-color: #fff;
  color: #d45e16;
  border: 2px solid #d45e16;
}

@media (max-width: 768px) {
  .pricing-plan {
    flex-basis: calc(50% - 30px);
  }
}

@media (max-width: 480px) {
  .pricing-table {
    flex-direction: column;
  }
  
  .pricing-plan {
    flex-basis: 100%;
  }
}



/* ************8   SUBCRIBERhOME.HTML CSS */

.subs-content {
  margin: 20px;
  padding: 50px;

 
  
}

.subs-welcome-message {
  font-size: 24px;
  margin-bottom: 10px;
}

.subs-jobs-heading {
  color: #d45e16; /* Main color */
  font-size: 20px;
  margin-bottom: 10px;
}

.subs-posted-jobs {
  margin-top: 20px;
}

.subs-job {
  padding: 10px;
  background-color: #fff; /* White job card background */
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow effect */
  transition: box-shadow 0.3s ease; /* Hover transition effect */
}

.subs-job:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hover shadow effect */
}

.subs-job-title {
  color: #d45e16; /* Main color */
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease; /* Hover transition effect */
}

.subs-job-title:hover {
  color: #933c0f; /* Hover color */
}

.subs-job-details {
  font-size: 14px;
  color: #666; /* Grey text color */
}

.subs-job-details span {
  font-weight: bold;
}


/* *************   incorrect login details ******* ******* */

/* .incorrectCred{
  color: crimson;
  text-align: center;
} */

.incorrectCred {
    color: #b00020;          /* clear, dark red for error */
    font-size: 14px;          /* readable text */
    font-weight: 500;         /* slightly bold for emphasis */
    text-align: center;       /* centered for clarity */
    margin: 10px 0;           /* spacing from other elements */
    font-family: Arial, sans-serif; /* clean, readable font */
}




/* successful application submission */

.submitted-application-message {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 50px auto;
  padding-top: 1000px;
  padding: 20px;
  font-size:25px;
}


.submitted-application-message a {
  color: #933c0f;
}


.submitted-application-message a:hover {
  color: rgb(35, 31, 31) /* Color on hover */
}





/* user name display when logged in */

/* Base Styles */
.user-menu {
  display: flex;
  /* align-items: center; */
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.additional-links {
  display: flex;
  align-items: center;
  margin-right: 20px; /* Adjust as needed to separate the links from the user menu */
}

.user-avatar {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-right: 10px;
  position: relative;
}

.user-avatar-circle {
  width: 69px;
  height: 69px;
  background-color: #555;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dropdown-icon {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px; /* Adjust the font size to make the arrow smaller */
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  border-radius: 5px;
  flex-direction: column;
  padding: 5px;
}

.user-avatar:hover .user-dropdown {
  display: flex;
}

.user-fullname {
  font-weight: normal;
  margin-bottom: 5px;
}

.user-dropdown a {
  color: #fff;
  text-decoration: none;
  padding: 5px;
  display: block;
}

/* ... (previous CSS code) ... */

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column; /* Display elements in a column */
  }

  .additional-links {
    display: flex;
    flex-direction: column; /* Display links vertically on top of each other */
    align-items: flex-start; /* Align links to the left */
    margin: 10px 0; /* Add margin between links */
  }

  .user-avatar {
    margin-right: 0; /* Remove right margin for avatar */
  }

  .user-dropdown {
    top: auto;
    bottom: 100%; /* *********Was initialy -100******* Position dropdown below the avatar */
    left: 0;
  }

  .user-avatar:hover .user-dropdown {
    display: flex;
  }
}









/* ********    UPLOAD CV AREA */

.upload-files {
  display: block;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
}

.file-section {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  background-color: #d45e16;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  user-select: none;
  transition: background-color 0.3s;
}

.custom-file-upload input[type="file"] {
  display: none;
}

.file-name {
  margin-top: 5px;
  font-weight: bold;
}

.upload-button {
  margin-top: 10px;
  background-color: #d45e16;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
}

.upload-button:hover {
  background-color: green;
}



/* *********BURSARY DETAILS PAGE DESIGN */



.Bursarylogo img {
  position: relative;
  max-width: 200px;
  margin: 20px 0;
}

.bursary-name {
  color: #d45e16; /* Updated color */
  margin: 20px 0;
  text-align: center;
}

.details-section {
  text-align: center;
}

.detail-label {
  font-weight: bold;
}

.bursary-description {
  margin-top: 20px;
  padding: 0 20px;
  text-align: center;
}

.bursary-apply-button {
  background-color: #d45e16; /* Main color */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px auto; /* Center horizontally */
  display: block; /* Make the button a block-level element for centering */
}


.bursary-apply-button:hover {
  background-color: #b45112; /* Darker shade on hover */
}



/* ****user details panel/ details of user from captured from sign up */

.profile-panel {
  max-width: 600px; /* Increase the max-width */
  margin: 0 auto;
  padding: 20px;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.profile-grid {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr); /* Adjust the column count */
  grid-gap: 10px;
  text-align: left;
  margin-bottom: 20px;
}

.profile-details {
  text-align: left;
}

.profile-details label {
  font-weight: bold;
}

/* .profile-details p {
  margin: 0;
} */

.edit-button {
  display: block;
  width: 100%;
  background-color:#d45e16;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.edit-button:hover {
  background-color: #b45112;
}



/* demographics Edit page  */



#demContainer {
  max-width: 800px;
  margin: 20px auto;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden; /* Ensures that the container fully contains floated elements */
}

#demInstructions {
  float: center;
  width: 100%;
}

#demFormFields {
  float: right;
  width: 50%;
}

.demLabel {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}

.demRadio label,
.demCheckbox label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.formGroup {
  margin-bottom: 16px;
}

/* input[type="text"],
select {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
} */

.demCheckbox input[type="checkbox"],
.demRadio input[type="radio"] {
  margin-right: 8px;
}

.demForm-buttons {
  margin-top: 16px;
}

/* input[type="submit"],
input[type="reset"] {
  background-color: #d45e16;
  color: white;
  padding: 24px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 19px;
} */


input[type="submit"], input[type="reset"] {
  background-color: #d45e16;
  color: white;
  padding: 12px 30px; /* Reduce vertical padding */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  line-height: 1.2; /* Ensures text is properly centered */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}





input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #b45112;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
  #demInstructions,
  #demFormFields {
    width: 100%;
    float: none;
  }
}


/* upload drivers licence */

.licenceUpload {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.licenceLabel {
  font-size: 16px;
  margin-bottom: 8px;
}

.licenceInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.licenceInput:hover {
  border-color: #666;
}

.licenceInput:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.licenceButton {
  padding: 10px 15px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.licenceButton:hover {
  background-color: #2980b9;
}



/* ************form Select */


.form-select {
  height: 40px;
  width: 100%;
}
.form-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #f9f9ff;
  padding-left: 45px;
  padding-right: 40px;
  width: 100%;
}
.form-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px;
}
.form-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 45px;
}
.form-select .nice-select .list .option.selected {
  color: #fff;
  background: transparent;
}
.form-select .nice-select .list .option:hover {
  color: #fff;
  background: transparent;
}
.form-select .current {
  margin-right: 50px;
  font-weight: 300;
}
.form-select .nice-select::after {
  right: 20px;
}





/****** hiding signup image on smaller screens ***********/


.signup-img {
  display: block;
}

/* Media query for smaller screens (e.g., mobile devices) */
@media (max-width: 767px) {
  .signup-img {
      display: none; /* Hide the image on smaller screens */
  }

  /* You can also hide other elements on mobile if needed */
  .signup-content {
      width: 100%; /* Adjust the width of the content on smaller screens */
  }
}



/* ************         new pagination with media queries  */

/* Default styles for desktop */
.pagination {
  margin-top: 120px;
  text-align: center;
}

.pagination button {
  color: #b45112;
  background-color: #ffffff;
  border: 1px solid #b45112;
  padding: 8px 12px;
  margin: 0 2px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.pagination button.active {
  background-color: grey;
  color: #ffffff;
}

.pagination button:hover {
  background-color: #b45112;
  color: #ffffff;
}

.pagination button[disabled] {
  color: #999999;
  border-color: #999999;
  cursor: not-allowed;
}

.pagination::after {
  content: "";
  clear: both;
  display: table;
}

/* Media query for screens smaller than 600px (mobile view) */
@media (max-width: 600px) {
  .pagination {
    margin-top: 50px; /* Reduce margin for smaller screens */
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Make buttons wrap to the next line if they don't fit */
  }

  .pagination button {
    padding: 6px 8px; /* Reduce padding to make buttons smaller */
    margin: 5px; /* Add margin to create space between wrapped buttons */
    font-size: 14px; /* Smaller font size for mobile */
  }
}

/*   End pagination with media queries. */





/* *************    COLOURFULL SUCCESSFULL SUBMISSION */

.success-message {
  text-align: center;
  margin-top: 20vh;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  opacity: 0.7;
  animation: confetti-fall 5s infinite ease-in-out;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}






/*  ** *********************    CV SEARCH CSSS */

/* Main Container */
.cvSearchContainer {
  align-items: center;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cvSearchTitle {
  color: #d45e16;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

.cvSearchDescription {
  margin-bottom: 20px;
  font-size: 14px;
  color: #d45e16;
}

/* Search Bar Wrapper */
.cvSearchBarWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* Floating Label */
.cvSearchFieldLabel {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #fff;
  font-size: 12px;
  color: #777;
  padding: 0 5px;
  z-index: 1;
  line-height: 1;
  transform: translateY(50%);
}


/* ******centering cv search container */
.cvSearchContainer {
  max-width: 800px; /* Adjust as necessary */
  margin: 0 auto; /* Centers the container horizontally */
  padding: 20px;
  text-align: center;
}




/* Search Bar */
.cvSearchBar {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  height: 40px; /* Reduced height */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.cvSearchField {
  padding: 8px; /* Adjusted padding to match smaller height */
  border: none;
  outline: none;
  font-size: 14px;
  flex-grow: 1;
  height: 100%; /* Ensure it matches the container height */
}

.cvSearchDropdown {
  padding: 8px;
  border: none;
  background-color: #d3d0d0;
  outline: none;
  font-size: 14px;
  width: 180px;
  border-left: 1px solid #ddd;
  height: 100%; /* Match container height */
}

.cvSearchButton {
  padding: 0 15px; /* Adjusted padding to match smaller height */
  border: none;
  background: #d45e16;
  color: #fff;
  font-size: 14px;
  font-weight:600;
  cursor: pointer;
  transition: background 0.3s;
  height: 100%; /* Match container height */
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .cvSearchBar {
    flex-direction: column; /* Stack the search bar items */
    height: auto; /* Adjust height to fit content */
    border-radius: 8px;
  }

  .cvSearchField {
    width: 100%; /* Full width for mobile */
    border: none; /* No inner border */
    margin-bottom: 5px; /* Add spacing between elements */
  }

  .cvSearchDropdown {
    width: 100%; /* Full width for mobile */
    border: none;
    margin-bottom: 5px; /* Add spacing */
  }

  .cvSearchButton {
    width: 100%; /* Full width for mobile */
    height: 40px; /* Adjust height for better tap area */
  }
}


/* cv search results */

.cvSearchResultsContainer {
  margin: 2rem auto;
  width: 90%;
  max-width: 1000px;
}

.cvSearchResultsTitle {
  color: #d45e16;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.cvSearchResultsTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #ddd;
}

.cvSearchResultsTable thead th {
  background-color: #d45e16;
  color: #fff;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid #fff;
}

.cvSearchResultsTable tbody tr {
  border-bottom: 1px solid #ddd;
}

.cvSearchResultsTable tbody tr td {
  padding: 0.75rem;
  vertical-align: middle;
  font-size: 14px;
}

.cvSearchToggleDetails {
  font-weight: bolder;
  color: #d45e16;
  font-size: 12px;
  margin-right: 0.5rem;
  cursor: pointer;
}

.cvSearchToggleDetails:hover {
  color: green;
}

.cvSearchDetailsRow {
  display: none;
}

.cvSearchDetailsContent {
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.cvSearchDownloadLink {
  color: #d45e16;
  text-decoration: none;
  font-weight: bold;
}

.cvSearchDownloadLink:hover {
  text-decoration: underline;
}


/* ***********CV FILTER BY  */

.cvFilterContainer {
  margin: 20px auto;
  text-align: center;
  padding: 5px;
  border: 0.1px solid #d45e16;
  border-radius: 8px;
  max-width: 400px;
  background-color: #fdfdfd;
}

.cvFilterTitle {
  font-size: 1.5rem;
  color: #d45e16;
  margin-bottom: 10px;
}

.cvFilterBarWrapper {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.cvFilterDropdown {
  padding: 8px 12px;
  font-size: 12px;
  border: 2px solid #d45e16;
  border-radius: 4px;
  width: 250px;
}

.cvFilterButton {
  padding: 8px 15px;
  font-size: 1rem;
  font-size: larger;
  background-color: #d45e16;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cvFilterButton:hover {
  background-color: #b44912;
}


/* **************  new CV search  **************/

.newSearchCVCard {
  background: #f8f9fa; /* Light gray background */
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newSearchCVTitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #343a40; /* Dark gray for text */
}

.newSearchCVForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newFormGroup {
  display: flex;
  flex-direction: column;
}

.newSearchCVLabel {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  color: #495057; /* Slightly lighter gray for labels */
}

.newSearchCVInput,
.newSearchCVDropdown {
  padding: 10px;
  border: 1px solid #ced4da; /* Subtle border color */
  border-radius: 5px;
  font-size: 12px;
  background: #ffffff;
  color: #495057;
}

.newSearchCVInput:focus,
.newSearchCVDropdown:focus {
  outline: none;
  border-color: #d45e16; /* Highlight color when focused */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.newSearchCVCheckbox {
  margin-right: 10px;
}

.newCheckboxGroup {
  display: flex;
  align-items: center;
}

.newSearchCVButton {
  padding: 10px 20px;
  background: #d45e16; /* Primary blue button */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.newSearchCVButton:hover {
  background: #d45e16; 
}



/* *******new table for cv results********** */

  
  .new-cv-results-container {
    width: 850px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }



  .new-cv-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }

  

  .new-cv-table th, .new-cv-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    font-size: 12px;
  }

  .new-cv-table th {
    background-color: #f8f9fa;
    color: #333;
  }

  .new-toggle-btn {
    background-color: #d45e16;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }

  .new-toggle-btn:hover {
    background-color: #0056b3;
  }

  .new-details-row {
    display: none;
    background-color: #f1f1f1;
  }

  .new-details-content {
    padding: 10px;
    margin: 2px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 10px; /* Curvy corners */
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for distinct appearance */
  }

  .new-download-link {
    color: #d45e16;
    text-decoration: none;
  }

  .new-download-link:hover {
    text-decoration: underline;
  }


  /* **************     new employer dashboard where they see posted jobs */

  .new-employer-dashboard {
    width: 900px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  /* Header */
  .new-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .new-dashboard-header h2 {
    font-size: 1.5rem;
    color: #333;
  }
  
  .new-post-job-btn {
    background-color: #d45e16;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .new-post-job-btn:hover {
    background-color: #a89025;
  }
  
  /* Search Bar */
  .new-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .new-search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
  }
  
  .new-search-container input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* Add space for the button on the right */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .new-search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .new-search-container button:hover {
    background-color: #beb877;
  }






  
  /* Job Table  UNDER subscriberHome.html  */
  .new-job-list-container {
    margin-top: 20px;
  }
  
  .new-job-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  
  .new-job-table th,
  .new-job-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
  }
  
  .new-job-table th {
    background-color: #faf9f8;
    color: #333;
    font-weight: bold;
  }
  
  .new-job-table td {
    color: #555;
  }
  
  .new-job-table th,
  .new-job-table td {
    font-size: 12px;
  }
  
  .new-job-table td {
    white-space: normal;
  }
  
  /* View Applications Button */
  .new-view-applications-btn {
    background-color: #d45e16;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .new-view-applications-btn:hover {
    background-color: #218838;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .new-employer-dashboard {
      width: 95%;
    }
  
    .new-job-table th,
    .new-job-table td {
      padding: 8px;
      font-size: 11px;
    }
  
    .new-post-job-btn {
      font-size: 0.9rem;
      padding: 8px 12px;
    }
  }




  /* ****************   HIRING CANDIDATES/ NEW HIRING OR APLLICATION PROCESS ***************** */

  .new-hiring-container {
    max-width: 850px;
    margin: auto;
    background: #fff;
    font-size: 14px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.new-hiring-steps ul {
    list-style-type: none;
    padding: 0;
}

.new-hiring-steps li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.completed {
    color: green;
    font-weight: bold;
}

.current {
    color: #d45e16;
    font-weight: bold;
}

.new-action-btn {
    display: inline-block;
    background: #d45e16;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.new-action-btn.reject {
    background: #c0392b;
}



/*********** HR Notes Container */
.new-hr-notes {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Tabs (Headings) */
.new-notes-tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
  
}

.new-notes-tab {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  font-weight:500;
  color: #090a0a;
  cursor: pointer;
  transition: 0.3s;
}

.new-notes-tab.active {
  border-bottom: 3px solid #d45e16;
  font-weight: bolder;
  color: #d45e16;
}

/* Notes Textarea */
.new-notes-text {
  width: 100%;
  height: 120px;
  display: none;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.new-notes-text.active {
  display: block;
}

/* Save Button */
.new-save-notes {
  background-color: #d45e16;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}




/* **** togle to view and edit user profile and Demographics */


.new-toggle-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.newEditToggle {
  width: 300px;
  border: 1px solid #d45e16;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.newEditToggle button {
  width: 100%;
  background: #d45e16;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: bold;
}

.new-toggle-content {
  display: none;
  padding: 10px;
  background: #f9f9f9;
  border-top: 1px solid #d45e16;
}

@media (max-width: 768px) {
  .new-toggle-container {
      flex-direction: column;
      align-items: center;
  }

  .newEditToggle {
      width: 90%; /* Makes them stack properly */
  }
}




/* NAME ON HEADER INSTEAD OF THE AVATOR */

/* User Name as Link */
.user-name-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1px; /* Adjust spacing */
  cursor: pointer;
  font-weight: bold;
  color: rgb(9, 9, 84); /* Adjust color if needed */
  font-size: 17px;
  padding: 5px 5px;
}

/* Hover Effect */
.user-name-dropdown:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Dropdown Styling */
.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #a5a3a3;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  text-align: left;
  z-index: 100;
}

/* Show Dropdown on Hover */
.user-name-dropdown:hover .user-dropdown {
  display: block;
}

/* Dropdown Links */
.user-dropdown a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.user-dropdown a:hover {
  /* background: #f2f2f2; */
}



/* Mobile Fix: Allow Click Instead of Hover */
@media (max-width: 768px) {
  .user-name-dropdown:hover .user-dropdown {
      display: none; /* Disable hover effect on mobile */
  }

  .user-name-dropdown.active .user-dropdown {
      display: block; /* Show dropdown when active */
  }
}



/* *****   APPLY BUTTON */

.applyButton {
  background-color: #d45e16; /* Primary orange color */
  color: white;
  padding: 4px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
}

.applyButton:hover {
  background-color: #b14d12; /* Darker shade for hover effect */
  transform: scale(1.05); /* Slight zoom effect */
}

.applyButton:active {
  transform: scale(0.98); /* Slight press effect */
}

.applyButton:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}





/* *****************   KILLER QUESTIONS CSS ******************************/

/* Killer Questions Form Styling */
.z83killerQuestions-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.z83killerQuestions-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

/* Form Fields */
.z83killerQuestions-field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.z83killerQuestions-field label {
  font-weight: bold;
  margin-bottom: 5px;
}

.z83killerQuestions-field select,
.z83killerQuestions-field textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

/* Inner shadow effect when focused */
.z83killerQuestions-field select:focus,
.z83killerQuestions-field textarea:focus {
  border-color: #007bff;
  box-shadow: inset 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* Submit Button */
.z83killerQuestions-submit {
  background: #007bff;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s ease-in-out;
}


.z83killerQuestions-submit:hover {
  background: #0056b3;
}









/* *******new demographics edit css */
/* Wrapper */
/* Base container styles */

/* Container for logo and intro message */
.demographicsEdit-pic-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 25px;
  background-color: #f9fcff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(51, 153, 204, 0.2);
}

.demographicsEdit-pic-container img {
  max-width: 160px;
  height: auto;
  margin-bottom: 12px;
}

.demographicsEdit-pic-container .regMessage {
  width: 90%;
  background: #e6f0fa;
  border-left: 5px solid #d45e16;
  padding: 12px 15px;
  font-size: 16px;
  line-height: 1.4;
  color: #23475a;
  text-align: left;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Form container */
#demFormFields {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

#demFormFields h2 {
  font-weight: 700;
  font-size: 28px;
  color: #19627a;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Form Groups */
.demographicsEdit-formGroup {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

/* Labels */
.demographicsEdit-label {
  font-size: 17px;
  font-weight: 600;
  color: #2a4158;
  margin-bottom: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Required star */
.demographicsEdit-label .required {
  color: #d45e16;
  margin-left: 6px;
  font-weight: 700;
}

/* Checkbox aligned to right */
.demographicsEdit-checkbox-right {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  cursor: pointer;
}

.demographicsEdit-checkbox-right input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Text Inputs */
.demographicsEdit-formGroup input[type="text"],
.demographicsEdit-formGroup input[type="file"] {
  padding: 9px 12px;
  font-size: 16px;
  border: 1.6px solid #b0bccf;
  border-radius: 6px;
  color: #1d2a43;
  transition: border-color 0.25s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.demographicsEdit-formGroup input[type="text"]:focus,
.demographicsEdit-formGroup input[type="file"]:focus {
  outline: none;
  border-color: #d45e16;
  box-shadow: 0 0 5px rgba(51, 153, 204, 0.4);
}

/* File inputs smaller height */
.demographicsEdit-inputFile {
  padding: 4px 10px;
  font-size: 15px;
}

/* Dropdown placeholders */
#ddlUDGender,
#ddlUDGrade,
#ddlUDHealth,
#ddlUDNotice {
  max-width: 100%;
  border: 1.5px solid #a3b1cc;
  border-radius: 7px;
  padding: 10px 15px;
  font-size: 16px;
  color: #d45e16;
  background-color: #f8fcff;
  box-sizing: border-box;
  min-height: 40px;
}

/* Driver's License Code container toggle */
#driversCodeContainer input[type="text"] {
  margin-bottom: 15px;
}

/* Buttons */
.demographicsEdit-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.demographicsEdit-buttons input[type="submit"],
.demographicsEdit-buttons input[type="reset"] {
  background-color: #d45e16;
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  box-shadow: 0 4px 8px rgba(51, 153, 204, 0.3);
}

.demographicsEdit-buttons input[type="reset"] {
  background-color: #a0b7ce;
}

.demographicsEdit-buttons input[type="submit"]:hover {
  background-color: #267ab7;
}

.demographicsEdit-buttons input[type="reset"]:hover {
  background-color: #8ba0b7;
}

/* Responsive */
@media (max-width: 640px) {
  #demFormFields {
    padding: 20px 15px;
  }
  
  .demographicsEdit-pic-container .regMessage {
    width: 100%;
    font-size: 15px;
  }
  
  .demographicsEdit-label {
    font-size: 15px;
  }
  
  .demographicsEdit-buttons input[type="submit"],
  .demographicsEdit-buttons input[type="reset"] {
    font-size: 15px;
    padding: 10px 24px;
  }
}




.demographicsEdit-selectWrapper {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #f8fcff;
  margin-top: 5px;
}

.demographicsEdit-dropdownPlaceholder {
  color: #666;
  font-size: 14px;
}
