@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap);
@charset "UTF-8";
:root {
  --bg-desktop: none;
  --bg-mobile: none;
}

section {
  padding: 75px 0;
  scroll-margin-top: 50px;
}

.page-hero-section {
  min-height: 80vh;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.page-hero-section h1 {
  color: #471CC1;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .page-hero-section {
    min-height: 75vh;
    align-items: flex-start;
    justify-content: center;
  }
  .page-hero-section h1 {
    text-align: center;
    margin-top: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .page-hero-section {
    min-height: 40vh;
  }
}
html, body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: #101828;
}

h1 {
  font-size: 3.375rem;
  line-height: 58px;
  font-weight: 800;
}

h2 {
  font-size: 3rem;
  line-height: 54px;
  font-weight: 800;
}

h3 {
  font-size: 2.375rem;
  line-height: 42px;
  font-weight: 800;
}

h4 {
  font-size: 1.75rem;
  line-height: 32px;
  font-weight: 800;
}

h5 {
  font-size: 1.125rem;
  line-height: 22px;
  font-weight: 700;
}

h6 {
  font-size: 0.875rem;
  line-height: 18px;
  font-weight: 700;
}

.btn-theme {
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid;
  padding: 8px 20px 9px;
}
.btn-theme.dark {
  color: #ffffff;
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  border-color: transparent;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
}
.btn-theme.dark:active {
  color: #ffffff;
}
.btn-theme.dark:hover {
  background: linear-gradient(135deg, #39169b 0%, #5a2fb8 100%);
  border-color: transparent;
}
.btn-theme.light {
  color: #471CC1;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
}
.btn-theme.light:hover {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}
.btn-theme.btn-light-outline {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-theme.btn-outline {
  background-color: transparent;
  border: 1px solid #471CC1;
  color: #471CC1;
}
.btn-theme.btn-outline:hover {
  color: #ffffff;
  background-color: #471CC1;
  border-color: #471CC1;
}
.btn-theme.btn-outline-red {
  background-color: transparent;
  border: 1px solid #F04438;
  color: #F04438;
}
.btn-theme.btn-outline-red:hover {
  color: #ffffff;
  background-color: #F04438;
  border-color: #F04438;
}
.btn-theme.btn-outline-action {
  background-color: transparent;
  border: 1px solid #D0D5DD;
  color: #344054;
}
.btn-theme.btn-outline-action:hover {
  color: #344054;
  background-color: #D0D5DD;
  border-color: #D0D5DD;
}

@media (max-width: 767px) {
  .btn-theme {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
    line-height: 32px;
    font-weight: 800;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 28px;
    font-weight: 800;
  }
  h3 {
    font-size: 1.375rem;
    line-height: 26px;
    font-weight: 800;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 24px;
    font-weight: 800;
  }
  h5 {
    font-size: 1rem;
    line-height: 20px;
    font-weight: 700;
  }
  h6 {
    font-size: 0.875rem;
    line-height: 18px;
    font-weight: 700;
  }
  section {
    padding: 50px 0;
  }
  .container {
    padding: 0 20px;
  }
  .bg-image {
    background-image: var(--bg-mobile);
  }
}
@media (min-width: 768px) {
  .bg-image {
    background-image: var(--bg-desktop);
  }
  .swiper-container {
    padding-left: max(15px, (100% - 700px) / 2);
  }
}
@media (min-width: 1024px) {
  .swiper-container {
    padding-left: max(15px, (100% - 1024px) / 2);
  }
}
@media (min-width: 1200px) {
  .container-wide {
    max-width: 1140px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1125px) / 2);
  }
}
@media (min-width: 1300px) {
  .container-wide {
    max-width: 1180px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1160px) / 2);
  }
  .dashboard-container {
    padding-right: max(15px, (100% - 1160px) / 2);
  }
}
@media (min-width: 1400px) {
  .container-wide {
    max-width: 1380px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1350px) / 2);
  }
  .dashboard-container {
    padding-right: max(15px, (100% - 1350px) / 2);
  }
}
@media (min-width: 1600px) {
  .container-wide {
    max-width: 1440px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1425px) / 2);
  }
  .dashboard-container {
    padding-right: max(15px, (100% - 1425px) / 2);
  }
}
@media (min-width: 1800px) {
  .container-wide {
    max-width: 1440px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1425px) / 2);
  }
  .dashboard-container {
    padding-right: max(15px, (100% - 1425px) / 2);
  }
}
@media (min-width: 2000px) {
  .container-wide {
    max-width: 1440px;
  }
  .swiper-container {
    padding-left: max(15px, (100% - 1425px) / 2);
  }
  .dashboard-container {
    padding-right: max(15px, (100% - 1425px) / 2);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #DAD2F3;
  z-index: 999;
  transition: background-color 0.3s ease-in-out;
  padding: 10px 0;
  border-bottom: 1px solid rgba(218, 210, 243, 0.2);
}
header .navbar .nav-header {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
header .navbar .nav-header .navbar-toggler:focus {
  box-shadow: unset;
}
header .navbar .logo {
  display: block;
  transition: opacity 0.3s ease-in-out;
  margin-right: 20px;
}
header .navbar .logo img {
  width: 160px;
  height: 100%;
}
header .navbar .navbar-nav {
  gap: 25px;
}
header .navbar .navbar-nav.header-btn {
  gap: 10px;
}
header .navbar .navbar-nav li a.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #202330;
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 0.5rem;
}
header .navbar .navbar-nav li a.nav-link.sign-in-link {
  color: #000000;
}
header .navbar .navbar-nav li a.nav-link:hover {
  color: #000000;
}
header .hamburger {
  cursor: pointer;
  border: none;
  position: relative;
}
header .hamburger:focus {
  box-shadow: unset;
}
header .hamburger span {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background-color: #101828;
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
header .hamburger span:before, header .hamburger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background-color: #101828;
  position: absolute;
  display: inline-block;
  content: "";
  right: 0px;
}
header .hamburger span:before {
  top: -8px;
  right: 0;
}
header .hamburger span:after {
  bottom: -8px;
  right: 0;
}
header .hamburger span:before, header .hamburger span:after {
  transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
header .hamburger.active span {
  background-color: transparent !important;
}
header .hamburger.active span:before, header .hamburger.active span:after {
  top: 0;
}
header .hamburger.active span:before {
  transform: rotate(45deg);
}
header .hamburger.active span:after {
  transform: translateY(-10px) rotate(-45deg);
  top: 10px;
}

.home header {
  background: transparent;
}
.home header .navbar .navbar-nav li a.nav-link {
  color: #ACB7CD;
}
.home header .navbar .navbar-nav li a.nav-link.sign-in-link {
  color: #ffffff;
}
.home header .navbar .navbar-nav li a.nav-link:hover {
  color: #ffffff;
}
.home header.scrolled {
  background-color: #DAD2F3;
}
.home header.scrolled .navbar .navbar-nav li a.nav-link {
  color: #202330;
}
.home header.scrolled .navbar .navbar-nav li a.nav-link.sign-in-link {
  color: #000000;
}
.home header.scrolled .navbar .navbar-nav li a.nav-link:hover {
  color: #000000;
}
.home header.scrolled .hamburger span,
.home header.scrolled .hamburger span:before,
.home header.scrolled .hamburger span:after {
  background-color: #013076;
}
.home header .navbar .logo {
  display: block;
}
.home header .navbar .navbar-nav li a.nav-link {
  color: #ACB7CD;
}
.home header .navbar .navbar-nav li a.nav-link.sign-in-link {
  color: #ffffff;
}
.home header .navbar .navbar-nav li a.nav-link:hover {
  color: #ffffff;
}
.home header .hamburger span {
  background-color: #ffffff;
}
.home header .hamburger span:before, .home header .hamburger span:after {
  background-color: #ffffff;
}

.dashboard header .navbar .navbar-nav {
  gap: 15px;
}
.dashboard header .navbar .navbar-nav li {
  display: flex;
  align-items: center;
}
.dashboard header .navbar .navbar-nav li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #ffffff;
  cursor: pointer;
}
.dashboard header .navbar .navbar-nav li span img.user-normal {
  display: block;
}
.dashboard header .navbar .navbar-nav li span img.user-active {
  display: none;
}
.dashboard header .navbar .navbar-nav li a.profile-active span {
  background-color: #471CC1;
}
.dashboard header .navbar .navbar-nav li a.profile-active span img.user-normal {
  display: none;
}
.dashboard header .navbar .navbar-nav li a.profile-active span img.user-active {
  display: block;
}

.offcanvas {
  padding: 24px;
}
.offcanvas .offcanvas-body,
.offcanvas .offcanvas-header {
  padding: 0;
}

#logoutModal .modal-header {
  border: none;
}
#logoutModal .modal-body {
  padding-top: 0;
  text-align: center;
}
#logoutModal .modal-body p {
  color: #101828;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
#logoutModal .modal-footer {
  border: none;
  justify-content: center;
  flex-wrap: nowrap;
}
#logoutModal .modal-footer button {
  width: 50%;
}

@media (max-width: 767px) {
  .navbar > .container {
    justify-content: space-between;
  }
  header .navbar .navbar-nav {
    gap: 5px;
  }
  header .navbar .logo {
    margin-left: 15px;
    margin-right: 0;
  }
  header .navbar .logo img {
    width: 130px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .navbar > .container {
    justify-content: space-between;
  }
  header .navbar .navbar-nav {
    gap: 5px;
  }
  header .navbar .logo {
    margin-left: 15px;
    margin-right: 0;
  }
  header .navbar .logo img {
    width: 130px;
  }
}
footer {
  background-color: #111317;
  padding-top: 50px;
  padding-bottom: 20px;
}
footer hr {
  color: #313745;
  opacity: 1;
}
footer .top .links {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}
footer .top .links li a {
  color: #A7B2C8;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: 0.4s all;
}
footer .top .links li a:hover {
  color: #fff;
}
footer .top .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
footer .top .social li a {
  text-decoration: none;
}
footer .top .social li a img {
  width: 24px;
  height: auto;
  transition: 0.4s all;
}
footer .top .social li a img:hover {
  transform: scale(1.1);
}
footer .bottom .copyright {
  color: #98A2B3;
  font-weight: 400;
  font-size: 0.875rem;
}
footer .bottom .copyright.link {
  color: rgba(255, 255, 255, 0.8);
}
footer .bottom .copyright.link a {
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
footer .bottom .copyright.link a img {
  width: 40px;
  margin: 0 3px;
}

@media (max-width: 1200px) {
  footer .top .links {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  footer .top .social {
    gap: 20px;
    justify-content: center;
  }
  footer .top .links {
    gap: 20px;
    justify-content: center;
  }
}
.hero-section {
  min-height: 108dvh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .hero-title {
  text-align: center;
}
.hero-section .hero-title h1 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.hero-section .hero-title p {
  color: #DBE0EB;
  font-weight: 400;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.main-info h4 {
  margin-bottom: 20px;
}
.main-info p {
  color: #485163;
  font-size: 1rem;
  line-height: 24px;
}
.main-info p:last-child {
  margin-bottom: 0;
}

.features img {
  width: 100%;
  margin-bottom: 15px;
}
.features h5 {
  font-size: 1.25rem;
  line-height: 24px;
  margin-bottom: 10px;
}
.features p {
  color: #4D576B;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
}

.steps-to-work img {
  width: 100%;
}
.steps-to-work ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  gap: 40px;
}
.steps-to-work ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.steps-to-work ul li img {
  width: 48px;
  height: auto;
}
.steps-to-work ul li h5 {
  margin-bottom: 10px;
}
.steps-to-work ul li p {
  color: #667085;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
}

.join .box {
  background-color: #471CC1;
  border-radius: 16px;
  padding: 60px 50px;
}
.join .box h3 {
  color: #fff;
  margin-bottom: 5px;
}
.join .box p {
  color: #BDC6D9;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 24px;
  margin-bottom: 0;
}
.join .box .btn-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.faq h4 {
  margin-bottom: 10px;
}
.faq p {
  color: #667085;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 24px;
}
.faq .accordion {
  border: none;
  border-radius: unset;
}
.faq .accordion .accordion-item {
  border: none;
}
.faq .accordion .accordion-item .accordion-header {
  line-height: unset;
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: unset;
  border: none;
  border-radius: unset;
  box-shadow: unset;
  font-weight: 600;
  font-size: 1.125rem;
  color: #101828;
  padding-bottom: 10px;
}
.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M11%207V15M7%2011H15M21%2011C21%2016.5228%2016.5228%2021%2011%2021C5.47715%2021%201%2016.5228%201%2011C1%205.47715%205.47715%201%2011%201C16.5228%201%2021%205.47715%2021%2011Z%22%20stroke%3D%22%2398A2B3%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
  transition: all 0.5s;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M7%2011H15M21%2011C21%2016.5228%2016.5228%2021%2011%2021C5.47715%2021%201%2016.5228%201%2011C1%205.47715%205.47715%201%2011%201C16.5228%201%2021%205.47715%2021%2011Z%22%20stroke%3D%22%2398A2B3%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.faq .accordion .accordion-item .accordion-body {
  color: #667085;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  padding-right: 50px;
  padding-top: 0;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 95vh;
  }
  .join .box {
    padding: 40px 30px;
  }
  .join .box p {
    font-size: 1rem;
  }
  .join .box .btn-box {
    justify-content: flex-start;
  }
  .faq .accordion .accordion-item .accordion-body {
    padding-left: 0;
    padding-right: 10px;
  }
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .hero-section {
    min-height: 70vh;
  }
  .join .box .btn-box {
    justify-content: flex-start;
  }
  .faq .accordion .accordion-item .accordion-body {
    padding-left: 0;
    padding-right: 50px;
  }
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding-left: 0;
    padding-right: 0;
  }
}
@keyframes img-shake {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  20% {
    transform: translateX(2px) rotate(0.5deg);
  }
  30% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
  40% {
    transform: translateX(2px) rotate(0.5deg);
  }
  50% {
    transform: translateX(-1px) rotate(0deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
/* Target homepage images used in your markup */
/* Adjust selectors if you want fewer/more images */
.features img,
.steps-to-work img,
.steps-to-work ul li img {
  display: block;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.18s ease-out;
}

/* start shaking while hovered */
.features img:hover,
.steps-to-work img:hover,
.steps-to-work ul li img:hover {
  animation: img-shake 0.6s linear infinite;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .features img:hover,
  .steps-to-work img:hover,
  .steps-to-work ul li img:hover {
    animation: none;
    transition: none;
  }
}
/* ========== scroll-in "come from both sides" animation ========== */
/* --- HERO BACKGROUND: uses the JS-set CSS vars (--bg-desktop / --bg-mobile) --- */
.bg-image {
  position: relative;
  overflow: hidden; /* keeps pseudo-element contained */
}

/* Use a pseudo-element so we can animate scale/transform independently */
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1; /* behind content */
  display: block;
  background-image: var(--bg-desktop, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform-origin: center;
  transition: opacity 300ms ease, background-image 300ms ease;
  will-change: transform;
  /* gentle zoom/pulse animation */
  animation: bg-zoom 24s ease-in-out infinite;
  /* ensure visible even if JS hasn't set the vars */
  opacity: 1;
}

/* mobile: switch pseudo background to mobile var */
@media (max-width: 767px) {
  .bg-image::before {
    background-image: var(--bg-mobile, var(--bg-desktop, none));
  }
}
/* keyframes for background subtle zoom */
@keyframes bg-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/* If prefers-reduced-motion, disable animation */
@media (prefers-reduced-motion: reduce) {
  .bg-image::before {
    animation: none;
    transform: none;
  }
}
/* --- FEATURES: slide in from both sides but never fully hidden if JS missing --- */
/* Target the wrapper <div> inside each .col-lg-6 (your markup has <div><img>...</div>) */
.features .row.g-5 .col-lg-6 > div {
  /* keep elements visible by default (prevents disappearing if JS not present) */
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 450ms ease;
  will-change: transform, opacity;
}

/* Start positions before .in-view is added — visible but offset */
.features .row.g-5 .col-lg-6:first-child > div {
  transform: translateX(-40px);
}

.features .row.g-5 .col-lg-6:last-child > div {
  transform: translateX(40px);
}

/* When JS adds `in-view` class, slide into final place (no opacity toggle) */
.features .row.g-5 .col-lg-6 > div.in-view {
  transform: translateX(0);
  opacity: 1;
}

/* Small stagger for visual polish on the second (right) column */
.features .row.g-5 .col-lg-6:last-child > div.in-view {
  transition-delay: 120ms;
}

/* Smaller screens: reduce offset */
@media (max-width: 767px) {
  .features .row.g-5 .col-lg-6:first-child > div,
  .features .row.g-5 .col-lg-6:last-child > div {
    transform: translateY(8px); /* vertical entrance on small screens */
  }
  .features .row.g-5 .col-lg-6 > div.in-view {
    transform: translateY(0);
  }
}
/* respects reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .features .row.g-5 .col-lg-6 > div,
  .bg-image::before {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ========== end scroll-in animation ========== */
.about-info img {
  width: 100%;
}
.about-info .asac img {
  margin-bottom: 15px;
  width: 140px;
}
.about-info .asac h4 {
  margin-bottom: 15px;
}
.about-info .asac p {
  color: #485163;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  margin-bottom: 15px;
}
.about-info .asac a {
  text-decoration: none;
  color: #471CC1;
  font-weight: 600;
  font-size: 1.25rem;
}

.vision-mission .box {
  background-color: #160C33;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
}
.vision-mission .box .title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.vision-mission .box .title img {
  width: 40px;
}
.vision-mission .box .title h4 {
  color: #E9D7FE;
  margin-bottom: 0;
}
.vision-mission .box h5 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
  color: #FFFFFF;
}
.vision-mission .box p {
  color: #E0DBE4;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .vision-mission .box h5 {
    font-size: 18px;
    line-height: 22px;
  }
}
.contact .contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.contact .dark-box {
  padding: 75px 0;
  background-color: #160C33;
  height: 100%;
}
.contact .dark-box .row {
  height: 100%;
}
.contact .dark-box h4 {
  color: #FFFFFF;
}
.contact .dark-box p {
  color: #E9D7FE;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  margin-bottom: 0;
}
.contact .dark-box .info {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact .dark-box .info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact .dark-box .info li img {
  width: 24px;
}
.contact .dark-box .info li h5 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.25rem;
}
.contact .dark-box .info li a {
  text-decoration: none;
  color: #E9D7FE;
  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
}
.contact .dark-box .info li a:hover {
  color: #FFFFFF;
}
.contact .dark-box .social {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.contact .dark-box .social li a {
  text-decoration: none;
}
.contact .dark-box .social li a img {
  width: 24px;
  height: auto;
  transition: 0.4s all;
}
.contact .dark-box .social li a img:hover {
  transform: scale(1.1);
}
.contact .white-box {
  padding: 75px 0;
  height: 100%;
}
.contact .white-box form .iti {
  display: block;
}
.contact .white-box form .form-control {
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  color: #344054;
}
.contact .white-box form .form-control:focus {
  box-shadow: none;
}
.contact .white-box form input {
  height: 48px;
}
.contact .white-box form label {
  color: #344054;
  font-size: 1rem;
  font-weight: 500;
}
.contact .white-box form .iti__selected-country-primary {
  padding-left: 12px;
}
.contact .white-box form .iti__selected-country-primary .iti__flag {
  background-image: unset;
  box-shadow: unset;
  height: unset;
}
.contact .white-box form .iti__selected-dial-code {
  color: #667085;
}
.contact .white-box form .iti__country-name::before {
  content: attr(data-country-code);
  font-weight: bold;
  margin-right: 5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .contact .dark-box .social {
    justify-content: center;
  }
}
.privacy-policy h5 {
  font-size: 1.375rem;
  color: #101828;
}
.privacy-policy p {
  color: #485163;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
}
.privacy-policy p:last-child {
  margin-bottom: 0;
}
.privacy-policy ul {
  padding-left: 1rem;
  list-style: decimal;
}
.privacy-policy ul li {
  color: #485163;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
}
.privacy-policy a {
  color: #485163;
  font-weight: 400;
  font-size: 1rem;
}

.login-signup {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
.login-signup img {
  width: 100%;
}
.login-signup h4 {
  font-size: 2rem;
}
.login-signup p {
  color: #101828;
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.login-signup p a {
  color: #471CC1;
  text-decoration: none;
  font-weight: 700;
}
.login-signup .back-to {
  text-align: center;
}
.login-signup .back-to a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #471CC1;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}
.login-signup .back-to a i {
  font-size: 1.125rem;
}
.login-signup form .iti {
  display: block;
}
.login-signup form .form-control {
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  color: #344054;
}
.login-signup form .form-control:focus {
  box-shadow: none;
}
.login-signup form input {
  height: 48px;
}
.login-signup form label {
  color: #344054;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.login-signup form .iti__selected-country-primary {
  padding-left: 12px;
}
.login-signup form .iti__selected-dial-code {
  color: #667085;
}
.login-signup form .iti__country-name::before {
  content: attr(data-country-code);
  font-weight: bold;
  margin-right: 5px;
  text-transform: uppercase;
}
.login-signup form .otp-box {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.login-signup form .otp-box .otp-item {
  position: relative;
  flex: 1;
}
.login-signup form .otp-box .otp-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.login-signup form .otp-box .otp-item .otp-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  font-weight: 600;
  color: #1D2939;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #D6BBFB;
  box-sizing: border-box;
}
.login-signup form .otp-box .otp-item .otp-input:focus-visible {
  outline: 1px solid #471CC1;
}
.login-signup form .otp-box .otp-item .otp-input.filled {
  outline: 1px solid #471CC1;
}
.login-signup .side-cover {
  background-color: #774EED;
  padding: 20px;
  border-radius: 24px;
  text-align: center;
}
.login-signup .side-cover .cover-logo {
  text-align: center;
  margin-bottom: 20px;
}
.login-signup .side-cover .cover-logo img {
  width: 220px;
  height: auto;
}
.login-signup .side-cover h2 {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 37px;
  line-height: 40px;
  letter-spacing: 2%;
  margin-bottom: 15px;
}
.login-signup .side-cover p {
  font-weight: 500;
  font-size: 16px;
  color: #DBE0EB;
  margin-bottom: 15px;
}
.login-signup .side-cover .screen-img {
  margin-bottom: 15px;
}
.login-signup .side-cover .screen-img img {
  width: 100%;
  margin-top: -50px;
}
.login-signup .side-cover .copyright {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: left;
}
.login-signup .side-cover .copyright.link {
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}
.login-signup .side-cover .copyright.link a {
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}
.login-signup .side-cover .copyright.link a img {
  width: 40px;
  margin: 0 3px;
}

.resend-otp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.link-btn {
  color: #471CC1;
  text-decoration: none;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dashboard {
  background-color: #F2F4F7;
  color: #101828;
  /* Shareholders Grid Layout */
  /* Empty State */
  /* Responsive Design */
  /* Modern Setup Sidebar */
  /* Steps Container */
  /* Progress Bar */
  /* Setup Actions */
  /* Modern Form Sections */
  /* Form Actions */
}
.dashboard .dt-paging {
  display: none;
}
.dashboard .main-wrap {
  margin-top: 80px;
}
.dashboard .main-wrap section {
  padding: 30px 0;
}
.dashboard .main-wrap section .greetings h3 {
  font-weight: 500;
  color: #101828;
  margin-bottom: 0;
}
.dashboard .main-wrap section .greetings h3 span {
  font-weight: 700;
}
.dashboard .connection-lost .box {
  text-align: center;
}
.dashboard .connection-lost .box img {
  width: 100%;
}
.dashboard .connection-lost .box h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
}
.dashboard #grid-container {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
}
.dashboard #grid-container .card {
  padding: 15px;
  background-color: #F4F1FF;
  border-radius: 12px;
  border: none;
}
.dashboard #grid-container .card p {
  color: #475467;
  font-weight: 500;
}
.dashboard #grid-container .card .company-name {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 25px;
}
.dashboard #grid-container .card .company-name h5 {
  font-size: 1.5rem;
  color: #292D35;
  line-height: 22px;
  font-weight: 700;
}
.dashboard #grid-container .card .company-name img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
}
.dashboard #grid-container .card .card-body {
  padding: 15px 0 5px 0;
}
.dashboard #grid-container .card .card-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dashboard #grid-container .card .card-body ul li {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 18px;
  color: #475467;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard #grid-container .card .card-body ul li span {
  color: #101828;
}
.dashboard #grid-container .card .card-body .card-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard #grid-container .card .card-body .card-btn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #471CC1;
  cursor: pointer;
}
.dashboard .toggle-view-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.dashboard .toggle-view-btn:active {
  border: none;
  background-color: unset;
}
.dashboard #grid-container .fade,
.dashboard #list-container .fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.dashboard #grid-container .fade.show,
.dashboard #list-container .fade.show {
  opacity: 1;
}
.dashboard #list-container {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding-bottom: 24px;
  box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
}
.dashboard .dt-layout-table {
  margin-top: 0 !important;
}
.dashboard table th {
  background-color: #E7E2F8 !important;
  font-weight: 700;
  font-size: 0.875rem;
  color: #292D35;
  text-align: start;
  padding: 15px;
}
.dashboard table th:first-child {
  border-radius: 8px 0 0 0;
}
.dashboard table th:last-child {
  border-radius: 0 8px 0 0;
}
.dashboard table td {
  vertical-align: middle;
  text-align: start;
  padding: 12px 15px;
}
.dashboard table .dropstart button {
  display: flex;
  align-items: center;
  border: unset;
  float: right;
}
.dashboard table .dropstart button:active, .dashboard table .dropstart button.show {
  border: unset;
}
.dashboard table .dropstart button i {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
}
.dashboard table .dropstart ul li a {
  color: #101828;
  font-weight: 500;
  font-size: 0.875rem;
}
.dashboard table .dropstart ul li a.text-red {
  color: #F04438;
}
.dashboard table .user-status {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 20px;
}
.dashboard table .user-status i {
  font-size: 18px;
}
.dashboard table .user-status.invited-status {
  background-color: #FFF1DB;
  color: #D68400;
}
.dashboard table .user-status.invited-status i {
  color: #D68400;
}
.dashboard table .user-status.active-status {
  background-color: #E6FFDD;
  color: #3E8D21;
}
.dashboard table .user-status.active-status i {
  color: #3E8D21;
}
.dashboard table .user-status.expired-status {
  background-color: #FFE9E8;
  color: #F04438;
}
.dashboard table .user-status.expired-status i {
  color: #F04438;
}
.dashboard .company-list a {
  text-decoration: none;
}
.dashboard .company-list .box {
  background-color: #FFFFFF;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}
.dashboard .company-list .box img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.dashboard .company-list .box h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #101828;
}
.dashboard .company-list .box:hover {
  border-color: #667EEA;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.dashboard .company-list .box.pending {
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  align-items: flex-start;
}
.dashboard .company-list .box.pending .company-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .company-list .box.pending .company-name img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.dashboard .company-list .box.pending .badge {
  background-color: #F3F1FF;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  border: 1px solid #E4E0FF;
}
.dashboard .company-list .box.pending .badge span {
  color: #667EEA;
  font-weight: 600;
  font-size: 0.75rem;
}
.dashboard .company-list .box.pending .badge img {
  width: 15px;
  height: 15px;
}
.dashboard .company-list .box.pending p {
  color: #6B7280;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 0;
}
.dashboard .company-list .box.reg-pending {
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
}
.dashboard .company-list .box.reg-pending .badge {
  background-color: #F3F1FF;
  border: 1px solid #E4E0FF;
}
.dashboard .company-list .box.reg-pending .badge span {
  color: #667EEA;
}
.dashboard .share-holder-table {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding-bottom: 24px;
  box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
}
.dashboard .shareholders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.dashboard .shareholder-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1);
}
.dashboard .shareholder-card:hover {
  border-color: #3B82F6;
  box-shadow: 0px 4px 12px rgba(59, 130, 246, 0.15);
}
.dashboard .shareholder-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid #F3F4F6;
}
.dashboard .shareholder-card .card-body {
  padding: 20px;
}
.dashboard .shareholder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.dashboard .shareholder-name {
  flex: 1;
}
.dashboard .shareholder-name h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}
.dashboard .share-type-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  background-color: #EFF6FF;
  color: #0369A1;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.dashboard .card-menu {
  position: relative;
}
.dashboard .btn-ghost {
  background: transparent;
  border: none;
  color: #6B7280;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard .btn-ghost:hover {
  background-color: #F3F4F6;
  color: #111827;
}
.dashboard .share-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dashboard .info-item {
  display: flex;
  flex-direction: column;
}
.dashboard .info-item label {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.dashboard .info-value {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.dashboard .empty-state {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-radius: 12px;
  border: 1px dashed #D1D5DB;
}
.dashboard .empty-state .empty-state-icon {
  margin-bottom: 24px;
  color: #D1D5DB;
}
.dashboard .empty-state .empty-state-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 12px 0;
}
.dashboard .empty-state .empty-state-text {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .dashboard .shareholders-grid {
    grid-template-columns: 1fr;
  }
  .dashboard .share-info-row {
    grid-template-columns: 1fr;
  }
  .dashboard .shareholder-card .card-header {
    gap: 12px;
  }
}
.dashboard .shares-table {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding-bottom: 24px;
  box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
}
.dashboard .top-header {
  padding: 30px 0;
}
.dashboard .top-header .nav-tabs {
  border-bottom: 1px solid #667085;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.dashboard .top-header .nav-tabs .nav-item .nav-link {
  color: #667085;
  font-size: 24px;
  font-weight: 700;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.dashboard .top-header .nav-tabs .nav-item .nav-link.active {
  color: #101828;
  background-color: unset;
  border-bottom: 3px solid #471CC1;
}
.dashboard .sidebar {
  background-color: #FFFFFF;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 90vh;
  position: relative;
  /* Sidebar Header */
  /* Company Info Card */
  /* Stat Card */
  /* Action Buttons */
  /* Edit Company Button */
  /* Backward compatibility styles */
}
.dashboard .sidebar::before {
  position: absolute;
  content: "";
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.dashboard .sidebar.btn-bottom {
  justify-content: space-between;
}
.dashboard .sidebar .sidebar-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4E7EB;
}
.dashboard .sidebar .company-logo-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F5F3FF 0%, #FAF8FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(71, 28, 193, 0.08);
}
.dashboard .sidebar .company-logo-wrapper img {
  width: 56px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard .sidebar .company-name-sidebar {
  font-size: 1.125rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
  line-height: 1.4;
}
.dashboard .sidebar .company-info-card {
  background: #F9FAFB;
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard .sidebar .info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard .sidebar .info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard .sidebar .info-label {
  color: #667085;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard .sidebar .info-value {
  color: #101828;
  font-weight: 600;
  font-size: 0.9375rem;
  word-break: break-word;
}
.dashboard .sidebar .currency-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.dashboard .sidebar .flag-icon {
  width: 16px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard .sidebar .stat-card {
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(71, 28, 193, 0.15);
}
.dashboard .sidebar .stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.dashboard .sidebar .stat-icon svg {
  stroke-width: 2.5;
}
.dashboard .sidebar .stat-content {
  flex: 1;
}
.dashboard .sidebar .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.dashboard .sidebar .stat-number {
  color: #FFFFFF;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
.dashboard .sidebar .sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard .sidebar .action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #101828;
}
.dashboard .sidebar .action-btn svg {
  flex-shrink: 0;
  stroke-width: 2;
}
.dashboard .sidebar .action-btn-primary {
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(71, 28, 193, 0.12);
}
.dashboard .sidebar .action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(71, 28, 193, 0.2);
  color: #FFFFFF;
}
.dashboard .sidebar .action-btn-secondary {
  background: #F3F4F6;
  border: 1px solid #D0D5DD;
  color: #344054;
  font-weight: 600;
}
.dashboard .sidebar .action-btn-secondary:hover {
  background: #E7E9F0;
  border-color: #471CC1;
  transform: translateY(-2px);
  color: #471CC1;
  box-shadow: 0 2px 8px rgba(71, 28, 193, 0.1);
}
.dashboard .sidebar .action-btn-secondary:hover svg {
  stroke: #471CC1;
}
.dashboard .sidebar .action-btn-small {
  font-size: 1.05rem !important;
}
.dashboard .sidebar .action-btn-small span {
  font-size: 1.05rem !important;
}
.dashboard .sidebar .edit-company-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 2px solid #E4E7EB;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #101828;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.dashboard .sidebar .edit-company-btn svg {
  stroke-width: 2;
}
.dashboard .sidebar .edit-company-btn:hover {
  border-color: #471CC1;
  color: #471CC1;
  background: #F5F3FF;
}
.dashboard .sidebar .logo {
  text-align: center;
}
.dashboard .sidebar .logo img {
  width: 64px;
  height: auto;
  border-radius: 4px;
}
.dashboard .sidebar .company-details ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard .sidebar .company-details ul li {
  display: flex;
  align-items: center;
  width: 100%;
}
.dashboard .sidebar .company-details ul li span.left {
  width: 50%;
  color: #475467;
  font-weight: 500;
  font-size: 0.875rem;
}
.dashboard .sidebar .company-details ul li span {
  color: #101828;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: start;
}
.dashboard .sidebar .shares-box {
  background-color: #F4F1FF;
  border-radius: 12px;
  padding: 12px;
}
.dashboard .sidebar .shares-box h5 {
  font-weight: 500;
}
.dashboard .sidebar .shares-box h4 {
  margin-bottom: 5px;
  color: #344054;
  font-weight: 600;
  font-size: 1.125rem;
}
.dashboard .sidebar .shares-box .amount {
  color: #292D35;
  font-weight: 700;
  font-size: 1.5rem;
}
.dashboard form .form-label {
  color: #101828;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 2px;
}
.dashboard form .form-control {
  height: 45px;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
}
.dashboard .notification-side-bar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard .notification-side-bar ul li {
  border-bottom: 1px solid #ECECF4;
  padding: 0 15px 15px 15px;
}
.dashboard .notification-side-bar ul li.latest {
  background-color: #F4F1FF;
  padding: 15px;
}
.dashboard .notification-side-bar ul li h5 {
  color: #101828;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.dashboard .notification-side-bar ul li p {
  color: #475467;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 5px;
}
.dashboard .notification-side-bar ul li .date-time {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dashboard .notification-side-bar ul li .date-time span.new-badge {
  background-color: #19B843;
  border-radius: 32px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 15px;
}
.dashboard .notification-side-bar ul li .date-time span {
  color: #471CC1;
  font-weight: 600;
  font-size: 1rem;
}
.dashboard .company-wizard h5 {
  color: #101828;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 15px;
}
.dashboard .company-wizard .steps-btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.dashboard .company-wizard .tab-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
}
.dashboard .company-wizard .tab-box .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.dashboard .company-wizard .tab-box .select2-container .select2-selection--single {
  height: 38px;
}
.dashboard .company-wizard .tab-box .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-style: solid;
  border-color: #000000;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 8px;
  left: 0.15em;
  position: relative;
  top: 10px;
  transform: rotate(138deg);
  vertical-align: top;
  width: 8px;
  margin: 0;
}
.dashboard .company-wizard .tab-box .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  top: 0;
  transform: rotate(135deg);
}
.dashboard .company-wizard form .iti {
  display: block;
}
.dashboard .company-wizard form .iti .iti__selected-dial-code {
  display: none;
}
.dashboard .company-wizard .red-text {
  color: #E91C12;
  font-weight: 500;
  font-size: 16px;
}
.dashboard .steps {
  border: 1px solid #D0D5DD;
  padding: 60px 0;
  border-radius: 8px;
}
.dashboard .steps h5 {
  font-size: 22px;
}
.dashboard .steps ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 0;
  position: relative;
  padding-left: 40px;
}
.dashboard .steps ul li:nth-child(2) a::before {
  position: absolute;
  content: "";
  left: 75px;
  top: 10px;
  width: 1px;
  height: 90%;
  background-color: #D0D5DD;
}
.dashboard .steps ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-size: 1rem;
  font-weight: 600;
}
.dashboard .steps ul li a.active {
  background-color: unset;
  color: #471CC1;
}
.dashboard .steps ul li a.active span {
  color: #471CC1;
  border: 1px solid #471CC1;
  background-color: #fff;
}
.dashboard .steps ul li a.done {
  background-color: unset;
  color: #471CC1;
}
.dashboard .steps ul li a.done span {
  color: #ffffff;
  border: 1px solid #471CC1;
  background-color: #471CC1;
}
.dashboard .steps ul li a span {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid #667085;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #667085;
  background-color: #fff;
  z-index: 10;
}
.dashboard .setup-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #F5F3FF 0%, #FAF8FF 100%);
  border-radius: 12px;
  border: 1px solid #E4E7EB;
  margin-bottom: 24px;
}
.dashboard .setup-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.dashboard .setup-icon svg {
  stroke-width: 2;
}
.dashboard .setup-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #101828;
  margin: 0 0 4px 0;
}
.dashboard .setup-subtitle {
  font-size: 0.875rem;
  color: #667085;
  margin: 0;
}
.dashboard .steps-container {
  margin-bottom: 24px;
}
.dashboard .setup-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.dashboard .setup-step-item {
  position: relative;
}
.dashboard .setup-step-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F9FAFB;
  border: 1px solid #E4E7EB;
  border-radius: 8px;
  color: #475467;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9375rem;
}
.dashboard .setup-step-link:hover {
  background: #F3F4F6;
  border-color: #D0D5DD;
}
.dashboard .setup-step-link.active {
  background: linear-gradient(135deg, #F5F3FF 0%, #FAF8FF 100%);
  border-color: #471CC1;
  color: #471CC1;
}
.dashboard .setup-step-link.active .step-number {
  background: #471CC1;
  color: #FFFFFF;
}
.dashboard .setup-step-link.done {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #16A34A;
}
.dashboard .setup-step-link.done .step-number {
  background: #22C55E;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}
.dashboard .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E4E7EB;
  color: #667085;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dashboard .step-number-heading {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111827;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.dashboard .step-text {
  flex: 1;
}
.dashboard .step-icon {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dashboard .setup-step-link.active .step-icon {
  opacity: 1;
}
.dashboard .setup-step-link.done .step-icon {
  opacity: 1;
  stroke-width: 3.5 !important;
}
.dashboard .setup-progress {
  background: #F9FAFB;
  border: 1px solid #E4E7EB;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}
.dashboard .progress-bar-container {
  width: 100%;
  height: 6px;
  background: #E4E7EB;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.dashboard .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #471CC1 0%, #6B3FD1 100%);
  border-radius: 3px;
  width: 25%;
  transition: width 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: visible;
  background-attachment: fixed;
  background-size: 200% 100%;
  animation: progressShimmer 2s infinite;
}
.dashboard .progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmerSweep 2s infinite;
  pointer-events: none;
}
.dashboard .progress-fill.complete {
  background: linear-gradient(90deg, #22C55E 0%, #16A34A 100%);
  width: 100%;
  animation: none;
}
.dashboard .progress-fill.complete::after {
  animation: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}
@keyframes shimmerSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes progressShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.dashboard .progress-text {
  font-size: 0.8125rem;
  color: #667085;
  margin: 0;
  font-weight: 500;
}
.dashboard .setup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard .btn-setup-primary {
  padding: 12px 16px;
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
}
.dashboard .btn-setup-primary:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(71, 28, 193, 0.2);
  color: #FFFFFF;
}
.dashboard .btn-setup-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dashboard .btn-setup-secondary {
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #E4E7EB;
  color: #101828;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
}
.dashboard .btn-setup-secondary:hover {
  background: #F9FAFB;
  border-color: #D0D5DD;
}
.dashboard .btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .btn-container .btn-container-inside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.dashboard .btn-container.closer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.dashboard .btn-container.arrow-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.dashboard .btn-container.arrow-btn button i {
  font-size: 20px;
}
.dashboard .btn-container.arrow-btn button.need-rotate i {
  transform: rotate(180deg);
}
.dashboard .profile {
  background: #F9FAFB;
  min-height: 100vh;
  padding: 40px 0;
}
.dashboard .profile .profile-header {
  margin-bottom: 30px;
}
.dashboard .profile .profile-header .profile-title {
  color: #101828;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 8px 0;
}
.dashboard .profile .profile-header .profile-subtitle {
  color: #667085;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}
.dashboard .profile h5 {
  font-weight: 700;
  font-size: 1.375rem;
  color: #101828;
}
.dashboard .profile .profile-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #EAECF0;
}
.dashboard .profile .profile-picture-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EAECF0;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 3px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-avatar .profile-avatar-initials {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.5px;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-info-inline {
  flex: 1;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-info-inline .profile-name {
  color: #101828;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
}
.dashboard .profile .profile-picture-section .profile-avatar-wrapper .profile-info-inline .profile-email {
  color: #667085;
  font-size: 0.95rem;
  margin: 0;
}
.dashboard .profile .profile-section {
  margin-bottom: 40px;
}
.dashboard .profile .profile-section:last-of-type {
  margin-bottom: 0;
}
.dashboard .profile .profile-section .section-title {
  color: #101828;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .profile .profile-section .section-title .section-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.dashboard .profile .profile-section .divider {
  height: 1px;
  background: #EAECF0;
  margin-bottom: 24px;
}
.dashboard .profile .form-group-disabled {
  margin-bottom: 24px;
}
.dashboard .profile .form-group-disabled:last-child {
  margin-bottom: 0;
}
.dashboard .profile .form-label-disabled {
  display: block;
  margin-bottom: 10px;
  color: #344054;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.dashboard .profile .form-control-disabled {
  background-color: #F3F4F6;
  border: 1px solid #D0D5DD;
  color: #667085;
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: not-allowed;
  transition: all 0.2s ease;
}
.dashboard .profile .form-control-disabled:disabled {
  background-color: #F3F4F6;
  border-color: #D0D5DD;
  color: #667085;
  opacity: 1;
}
.dashboard .profile .form-control-disabled:disabled:focus {
  border-color: #D0D5DD;
  box-shadow: none;
  background-color: #F3F4F6;
}
.dashboard .profile .form-control-disabled::-moz-placeholder {
  color: #98A2B3;
}
.dashboard .profile .form-control-disabled::placeholder {
  color: #98A2B3;
}
.dashboard .profile .profile-actions {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 576px) {
  .dashboard .profile .profile-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
.dashboard .profile .profile-actions .btn-danger-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #FEE4E2;
  color: #D92D20;
  border: 1.5px solid #FECACA;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard .profile .profile-actions .btn-danger-outline:hover {
  background-color: #FDC9C4;
  border-color: #F97066;
}
.dashboard .profile .profile-actions .btn-danger-outline:active {
  background-color: #FDC9C4;
  transform: scale(0.98);
}
.dashboard .profile .profile-actions .btn-danger-outline svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
@media (max-width: 576px) {
  .dashboard .profile .profile-actions .btn-danger-outline {
    width: 100%;
  }
}
.dashboard .profile .profile-actions .profile-actions-secondary {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
@media (max-width: 576px) {
  .dashboard .profile .profile-actions .profile-actions-secondary {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
}
.dashboard .profile .profile-actions .profile-actions-secondary .btn-secondary-outline {
  padding: 10px 24px;
  background-color: #FFFFFF;
  color: #344054;
  border: 1.5px solid #D0D5DD;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard .profile .profile-actions .profile-actions-secondary .btn-secondary-outline:hover {
  background-color: #F9FAFB;
  border-color: #98A2B3;
}
.dashboard .profile .profile-actions .profile-actions-secondary .btn-secondary-outline:active {
  background-color: #F3F4F6;
  transform: scale(0.98);
}
@media (max-width: 576px) {
  .dashboard .profile .profile-actions .profile-actions-secondary .btn-secondary-outline {
    width: 100%;
  }
}
.dashboard .profile-footer-links {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
}
.dashboard .profile-footer-links li a {
  color: #667085;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dashboard .profile-footer-links li a:hover {
  color: #101828;
}
.dashboard .profile-footer-links li .link-divider {
  color: #D0D5DD;
}
.dashboard .delete-account-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}
.dashboard .delete-account-modal.active {
  opacity: 1;
  visibility: visible;
}
.dashboard .delete-account-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.dashboard .delete-account-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.dashboard .delete-account-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid #EAECF0;
}
.dashboard .delete-account-header svg {
  color: #D92D20;
  flex-shrink: 0;
}
.dashboard .delete-account-header h4 {
  margin: 0;
  color: #101828;
  font-size: 1.25rem;
  font-weight: 600;
}
.dashboard .delete-account-body {
  padding: 24px;
}
.dashboard .delete-account-body .delete-account-description {
  color: #344054;
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.dashboard .delete-account-body .delete-account-description strong {
  color: #D92D20;
  font-weight: 600;
}
.dashboard .delete-account-body .delete-account-description .email-cta {
  display: inline-block;
  color: #0066CC;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.dashboard .delete-account-body .delete-account-description .email-cta:hover {
  color: #0052A3;
  background-color: #E3EFFF;
  text-decoration: underline;
}
.dashboard .delete-account-body .delete-account-description .email-cta:active {
  transform: scale(0.98);
}
.dashboard .delete-account-body .email-display {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}
.dashboard .delete-account-body .email-display .email-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #D0D5DD;
  border-radius: 6px;
  background-color: #F3F4F6;
  color: #667085;
  font-size: 0.95rem;
  cursor: not-allowed;
}
.dashboard .delete-account-body .email-display .email-input:disabled, .dashboard .delete-account-body .email-display .email-input[readonly] {
  background-color: #F3F4F6;
}
.dashboard .delete-account-body .email-display .copy-btn {
  padding: 8px 12px;
  background-color: #F3F4F6;
  border: 1.5px solid #D0D5DD;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #667085;
}
.dashboard .delete-account-body .email-display .copy-btn:hover {
  background-color: #EAECF0;
  border-color: #98A2B3;
}
.dashboard .delete-account-body .email-display .copy-btn.copied {
  background-color: #D1FAE5;
  border-color: #6EE7B7;
  color: #059669;
}
.dashboard .delete-account-body .email-display .copy-btn svg {
  width: 18px;
  height: 18px;
}
.dashboard .delete-account-body .steps-container {
  margin-bottom: 24px;
}
.dashboard .delete-account-body .steps-container h5 {
  color: #101828;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.dashboard .delete-account-body .steps-container .steps-list {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
}
.dashboard .delete-account-body .steps-container .steps-list li {
  color: #344054;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.dashboard .delete-account-body .steps-container .steps-list li strong {
  color: #101828;
  font-weight: 600;
}
.dashboard .delete-account-body .steps-container .steps-list li:last-child {
  margin-bottom: 0;
}
.dashboard .delete-account-body .steps-container .steps-list li .sub-steps {
  margin: 8px 0 0 0;
  padding-left: 20px;
  list-style: disc;
}
.dashboard .delete-account-body .steps-container .steps-list li .sub-steps li {
  color: #344054;
  font-size: 0.85rem;
  margin-bottom: 6px;
  line-height: 1.5;
}
.dashboard .delete-account-body .steps-container .steps-list li .sub-steps li strong {
  color: #D92D20;
  font-weight: 600;
}
.dashboard .delete-account-body .steps-container .steps-list li .sub-steps li:last-child {
  margin-bottom: 0;
}
.dashboard .delete-account-body .info-box {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background-color: #DBEAFE;
  border: 1px solid #93C5FD;
  border-radius: 6px;
  margin-bottom: 16px;
}
.dashboard .delete-account-body .info-box svg {
  color: #0284C7;
  flex-shrink: 0;
  margin-top: 2px;
}
.dashboard .delete-account-body .info-box span {
  color: #075985;
  font-size: 0.9rem;
  line-height: 1.4;
}
.dashboard .delete-account-body .info-box span strong {
  font-weight: 600;
  color: #0369A1;
}
.dashboard .delete-account-body .warning-box {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background-color: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 6px;
}
.dashboard .delete-account-body .warning-box svg {
  color: #D97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.dashboard .delete-account-body .warning-box span {
  color: #92400E;
  font-size: 0.9rem;
  line-height: 1.4;
}
.dashboard .delete-account-body .danger-notice {
  padding: 16px;
  background-color: #FEE2E2;
  border: 1.5px solid #FCA5A5;
  border-radius: 8px;
  margin-bottom: 0;
}
.dashboard .delete-account-body .danger-notice h6 {
  color: #991B1B;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.dashboard .delete-account-body .danger-notice .delete-list {
  margin: 0 0 12px 0;
  padding-left: 20px;
  list-style: disc;
}
.dashboard .delete-account-body .danger-notice .delete-list li {
  color: #7F1D1D;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.dashboard .delete-account-body .danger-notice .delete-list li:last-child {
  margin-bottom: 0;
}
.dashboard .delete-account-body .danger-notice .danger-notice-footer {
  margin: 0;
  color: #991B1B;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.dashboard .delete-account-footer {
  padding: 16px 24px;
  border-top: 1px solid #EAECF0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.dashboard .delete-account-footer .btn-secondary-outline {
  padding: 10px 24px;
  background-color: #FFFFFF;
  color: #344054;
  border: 1.5px solid #D0D5DD;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.dashboard .delete-account-footer .btn-secondary-outline:hover {
  background-color: #F9FAFB;
  border-color: #98A2B3;
}
.dashboard .delete-account-footer .btn-secondary-outline:active {
  background-color: #F3F4F6;
  transform: scale(0.98);
}
@media (max-width: 576px) {
  .dashboard .delete-account-content {
    max-width: calc(100% - 20px);
  }
  .dashboard .delete-account-header {
    padding: 20px;
  }
  .dashboard .delete-account-header h4 {
    font-size: 1.1rem;
  }
  .dashboard .delete-account-body {
    padding: 20px;
  }
  .dashboard .delete-account-footer {
    padding: 16px;
  }
}
.dashboard .ordinary-share-box {
  padding: 20px;
  border-radius: 12px;
}
.dashboard .ordinary-share-box h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #101828;
  text-align: center;
  margin-bottom: 15px;
}
.dashboard .ordinary-share-box ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard .ordinary-share-box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #475467;
  font-weight: 500;
  font-size: 0.875rem;
}
.dashboard .ordinary-share-box ul li span {
  color: #101828;
}
.dashboard .ordinary-share-box table td {
  color: #475467;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 12px;
}
.dashboard .ordinary-share-box table td span {
  color: #101828;
}
.dashboard .radio-hidden {
  display: none;
}
.dashboard .ordinary-share-box {
  border: 2px solid #D0D5DD;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard .ordinary-share-box:hover {
  border-color: #471CC1;
  background-color: #F5F3FF;
  box-shadow: 0 2px 8px rgba(71, 28, 193, 0.1);
}
.dashboard .radio-hidden:checked + .ordinary-share-box {
  background-color: #EDE8F9;
  border: 2px solid #471CC1;
  box-shadow: 0 4px 12px rgba(71, 28, 193, 0.2);
}
.dashboard .file-upload {
  /* Modern Upload Box Styles */
}
.dashboard .file-upload .upload-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  background: white;
  padding: 40px;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 99;
}
.dashboard .file-upload .upload-box .remove-btn {
  top: 15px;
  display: block;
  position: absolute;
  right: 15px;
  color: #471CC1;
  text-decoration: none;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
}
.dashboard .file-upload .upload-box:hover {
  border-color: #471CC1;
}
.dashboard .file-upload .upload-box input {
  display: none;
}
.dashboard .file-upload .upload-icon {
  margin-bottom: 10px;
}
.dashboard .file-upload .upload-icon img {
  background-color: #F2F4F7;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: 5px solid #F9FAFB;
}
.dashboard .file-upload .upload-text {
  color: #667085;
  font-weight: 400;
}
.dashboard .file-upload .upload-text strong {
  color: #1D2939;
  font-weight: 600;
}
.dashboard .file-upload .modern-upload {
  border: 2px dashed #D0D5DD !important;
  background: #F9FAFB !important;
  padding: 24px 20px !important;
  transition: all 0.3s ease;
}
.dashboard .file-upload .modern-upload .upload-icon {
  color: #471CC1;
  margin-bottom: 16px;
}
.dashboard .file-upload .modern-upload .upload-icon svg {
  stroke-width: 1.5;
}
.dashboard .file-upload .modern-upload .upload-text {
  color: #101828;
  margin-bottom: 8px;
}
.dashboard .file-upload .modern-upload .upload-text strong {
  color: #471CC1;
}
.dashboard .file-upload .modern-upload .upload-subtext {
  color: #667085;
  font-size: 0.875rem;
}
.dashboard .file-upload .modern-upload:hover {
  border-color: #471CC1;
  background: #F5F3FF !important;
}
.dashboard .file-upload .current-logo-preview {
  text-align: center;
  padding: 16px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #E4E7EB;
}
.dashboard .file-upload .current-logo-preview .logo-preview-image {
  max-width: 150px;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard .form-section {
  padding: 12px 14px;
  background: #F9FAFB;
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  margin-bottom: 12px;
}
.dashboard .form-section:last-child {
  margin-bottom: 0;
}
.dashboard .section-header {
  margin-bottom: 10px;
}
.dashboard .section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #101828;
  margin: 0 0 4px 0;
}
.dashboard .section-description {
  font-size: 0.8125rem;
  color: #667085;
  margin: 0;
}
.dashboard .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dashboard .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard .form-group-full {
  grid-column: 1/-1;
}
.dashboard .form-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #101828;
  margin: 0;
}
.dashboard .form-label .required {
  color: #DC2626;
}
.dashboard .form-control,
.dashboard .form-select {
  padding: 10px 14px;
  font-size: 0.9375rem;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.dashboard .form-control:focus,
.dashboard .form-select:focus {
  border-color: #471CC1;
  box-shadow: 0 0 0 3px rgba(71, 28, 193, 0.1);
}
.dashboard .form-control.is-invalid,
.dashboard .form-select.is-invalid {
  border-color: #DC2626;
}
.dashboard .form-control.is-invalid:focus,
.dashboard .form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.dashboard .invalid-feedback {
  color: #DC2626;
  font-size: 0.8125rem;
  margin-top: 4px;
}
.dashboard .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.dashboard .btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1.5px solid #D0D5DD;
  color: #475467;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.dashboard .btn-outline-secondary:hover {
  border-color: #471CC1;
  color: #471CC1;
  background: #F5F3FF;
}
.dashboard .btn-next-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.dashboard .btn-next-modern svg {
  transition: transform 0.3s ease;
}
.dashboard .btn-next-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(71, 28, 193, 0.2);
}
.dashboard .btn-next-modern:hover svg {
  transform: translateX(4px);
}
.dashboard .btn-next-modern:active {
  transform: translateY(0);
}
.dashboard .upload-subtext {
  color: #667085;
  font-size: 14px;
  margin-top: 4px;
}
.dashboard .middle-btn-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 6px 10px;
}
.dashboard .middle-btn-container li {
  gap: 8px;
}
.dashboard .middle-btn-container li a.nav-link {
  padding: 8px 20px;
  width: 90px;
  text-align: center;
  border-radius: 8px;
  margin: 0 !important;
}
.dashboard .middle-btn-container li a.nav-link.active {
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  color: #fff;
}
.dashboard .middle-btn-container li a.nav-link.active:hover {
  color: #fff;
}
.dashboard .action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dashboard .action-btn span {
  font-size: 20px;
  cursor: pointer;
}
.dashboard table .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-style: solid;
  border-color: #000000;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  left: 0.15em;
  position: relative;
  top: 5px;
  transform: rotate(138deg);
  vertical-align: top;
  width: 10px;
  margin: 0;
}
.dashboard table .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  top: 0;
  transform: rotate(135deg);
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .option-icon {
  display: flex;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-submitted {
  background-color: #E3EFFF;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-submitted .option-text {
  color: #205BA8;
  font-size: 14px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-pending {
  background-color: #FFF1DB;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-pending .option-text {
  color: #D68400;
  font-size: 14px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-complete {
  background-color: #E6FFDD;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-complete .option-text {
  color: #3E8D21;
  font-size: 14px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-cancel {
  background-color: #FFE9E8;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-cancel .option-icon i {
  color: #F04438;
}
.dashboard table .select2-container .select2-selection--single .select2-selection__rendered .status-cancel .option-text {
  color: #F04438;
  font-size: 14px;
}
.dashboard .select2-results__option .status-submitted {
  background-color: #E3EFFF;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard .select2-results__option .status-submitted .option-icon {
  display: flex;
}
.dashboard .select2-results__option .status-submitted .option-text {
  color: #205BA8;
  font-size: 14px;
}
.dashboard .select2-results__option .status-pending {
  background-color: #FFF1DB;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard .select2-results__option .status-pending .option-icon {
  display: flex;
}
.dashboard .select2-results__option .status-pending .option-text {
  color: #D68400;
  font-size: 14px;
}
.dashboard .select2-results__option .status-complete {
  background-color: #E6FFDD;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard .select2-results__option .status-complete .option-icon {
  display: flex;
}
.dashboard .select2-results__option .status-complete .option-text {
  color: #3E8D21;
  font-size: 14px;
}
.dashboard .select2-results__option .status-cancel {
  background-color: #FFE9E8;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dashboard .select2-results__option .status-cancel .option-icon {
  display: flex;
}
.dashboard .select2-results__option .status-cancel .option-icon i {
  color: #F04438;
}
.dashboard .select2-results__option .status-cancel .option-text {
  color: #F04438;
  font-size: 14px;
}
.dashboard table .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
}
.dashboard table .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 24px;
}
.dashboard table .select2-container--open .select2-dropdown--below {
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  border-top: 1px solid #d7d7d7;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.dashboard table .select2-container--default .select2-selection--single {
  border: none;
}
.dashboard table .select2-results__option {
  padding: 8px 10px;
}
.dashboard .wrap-text-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard #confirmModal .modal-header {
  border-bottom: none;
}
.dashboard #confirmModal img {
  width: 24px;
}
.dashboard .back-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .back-arrow a {
  text-decoration: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 100%;
}
.dashboard .back-arrow h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 0;
}
.dashboard #successToast {
  background-color: #E6FFDD;
  border: 1px solid #3E8D21;
  border-radius: 8px;
}
.dashboard #successToast .toast-header {
  background-color: #E6FFDD;
}
.dashboard #errorToast {
  background-color: #FEF3F2;
  border: 1px solid #F04438;
  border-radius: 8px;
}
.dashboard #errorToast .toast-header {
  background-color: #FEF3F2;
}
.dashboard #contactModal .modal-header {
  border-bottom: none;
}
.dashboard #contactModal .detail {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard #contactModal .detail span {
  font-weight: 700;
  font-size: 18px;
  color: #344054;
}
.dashboard #contactModal a {
  color: #101828;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
  display: block;
}
.dashboard .sidebar-company-info {
  padding-left: 60px;
}
.dashboard .sidebar-company-info h5 {
  font-size: 22px;
}
.dashboard .sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.dashboard .sidebar-logo img {
  width: 50px;
  height: auto;
  border-radius: 4px;
}
.dashboard .sidebar-logo span {
  font-weight: 500;
  font-size: 14px;
  color: #101828;
}
.dashboard .v-line {
  width: 1px;
  height: 90%;
  background-color: #D0D5DD;
}

.fl-wrapper {
  z-index: 99999 !important;
}

.modal-footer-btn {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.tab-box .select2-container input:-moz-placeholder {
  width: 100% !important;
}

.tab-box .select2-container,
.tab-box .select2-container li:only-child,
.tab-box .select2-container input:placeholder-shown {
  width: 100% !important;
}
.tab-box .input-group {
  flex-wrap: nowrap;
}
.tab-box .select2-container--default .select2-selection--single .select2-selection__clear {
  height: 36px;
  margin-right: 15px;
}
.tab-box .select2-container--default .select2-selection--single .select2-selection__clear span {
  border: 2px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.tab-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.tab-box p {
  line-height: 1.2;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #471CC1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* Step Badge */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #1F2937;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

#main-wrap {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded #main-wrap {
  opacity: 1;
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

.modal .nav-tabs {
  border-bottom: 1px solid #667085;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.modal .nav-tabs .nav-item .nav-link {
  color: #667085;
  font-size: 20px;
  font-weight: 600;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.modal .nav-tabs .nav-item .nav-link.active {
  color: #101828;
  background-color: unset;
  border-bottom: 3px solid #471CC1;
}

.company-wizard .nav-tabs {
  border-bottom: 1px solid #667085;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.company-wizard .nav-tabs .nav-item .nav-link {
  color: #667085;
  font-size: 20px;
  font-weight: 600;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.company-wizard .nav-tabs .nav-item .nav-link.active {
  color: #101828;
  background-color: unset;
  border-bottom: 3px solid #471CC1;
}

.custom-add-btn-input .input-group input {
  border-right: unset;
}
.custom-add-btn-input .input-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D0D5DD;
  border-left: unset;
}
.custom-add-btn-input .input-group button:hover {
  background-color: transparent;
}
.custom-add-btn-input .input-group button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid #000;
}
.custom-add-btn-input .input-group button span i {
  font-size: 20px;
  color: #000;
}

.check-box-delete {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  line-height: 1;
}

.doc-name {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #101828;
  font-size: 14px;
  font-weight: 400;
}

.doc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.doc-list li {
  display: flex;
  justify-content: space-between;
}

.table .link {
  text-decoration: none;
  color: #471CC1;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .dashboard nav.navbar .container {
    justify-content: center;
    row-gap: 10px;
  }
  .dashboard .sidebar {
    min-height: auto;
  }
  .dashboard .sidebar::before {
    display: none;
  }
}
/* Right-side update panel - matches notification look & slide behaviour */
.right-side-panel__sheet {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2000;
  /* ensure children layout correctly */
}
.right-side-panel__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 20px;
}
.right-side-panel__footer {
  flex: 0 0 auto;
  padding: 14px 20px;
  border-top: 1px solid #ECECF4;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: #fff;
}

/* Shareholders Page Styling */
.shareholder-tabs-container .shareholder-tabs {
  border-bottom: 2px solid #E4E7EB;
  gap: 0;
}
.shareholder-tabs-container .shareholder-tabs .nav-item {
  margin-right: 0;
}
.shareholder-tabs-container .shareholder-tabs .shareholder-tab-btn {
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #667085;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 0;
  margin-right: 24px;
  transition: all 0.2s ease;
}
.shareholder-tabs-container .shareholder-tabs .shareholder-tab-btn:hover {
  color: #471CC1;
  border-bottom-color: #E4E7EB;
}
.shareholder-tabs-container .shareholder-tabs .shareholder-tab-btn.active {
  color: #471CC1;
  border-bottom-color: #471CC1;
  background: transparent;
}

.shareholder-details-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E4E7EB;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shareholder-section .section-divider {
  height: 1px;
  background: #EAECF0;
}
.shareholder-section .share-section-header .share-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #344054;
  margin-bottom: 0;
}
.shareholder-section .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.shareholder-section .form-check .form-check-input {
  margin-top: 3px;
  cursor: pointer;
}
.shareholder-section .form-check .form-check-input:checked {
  background-color: #471CC1;
  border-color: #471CC1;
}
.shareholder-section .form-check .form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #344054;
}
.shareholder-section .form-check .form-check-label .check-label-text {
  font-size: 0.95rem;
}

.shareholder-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .shareholder-actions {
    flex-direction: column;
  }
}
.shareholder-actions .btn-shareholder-skip {
  background: transparent;
  color: #667085;
  border: 1.5px solid #D0D5DD;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.shareholder-actions .btn-shareholder-skip:hover {
  background: #F9FAFB;
  border-color: #999;
  color: #344054;
}
.shareholder-actions > div:last-child {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .shareholder-actions > div:last-child {
    width: 100%;
    flex-direction: column;
  }
}
.shareholder-actions .btn-wizard-primary,
.shareholder-actions .btn-wizard-secondary {
  min-width: 130px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.shareholder-actions .btn-wizard-primary i,
.shareholder-actions .btn-wizard-secondary i {
  font-size: 0.875rem;
}
.shareholder-actions .btn-wizard-primary {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: #FFFFFF;
  border: none;
}
.shareholder-actions .btn-wizard-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.shareholder-actions .btn-wizard-primary:active {
  transform: translateY(0);
}
.shareholder-actions .btn-wizard-secondary {
  background: #FFFFFF;
  color: #667085;
  border: 1.5px solid #D0D5DD;
}
.shareholder-actions .btn-wizard-secondary:hover {
  background: #F9FAFB;
  border-color: #999;
  color: #344054;
}
.shareholder-actions .btn-wizard-secondary:active {
  background: #F3F4F6;
}

.form-group {
  margin-bottom: 0;
}
.form-group .form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #344054;
  margin-bottom: 6px;
}
.form-group .form-control,
.form-group .form-select {
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.form-group .form-control:focus,
.form-group .form-select:focus {
  border-color: #471CC1;
  box-shadow: 0 0 0 3px rgba(71, 28, 193, 0.1);
}
.form-group .form-control.is-invalid,
.form-group .form-select.is-invalid {
  border-color: #DC2626;
}
.form-group .invalid-feedback {
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shareholder-details-card {
    padding: 24px;
  }
  .shareholder-tabs-container .shareholder-tab-btn {
    margin-right: 16px;
    font-size: 0.875rem;
  }
}
/* Share Details Page Styling */
.wizard-page-header {
  margin-bottom: 20px;
}
.wizard-page-header .wizard-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.wizard-page-header .wizard-page-subtitle {
  font-size: 0.95rem;
  color: #667085;
  margin: 0;
}

.share-details-card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E4E7EB;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.share-section .section-divider {
  height: 1px;
  background: #EAECF0;
}

.share-section-header .share-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #344054;
  margin-bottom: 6px;
}

.share-section-description {
  font-size: 0.9375rem;
  color: #667085;
  margin: 0;
}

.share-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .share-types-grid {
    grid-template-columns: 1fr;
  }
}

.share-type-card {
  padding: 16px;
  border: 1.5px solid #E4E7EB;
  border-radius: 8px;
  background: #FAFBFC;
  transition: all 0.2s ease;
}
.share-type-card:hover {
  border-color: #D0D5DD;
  background: #F9FAFB;
}
.share-type-card .form-check {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.share-type-card .form-check-input {
  margin-top: 3px;
  cursor: pointer;
}
.share-type-card .form-check-input:checked {
  background-color: #471CC1;
  border-color: #471CC1;
}
.share-type-card .form-check-label {
  cursor: pointer;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  align-items: flex-start;
}
.share-type-card .form-check-label .share-type-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #344054;
}
.share-type-card .form-check-label .share-type-desc {
  font-size: 0.8125rem;
  color: #667085;
  font-weight: 400;
}
.share-type-card .check-box-delete {
  margin-left: auto !important;
  padding: 4px 8px !important;
  font-size: 1.2rem;
  line-height: 1;
  background-color: #DC2626 !important;
  border: none !important;
}
.share-type-card .check-box-delete:hover {
  background-color: #B91C1C !important;
}

.custom-share-input-section {
  padding-top: 16px;
}

/* Document Cards Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.document-card {
  background: #FFFFFF;
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.document-card:hover {
  border-color: #D0D5DD;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
}

.document-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.document-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.document-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #101828;
  margin: 0;
  word-break: break-word;
}

.document-description {
  color: #475467;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.document-actions {
  display: flex;
  gap: 8px;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid #D0D5DD;
  color: #471CC1;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-primary:hover {
  background: #F3F4F6;
  border-color: #471CC1;
  color: #471CC1;
  text-decoration: none;
}
.btn-outline-primary.btn-sm {
  padding: 8px 12px;
  font-size: 0.8125rem;
}
.btn-outline-primary svg {
  width: 16px;
  height: 16px;
}

.agreement-info {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 20px;
}

.wizard-content {
  background: transparent;
}

/* Global Button Styles */
.btn-wizard-primary {
  background: linear-gradient(135deg, #471CC1 0%, #6B3FD1 100%);
  color: #FFFFFF;
  border: none !important;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-wizard-primary:hover {
  background: linear-gradient(135deg, #39169b 0%, #5a2fb8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(71, 28, 193, 0.4);
  color: #FFFFFF;
  text-decoration: none;
}
.btn-wizard-primary:active {
  transform: translateY(0);
}

.btn-wizard-secondary {
  background: #FFFFFF;
  color: #667085;
  border: 1.5px solid #D0D5DD !important;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-wizard-secondary:hover {
  background: #F9FAFB;
  border-color: #999 !important;
  color: #344054;
  text-decoration: none;
}
.btn-wizard-secondary:active {
  background: #F3F4F6;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .wizard-actions {
    flex-direction: column;
  }
}
.wizard-actions .btn-wizard-primary,
.wizard-actions .btn-wizard-secondary {
  min-width: 140px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wizard-actions .btn-wizard-primary i,
.wizard-actions .btn-wizard-secondary i {
  font-size: 0.875rem;
}
.wizard-actions .btn-wizard-primary {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: #FFFFFF;
  border: none;
}
.wizard-actions .btn-wizard-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.wizard-actions .btn-wizard-primary:active {
  transform: translateY(0);
}
.wizard-actions .btn-wizard-secondary {
  background: #FFFFFF;
  color: #667085;
  border: 1.5px solid #D0D5DD;
}
.wizard-actions .btn-wizard-secondary:hover {
  background: #F9FAFB;
  border-color: #999;
  color: #344054;
}
.wizard-actions .btn-wizard-secondary:active {
  background: #F3F4F6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .share-details-card {
    padding: 24px;
  }
  .wizard-page-header {
    margin-bottom: 24px;
  }
  .wizard-page-header .wizard-page-title {
    font-size: 1.5rem;
  }
  .wizard-page-header .wizard-page-subtitle {
    color: #475467;
    font-size: 0.9375rem;
    margin: 0;
  }
  .share-types-grid {
    grid-template-columns: 1fr;
  }
}
.shares-skeleton-grid {
  margin-left: 0;
  margin-right: 0;
}

.shares-skeleton-col {
  display: flex;
  align-items: stretch;
}

.shares-skeleton-card {
  width: 100%;
  padding: 15px;
  background-color: #F4F1FF;
  border-radius: 12px;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 170px;
  box-shadow: none;
  overflow: hidden;
}

/* top note (replaces the <p> area) */
.shares-skeleton-note {
  height: 14px;
  width: 70%;
  margin: 0 0 6px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
}

/* company area */
.shares-skeleton-company-name {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 18px;
}

.shares-skeleton-avatar {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
  flex: 0 0 64px;
}

.shares-skeleton-title {
  height: 20px;
  width: 55%;
  margin: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
}

/* card body content lines */
.shares-skeleton-body {
  padding: 10px 0 0 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.shares-skeleton-line {
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
}

.shares-skeleton-line--short {
  width: 40%;
}

.shares-skeleton-line--long {
  width: 80%;
}

.shares-skeleton-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.shares-skeleton-btn {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
}

.shares-skeleton-btn.small {
  width: 36px;
  height: 36px;
}

/* shimmer animation */
@keyframes shares-skel-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* Responsiveness: matches your existing grid behavior */
/* col classes defined by bootstrap; no extra grid rules required */
/* small visual tweak for small screens to keep spacing neat */
@media (max-width: 767px) {
  .shares-skeleton-card {
    min-height: 150px;
    padding: 12px;
  }
  .shares-skeleton-avatar {
    width: 56px;
    height: 56px;
  }
}
/* Skeletons for share cards
   Place this file under resources/assets/css/sass/components and import it into app.sass
*/
.shares-skeleton-row .shares-skeleton-card {
  padding: 15px;
  background-color: #F4F1FF;
  border-radius: 12px;
  border: none;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shares-skeleton-row .skeleton-item .skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #ECECEC 25%, #F7F7F7 50%, #ECECEC 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: skeleton-shimmer 1.2s linear infinite;
  margin: 8px 0;
}
.shares-skeleton-row .skeleton-item .skeleton-line.short {
  width: 60%;
  height: 14px;
  margin-bottom: 18px;
}
.shares-skeleton-row .skeleton-item .company-name.skeleton-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
}
.shares-skeleton-row .skeleton-item .skeleton-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ECECEC 25%, #F7F7F7 50%, #ECECEC 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.shares-skeleton-row .skeleton-item .skeleton-title {
  height: 18px;
  width: 45%;
  border-radius: 6px;
  background: linear-gradient(90deg, #ECECEC 25%, #F7F7F7 50%, #ECECEC 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.shares-skeleton-row .skeleton-item .skeleton-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.shares-skeleton-row .skeleton-item .skeleton-list li.skeleton-line {
  height: 12px;
  width: 100%;
}
.shares-skeleton-row .skeleton-item .card-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.shares-skeleton-row .skeleton-item .card-btn .skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ECECEC 25%, #F7F7F7 50%, #ECECEC 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.shares-skeleton-row .skeleton-item .card-btn .skeleton-btn {
  width: 36%;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ECECEC 25%, #F7F7F7 50%, #ECECEC 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s linear infinite;
}

/* shimmer animation */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* Responsive tweak: 4 columns -> 3 -> 2 -> 1 */
/* Custom Agreement Page Skeleton */
.issue-agreement-skeleton {
  padding: 20px;
}

.skeleton-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
  flex-shrink: 0;
}

.document-card-skeleton {
  background: #FFFFFF;
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.document-header-skeleton {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.skeleton-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
  flex-shrink: 0;
}

.skeleton-icon-small {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
  flex-shrink: 0;
  margin-right: 8px;
}

.skeleton-button {
  background: linear-gradient(90deg, #f0f0f3, #e6e6ea, #f0f0f3);
  background-size: 200% 100%;
  animation: shares-skel-shimmer 1.2s infinite linear;
}

.skeleton-info-card {
  background: #F9FAFB;
  border: 1px solid #E4E7EB;
  border-left: 4px solid #667EEA;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
