@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat|Ubuntu:wght@100;200;300;400;500;600;700;800;900&');*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-family: "Poppins", sans-serif !important;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
}

h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
}

p {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
}

a {
  font-family: "Poppins", sans-serif !important;
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  font-family: "Poppins", sans-serif !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-image: linear-gradient(90deg, #000051, #2a0c57);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: #d2302c;
  border-bottom-color: #d2302c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  text-decoration: none;
}

.back-to-top:hover {
  text-decoration: none;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #d2302c;
  transition: all 0.4s;
  border: 2px solid #d2302c;
}

.back-to-top i:hover {
  background: #d2302c;
  color: #fff;
}

.total-text p {
  color: rgb(184, 4, 4);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

.total-text p {
  color: rgb(184, 4, 4);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-container {
  text-align: center;
  color: #fff;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #7452AC;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ............................................. */
/* Style */
/* ............................................. */
.g-10 {
  gap: 10px 0px;
}

:root {
  --primary-color: #1e293b;
  --secondary-color: #334155;
  --golden-color: #f8b739;
  --dark-color: #1a365d;
  --light-color: #f5f8fc;
  --bg-color: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --bg-clr: linear-gradient(135deg, #0f172a33 0%, #1e293b3b 50%, #3341555c 100%);

  --gol-bg-color: linear-gradient(135deg, var(--golden-color) 0%, #e09821 100%);
  --gol-bg-clr: linear-gradient(135deg, #d4af37 0%, #f4d467 100%);
}

.place-center {
  place-content: center;
}

/* Datepicker */

/* Date picker */

.datepicker-switch {
  font-weight: 500;
  font-size: 12px;
  padding: 9px 2px;
  background: var(--bg-clr);
}
.day {
  padding: 3px 11px;
  font-weight: 400;
  font-size: 12px;
}

.datepicker table tr td.active {
  background: var(--primary-color) !important ;
  color: #fff !important;
}

.today {
  background: #fff !important;
  color: var(--primary-color) !important ;
  /* box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4) !important; */
  /* border: 1px solid var(--primary-color) !important !important; */
  position: relative;
}

.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
  background-color: var(--primary-color) !important ;
  background: var(--primary-color) !important ;
  color: #fff;
}

span.year.active.focused {
  background-color: var(--primary-color) !important ;
}

.today::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 3px;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid var(--primary-color) !important;
  transform: rotate(91deg);
  /* transform-origin: bottom right; */
}

.dow {
  color: #000;
  font-weight: 700;
  padding: 6px 2px;
  font-size: 12px;
}

span.year.active {
  background: var(--primary-color) !important ;
}

span.month.active {
  background: var(--primary-color) !important ;
}

/* ............................................. */
/* Dashboard section start */
/* ............................................. */

/* Sidebar Styles */
.dash__sidebar__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-color);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
}

.dash__sidebar__wrapper.dash__sidebar__collapsed {
  width: 80px;
}

.dash__sidebar__wrapper::-webkit-scrollbar {
  width: 6px;
}

.dash__sidebar__wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.dash__sidebar__wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.dash__sidebar__logo {
  padding: 25px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.dash__logo__content {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.dash__sidebar__collapsed .dash__logo__text {
  opacity: 0;
  width: 0;
}

.dash__sidebar__close {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.dash__sidebar__close i {
  color: #ffffff;
  font-size: 18px;
}

.dash__sidebar__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.dash__sidebar__collapsed .dash__sidebar__close {
  opacity: 0;
  width: 0;
  padding: 0;
  margin: 0;
}

.dash__logo__icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.dash__logo__icon i {
  font-size: 22px;
  color: #ffffff;
}

.dash__logo__text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  transition:
    opacity 0.3s ease,
    width 0.3s ease;
}

.dash__menu__container {
  padding: 20px 0;
}

.dash__menu__item {
  margin: 0 15px 8px 10px;
}

.dash__menu__link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.dash__menu__link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.dash__menu__link.dash__menu__active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.dash__menu__icon {
  width: 20px;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
  text-align: center;
}

.dash__menu__text {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.dash__sidebar__collapsed .dash__menu__text {
  opacity: 0;
  width: 0;
}

.dash__menu__arrow {
  font-size: 12px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  flex-shrink: 0;
}

.dash__sidebar__collapsed .dash__menu__arrow {
  opacity: 0;
  width: 0;
}

.dash__menu__arrow.dash__arrow__rotate {
  transform: rotate(180deg);
}

.dash__submenu__wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dash__submenu__wrapper.dash__submenu__open {
  max-height: 500px;
}

.dash__sidebar__collapsed .dash__submenu__wrapper {
  display: none;
}

.dash__submenu__item {
  padding-left: 47px;
}

.dash__submenu__link {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 4px 0;
}

.dash__submenu__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding-left: 20px;
}

/* Header Styles */
.dash__header__wrapper {
  position: fixed;
  top: 0;
  left: 280px;
  right: 0;
  height: 55px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 999;
  transition: left 0.3s ease;
}

.dash__header__wrapper.dash__header__expanded {
  left: 80px;
}

.dash__header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash__mobile__toggle {
  background: none;
  border: none;
  font-size: 17px;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash__mobile__toggle:hover {
  color: var(--primary-color);
}

.dash__mobile__toggle i {
  font-size: 22px;
}

.dash__header__title {
  font-size: 17px;
  font-weight: 600;
  color: #1a202c;
  letter-spacing: 0.3px;
  margin: 0;
}

.dash__header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash__header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dash__header__icon__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f7fafc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dash__header__icon__btn:hover {
  background: #e2e8f0;
}

.dash__header__icon__btn i {
  font-size: 18px;
  color: #4a5568;
}

.dash__notification__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #f56565;
  border-radius: 50%;
}

/* Main Content Styles */
.dash__main__wrapper {
  margin-left: 280px;
  margin-top: 55px;
  padding: 10px;
  min-height: calc(100vh - 70px);
  transition: margin-left 0.3s ease;
  background: #f3f1f1;
}

.dash__main__wrapper.dash__main__expanded {
  margin-left: 80px;
}

.dash__content__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* margin-top: 20px; */
  margin-bottom: 15px;
}
.sub-heading {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  margin-bottom: 17px;
  width: fit-content;
  padding-bottom: 7px;
}

.sub-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background: var(--bg-color);
  border-radius: 10px;
}

.dash__card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dash__card__title {
  font-size: 16px;
  font-weight: 500;
  color: #1a202c;
}

.dash__card__subtitle {
  font-size: 12px;
  color: #718096;
  letter-spacing: 0.3px;
  line-height: 14px;
}

/* Form Styles */
.dash__form__section__title {
  margin-bottom: 15px;
  margin-top: 1.5rem;
  font-size: 15px;
}

.dash__form__section__title span {
  position: relative;
  padding-bottom: 7px;
}
.dash__form__section__title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: var(--bg-color);
  border-radius: 10px;
}

.dash__form__group {
  display: flex;
  flex-direction: column;
}

.dash__form__group.dash__form__full {
  grid-column: 1 / -1;
}

.dash__form__label {
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.dash__form__required {
  color: #f56565;
  margin-left: 4px;
}

.dash__form__input {
  padding: 12px 16px;
  font-size: 13px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f7fafc;
  width: 100%;
}

.dash__form__input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.dash__form__select {
  padding: 12px 8px;
  font-size: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f7fafc;
  cursor: pointer;
  width: 100%;
}

.dash__form__select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.dash__form__textarea {
  padding: 12px 16px;
  font-size: 13px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f7fafc;
  resize: vertical;
  min-height: 70px;
  font-family: inherit;
}

.dash__form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.dash__checkbox__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.dash__checkbox__input {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.dash__checkbox__label {
  font-size: 13px;
  color: #4a5568;
  cursor: pointer;
  user-select: none;
}
.two_selectbox {
  display: flex;
  gap: 10px;
  width: 100%;
}
.two_selectbox select {
  width: 50%;
}

.dash__radio__container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dash__radio__wrapper {
  display: flex;
  align-items: center;
}

.dash__radio__input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.dash__radio__label {
  font-size: 13px;
  color: #4a5568;
  cursor: pointer;
  user-select: none;
}

.dash__form__actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.dash__btn__primary {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: var(--bg-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  /*  */
  display: flex;
  align-items: center;
}

.dash__btn__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.dash__btn__secondary {
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  background: #e2e8f0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash__btn__secondary:hover {
  background: #cbd5e0;
}

/* Overlay for mobile */
.dash__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.dash__sidebar__wrapper.dash__sidebar__hidden {
  transform: translateX(-100%);
}

/* ............................................. */
/* Dashboard section end */
/* ............................................. */

/* Top Contact Bar */
.topbar-contact {
  background: #fff;
  border-bottom: 1px solid #e5e9f2;
  padding: 10px 0;
  font-size: 0.875rem;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  color: #5a6c7d;
}

.contact-info-item i {
  margin-right: 6px;
  color: var(--primary-color);
}

/* Header Navigation */
.navbar-main {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.brand-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle-wrapper {
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.logo-circle-wrapper i {
  font-size: 30px;
  color: #fff;
}

.brand-text-wrapper h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  line-height: 1.2;
}

.brand-text-wrapper p {
  font-size: 0.75rem;
  color: #5a6c7d;
  margin: 0;
}

.action-buttons-group {
  display: flex;
  gap: 10px;
}

.btn-action-primary,
.btn-action-secondary,
.btn-action-success {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-action-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-action-primary:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-action-secondary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #fff;
}

.btn-action-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 123, 200, 0.3);
}

.btn-action-success {
  background: var(--gol-bg-clr);
  color: #fff;
}

.btn-action-success:hover {
  background: var(--gol-bg-color);
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); */
}

/* Navigation Menu */
.navbar-menu-links {
  background: var(--dark-color);
  padding: 0;
}

.navbar-menu-links .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.navbar-menu-links .nav-link:hover,
.navbar-menu-links .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--golden-color);
}

/* Hero Banner */
.ima-hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.ima-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 64, 175, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
}

.ima-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ima-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 20s infinite;
}

.ima-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.ima-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.ima-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.ima-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.ima-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.ima-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.ima-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Main Form Container */
.form-container-main {
  max-width: 1000px;
  margin: -50px auto 60px;
  position: relative;
  z-index: 10;
}

/* Card Sections */
.form-section-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 35px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  padding-top: 1px;
}

.form-section-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.section-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--light-color);
  margin-top: 2rem;
}

.section-icon-wrapper {
  width: 30px;
  height: 30px;
  background: var(--golden-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.section-icon-wrapper i {
  font-size: 13px;
  color: #fff;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}

.section-header-title h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  /* margin-top: 2rem; */
}

.back-btn {
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-weight: 500;
  border-radius: 4px;
  /* padding-top: 3px; */
  margin-left: 10px;
}
.back-btn:hover {
  background: var(--bg-color);
  color: #fff;
  border: unset;
}
.section-sub-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
  /* margin-top: 2rem; */
  position: relative;
}

/* Form Controls */
.form-label-custom {
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-label-custom i {
  color: var(--golden-color);
  margin-right: 6px;
}

.form-input-field,
.form-select-field {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}

.form-input-field:focus,
.form-select-field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
  outline: none;
}

.form-input-field::placeholder {
  color: #a0aec0;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.file-upload-wrapper input {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}
.file-input-custom {
  border: 2px dashed #cbd5e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  background: #f7fafc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-input-custom:hover {
  border-color: var(--primary-color);
  background: rgba(44, 90, 160, 0.05);
}

.file-input-custom i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.file-upload-text {
  color: #4a5568;
  font-size: 0.9rem;
}

.file-upload-text strong {
  color: var(--primary-color);
}

.file-input-hidden {
  position: absolute;
  left: -9999px;
}

/* Radio Buttons */
.radio-group-inline {
  display: flex;
  gap: 25px;
  align-items: center;
}

.form-check-radio-custom {
  display: flex;
  align-items: center;
}

.form-check-radio-custom input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.form-check-radio-custom label {
  font-weight: 500;
  color: #2d3748;
  cursor: pointer;
  margin: 0;
}

/* Terms Box */
.terms-conditions-box {
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.8;
}

.terms-conditions-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.checkbox-agreement-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  margin-top: 15px;
}

.checkbox-agreement-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.checkbox-agreement-wrapper label {
  margin: 0;
  font-weight: 500;
  color: #2d3748;
  cursor: pointer;
}

.checkbox-agreement-wrapper a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-agreement-wrapper a:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-button-wrapper {
  text-align: center;
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-submit-form {
  padding: 15px 60px !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(44, 90, 160, 0.3);
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 90, 160, 0.4);
}

.btn-submit-form i {
  font-size: 1.2rem;
}

/* Enhanced Footer Design */
.footer-main-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

/* Footer Pattern Overlay */
.footer-pattern-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(74, 123, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(248, 183, 57, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.footer-pattern-background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
}

.footer-decorative-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C300,80 600,80 900,40 C1050,20 1150,10 1200,0 L1200,120 L0,120 Z" fill="%23f5f8fc"/></svg>');
  background-size: cover;
}

.footer-content-wrapper {
  position: relative;
  z-index: 2;
  /* padding: 60px 0 30px; */
}

.footer-brand-section {
  margin-bottom: 35px;
  padding-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 17px;
}

.footer-logo-badge {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 20px; */
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-logo-badge i {
  font-size: 40px;
  color: #fff;
}

.footer-brand-section h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  /* margin-bottom: 8px; */
}

.footer-brand-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.footer-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--golden-color) 0%, #e09821 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* box-shadow: 0 6px 20px rgba(248, 183, 57, 0.4); */
}

.footer-card-icon i {
  font-size: 16px;
  color: #fff;
}

.footer-info-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
  letter-spacing: 0.3px;
}

.footer-contact-link:hover {
  color: var(--golden-color);
  padding-left: 5px;
}

.footer-address-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  font-weight: 500;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  /* margin: 40px 0; */
}

.footer-bottom-section {
  position: relative;
  z-index: 2;
  padding: 25px 0;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden-color);
  transition: width 0.3s ease;
}

.footer-nav-links a:hover {
  color: var(--golden-color);
}

.footer-nav-links a:hover::after {
  width: 100%;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-link:hover {
  background: var(--golden-color);
  transform: translateY(-3px);
  /* box-shadow: 0 5px 15px rgba(248, 183, 57, 0.4); */
}

.copyright-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.copyright-text a {
  color: var(--golden-color);
  text-decoration: none;
  font-weight: 600;
}

.copyright-text a:hover {
  text-decoration: underline;
}

/* Helper Text */
.helper-text-info {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.helper-text-info i {
  color: var(--secondary-color);
}

/*  */

.medium-slct {
  padding: 5px 8px;
  font-size: 11px;
  border-radius: 5px;
}

.dash__detail__box i {
  color: var(--primary-color);
}
.plus-btn {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 4px 14px;
  border-radius: 7px;
  margin: 2px 0px;
  width: 54px;
}

#myDiv {
  display: none;
  /* padding: 20px;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  margin-top: 10px; */
}

.form__table {
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}
.input-disable {
  background: #a1a3ab47;
  text-align: end;
}
.input-disable:focus {
  outline: none;
  border-color: transparent;
  background: #a1a3ab47;
}
.form__table input {
  padding: 12px 8px;
}
.active__card {
  background: var(--bg-clr);
}
/*  */
/*  */

/* .......................................... */
/* Login Page start */
/* .......................................... */
.login-container-main {
  min-height: 100vh;
  display: flex;
  padding: 0;
}

.left-side-image {
  position: relative;
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 90, 123, 0.8) 100%),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1200&q=80") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  color: #ffffff;
}

.left-side-content {
  max-width: 500px;
  text-align: center;
}

.left-logo-circle {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.left-logo-circle i {
  font-size: 50px;
  color: #ffffff;
}

.left-main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.left-subtitle {
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 40px;
}

.right-side-login {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  padding-top: 20px;
}

.login-form-wrapper {
  width: 100%;
  max-width: 480px;
}

.login-header-right {
  /* margin-bottom: 20px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-logo-small {
  width: 60px;
  height: 60px;
  background: var(--bg-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.brand-logo-small i {
  font-size: 30px;
  color: #ffffff;
}

.welcome-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.welcome-subheading {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 35px;
}

.back-button-link {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.back-button-link.show-back {
  display: flex;
}

.back-button-link:hover {
  color: var(--primary-color);
  gap: 12px;
}

.back-button-link i {
  font-size: 18px;
}

.input-group-custom {
  margin-bottom: 25px;
}

.input-label-custom {
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.input-field-wrapper {
  position: relative;
}

.input-icon-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 20px;
  z-index: 2;
}

.custom-input-field {
  width: 100%;
  padding: 16px 20px 16px 55px;
  border: 2px solid #cacccf;
  border-radius: 12px;
  font-size: 13px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.custom-input-field:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(45, 90, 123, 0.08);
}

.custom-input-field::placeholder {
  color: #adb5bd;
}

.otp-input-group {
  display: none;
  animation: slideDown 0.4s ease-out;
}

.otp-input-group.show-otp {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-button-custom {
  width: 100%;
  padding: 17px;
  background: var(--bg-color);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
}

.submit-button-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
}

.submit-button-custom:active {
  transform: translateY(0);
}

.submit-button-custom i {
  font-size: 18px;
}

.resend-otp-section {
  display: none;
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #6c757d;
}

.resend-otp-section.show-resend {
  display: block;
}

.resend-otp-section a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resend-otp-section a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ................................. */
/* Profile section   */
/* ................................. */

.profile-main-sec {
  margin: -100px auto 60px;
  position: relative;
  z-index: 10;
}
.subpage-banner {
  padding: 7rem 0 !important;
  border-radius: 10px;
}
.profile-header-section {
  background: var(--bg-color);
  padding: 40px 0 80px 0;
  margin-bottom: -60px;
}

.profile-card-main {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.profile-top-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.profile-photo-wrapper {
  position: relative;
}

.profile-photo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 50px;
  border: 5px solid #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.upload-photo-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.upload-photo-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.profile-info-main {
  flex: 1;
}

.profile-name-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.profile-id-text {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 15px;
}

.profile-quick-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #495057;
}

.quick-info-item i {
  color: var(--golden-color);
  font-size: 18px;
}

.profile-actions-top {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.action-btn-primary {
  padding: 10px 24px;
  background: var(--bg-color);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.action-btn-secondary {
  padding: 10px 24px;
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn-secondary:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.profile-tabs-section {
  background: #ffffff;
  border-bottom: 1px solid #dee2e6;
  padding: 0 40px;
}

.nav-tabs-custom {
  border: none;
  gap: 5px;
}

.nav-tabs-custom .nav-link {
  border: none;
  color: #6c757d;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 25px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-tabs-custom .nav-link:hover {
  color: var(--secondary-color);
  border-bottom-color: #dee2e6;
}

.nav-tabs-custom .nav-link.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
  background: transparent;
}

.tab-content-area {
  padding: 40px;
}

.info-section-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  border: 1px solid #e9ecef;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.prof-section-header-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prof-section-header-title i {
  font-size: 14px;
  /* color: #fff; */
}

.edit-section-btn {
  padding: 6px 16px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #495057;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.edit-section-btn:hover {
  background: #e9ecef;
  color: var(--secondary-color);
}

.info-row-item {
  /* margin-bottom: 25px; */
}

.info-label {
  font-size: 13px;
  color: #6c757d;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.info-value {
  font-size: 14px;
  color: #212529;
  font-weight: 500;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  opacity: 0.9;
  margin-bottom: 10px;
}
.value-div {
  font-size: 14px;
  color: #212529;
  font-weight: 500;
  margin-bottom: 10px;
}
.scheme-table-wrapper {
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.custom-table thead {
  background: var(--bg-clr);
}

.custom-table thead th {
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #dee2e6;
}

.custom-table tbody td {
  padding: 15px;
  font-size: 14px;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}

.custom-table tbody tr:hover {
  background: #f8f9fa;
}

.status-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-suspended {
  background: #fff3cd;
  color: #856404;
}

.status-not-dispatched {
  background: #f8d7da;
  color: #721c24;
}

.add-new-btn {
  padding: 8px 20px;
  background: var(--bg-color);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.add-new-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.table-actions {
  display: flex;
  gap: 8px;
}

.table-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  background: #ffffff;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table-action-btn:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
}

/* ................................ */
/* Home page */
/* ................................ */

.main_dashboard_container {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  padding: 0 5px;
  background: #f7f7f7;
}

.profile_card_section {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--golden-color);
}

.profile_layout_flex {
  display: flex;
  /* align-items: center; */
  gap: 18px;
  flex-wrap: wrap;
}

.profile_avatar_container {
  position: relative;
}

.profile_avatar_image {
  width: 100px;
  height: 100px;
  background: var(--bg-color);
  /* border: 4px solid var(--golden-color); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  /* box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); */
}

.profile_details_container {
  flex: 1;
  min-width: 300px;
}

.profile_user_name {
  font-size: 23px;
  font-weight: 600;
  color: #1a2332;
  /* margin-bottom: 10px; */
}

.profile_user_id {
  display: inline-block;
  background: var(--gol-bg-clr);
  color: #1a2332;
  padding: 5px 20px;
  border-radius: 26px;
  font-size: 9px;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.profile_info_grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  /* margin-top: 10px; */
  /* width: 80%; */
}

.profile_info_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #4a5568;
}

.profile_info_item i {
  color: var(--golden-color);
  font-size: 12px;
  /* width: 20px; */
}

.profile_social_icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social_icon_item {
  width: 42px;
  height: 42px;
  background: #f5f7fa;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social_icon_item:hover {
  background: var(--gol-bg-clr);
  border: unset;
  transform: translateY(-3px);
}

.schemes_title_heading {
  font-size: 25px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 26px;
  text-align: center;
  position: relative;
  padding-bottom: 9px;
}

.schemes_title_heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gol-bg-color);
  border-radius: 2px;
}
.policy-wrapper {
  padding: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 32px;
}

.policy-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.policy-icon-title {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  margin-right: 12px;
}

.policy-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: #ffffff;
  color: #6b7280;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-add-btn:hover {
  background-color: #f3f4f6;
  color: #1a1a1a;
}

.policy-add-icon {
  font-size: 20px;
}

.policy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding-bottom: 3px;
  border-left: 4px solid var(--golden-color);
  cursor: pointer;
}

.policy-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.policy-icon-box {
  width: 40px;
  height: 40px;
  background: var(--golden-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-icon-main {
  font-size: 20px;
  color: #ffffff;
}

.policy-main-info {
  flex: 1;
}

.policy-top-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.policy-number {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.policy-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 18px;
  display: inline-flex;
  width: 80px;
  justify-content: center;
}

.policy-badge-active {
  background-color: #179721;
  color: #fff;
  letter-spacing: 0.3px;
}

.policy-badge-terminated {
  background-color: #d3241b;
  color: #fff;
  letter-spacing: 0.3px;
}

.policy-badge-suspended {
  background-color: #e98319;
  color: #fff;
  letter-spacing: 0.3px;
}

.policy-meta {
  font-size: 13px;
  color: #6b7280;
}

.policy-renewal {
  font-size: 12px;
  color: #9ca3af;
  margin-top: -4px;
}

.policy-amount-display {
  text-align: right;
  padding: 7px 24px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  align-self: center;
}
.active-div-sec {
  display: flex;
  justify-content: flex-end;
  padding-right: 24px;
}

.policy-amount-label {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* padding-top: 4px; */
}

.policy-amount-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.policy-currency-icon {
  font-size: 22px;
  color: #fbbf24;
}

.policy-details-section {
  margin-top: 12px;
  padding-top: 13px;
  border-top: 1px solid #e5e7eb;
}

.policy-detail-item {
  margin-bottom: 8px;
}

.policy-detail-text {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
}

.policy-detail-label {
  color: #6b7280;
  font-weight: 400;
  margin-right: 8px;
}

.policy-detail-value {
  color: #1a1a1a;
  font-weight: 600;
}

/* change password */
.npps_change_password_container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.npps_password_card_wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.npps_card_title_section {
  padding: 25px 30px;
  border-bottom: 1px solid #e5e7eb;
  background: var(--bg-color);
  color: #fff;
}

.npps_title_heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  /* margin: 0 0 8px 0; */
}

.npps_title_description {
  font-size: 13px;
  color: #d1d3d7;
  margin: 0;
}

.npps_form_content_area {
  padding: 25px;
}

.npps_input_field_group {
  margin-bottom: 24px;
}

.npps_field_label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.npps_input_container {
  position: relative;
}

.npps_text_input {
  width: 100%;
  padding: 12px 46px 12px 16px;
  font-size: 15px;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.npps_text_input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.npps_text_input::placeholder {
  color: #9ca3af;
}

.npps_visibility_toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 6px;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease;
}

.npps_visibility_toggle:hover {
  color: #3b82f6;
}

.npps_strength_indicator_section {
  margin-top: 10px;
}

.npps_strength_label_text {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 500;
}

.npps_strength_progress_bg {
  width: 100%;
  height: 4px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.npps_strength_progress_fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.npps_weak_strength {
  width: 33%;
  background-color: #ef4444;
}

.npps_medium_strength {
  width: 66%;
  background-color: #f59e0b;
}

.npps_strong_strength {
  width: 100%;
  background-color: #10b981;
}

.npps_strength_status_text {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

.npps_requirements_box {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.npps_requirements_heading {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.npps_requirement_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6b7280;
}

.npps_requirement_row:last-child {
  margin-bottom: 0;
}

.npps_requirement_check_icon {
  font-size: 14px;
  color: #d1d5db;
  flex-shrink: 0;
}

.npps_requirement_fulfilled .npps_requirement_check_icon {
  color: #10b981;
}

.npps_requirement_fulfilled {
  color: #374151;
}

.npps_action_buttons_row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  justify-content: center;
}

.npps_action_button {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.npps_primary_action_btn {
  background-color: #3b82f6;
  color: white;
  flex: 1;
}

.npps_primary_action_btn:hover {
  background-color: #2563eb;
}

.npps_primary_action_btn:active {
  transform: scale(0.98);
}

.npps_secondary_action_btn {
  background-color: white;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.npps_secondary_action_btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.npps_alert_message_box {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 24px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.npps_success_alert {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.npps_error_alert {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.npps_alert_icon {
  flex-shrink: 0;
  font-size: 16px;
}

.npps_alert_hidden {
  display: none;
}

.check-image img {
  height: 3.5rem;
  margin-bottom: 23px;
  width: 11rem;
}
.payment-bank-name label a {
  color: #0f172a;
  font-weight: 700;
}
.payment-bank-name label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-left: 20px;
}

/* 04-11-2025 section start */

.renewals-section-header {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.renewals-section-title {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.renewals-section-title i {
  color: #6c757d;
  font-size: 20px;
}

.renewals-card-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.renewals-card-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.renewals-icon-box {
  background: #6c5ce7;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.renewals-icon-box i {
  color: #ffffff;
  font-size: 22px;
}

.renewals-content-area {
  flex: 1;
  min-width: 0;
}

.renewals-invoice-text {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
  /* margin: 0 0 4px 0; */
}

.renewals-date-text {
  color: #6c757d;
  font-size: 11px;
  margin: 0;
}

.renewals-actions-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.renewals-amount-display {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
}

.renewals-status-label {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.renewals-status-paid {
  background-color: #d4edda;
  color: #155724;
}

.renewals-status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.renewals-status-unpaid {
  background-color: #f8d7da;
  color: #721c24;
}

.receipts-section-title {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.receipts-section-title i {
  color: #6c757d;
  font-size: 20px;
}

.receipts-card-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.receipts-card-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.receipts-icon-box {
  background: #00b894;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.receipts-icon-box i {
  color: #ffffff;
  font-size: 22px;
}

.receipts-content-area {
  flex: 1;
  min-width: 0;
}

.receipts-id-text {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
}

.receipts-date-text {
  color: #6c757d;
  font-size: 11px;
}

.receipts-desc-text {
  color: #6c757d;
  font-size: 12px;
  margin: 0;
}

.receipts-actions-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 12px; */
  flex-shrink: 0;
}

.receipts-amount-display {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
}

.receipts-print-icon {
  color: #6c757d;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.receipts-print-icon:hover {
  color: #2c3e50;
}

/*  */

.dash__table__filter {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}

.table-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-filter-section {
  display: flex;
  align-items: center;
  gap: 5px;
}
.table-filter-section label {
  font-size: 12px;
  font-weight: 500;
  color: #2d3748;
}
.table-filter-section span {
  color: #f56565;
  margin-left: 4px;
}
.table-filter-section input {
  padding: 8px 8px;
  font-size: 11px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: #f7fafc;
  width: 110px;
  height: 28px;
}

.small_btn_primary {
  padding: 6px 14px !important;
  border-radius: 6px !important;
}
.address-edit-text {
  font-weight: 500;
  color: #1e3a5f;
  padding-top: 32px;
  margin-bottom: -10px;
}

/* 05-11-2025 section start */

.dash__profile__header__card {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  color: #ffffff;
}

.dash__profile__header__left {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.dash__profile__avatar__large img {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  object-fit: contain;
}

.dash__profile__header__info {
  flex: 1;
}

.dash__profile__main__title {
  font-size: 20px;
  font-weight: 600;
  /* margin-bottom: 8px; */
  color: #ffffff;
}

.dash__profile__main__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.dash__profile__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash__profile__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.dash__profile__badge__success {
  background: rgba(40, 167, 69, 0.9);
  color: #ffffff;
}

.dash__profile__badge__info {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.dash__profile__header__actions {
  display: flex;
  gap: 10px;
}

.dash__btn__icon__large {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.dash__btn__icon__large:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.address-sec {
  display: flex;
  gap: 12px;
  align-items: center;
}
.address-sec i {
  color: var(--golden-color);
  flex-shrink: 0;
  margin-top: 2px;
}
.address-sec p {
  color: #fff;
  font-size: 13px;
  /* color: #2d3748; */
  font-weight: 500;
  line-height: 1.5;
}
.divider {
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--golden-color), transparent);
  border-radius: 2px;
}

.policies-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 12px;
  padding-left: 25px;
}
.divider-div {
  position: relative;
}
.divider-div::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--golden-color), transparent);
  border-radius: 2px;
  top: 0;
  transform: translateX(-50%);
}

.section-header {
  color: #ff6b7a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  /* margin-bottom: 4px; */
}

.policy-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 8px;
  border-radius: 5px;
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #f8b73959;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
}
.policy-item i {
  color: var(--golden-color);
  font-size: 13px;
}
.policy-row {
  display: flex;
  gap: 12px;
}

.policy-row .policy-item {
  flex: 1;
}

.payment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 200px;
}

.payment-header {
  color: #ff6b7a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.amount {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-bottom: 15px;
}

.pay-button {
  background: var(--golden-color);
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.pay-button:hover {
  transform: translateY(-2px);
}

.pay-button:active {
  transform: translateY(0);
}

/*  */

.policy-list {
  display: flex;
  width: 85%;
  gap: 12px;
}

.policy-card i {
  font-size: 13px;
  /* margin-right: 5px; */
  color: var(--golden-color);
}

.policy-icon-box span {
  color: #fff;
  font-weight: 600;
  font-size: 23px;
  font-family: monospace;
}

.btn_action_primary {
  background: var(--gol-bg-clr);
  color: #1a2332;
  border: none;
  /*  */
  padding: 14px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}
/* 06-11-2025 section start */

.section-policies {
  flex: 1;
  /* padding: 25px; */
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.policies-header-title {
  color: #60a5fa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.policy-split-container {
  display: flex;
  gap: 15px;
  /* margin-bottom: 14px; */
}

.policy-split-left {
  flex: 1;
}

.policy-split-right {
  flex: 1;
}

.policy-data-item {
  margin-bottom: 7px;
}

.policy-item-label {
  color: #4a5568;
  opacity: 0.8;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* margin-bottom: 4px; */
  display: block;
}

.policy-item-value {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.policy-divider-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 14px 0;
}

.policy-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-top: 12px; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.coverage-info-inline {
  display: flex;
  flex-direction: column;
}

.coverage-inline-label {
  color: #000;
  opacity: 0.8;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* margin-bottom: 4px; */
}

.coverage-inline-value {
  color: #10b981;
  font-size: 16px;
  font-weight: 700;
}

.status-badges-inline {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.status-badge-green {
  background: #10b981;
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}

.status-badge-orange {
  background: var(--gol-bg-clr);
  color: #000;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
}

.section-payment {
  flex: 0 0 240px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}

.payment-label-top {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.payment-amount-big {
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.payment-btn-action {
  background: white;
  color: #1d4ed8;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-btn-action:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/*  */
.policy-app-card-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.policy-app-card-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.policy-app-icon-box {
  background: var(--golden-color);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-app-icon-box i {
  color: #ffffff;
  font-size: 22px;
}

.policy-app-content-area {
  flex: 1;
  min-width: 0;
}

.policy-app-req-id-text {
  color: #2c3e50;
  font-size: 13px;
  font-weight: 600;
  /* margin: 0 0 4px 0; */
}

.policy-app-applied-date-text {
  color: #6c757d;
  font-size: 12px;
  /* margin: 0 0 6px 0; */
}

.policy-app-units-text {
  color: #6c757d;
  font-size: 12px;
  margin: 0;
}

.policy-app-units-text span {
  color: #2c3e50;
  font-weight: 600;
}

.policy-app-actions-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.policy-app-amount-display {
  color: #2c3e50;
  font-size: 14px;
  font-weight: 600;
}

.ledger-table span {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.3px;
}
.ledger-table p {
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 13px;
}
.ledger-table {
  display: flex;
  flex-direction: column;
}

/*  */

.dash__content__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* margin-top: 20px; */
  margin-bottom: 15px;
}
.sub-heading {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  margin-bottom: 17px;
  width: fit-content;
  padding-bottom: 7px;
}

.sub-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background: var(--golden-color);
  border-radius: 10px;
}

.dash__card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dash__card__title {
  font-size: 16px;
  font-weight: 500;
  color: #1a202c;
}

.dash__card__subtitle {
  font-size: 12px;
  color: #718096;
  letter-spacing: 0.3px;
  line-height: 14px;
}

/* Info List */
.dash__info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash__info__item {
  display: flex;
  gap: 12px;
}

.dash__info__item i {
  color: var(--golden-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.dash__info__label {
  font-size: 12px;
  color: #718096;
  /* margin-bottom: 4px; */
  font-weight: 500;
}

.dash__info__value {
  font-size: 13px;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.5;
}

.cssss::before {
  content: unset !important;
}

/* Card Title */
.dash__card__title__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  /* padding-bottom: 12px; */
  border-bottom: 2px solid #f0f0f0;
}

.dash__card__title__small {
  font-size: 15px;
  font-weight: 500;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  padding-bottom: 5px;
}

.dash__card__title__small i {
  color: var(--golden-color);
}

.dash__btn__icon__small {
  background: #f7fafc;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #718096;
}

.dash__btn__icon__small:hover {
  background: #e2e8f0;
  color: var(--primary-color);
}

/*  */
.edit-btn {
  background: unset;
  border: 1px solid #d7dbdf;
  padding: 3px 5px;
  border-radius: 6px;
  color: var(--primary-color);
  display: flex;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  align-items: center;
}
.commun-font {
  font-size: 13px !important;
}

/* 10-11-2025 */
.approved-card {
  border: unset;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
/* ...................... */
/* Payment Sucsess */
/* ...................... */
.payment_status_container {
  padding: 40px 20px;
}

.success_payment_card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0 auto;
  width: 50%;
  margin-bottom: 30px;
}

.success_payment_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.failed_payment_card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0 auto;
  width: 50%;
  margin-bottom: 30px;
}

.failed_payment_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.success_icon_wrapper {
  width: 120px;
  height: 120px;
  background: green;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

.failed_icon_wrapper {
  width: 120px;
  height: 120px;
  background: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success_icon_wrapper i,
.failed_icon_wrapper i {
  font-size: 60px;
  color: #ffffff;
}

.success_title_text {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.failed_title_text {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.success_description_text {
  font-size: 16px;
  color: #718096;
  margin-bottom: 35px;
  line-height: 1.6;
}

.failed_description_text {
  font-size: 16px;
  color: #718096;
  margin-bottom: 35px;
  line-height: 1.6;
}

.payment_detail_box {
  background: #f7fafc;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
}

.detail_row_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.detail_row_item:last-child {
  border-bottom: none;
}

.detail_label_text {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.detail_value_text {
  font-size: 15px;
  color: #2d3748;
  font-weight: 600;
}

.total_amount_row {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
}

.total_amount_row .detail_label_text,
.total_amount_row .detail_value_text {
  color: #ffffff;
  font-size: 18px;
}

.success_action_button {
  background: var(--bg-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.success_action_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
  color: #ffffff;
}

.failed_action_button {
  background: var(--bg-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 15px;
}

.failed_action_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
  color: #ffffff;
}

.secondary_action_button {
  background: #ffffff;
  color: var(--golden-color);
  border: 2px solid var(--golden-color);
  border-radius: 12px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.secondary_action_button:hover {
  background: var(--golden-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.error_code_badge {
  display: inline-block;
  background: #fed7d7;
  color: #c53030;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/*  */
/* Responsive Design */
@media (max-width: 991px) {
  .action-buttons-group {
    flex-direction: row;
    width: 100%;
  }

  .btn-action-primary,
  .btn-action-secondary,
  .btn-action-success {
    width: 100%;
    justify-content: center;
  }

  .navbar-menu-links .nav-link {
    padding: 12px 15px;
  }

  .hero-banner-section h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle-text {
    font-size: 1.1rem;
  }

  .form-section-card {
    padding: 25px;
  }

  .footer-info-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* login */
  .left-side-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar-contact {
    text-align: center;
  }

  .contact-info-item {
    display: block;
    margin: 5px 0;
  }

  .brand-logo-section {
    flex-direction: row;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-banner-section {
    padding: 60px 0 80px;
  }

  .hero-banner-section h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle-text {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .section-header-title h2 {
    font-size: 20px;
    text-align: left;
  }

  .form-section-card {
    padding: 15px;
    margin-bottom: 20px;
  }

  .section-header-title {
    flex-direction: row;
    text-align: center;
  }

  .footer-brand-section h3 {
    font-size: 1.4rem;
  }

  .footer-nav-links {
    flex-direction: column;
    gap: 15px;
  }
  .class-mob-head {
    flex-direction: column;
    align-items: flex-end;
  }
  .ima-hero-title {
    font-size: 33px;
  }
  .ima-hero-subtitle {
    font-size: 16px;
  }
  .footer-logo-badge {
    flex-shrink: 0;
  }
  /* login */
  .right-side-login {
    padding: 30px 20px;
  }

  .welcome-heading {
    font-size: 26px;
  }

  .custom-input-field {
    padding: 14px 18px 14px 50px;
  }

  .submit-button-custom {
    padding: 15px;
  }

  /* profile */

  .profile-top-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .profile-quick-info {
    justify-content: center;
  }

  .profile-actions-top {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tab-content-area {
    padding: 20px;
  }

  .prof-section-header-title {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .navbar-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Dashboard Section */

  .dash__sidebar__wrapper {
    transform: translateX(-100%);
  }

  .dash__sidebar__wrapper.dash__sidebar__active {
    transform: translateX(0);
    width: 100%;
  }

  .dash__sidebar__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dash__header__wrapper {
    left: 0;
    padding: 0 15px;
  }

  .dash__main__wrapper {
    margin-left: 0;
    padding: 10px 5px;
    margin-top: 52px;
  }

  .dash__overlay.dash__overlay__active {
    display: block;
  }

  .dash__header__title {
    font-size: 20px;
  }

  .dash__content__card {
    padding: 20px;
  }

  .dash__card__title {
    font-size: 20px;
  }

  .dash__form__actions {
    /* flex-direction: column; */

    /*  */
    flex-direction: row;
    align-items: center;
  }

  .dash__btn__primary,
  .dash__btn__secondary {
    /* width: 100%; */
    /*  */
    justify-content: center;
    align-items: center;
    width: fit-content;
  }

  .dash__header__actions {
    gap: 10px;
  }

  /* Member view end */

  /* 03-11-2025 start */

  .profile_layout_flex {
    flex-direction: column;
    text-align: center;
  }

  .profile_info_grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .profile_social_icons {
    justify-content: center;
  }

  .schemes_title_heading {
    font-size: 28px;
  }

  .profile_user_name {
    font-size: 16px;
  }

  /* change password */
  .npps_card_title_section {
    padding: 24px 20px;
  }

  .npps_form_content_area {
    padding: 24px 20px;
  }

  .npps_title_heading {
    font-size: 20px;
  }

  .npps_title_description {
    font-size: 13px;
  }

  .npps_action_buttons_row {
    flex-direction: column;
  }

  .npps_secondary_action_btn {
    order: 1;
  }

  .npps_primary_action_btn {
    order: 2;
  }

  /*  */

  /* 04-11-2025 section start */

  .renewals-card-item,
  .receipts-card-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 5px 0px;
    margin-bottom: 15px;
  }

  .renewals-content-area,
  .receipts-content-area {
    width: 100%;
  }

  .renewals-actions-area,
  .receipts-actions-area {
    /* width: 100%; */
    flex-direction: column;
    gap: 0;
    margin-bottom: 15 px;
    justify-content: space-between;
  }

  /*  */

  .dash__table__filter {
    flex-direction: row;
    align-items: stretch;
    margin-top: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .table-filter {
    flex-wrap: wrap;
  }
  .info-section-block {
    padding: 12px;
  }
  /*  */

  .policy-wrapper {
    padding: 20px 12px;
  }

  .policy-title {
    font-size: 20px;
  }

  .policy-card {
    padding: 8px;
  }

  .policy-icon-box {
    width: 56px;
    height: 56px;
  }

  .policy-icon-main {
    font-size: 12px;
  }

  .policy-number {
    font-size: 16px;
  }

  .policy-amount-value {
    font-size: 12px;
  }

  /*  */

  .divider-div::before {
    content: unset;
  }
  .payment-section {
    align-items: flex-start;
    padding-left: 24px;
    margin-top: 14px;
  }
  .policy-list {
    width: unset;
  }
  .policy-item {
    width: 100%;
  }
  .policies-section {
    margin-top: 14px;
  }
  .policy-amount-display {
    display: flex;
    gap: 16px;
    padding: 11px 10px;
    align-items: center;
    border-radius: 8px;
  }
  .active-div-sec {
    justify-content: flex-start;
  }

  /*  */
  .section-policies {
    width: 100%;
  }
  .policy-bottom-info {
    padding-left: 26px;
  }
  .section-payment {
    flex: 0 0 100px;
    width: 95%;
  }

  /*  */

  .policy-app-card-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-app-content-area {
    width: 100%;
  }

  .policy-app-actions-area {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ledger-head {
    font-size: 12px;
    text-align: center;
  }

  .custom-table thead th {
    padding: 7px;
    font-size: 11px;
  }
  .custom-table tbody td {
    padding: 5px;
    font-size: 11px;
  }
  .ledger-table p {
    font-size: 11px;
  }
  .ledger-table span {
    font-size: 11px;
  }

  /* Payment sucess */
  .success_payment_card,
  .failed_payment_card {
    padding: 35px 25px;
  }

  .success_title_text,
  .failed_title_text {
    font-size: 26px;
  }

  .success_icon_wrapper,
  .failed_icon_wrapper {
    width: 100px;
    height: 100px;
  }

  .success_icon_wrapper i,
  .failed_icon_wrapper i {
    font-size: 50px;
  }

  .failed_action_button {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .secondary_action_button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .radio-group-inline {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-submit-form {
    width: 100%;
    justify-content: center;
  }

  .hero-icon-badge {
    width: 80px;
    height: 80px;
  }

  .hero-icon-badge i {
    font-size: 36px;
  }

  /* login */

  /* 03-11-2025 start */

  .profile_card_section {
    padding: 10px 5px;
    margin-top: 20px;
  }

  .profile_avatar_image {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }

  .amount_value_display {
    font-size: 20px;
  }

  .card_header_section {
    padding: 20px 20px 15px 20px;
  }

  .card_content_body {
    padding: 20px;
  }

  .card_footer_actions {
    padding: 20px;
  }

  /* change password start */
  .npps_text_input {
    padding: 10px 40px 10px 14px;
    font-size: 14px;
  }

  .npps_action_button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .npps_requirements_box {
    padding: 16px;
  }

  /* Payment sucess */
  .payment_status_container {
    padding: 20px 15px;
  }

  .detail_row_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
