@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
:root {
  --theme-font: "Google Sans", sans-serif;
  --primary: #90cb65;
  --secondary: #acdf87;
  --black: #000000;
  --nude-black: #272727;
  --white: #ffffff;
  --blue-gray: #f3f5f7;
  --pastel-gray: #f7f9f6;
  --light-grey: #baced7;
  --green: #058d43;
  --gold-light: #ffcc00;
  --destructive: #c70737;
  --sidebar-width: 240px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-18: 18px;
  --fs-19: 19px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-34: 34px;
  --fs-36: 36px;
  --fs-38: 38px;
  --fs-40: 40px;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
}
/* reset css start */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: var(--theme-font); /* 2 */
  -webkit-text-size-adjust: 100%; /* 4 */
  -ms-text-size-adjust: 100%; /* 4 */
  -ms-overflow-style: scrollbar; /* 5 */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent; /* 6 */
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
/* Neutralize inline font styles */
[style*="font-family"] {
  font-family: var(--theme-font) !important;
}
/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
@-ms-viewport {
  width: device-width;
}
/* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
/* 2. Remove default margin */
* {
  margin: 0;
}
body {
  background-color: #fcfff9;
  font-family: var(--theme-font) !important;
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}
/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  overflow-wrap: break-word;
}
/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
/* 9. Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}
ol,
ul,
dl {
  margin: 0;
}
a {
  cursor: pointer;
  color: var(--coral-color);
  text-decoration: none;
  background-color: transparent; /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
  transition: 0.3s ease all;
}
a:hover {
  text-decoration: none;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-width: 0;
}
/* reset css end */
/* common css start */
.form-control, .form-select {
  padding: 0.5rem 0.75rem;
  background-color: var(--blue-gray);
  border-color: var(--light-grey);
  color: var(--nude-black);
  border-radius: 6px;
}
.form-control:focus-visible {
  outline: none;
}
.btn-close:focus,
.form-control:focus {
  box-shadow: none;
  border-color: var(--nude-black);
}
input::placeholder,
.form-control::placeholder {
  color: var(--nude-black);
  opacity: 0.4;
}
/* custom checkbox buttons */
input[type="checkbox"] {
  position: relative;
  margin-right: 0.4rem;
  cursor: pointer;
}

input[type="checkbox"]:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--light-grey);
  position: absolute;
  background-color: var(--white);
  border-radius: 3px;
  z-index: 3;
  margin-left: -1px;
}
input[type="checkbox"]:checked:before {
  border-color: var(--green);
}
input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background-color: transparent;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
  position: absolute;
  top: 4px;
  right: 0px;
  z-index: 3;
}
.input-group {
  background-color: var(--blue-gray);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  overflow: hidden;
}
.input-group:focus-within { border-color: var(--black); }
.input-group:focus-within button { background: var(--white); }
.input-group .btn {
  border: none;
  background: transparent;
}
.input-group input {
  border: none;
  background: transparent;
}
/* custom radio buttons */
input[type="radio"] {
  position: relative;
  margin-right: 0.4rem;
}
input[type="radio"]:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--blue-gray);
  border: 1px solid var(--green);
  border-radius: 50%;
  margin-left: -1px;
}
input[type="radio"]:checked:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 3px;
}
.primary-heading {
  margin-bottom: 30px;
  position: relative;
  font-family: var(--theme-font);
  color: var(--green);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 60px;
  text-transform: capitalize;
}
.popup-heading {
  margin-bottom: 0.625rem;
  position: relative;
  font-family: var(--theme-font);
  color: var(--green);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.3;
}
/* btn css start */
.btn {
  display: inline-block;
  padding: 0.657rem 1.5rem;
  border: 1px solid;
  border-radius: 0;
  color: var(--nude-black);
  font-size: var(--fs-17);
  font-weight: var(--fw-normal);
  line-height: 1;
}
.btn:hover,
.btn:focus-within,
.btn:focus-visible {
  box-shadow: none;
}
.theme-primary-btn,
.theme-secondary-btn, 
.theme-delete-btn {
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.theme-primary-btn {
  border-color: var(--primary);
  background: var(--primary);
}
.theme-secondary-btn {
  border-color: var(--nude-black);
  background: var(--primary);
}
.theme-delete-btn {
  border-color: var(--destructive);
  background: var(--destructive);
  color: var(--white);
}
.theme-primary-btn:hover {
  background: var(--white);
  color: var(--nude-black);
  border-color: var(--nude-black);
}
.theme-secondary-btn:hover {
  background: var(--primary);
  color: var(--nude-black);
  border-color: var(--primary);
}
.theme-delete-btn:hover {
  background: var(--white);
  color: var(--destructive);
  border-color: var(--destructive);
}
.theme-primary-btn:before,
.theme-secondary-btn:before,
.theme-delete-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.theme-primary-btn:before { background: var(--primary); }
.theme-secondary-btn:before { background: var(--white); }
.theme-delete-btn:before { background: var(--destructive); }
.theme-secondary-btn.active:before,
.theme-secondary-btn:hover:before,
.theme-secondary-btn:focus:before,
.theme-secondary-btn:active:before,
.theme-primary-btn.active:before,
.theme-primary-btn:hover:before,
.theme-primary-btn:focus:before,
.theme-primary-btn:active:before,
.theme-delete-btn.active:before,
.theme-delete-btn:hover:before,
.theme-delete-btn:focus:before,
.theme-delete-btn:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.login-btns {
  display: flex;
  gap: 10px;
}
.login-btns .btn { padding: 0.35rem 0.825rem; }
html body select {
  overflow: hidden !important;
  min-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  appearance: none !important;
  padding-right: 30px !important;
}
/* btn css end */
/* table css start */
table:not(:has(thead)) tbody tr:first-child {
  background-color: hsl(95 50% 60% / 40%); /* Your desired color */
  font-weight: bold;         /* Optional: make it look like a header */
}
/* table css end */
/* datatable css start */
.dt-container .dt-layout-row {
  margin-bottom: 24px;
  display:flex;
  justify-content: space-between;
}
.dt-container .dt-layout-table {
  overflow: hidden;
  border: 1px solid var(--light-grey);
  border-radius: 1.25rem;
}
.dt-layout-cell select {
  width: auto;
  min-width: 170px;
}

.dt-layout-row .dt-layout-cell .dt-search {
  margin-left: 0 !important;
  display: inline-block;
}
.dt-container div.dt-search input{font-size: 14px;}
table.table.dataTable > :not(caption) > * > *,
table > :not(caption) > * > * {
  padding: 0.5em 1em;
}
table th,
table td {
  vertical-align: middle;
  font-size: 15px;
  border-color: var(--light-grey);
}
table.table.dataTable > :not(caption) > tr > th,
.table > :not(caption) > tr > th {
  background-color: hsl(95 50% 60% / 40%);
  vertical-align: top;
}
.dt-paging > nav > .dt-paging-button {
  border: 1px solid var(--nude-black);
  background-color: transparent;
  padding: 0.215em 0.75em;
  font-size: 15px;
  border-radius: 4px;
  transition: ease 0.3s all;
}

.dt-paging > nav > .dt-paging-button:not(:last-child) {
  margin-right: 10px;
}
.dt-paging > nav > .dt-paging-button:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.dt-paging > nav > .dt-paging-button.current {
  background-color: var(--primary);
  border-color: var(--primary);
}
.dt-paging > nav > .dt-paging-button.disabled {
  background-color: var(--light-grey);
  opacity: 0.5;
}
/* datatable css end */

/* status badge css start */
.status-badge {
  padding: 0.25rem 0.625rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 50px;
  line-height: 1;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  display: inline-block;
}
.status-inprogress {
  background-color: hsl(198 100% 83% / 50%);
  color: hsl(198 41% 37% / 100%);
  border-color: hsl(198 41% 37% / 100%);
}
.status-active {
  background-color: hsl(133 63% 73% / 40%);
  color: hsl(147 93% 29% / 100%);
  border-color: hsl(147 93% 29% / 100%);
}
.status-pending {
  background-color: hsl(48 100% 50% / 40%);
  color: hsl(48 89% 36% / 100%);
  border-color: hsl(48 89% 36% / 100%);
}
.status-close {
  background-color: hsl(0 100% 87% / 40%);
  color: hsl(345 93% 40% / 100%);
  border-color: hsl(345 93% 40% / 100%);
}
/* status badge css end */
/* action button css start */
.t-action-btns {
  display: flex;
  gap: 6px;
}
.action-btn {
  padding: 0.38rem 0.625rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
  display: inline-block;
}
.action-btn:hover {
  color: inherit;
}
.action-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.action-secondary {
  background-color: var(--white);
  border-color: var(--light-grey);
  color: var(--nude-black);
}
.action-primary:hover,
.action-secondary:hover {
  transform: scale(1.05);
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.action-danger {
  background-color: hsl(0 100% 87% / 40%);
  border-color: var(--destructive);
  color: var(--destructive);
}
.action-danger:hover {
  transform: scale(1.05);
  background-color: var(--destructive);
  border-color: var(--destructive);
  color: var(--white);
}
/* action button css end */
.main-content {
  padding: 50px 0px;
}
.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--nude-black);
}
.required {
  color: var(--destructive);
}
/* tabs css start */
.nav-tabs {gap: 4px;}
.nav-tabs > .nav-item > .nav-link {
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 0;
  transition: ease .3s all;
}
.nav-tabs > .nav-item > .nav-link:hover, .nav-tabs > .nav-item > .nav-link:is(.active) {
  background-color: var(--primary);
  border-color: var(--primary);
}
/* tabs css end */
/* modal css start */
.loginReg-modal-dialog { max-width: 536px; }
.modal-header,
.modal-body,
.modal-footer {
  padding: 0;
}
.form-body{
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.modal-header,
.modal-footer {
  display: block;
  border: 0;
}
.modal-content {
  padding: 1.875rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.modal-dialog .close-popup {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 1px;
}
.form-caption {
  font-size: 18px;
  opacity: 0.9;
}
.input-row {
  font-size: 15px;
}
.input-row:not(:last-child) {
  margin-bottom: 0.625rem;
}
.has-anchor a {
  color: var(--green);
  transition: ease 0.3s all;
}
.has-anchor a:hover {
  color: var(--primary);
}
.has-anchor p {
  color: var(--nude-black);
  opacity: 0.8;
}
.popup-footer {
  padding: 1rem;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--blue-gray);
}
.line {
  width: 100%;
  height: 1px;
  background-color: var(--light-grey);
}
.otp-row {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1rem;
}
.otp-row > * {
  flex: 1;
  flex-shrink: 0;
}
.otp-row > * > * {
  text-align: center;
}
.message-row {
  text-align: center;
}
.message-row p {
  margin-bottom: 0px;
  color: var(--nude-black);
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.8;
}
.animation-ctn {
  text-align: center;
  margin-bottom: 1.5em;
}
.inlinesvg .svg svg {
  display: inline;
}
.icon--order-success svg polyline {
  -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
  animation: checkmark-circle 0.6s ease-in-out backwards;
}
.icon--order-success svg circle#colored {
  -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
  animation: colored-circle 0.6s ease-in-out 0.7s backwards;
}

@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 100px;
  }

  100% {
    stroke-dashoffset: 200px;
  }
}

@keyframes checkmark {
  0% {
    stroke-dashoffset: 100px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@-webkit-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 480px;
  }

  100% {
    stroke-dashoffset: 960px;
  }
}

@-ms-keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }

  100% {
    stroke-dashoffset: 480px;
  }
}

@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 480px;
  }

  100% {
    stroke-dashoffset: 960px;
  }
}

@keyframes colored-circle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100;
  }
}
/* modal css end */
/* common css end */

/* inner page breadcrumb banner start */
.inner-page-banner {
  position: relative;
}
.inner-page-banner:before {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.breadcrumb-area {
  height: 100%;
}
.breadcrumb-container {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 2;
}
.breadcrumb-container .breadcrumb-nav nav {
  padding: 6px 16px;
  background-color: rgba(255 255 255 / 0.8);
}
.breadcrumb-container .breadcrumb-nav ol {
  margin: 0px;
  width: max-content;
}
.page-heading .page-title {
  margin-bottom: 0;
  font-family: var(--theme-font);
  color: rgba(255 255 255 / 0.7);
  font-size: clamp(var(--fs-24), 4vw, 50px);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.breadcrumb-item.active {
  color: var(--black-color);
  font-weight: var(--fw-medium);
}
.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50px);
  z-index: -1;
}
.owl-nav button span {
  font-size: 50px;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -2%;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -2%;
}
.owl-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 10px;
  transition: ease 0.3s width;
}
.owl-dots .owl-dot.active span {
  width: 50px;
  background: var(--primary);
}
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50px);
  width: 100%;
  z-index: -1;
  display: flex;
  justify-content: space-between;
}
.owl-nav button span {
  font-size: 50px;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -2%;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -2%;
}
/* inner page breadcrumb banner end */
/* switch toggle css start */
.switch {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}
.switch > span {
  width: 50%;
  position: absolute;
  top: 8px;
  pointer-events: none;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  text-align: center;
}
input.check-toggle-round-flat:checked ~ .off {
  color: var(--nude-black);
}
input.check-toggle-round-flat:checked ~ .on {
  color: var(--nude-color);
}
.switch > span.on {
  left: 0;
  padding-left: 6px;
  color: var(--nude-black);
}
.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: var(--nude-black);
}
.check-toggle {
  margin-left: -9999px;
  position: absolute;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input.check-toggle-round-flat + label {
  padding: 2px;
  width: 97px;
  height: 35px;
  background-color: var(--primary-color);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
input.check-toggle-round-flat + label:before,
input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}
input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: var(--primary-color);
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 48px;
  background-color: var(--white);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}
input.check-toggle-round-flat:checked + label:after {
  margin-left: 41px;
}
/* toggle switch css end */
/* header css start */
.main-header {
  background: var(--white);
}
.datepicker-days table {
  border-color: var(--white);
}
.top-navigation-bar .navigation .navbar-nav .nav-item .nav-link {
  padding-top: 0;
  padding-bottom: 0;
}
.site-logo .navbar-brand img {
  height: 50px;
  object-fit: contain;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 6;
  background-color: var(--white-color);
  box-shadow: 0 5px 20px 4px rgba(20 20 20 / 0.3);
}
.site-header .top-navigation-bar {
  background: var(--primary);
}
.site-header .logo-title h1 {
  margin-bottom: 0;
  font-size: var(--fs-19);
  font-weight: var(--fw-semibold);
  color: var(--primary);
  letter-spacing: 0.01em;
}
.site-header .logo-title p {
  color: var(--nude-black);
  margin-bottom: 0;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
}
.site-logo {
  padding-top: 6px;
  max-width: 100px;
}
.site-logo .navbar-brand {
  padding: 0px;
  position: relative;
}
.site-logo .navbar-brand img {
  height: 50px;
  object-fit: contain;
}
/* header css end */
/* navigation css start */
.navigation {
  padding-right: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  width: max-content;
  max-width: 100%;
}
.navigation .navbar-nav {
  align-items: center;
}
.navigation .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 20px 10px;
  color: var(--nude-black);
  font-size: var(--fs-15);
  font-weight: var(--fw-normal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.navigation > .navbar-nav > .nav-item .nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 94%;
  left: auto;
  right: auto;
  background: var(--primary);
  transition:
    ease-in 0.3s height,
    ease-in 0.3s width;
}
.site-header.sticky .navigation .navbar-nav .nav-item .nav-link {
  color: var(--nude-black);
}
.navigation > .navbar-nav > .nav-item .nav-link:hover:after,
.navigation > .navbar-nav > .nav-item .nav-link.active:after {
  width: 40%;
  height: 3px;
}
.parent-menu { position: relative; }
.parent-menu > .submenu {
  z-index: 9999;
  padding-left: 0px;
  box-shadow: 0px 10px 10px rgba(0 0 0 / 10%);
  background-color: #fcfff9;
  text-align: left;
  height: auto;
}
.parent-menu > .submenu ul li {
  list-style: none;
}
.parent-menu:hover > .submenu,
.parent-menu > .submenu .parent-submenu > .parent-menu:hover > .submenu {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}
.navigation .navbar-nav .parent-menu > .submenu ul li .nav-link {
  padding: 10px 14px;
  display: block;
  border-bottom: 1px dashed var(--white);
  transition: ease 0.3s all;
  text-transform: capitalize;
}
.parent-menu:hover > .submenu ul li .nav-link:hover {
  padding-left: 15px;
  background-color: var(--primary);
  color: var(--nude-black);
}
.parent-menu > .submenu .parent-submenu > li .sub-submenu {
  padding: 0;
  display: none;
  background-color: #e4f2cc;
  transition: ease 0.3s all;
}
html body .parent-menu > .submenu .parent-submenu > .parent-menu > .submenu {
  left: 100%;
  top: 0;
}
.parent-menu > .submenu .parent-submenu > li .sub-submenu {
  background-color: var(--white);
  padding: 10px;
  transition: ease 0.3s all;
  box-shadow: -1px 1px 20px rgba(0 0 0 / 15%) !important;
  min-height: 100px;
}

.parent-menu > .submenu .parent-submenu > li .sub-submenu > li {
  background-color: #e4f2cc;
}
.parent-menu > .submenu > .parent-menu,
.parent-menu > .submenu > .parent-menu > .sub-submenu {
  max-width: 350px;
}
.parent-menu > .submenu .parent-submenu > li .sub-submenu {
  position: absolute;
  min-width: 50%;
  width: 100%;
  top: 0;
  height: initial !important;
  right: -100%;
  border-radius: 10px;
}
.parent-menu > .submenu > ul,
.parent-menu > .submenu .parent-submenu {
  padding-left: 0px;
}
.parent-menu > .submenu .parent-submenu {
  position: relative;
  min-height: 100%;
}
.btn-profile-nav {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--black);
  border-radius: 6px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  gap: 6px;
  cursor: pointer;
}
.btn-profile-nav .userName {
  display: inline-block;
  max-width: 124px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-profile-nav > i { color: var(--green); }
#profile-tab .submenu .nav-item .nav-link {
  padding: 10px 14px;
  display: block;
  border-bottom: 1px dashed var(--white);
  transition: ease 0.3s all;
  text-transform: capitalize;
}
/* navigation css end */
.tab-section {
  padding: 40px 0 0px;
  background-color: #f2fbeb;
  overflow-x: hidden;
}
.tab-area .nav-tabs .nav-item {
  flex: 1;
}
.tab-area .nav-tabs .nav-item .nav-link {
  padding: 1rem 0.875rem;
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  border-bottom: 3px solid var(--primary-color);
  font-size: var(--fs-20);
  font-weight: var(--fw-medium);
  color: var(--nude-black);
  transition: ease-in-out 0.3s all;
}
.tab-area .nav-tabs .nav-item .nav-link:hover {
  background-color: var(--primary-color);
}
.tab-area .nav-tabs .nav-item .nav-link.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.tab-area .tab-content .tab-pane {
  padding: 30px;
}
/* multistep form css start */
.form-steps {
  padding: 1.5rem;
  height: 100%;
  background-color: var(--pastel-gray);
  border: 1px solid var(--light-grey);
  border-radius: 0.875rem;
}
.form-steps .step {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.form-steps .step {
  position: relative;
  padding-top: 0.5rem;
  color: var(--nude-black);
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: ease-in-out 0.3s ease;
}
.form-steps .step:not(:last-child) {
  margin-bottom: 1rem;
}
.form-steps .step .step-number {
  position: relative;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  border-radius: 50%;
  color: var(--nude-black);
  font-size: 18px;
  line-height: 1;
  z-index: 3;
  overflow: hidden;
  transition: background 0.5s ease;
}
.form-steps .step:not(.completed) .step-number i {
  transform: translateY(-30px);
}
.form-steps .step:is(.completed) .step-number i {
  transform: translateY(0px);
  transition: transform ease 0.3s;
}
.step .step-number:before {
  position: absolute;
  content: "";
  display: flex;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--nude-black);
  flex-shrink: 0;
  transform: translate(10px, 0px);
  right: -10px;
}
.form-steps .step:is(.active) .step-number:before {
  content: "";
  transform: translate(-18px, 0px);
  transition: transform 0.3s ease;
}
.form-steps .step:not(:last-child):after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: var(--nude-black);
  position: absolute;
  bottom: -20px;
  left: 16px;
  opacity: 0.4;
  z-index: 1;
}
.form-steps .step:is(.completed) .step-title {
  border-bottom: 1px dashed rgba(0 0 0 / 0.4);
}
.form-steps .step:is(.active),
.form-steps .step:is(.completed) {
  font-weight: 600;
  transition: ease-in-out 0.3s ease;
}
.form-steps .step:is(.completed) .step-number {
  background-color: var(--nude-black);
  color: var(--white);
}
.step-title {
  display: inline-block;
  margin-left: 0.625rem;
  transition: ease-in-out 0.3s ease;
}
.form-steps .step:is(.completed):after {
  content: "";
  opacity: 1;
}
.step-form-content {
  height: 100%;
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 0.875rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 12px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-form-content:hover {
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  transition: 0.3s ease;
}
/* multistep form css end */
/* profile page css start */

/* ── PROFILE HEADER CARD ── */
.profile-header-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 24px 28px;
}
.avatar-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  flex-shrink: 0;
}
.avatar-wrap .avatar-circle {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  background: var(--blue-gray);
  border: 1.5px dashed var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--seci-muted);
}
.avatar-wrap .completion-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: linear-gradient(-45deg, var(--primary), var(--green));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.profile-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}
.profile-meta span {
  font-size: 15px;
  color: var(--black);
  opacity: 0.8;
  margin-right: 14px;
}
.profile-meta i {
  color: var(--seci-blue);
  margin-right: 4px;
}

/* ── PROFILE COMPLETION CARD ── */
.completion-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 20px 22px;
}
.completion-card h6 {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 14px;
}
.completion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.completion-row span {
  font-size: 15px;
}
.badge-completed {
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 400;
  border-radius: 5px;
  padding: 3px 10px;
}
.alert-badge {  
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 10px 14px;
  margin-top: 14px;
}

.alert-descructive{
  background: #f5c6c6;
  border: 1.5px solid #f5c6c6;
  color: var(--destructive);
}

.alert-success{
  background: #d1f5e0;
  border: 1.5px solid #1a7a40;
  color: var(--green);
}

/* ── APPLICATIONS ── */
.apps-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 20px 22px;
  margin-top: 18px;
}
.apps-card h6 {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 14px;
}
.app-item {
  background-color: #f2f5f0;
  border: 1.5px solid var(--light-grey);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  transition: box-shadow 0.15s;
}
.app-item:hover {
  box-shadow: 0 2px 10px rgba(26, 79, 138, 0.1);
}
.app-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.app-title {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.app-sub {
  font-size: 0.72rem;
  color: var(--seci-muted);
}
.small-badge {
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 2px 8px;
  display: inline-block;
  border: 1px solid;
}
.badge-interview {
  background: #e3f0ff;
  color: var(--seci-blue);
}
.badge-review {
  background: var(--white) 3cd;
  color: #856404;
}
.badge-applied {
  background: #d1f5e0;
  color: #1a7a40;
}

/* ── STICKY SIDEBAR ── */
.sidebar-sticky-wrapper {
  position: sticky;
  top: 74px; /* height of navbar */
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-grey) transparent;
}
.sidebar-sticky-wrapper::-webkit-scrollbar {
  width: 5px;
}
.sidebar-sticky-wrapper::-webkit-scrollbar-thumb {
  background: var(--light-grey);
  border-radius: 10px;
}

.sidebar-links-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 18px 16px;
}
.sidebar-links-card h6 {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--light-grey);
}
.sidebar-link-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--seci-light);
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}
.sidebar-link-btn:hover,
.sidebar-link-btn.active {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}
.sidebar-link-btn i {
  margin-right: 8px;
}

/* ── MAIN CONTENT SECTIONS ── */
.section-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 22px 24px;
  margin-bottom: 18px;
}
.section-card h5 {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f3f8;
}
.info-row:last-child {
  border-bottom: none;
}
.info-row i {
  color: var(--seci-blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.info-sub {
  font-size: 14px;
  color: var(--black);
  opacity: 0.8;
}
.info-add {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.info-add:hover {
  text-decoration: underline;
}

/* scroll offset for anchor links */
.scroll-section {
  scroll-margin-top: 90px;
}
.empty-state {
  padding: 2rem;
  text-align: center;
}

.empty-state-1 {
  padding: 0rem;
  text-align: center;
}

.empty-state-1 .empty-icon {
  font-size: 2rem;
  color: var(--black);
}

.empty-state .empty-icon {
  font-size: 3rem;
  color: var(--black);
}
/* upload documents css start */
.docUpload-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.docUpload-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #f2f5f0;
  border: 1px dashed var(--light-grey);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26, 79, 138, 0.07);
  padding: 1rem;
  order: 2;
}
.pending-documents {
  background: linear-gradient(-45deg, #fff8cb, #fffdf0);
  border-color: #efab56;
  order: 1;
}
.docUpload-row .app-title {
  margin: 6px 0px;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  opacity: 0.8;
}
.docUpload-row .status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.doc-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(45deg, #d4f3bf, #c8e2b5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pending-documents .doc-icon{
  background: linear-gradient(45deg, #fceb77, #fadc57);
}

.docUpload-row .app-title .info-text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--black);
  opacity: 0.6;
}

.doc-file-picker {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.footer-uploadDocs {
    position: relative;
    z-index: 2;
}
/* upload documents css end */
@media (max-width: 768px) {
  .sidebar-sticky-wrapper {
    position: static;
    max-height: none;
  }
}
/* profile page css end */
/* view job details css start */
.tab-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tab-col .doc-details {
  background: linear-gradient(45deg, #FFFFFF, #ecfbdc);
  padding: 1rem;
  border: 1px solid var(--light-grey);
  border-radius: 0.625rem;
}

.doc-title{
  margin-bottom: 0.625rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.tab-col .doc-details .doc-icon{
  margin-bottom: 0.625rem;
  padding: 0.625rem;
  width: 52px;
  height: 52px;
  line-height: 40px;
}

.tab-content-box {
  padding: 1.725rem 0;
}
/* view job details css end */
/* inner page content css end */
.footer {
  padding: 60px 0;
  background: linear-gradient(45deg, #acdf87, #acdf87);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-logo img {
  transition: ease 0.3s all;
}
.footer-logo img:hover {
  transform: scale(1.1);
}
.footer .footer-list {
  padding-left: 0px;
}
.footer .footer-list li {
  list-style: none;
  margin-bottom: 10px;
}
.org-address .footer-list li {
  font-size: var(--fs-20);
}
.footer-navigation .footer-links {
  gap: 20px;
}
.org-address .footer-list img {
  filter: invert(0.8) brightness(0.5);
}
.footer .social-media a {
  font-size: var(--fs-34);
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid var(--nude-black);
  color: var(--nude-black);
  transition: ease 0.5s all;
}
.footer .social-media a:hover {
  background-color: var(--primary-color);
  color: var(--nude-black);
  border-color: var(--primary-color);
  transform: rotate(360deg) scale(0.9);
}
.footer .footer-list li {
  list-style: none;
  margin-bottom: 6px;
  position: relative;
}
.footer .footer-links li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
  color: var(--primary-color2);
}
.footer .footer-list li a {
  font-size: var(--fs-15);
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.03em;
  color: var(--dune-black);
  transition: ease 0.3s all;
}
.footer .footer-list li a:hover {
  opacity: 0.8;
}
.footer .social-media a:not(:last-child) {
  margin-right: 10px;
}
/* footer css end */
/* back top button css start */
#back-top {
  display: inline-block;
  background-color: var(--nude-black);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 0px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.875em;
  line-height: 40px;
  color: var(--white);
}
#back-top:hover {
  cursor: pointer;
  background-color: var(--primary-color);
}
#back-top:active {
  background-color: var(--primary-color);
}
#back-top.show {
  opacity: 1;
  visibility: visible;
}
#bcw{
  padding: 0.375rem 0.675rem;

}
/* back top button css end */
