/************************************************Navbar Start*************************************/
body {
      font-family: 'Poppins', sans-serif;
      
      height: 100vh;
      margin: 0;
    }

/* Theme Color Utility */
.colorTheme {
  color: #ffffff;
  background: #73a008;
  border-color: #73a008;
}

/* Navbar Flex Utilities */
.nav_d_flex_end {
  display: flex;
  justify-content: end;
  align-items: center;
}

.nav_d_flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Fixed */
.navbar_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  /*background: #c5d0d1bf;*/
  /*#d6d5c9*/
  /*background-color: #000000;*/
  background-color: #111;
  transition: background-color 0.3s ease;
}
.navbar_fixed.scrolled {
  background-color: #000000bf; /* semi-transparent black */
}

/* Mobile Hamburger Icon */
.menu-toggle {
  padding: 0 16px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Navigation Element */
.nav_element {
  padding: 0 12px;
  cursor: pointer;
}

.nav_element a {
  /*color: #000;*/
  /*color: #d6c9c9;*/
  color: #d6d5c9;
  text-decoration: none;
  font-weight: 500;
  border-radius: 35px;
}

/* Blog Button Special Style */
.blog_btn {
  padding: 9px 14px;
  background: #4cb79e;
  border-radius: 20px;
  color: #fff;
}

/* Account Dropdown */
.custom-account-dropdown {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  cursor: pointer;
}

.account-toggle {
  cursor: pointer;
  padding: 8px 15px;
  background: #f1f1f1;
  color: #444;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s;
}

.account-toggle:hover {
  background-color: #e0e0e0;
}

.account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 5px 0 0 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
  min-width: 180px;
}

.account-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.account-menu li a:hover {
  background-color: #f5f5f5;
}

.account-menu li div {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.account-menu li div:hover {
  background-color: #f5f5f5;
}
.account-menu .divider {
  border-top: 1px solid #ddd;
  margin: 6px 0;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 90px;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .nav_element {
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.mobile-nav .nav_element a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

/* Overlay for mobile nav */
.mobile-overlay {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  display: none;
}

.mobile-overlay.active {
  display: block;
}



    

/************************************************Navbar End*************************************/

 .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  margin-bottom: 10px;
  position: relative;
  padding: 6px 0;
  height: 34px;
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLoop 20s linear infinite; /* ⏳ smooth + slow */
  animation-delay: 1s; /* 🕐 start after 1 second */
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content a,
.marquee-content span {
  margin-right: 20px;
  text-decoration: none;
  color: #215e09;
  font-weight: 500;
  font-size: 15px;
}

.marquee-icon {
  position: absolute;
  top: 0px;
  width: 35px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background: #f4c10f;
  padding: 6px 10px;
  z-index: 1;
}

.marquee-icon i {
  margin-right: 6px;
}

.marquee-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  color: #0000001a;
  z-index: 1;
  pointer-events: none;
}

/* Fixed smooth full-width scroll */
@keyframes scrollLoop {
  0% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-80%);
  }
}


  /*@keyframes scrollLoop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}*/



/*  various function */

.toolbox-wrapper {
  border-left: 5px solid #ffe109;
  border-right: 5px solid #ffe109;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.tool-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.tool-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  opacity: 0.9;
}

.tool-btn-custom {
  background: #000;
  color: #ffe109;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid transparent;
}

.tool-btn-custom:hover {
  background: #ffe109;
  color: #000;
  border-color: #000;
  text-decoration: none;
}

/*modal layout */

.modal-content.custom-modal {
  border-radius: 14px;
  background: #fff;
  border: 2px solid #ffe109;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 28px 24px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  color: #000;
}

/* Title */
.custom-modal .modal-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

/* Inputs */
.custom-modal .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 14px;
  transition: 0.2s ease;
}

.custom-modal .form-control:focus {
  border-color: #ffe109;
  box-shadow: 0 0 0 4px rgba(255, 225, 9, 0.3);
  outline: none;
}

/* Buttons */
.custom-modal .btn-yellow,
.custom-modal .btn-yellow-alt {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  background-color: #ffe109;
  color: #000;
  transition: 0.3s ease-in-out;
}

.custom-modal .btn-yellow:hover {
  background-color: #e6c200;
}

.custom-modal .btn-yellow-alt {
  background-color: black;
  color: #ffe109;
  margin-top: 8px;
}

.custom-modal .btn-yellow-alt:hover {
  background-color: #1a1a1a;
}

/* Result */
.custom-modal .result {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: #000;
}

/* Close button */
.custom-modal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  font-size: 22px;
  color: #000;
  border: none;
}


/*navbar edit */


/*Calender css */

.calendar-btn {
  background: #fff;
  border: 2px solid #ffd700;
  color: #000000;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
}

.calendar-popup {
  display: none;
  position: fixed; /* Use fixed to stay centered in the viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centering magic */
  z-index: 1000;
  /*background: #3c3939;*/
  border: 1px solid #ccc;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: fit-content;
  max-width: 90vw;
  /*background: linear-gradient(135deg, #3c3939, #1f1e1e, #000000);*/
  background: linear-gradient(135deg, #3c393999, #1f1e1ed9, #000000cf);
}


.calendar-popup .calendar-header {
  text-align: center;
  font-weight: bold;
/*  margin-bottom: 10px;*/
}

.calendar-popup .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-popup .calendar-day {
  padding: 8px;
  font-size: 14px;
}

.calendar-popup .today {
  background-color: #000000;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}

.saved {
  color: #03f039 !important; /* Green shade */
}

.icon-pulse {
  animation: pulse 0.5s ease;
}



@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.calendar-day.highlight {
  background-color: #28a745;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
}

.calendar-day.today-last-day {
  background-color: #dc3545;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000; /* Black background */
  color: #f4c10f;   /* Yellow shade for text */
  padding: 6px 12px;
  font-weight: bold;
}

.calendar-nav button {
  background: #f4c10f; /* Yellow shade */
  color: #000;         /* Black text */
  border: none;
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.calendar-nav button:hover {
  background: #ffdd33; /* Lighter yellow on hover */
}

.calendar-header {
  font-size: 18px;
}

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%< signup >%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */

.open-modal-btn {
      background: #f4c10f;
      color: #000;
      padding: 12px 24px;
      border: none;

      font-size: 13px;
      cursor: pointer;
      font-weight: 500;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0px; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1060;
      justify-content: center;
      align-items: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1070;
    }

    .modal-content h2 {
      text-align: center;
      margin-bottom: 20px;
      font-weight: 600;
      color: #000;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      display: block;
      font-weight: 500;
      margin-bottom: 6px;
      color: #000;
      font-size: 14px;
    }

    .form-group input {
      width: 100%;
      padding: 10px 12px;
      padding-right: 38px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    .toggle-password {
      position: absolute;
      right: 12px;
      top: 66%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #888;
    }


    .submit-btn {
      width: 100%;
      padding: 12px;
      background: #f4c10f;
      color: #000;
      border: none;
      font-size: 15px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.2s;
    }

    .submit-btn:hover {
      background: #eabf0f;
    }

    .close-modal {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 22px;
      color: #999;
      cursor: pointer;
    }

    .close-modal:hover {
      color: #000;
    }

    .login-link {
      text-align: center;
      margin-top: 14px;
      font-size: 14px;
      color: #555;
    }

    .login-link a {
      color: #f4c10f;
      text-decoration: none;
      font-weight: 500;
    }

    .login-link a:hover {
      text-decoration: underline;
    }

/*    Toast notification */

#toastContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-size: 12px;
}

.toast {
  min-width: 250px;
  margin-bottom: 10px;
  background: #fff;
  color: #000;
  border-left: 6px solid #f1c40f;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInOut 4s forwards;
}

/*to remove toast hide problem*/
#toastContainer .toast {
  display: flex !important; 
}


.toast.success {
  border-left-color: #73a008;
}

.toast.error {
  border-left-color: #ff4d4d;
}

.toast .close-toast {
  background: none;
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(100%); }
  10% { opacity: 1; transform: translateX(0); }
  90% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(100%); }
}
 

/*signin */

.modal-signin {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: 'Poppins', sans-serif;
}

.modal-signin-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px 25px;
  border-radius: 15px;
  max-width: 400px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-signin h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.signin-group {
  margin-bottom: 18px;
  position: relative;
}

.signin-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

.signin-group input[type="email"],
.signin-group input[type="password"],
.signin-group input[type="text"] {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.signin-group input[type="radio"] {
  margin-right: 6px;
}

.toggle-signin-password {
  position: absolute;
  top: 35px;
  right: 12px;
  color: #888;
  cursor: pointer;
}

.signin-btn {
  width: 100%;
  background-color: #f5c518;
  color: #000;
  padding: 12px;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
  transition: background 0.3s;
}

.signin-btn:hover {
  background-color: #e0b100;
}

.close-signin {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  margin-top: 5px;
  font-size: 13px;
}

#signinModal, #signupModal p span{
  cursor: pointer;
}

#signinModal p span:hover {
  color: #f4c10f;          /* Darker on hover */
  
}

/* Additional alignment for sign-up / forgot password footer */
.modal-signin-content .footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}

.modal-signin-content .footer-links a {
  color: #000;
  font-weight: 500;
}
@keyframes slideInModal {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-signin-content {
  animation: slideInModal 0.4s ease;
}
@media screen and (max-width: 420px) {
  .modal-signin-content {
    width: 90%;
    margin-top: 30%;
    padding: 20px;
  }
}

/*Caleder tollstips*/

.vacancy-tooltip {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.vacancy-tooltip-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 2px solid #f4c10f;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}

.tooltip-date {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 14px;
}

#tooltipVacancies {
  padding-left: 20px;
  margin-bottom: 10px;
}

#tooltipVacancies li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #000;
  list-style-type: disc;
}

.tooltip-close-btn {
  background-color: #f4c10f;
  color: #000;
  border: none;
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tooltip-close-btn:hover {
  background-color: #e0b000;
}
#tooltipVacancies li a {
  text-decoration: none;
  color: #000; /* black text */
  font-weight: 500;
  display: inline-block;
  padding: 4px 8px;
/*  background-color: #f4c10f;*/
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 15px;
}




/*back to top */

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 42px;
  right: 25px;
  z-index: 999;
  background-color: #0b8780;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

#backToTopBtn:hover {
  background-color: #ffd700;
  color: black;
}
/*profile section */

.profile-container {
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 500px;
      text-align: center;
      margin: 150px 5px;
    }

    .profile-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #0b8780;
      margin-bottom: 15px;
    }

    .profile-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      text-align: left;
    }

    .profile-form label {
      font-weight: 600;
      color: #333;
    }

    .profile-form input {
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 15px;
      outline: none;
      transition: 0.2s;
    }

    .profile-form input:focus {
      border-color: #0b8780;
      box-shadow: 0 0 0 3px rgba(11, 135, 128, 0.1);
    }

    .profile-btn-save {
      background: #0b8780;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
      margin-top: 40px;
    }

    .profile-btn-save:hover {
      background: #096d67;
    }

    .profile-upload-btn {
      background: #f5c518;
      border: none;
      padding: 8px 15px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      color: #000;
      width: 100%;
    }
    @media (max-width: 768px) {
      .profile-container {
        width: 90%;
      }
      .account-menu li div{
        font-size: 14px;
      }
    }




/************************************************Footer Start*************************************/
@media (max-width: 767.98px) {
  .content_position_hide {
    display: none !important;
  }
  .content_position_end{
    justify-content: start;
  }
  .mobile-nav .blog_btn {
    width: 50%;
    margin-top: 10px;
    text-align: center;
    padding: 10px 10px;
    border-radius: 30px;
    margin-left: 0px;
    }
  .menu-toggle{
    font-size: 40px;
  }
  .nav_d_flex_center{
   
    justify-content: space-between;
    }

  
  
/* Ensure mobile menu sub-menus appear vertically */
  .mobile-nav .sub-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    position: static; /* No absolute/right alignment */
    background: none;
    box-shadow: none;
  }

  .mobile-nav .has-sub.active > .sub-menu {
    display: flex;
  }

  .mobile-nav .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    background: #1c1717cf;
  }

  .mobile-nav .has-sub {
    font-weight: bold;
    cursor: pointer;
  /*  padding: 10px 15px;*/
  }

  /* Optional: Add indicator caret for submenu items */
  .mobile-nav .has-sub::after {
    content: "▼";
    float: right;
    font-size: 12px;
    margin-left: 8px;
    transform: rotate(0deg);
    transition: transform 0.3s;
  }

  .mobile-nav .has-sub.active::after {
    transform: rotate(180deg);
  }

  /* Account dropdown styles */
  .custom-account-dropdown {
    padding: 10px 0px;
    cursor: pointer;
  }

  .custom-account-dropdown ul.account-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .custom-account-dropdown ul.account-menu li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .custom-account-dropdown ul.account-menu li a {
    text-decoration: none;
    color: #333;
  }

  .custom-account-dropdown.open ul.account-menu {
    display: flex;
  }

  .dropdown-item.has-sub .sub-menu{
    position: static;
    background: #1c1717cf;
  }
  .sub-menu .dropdown-item:hover {
      background-color: #1c1717cf;
  }
  .dropdown-item
  {
    border:none;
  }
  .sub-menu .dropdown-item{
    border:none;
  }

  .account-toggle{
    padding: 10px 12px;
    font-size: 12px;
    width: 50%;
  }
  .mobile-nav{
    padding-top: 40px;
  }


}

/*new footer section */

.footercontent{
  text-decoration: none;
  font-size: 15px;
  height:auto;
  width: 100%;
  background-color: #000000;
  text-align: center;
  padding: 23px;


}

#footerid a{
 text-decoration: none; 
}
#footerid a:link{
color:#f2f2f2;

}
/*#footerid a:visited{*/

/*color: rgb(255, 255, 255);*/

/*}*/
#footerid a:hover{

color: #00bcd4;

/*opacity: 8;*/
}
/*#footerid a:active{*/


/*color: rgb(255, 188, 0);*/


/*}*/
#footerid p{
  color: #f2f2f2;
  margin: 0px;
}

