* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --theme-color: #ff7928;
  --blue-color: #007bff;
  --white-color: #ffffff;
  --heading-color: #333e4e;
  --text-color: #626d7f;
}
body {
  font-family: "Inter", sans-serif;
  background: #f8f8f8;
  -webkit-user-select: none; /* Safari / Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE / Edge */
  user-select: none; /* Standard */
  -webkit-touch-callout: none; /* Disable long press menu on iOS */
  cursor: default;
}
a {
  text-decoration: none;
}
.btn-color {
  color: #3b495f;
}
h1,
h2,
h3,
h4,
h5,
h6,
button {
  font-family: "Outfit", sans-serif;
  color: var(--heading-color);
}
.fw-0 {
  font-weight: 400;
}
.fw-1 {
  font-weight: 500;
}

.fw-2 {
  font-weight: 600;
}

.fw-3 {
  font-weight: 700;
}
.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
}
input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.border-radius-16 {
  border-radius: 16px;
}
.border-radius-24 {
  border-radius: 24px;
}
.text-color {
  color: var(--text-color) !important;
}
.color-primary {
  color: var(--theme-color) !important;
}
.btn-primary {
  background-color: var(--theme-color) !important;
  border: none;
}
.bg-primary {
  background-color: var(--theme-color) !important;
}
.bg-light {
  background-color: #eaeff3 !important;
}
.app-wrapper {
  min-height: 100vh;
}

.screen {
  display: none;
}

.active-screen {
  display: block;
  min-height: 100vh;
  margin: auto;
  width: 100%;
}

.screen-card {
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
}

h4 {
  font-weight: 600;
}

.btn-custom {
  width: 100%;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}
.lang-option input[type="radio"]:checked {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 4px solid var(--white-color);
  border-radius: 50%;
}
.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.input-group > .form-control:focus,
.form-check-input:focus {
  box-shadow: none;
  border: 1px solid var(--theme-color);
}
.otp-input {
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 1.5rem;
  margin: 0 5px;
  border: none;
  border-bottom: 2px solid var(--theme-color);
  outline: none;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--theme-color);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option.active {
  background: var(--theme-color);
  color: var(--white-color);
}

.lang-option input {
  accent-color: var(--theme-color);
  width: 20px;
  height: 20px;
}
.container-reg {
  max-width: 375px;
  margin: 0 auto;
  background: var(--white-color);
  min-height: 100vh;
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 10px;
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

.signal-indicators {
  display: flex;
  gap: 5px;
  align-items: center;
}

.signal-bar,
.wifi-icon,
.battery {
  width: 18px;
  height: 10px;
  background: #000;
  border-radius: 1px;
}

.header {
  display: flex;
  align-items: center;
  padding: 0;
  /* border-bottom: 1px solid #f0f0f0; */
}

.header-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.profession-card {
  margin: 0 0 20px 0;
  background: var(--theme-color);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profession-info h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.profession-info p {
  color: #ffffffe6;
  font-size: 10px;
}

.profession-icon {
  width: 60px;
  height: 60px;
  background: var(--white-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.form-section {
  padding: 0;
  margin-bottom: 30px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  display: block;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #88919e;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.form-input.error {
  border-color: #e74c3c;
}

.error-text {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

.select-wrapper {
  position: relative;
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}

.profile-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.profile-upload:hover {
  border-color: #ff6b35;
}

.profile-upload-icon {
  width: 40px;
  height: 40px;
  background: #bac5ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  flex-direction: row-reverse;
}

.profile-preview-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--theme-color);
}

.profile-preview-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  white-space: nowrap;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.profile-preview-size,
.document-preview-size {
  font-size: 12px;
  color: #666;
  /* visibility: hidden; */
}

.change-btn {
  background-color: transparent;
  border: none;
  outline: 0;
  position: absolute;
  top: 2px;
  right: 5px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.checkbox.checked {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

.checkbox.checked::before {
  content: "✓";
  font-size: 12px;
}

.document-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.upload-passbook,
.upload-document,
.upload-Documents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  font-size: 12px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-passbook:hover {
  border-color: var(--theme-color);
  background: rgba(255, 107, 53, 0.05);
}

.upload-icon {
  width: 40px;
  height: 40px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
}

.passbook-preview,
.document-preview,
.Documents-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border: 1px solid #3498db;
  border-radius: 8px;
  background: #f8fbff;
}

.passbook-preview-info,
.profile-preview-info,
.document-preview-info {
  flex: 1;
}

.passbook-preview-name,
.document-preview-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  display: none;
}

.passbook-preview-size {
  font-size: 12px;
  color: #666;
}

.remove-btn {
  background: #e74c3c;
  color: var(--white-color);
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.remove-btn:hover {
  background: #c0392b;
}

.hidden {
  display: none;
}

.submit-btn {
  width: 100%;
  margin: 30px 0 40px;
  padding: 12px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: var(--white-color);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3); */
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.document-preview,
.Documents-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
}
.document-preview.hidden {
  display: none;
}
.document-preview-image,
.Documents-preview-image,
.passbook-preview-image {
  width: 60px;
  height: 40px;
  border-radius: 4px;
  object-fit: contain;
  margin-right: 10px;
}
/* Dashboard styles START*/
.app-container {
  max-width: 500px;
  margin: auto;
  background: var(--white-color);
  min-height: 100vh;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); */
  padding: 20px;
}

.profile-header {
  display: flex;
  align-items: center;
}
.profile-header a {
  color: var(--white-color);
}
.profile-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 12px;
}
.profile-header h6 {
  margin: 0;
  font-weight: 600;
}
.notif-btn {
  margin-left: auto;
  background: var(--white-color);
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-btn a {
  color: var(--heading-color);
}
.carousel-inner img {
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  border: 1px solid #ccc;
}
.carousel-indicators {
  margin-bottom: 0.5rem;
}
.summary-card {
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-weight: 500;
}
.summary-orange,
.summary-blue {
  text-align: left;
  font-size: 0.9rem;
  min-height: 80px;
  white-space: nowrap;
  color: #3b495f;
}
.summary-orange {
  background: #fff9f1;
  border: 1px solid #ffdab0;
}
.summary-blue {
  background: #e4f8fe;
  border: 1px solid #b5e8f5;
}
.summary-card h3 {
  margin: 0;
  color: #258bd3;
  text-align: center;
  font-family: "Inter";
  font-weight: 700;
}
.summary-orange h3 {
  color: #ff9640;
  text-align: center;
  font-family: "Inter";
  font-weight: 700;
}
h6.section-title {
  font-weight: 600;
  margin: 20px 0 10px;
  color: #3b495f;
  font-size: 15px;
}

.action-card {
  font-size: 12px;
  border-radius: 12px;
  padding: 10px 0;
  text-align: center;
  background: var(--white-color);
  border: 1px solid #dbdee0;
  transition: 0.2s;
  /*height: 100%;*/
}

.action-card i {
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 6px;
}
.pd-custom {
  padding: 8px;
  text-align: left;
}
.pd-custom i {
  font-size: 24px;
  margin-bottom: 0;
}
.action-card:hover {
  background: #fff7f2;
}
.gap-custom {
  --bs-gutter-y: 0.6rem;
  --bs-gutter-x: 0.6rem;
}
/* Dashboard styles END*/

/* Input Calendar styling Start*/
.date-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ios-date-input {
  padding: 10px 36px 10px 12px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
}

.date-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.6;
}
.date-icon:hover {
  opacity: 1;
}

/* Calendar overlay custom design */
.calendar {
  position: absolute;
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  width: 320px;
  display: none;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 4px;
}

.calendar-days div {
  padding: 8px 0;
  border-radius: 12px;
  cursor: pointer;
}

.calendar-days div:hover {
  background: #f2f2f7;
}

.calendar-days .today {
  background: var(--theme-color);
  color: var(--white-color);
}

.calendar-days .selected {
  background: #34c759;
  color: var(--white-color);
}
/* Input Calendar styling End*/

/* Profile Page Styeing Start */
.profile-header {
  color: var(--white-color);
  padding: 14px 0;
  display: flex;
  align-items: center;
}
.profile-header.bg-primary {
  padding: 14px 20px;
}
.profile-header h5 {
  font-size: 1rem;
  color: var(--white-color);
  flex: 1;
  margin: 0;
  margin-left: 10px;
  font-weight: 400;
}
.profile-card p {
  margin-bottom: 0;
  font-size: 0.8rem;
}
.profile-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-top: -40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 3;
}
.profile-name {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.profile-name i {
  color: green;
  margin-left: 6px;
}
.info-item {
  margin: 16px 0;
}
.info-item .title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-item .text {
  color: #666;
  font-size: 14px;
  margin-left: 22px;
}
.document-view {
  background: #eafae7;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: #2e7d32;
  border: none;
  cursor: pointer;
}
.logout-btn {
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
  width: 100%;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
  background: #fff;
}
.logout-btn i {
  margin-left: 6px;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}
.image-modal img {
  max-width: 90%;
  margin: 10px 0;
  border-radius: 4px;
}

.points-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.main-content {
  padding: 0 20px;
}
.points-box div {
  text-align: center;
  flex: 1;
}

.points-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-color);
}

.nav-tabs {
  border-bottom: none;
  justify-content: space-around;
  margin-top: 1rem;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #555;
  font-size: 12px;
}

.nav-tabs .nav-link.active {
  background: var(--theme-color);
  color: #fff;
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
}

.list-group-item {
  border: none;
  margin-bottom: 0.8rem;
  border-radius: 0.8rem !important;
  background: #e6eef1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-left {
  display: flex;
  align-items: center;
}

.list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

.list-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  /* white-space: nowrap; */
}

.list-date {
  font-size: 0.65rem;
  color: var(--text-color);
}

.list-amount {
  font-weight: 600;
  font-size: 1rem;
}

.amount-positive {
  color: #2ecc71;
}

.amount-negative {
  color: #e74c3c;
}

.points-balance-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.points-balance-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.points-display-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.points-section {
  flex: 1;
  text-align: center;
}
.points-section .points-label {
  margin-bottom: 1rem;
}
.points-value {
  color: var(--theme-color);
  line-height: 1;
  background: var(--theme-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.divider-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(200, 200, 200, 0.3) 0%,
    rgba(150, 150, 150, 0.6) 50%,
    rgba(200, 200, 200, 0.3) 100%
  );
  border-radius: 2px;
  position: relative;
}

.divider-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #cbd5e0;
  border-radius: 50%;
}
/* Scan History Styling End */

/* Category page Styling Start */
.category-header {
  background: var(--theme-color);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 1;
}

.header-center {
  flex: 8;
}

.header-right {
  flex: 1;
  justify-content: flex-end;
  position: relative;
}

h5.title {
  font-size: 1rem;
  margin: 0;
  color: var(--white-color);
}

.header-btn {
  background: transparent;
  border: none;
  color: var(--white-color);
  z-index: 9;
}

.search-box {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--theme-color);
  border-radius: 0;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  justify-content: center;
}

.search-box.active {
  width: 320px;
  opacity: 1;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  padding: 0.3rem;
  font-size: 0.9rem;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.search-box button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--white-color);
}

.category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  text-decoration: none;
  color: #000;
  display: block;
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.category-card .card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.category-card .card-title {
  font-size: 12px;
  margin: 0;
}

.arrow {
  font-size: 1rem;
  color: #999;
}
/* Gift Gallery Page Styling */
.balance-card {
  margin: 0 20px 0px;
  background: white;
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.balance-info h3 {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.balance-amount {
  font-size: 20px;
  color: #ff7b3d;
  font-weight: 600;
}

.gift-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gift-icon {
  font-size: 36px;
  color: var(--theme-color);
}

.gift-item {
  display: flex;
  align-items: center;
  padding: 0 15px 0 0;
  background: #f8f9fa;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: var(--heading-color);
}

.gift-item1 {
  display: flex;
  align-items: center;
  padding: 0 15px 0 0;
  background: #f8f9fa;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: var(--heading-color);
}

.gift-item.insufficient {
  border-color: #ff4757;
  background: #fff5f5;
}

.gift-image {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  margin-right: 15px;
  object-fit: cover;
}

.gift-image img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
}

.gift-details {
  flex: 1;
}

.gift-validity {
  font-size: 0.8rem;
  color: var(--text-color);
  margin: 0;
}

.gift-points {
  text-align: right;
}

.points-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 0;
}

.points-label {
  font-size: 14px;
  color: var(--text-color);
  letter-spacing: 0.3px;
  font-weight: 600;
  /* margin-bottom: 1rem; */
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.insufficient-popup {
  position: fixed;
  bottom: 0;
  left: 50%;
  right: 0;
  max-width: 500px;
  background: #ff4757;
  transform: translateX(-50%) translateY(100%);
  color: white;
  padding: 12px 15px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.insufficient-popup.active {
  transform: translateX(-50%) translateY(0);
}

.close-popup {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  height: 20px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}
.headline h4 {
  color: var(--theme-color);
  font-size: 1rem;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
}
.gift-img img {
  border-radius: 10px;
  height: 140px;
  /* object-fit: contain; */
}
.specification li,
.specification p {
  font-size: 0.7rem;
  margin-bottom: 6px;
  color: var(--text-color);
}
.pd-custom {
  padding: 10px 16px;
}
#description ul {
  padding-left: 16px;
}
/* Product-detaiils styling */
.product-img {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 15px;
  margin: 20px auto;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.product-title {
  font-weight: 600;
  font-size: 18px;
}
.category {
  color: gray;
  font-size: 14px;
}
.section-title {
  font-weight: 600;
  color: var(--theme-color);
  margin: 15px 0 10px;
}
.spec-table td {
  padding: 4px 0;
  font-size: 14px;
}
.description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Notifications */
.notifications {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notification-item {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  background: #f4f9fd;
}

.notification-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.notification-text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.notification-time {
  font-size: 12px;
  color: var(--text-color);
}
.notifications img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}
/* Gift-Tracker-Details Styling*/
.points-card {
  background: var(--white-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timeline {
  margin: 20px 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--theme-color);
}
.timeline-item {
  position: relative;
  margin-left: 40px;
  margin-bottom: 30px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  border: 2px solid var(--white-color);
  z-index: 1;
}
.timeline-item .timeline-title {
  font-weight: 500;
  font-size: 18px;
  color: #666;
}
.timeline-item .timeline-time {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
}
.timeline-item .timeline-time i {
  margin-right: 5px;
}

/* Active status highlight */
.timeline-item.active::before {
  background: var(--theme-color);
}
.timeline-item.active .timeline-title {
  color: var(--theme-color);
  font-weight: 700;
}
.timeline-item.active .timeline-time {
  color: var(--theme-color);
}
.gift-box {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.gift-box img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-right: 10px;
  background: #eee;
}
.gift-box span {
  font-weight: 600;
  color: var(--heading-color);
}
.w-65 {
  width: 75%;
  padding: 24px !important;
}
.w-100.fs-12 {
  padding: 6px 36px;
}
.option-box {
  border: 2px solid var(--theme-color);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.option-box.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.option-box input {
  accent-color: var(--white-color);
  transform: scale(1.2);
}

.bottom-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #fff;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: bottom 0.4s ease-in-out;
  z-index: 1050;
}

.bottom-popup.show {
  bottom: 0;
}

/* Contact us Styling Start */
.top-header {
  background-color: var(--theme-color);
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
}

.top-header i {
  font-size: 20px;
  margin-right: 10px;
}

.map-container {
  height: 440px;
  width: 100%;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.contact-info {
  margin: 15px 0;
  font-size: 0.95rem;
}

.contact-info i {
  font-size: 18px;
  margin-right: 12px;
  color: var(--theme-color);
}

.social-icons a {
  font-size: 24px;
  margin-right: 15px;
  color: #28a745;
}

.social-icons a.instagram {
  color: #e4405f;
}

.social-icons a.facebook {
  color: #1877f2;
}
.task-footer .badge img {
  border-radius: 50%;
}
/* Accordion start*/
.accordion {
  border-top: 1px solid #eee;
}

.accordion ol {
  background: #f4f9fd;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  padding: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f4f9fd;
}

.accordion-header.active {
  color: var(--heading-color);
}

.accordion-header .icon {
  font-size: 20px;
  font-weight: bold;
}

.accordion-body {
  display: none;
  padding: 12px;
  font-size: 12px;
  color: var(--text-color);
  background: var(--white-color);
  line-height: 1.5;
}

.accordion-item:last-of-type {
  border: none;
}

.tabs-container {
  margin-bottom: 15px;
}

.status-tabs {
  display: flex;
  margin-bottom: 0;
  justify-content: space-around;
}

.status-tab {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.status-tab.pending {
  background: var(--white-color);
  color: var(--heading-color);
  border-color: var(--theme-color);
}

.status-tab.pending.active {
  background: var(--theme-color);
  color: var(--white-color);
}

.status-tab.mature {
  background: var(--white-color);
  color: #333;
  border-color: #27ae60;
}

.status-tab.mature.active {
  background: #27ae60;
  color: var(--white-color);
}

.status-tab.lost {
  background: var(--white-color);
  color: var(--heading-color);
  border-color: #e74c3c;
}

.status-tab.lost.active {
  background: #e74c3c;
  color: var(--white-color);
}

.status-tab .badge {
  background: #333;
  color: var(--white-color);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.content-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--heading-color);
}

.site-item {
  background: white;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-date {
  text-align: center;
  min-width: 50px;
}

.site-date .day {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-color);
  line-height: 1;
}

.site-date .month {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

.site-info {
  flex: 1;
}

.site-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.site-address-label {
  font-size: 12px;
  color: var(--text-color);
  margin-bottom: 2px;
}

.site-address {
  font-size: 14px;
  color: var(--text-color);
}

.site-status {
  font-size: 20px;
  color: #1abc9c;
}

.create-btn {
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 20px;
  right: 2%;
  transform: translateX(-50%);
  background: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-form {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  max-width: 500px;
  width: 100%;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  transition: transform 0.3s ease;
  z-index: 2001;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-form.active {
  transform: translateX(-50%) translateY(0);
}

.popup-header {
  margin-bottom: 16px;
  position: relative;
}

.popup-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#popupForm .form-group {
  margin-bottom: 15px;
}

#popupForm .form-control {
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 12px;
  transition: border-color 0.3s ease;
}

#popupForm .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

#popupForm .form-control::placeholder {
  color: var(--text-color);
}

#popupForm textarea.form-control {
  resize: vertical;
  min-height: 50px;
}

#popupForm .form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

#popupForm .btn-cancel,
#popupForm .btn-save {
  flex: 1;
  padding: 8px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--white-color);
  color: var(--text-color);
}

#popupForm .btn-cancel {
  border: 1px solid #ddd;
}

#popupForm .btn-save {
  border: none;
  background: var(--theme-color);
  color: var(--white-color);
}

.filter-button {
  color: #fff;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--theme-color);
  font-size: 18px;
}

.popup-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

.popup-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.popup-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.popup-field {
  margin-bottom: 12px;
}

.popup-label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.popup-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  /* opacity: 0; */
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.popup-btn {
  width: 100%;
  padding: 10px;
  background: var(--theme-color);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
/* Video list page */
.video-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.video-left {
  display: flex;
  align-items: center;
}

.thumbnail {
  width: 90px;
  height: 70px;
  background: #ddd;
  border-radius: 8px;
  margin-right: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail span {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: black;
  color: white;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 4px;
}

.video-title {
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

.video-duration {
  font-size: 13px;
  color: gray;
}

.share-btn {
  background: #ffe9b6;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--theme-color);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.share-btn i {
  margin-right: 5px;
}
/* Site info details */
.form-data .form-group label {
  font-size: 0.8rem;
}

.form-data .form-group input,
.form-data .form-group textarea {
  width: 100%;
  font-size: 1rem;
  background: #eef1f3;
  border: none;
  border-bottom: 1px solid #d6d6d6;
  border-radius: 0;
  padding: 0.375rem 0.75rem;
}
/* Video Details page */
.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  gap: 15px;
}

video {
  max-width: 100%;
  border-radius: 0;
  background: black;
}

.controls {
  width: 100%;
  background: #666;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.progress-container {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-bar {
  flex: 1;
  margin: 0 10px;
}

input[type="range"] {
  width: 100%;
}

.buttons {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.buttons button {
  background: #888;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  cursor: pointer;
  width: 35px;
  height: 35px;
}

.video-info {
  margin: 15px 20px;
}

.video-info h3 {
  margin: 5px 0;
  font-size: 20px;
}

.video-info p {
  color: var(--text-color);
  margin: 0;
}
/* Digital Catelogue */
.pdf-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 4px 15px 4px 10px;
  margin: 15px 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pdf-card .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-card .left i {
  font-size: 28px;
  color: #c10d0d;
}

.pdf-card .filename {
  font-weight: 500;
  font-size: 16px;
  color: var(--heading-color);
}

.download-btn {
  color: var(--theme-color);
  font-size: 20px;
  cursor: pointer;
}
.sort-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* .date-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #444;
} */
/* Bigger screens (laptops/desktops) */
@media (min-width: 992px) {
  body {
    background: linear-gradient(135deg, #fff7f0 0%, #fff 100%);
  }

  .screen-card {
    padding: 2rem;
    max-width: 520px;
    margin: auto;
  }

  h4 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .container-reg {
    max-width: 500px;
    border-radius: 20px;
  }
  .carousel-inner img {
    height: 220px;
  }
}
@media (max-width: 768px) {
  .container-reg {
    max-width: 100%;
  }
  .contact-card {
    position: absolute;
    bottom: 0;
  }
  .points-balance-container {
    padding: 12px 0;
    border-radius: 20px;
  }

  .points-display-wrapper {
    gap: 20px;
  }

  .points-label {
    font-size: 12px;
    margin-bottom: 0;
  }

  .points-value {
    font-size: 24px;
  }

  .divider-line {
    height: 60px;
  }
  .insufficient-popup {
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    transform: translateY(100%);
  }

  .insufficient-popup.active {
    transform: translateY(0);
  }
  .bottom-popup {
    max-width: 100%;
    border-radius: 15px 15px 0 0;
  }
}
@media (max-width: 380px) {
  .points-display-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .divider-line {
    width: 80%;
    height: 2px;
    align-self: center;
  }

  .divider-line::before {
    width: 8px;
    height: 8px;
  }
  .pd-custom {
    padding: 10px;
    font-size: 11px;
  }
  .action-card {
    font-size: 11px;
  }
  .pd-custom i,
  .action-card i {
    font-size: 20px;
  }
  .summary-orange,
  .summary-blue {
    font-size: 0.8rem;
  }
  .status-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 340px) {
  .action-card {
    font-size: 9px;
  }
  .status-tab {
    font-size: 12px;
    padding: 6px 12px;
  }
}
