:root {
  --primary-color: #E63491;
  --success-color: #10b981;
  --muted-color: #6c757d;
  --border-color: #dee2e6;
  --progress-line-width: 5px;
}

/* Progress Timeline Styles */
.progress-timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 1200px) {
.progress-timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 2rem;
  bottom: 2rem;
  width: var(--progress-line-width);
  background-color: var(--border-color);
}
}

.progress-line {
  position: absolute;
  left: 26px;
  top: 2rem;
  width: var(--progress-line-width);
  background-color: var(--primary-color);
  transition: height 0.5s ease;
  z-index: 1;
}

.progress-step {
  position: relative;
  padding: 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;

  @media screen and (min-width: 1200px) {
    padding: 0.25rem 0.5rem;
  }
}

.progress-step:not(.locked):hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.progress-step.current {
  background-color: rgba(13, 110, 253, 0.08);
}

.progress-step.locked .step-icon {
  color: #030332;
}

.progress-step.locked {
  cursor: not-allowed;
}

.step-icon {
  position: relative;
  z-index: 2;
  width: 1.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;

  @media screen and (min-width: 1200px) {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
  }
}

.progress-step.completed .step-icon, .progress-step.current .step-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.progress-step.current .step-icon {
  border-color: var(--primary-color);
  background-color: #030332;
}

.progress-step.locked .step-icon {
  background-color: #e9ecef;
}


.progress-bar {
  background-color: var(--primary-color);
}
/* Content Card Styles */
.content-card {
  background: white;
  /*border-radius: 0.5rem;*/
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
  overflow: hidden;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.content-body {
  max-height: 600px;
  overflow-y: auto;
  padding: 2rem;
}

.content-body::-webkit-scrollbar {
  width: 8px;
}

.content-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.content-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.content-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* USP Grid */
.usp-card {
  height: 100%;
}

.usp-icon {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

/* Video Progress Overlay */

.video.completed .mb-4{
  margin-bottom: 0rem !important;
}
.video.completed .pb-5 {
  padding-bottom: 0!important;
}
.video.completed .video-progress-overlay {
  display: none;
}

.video-progress-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.video-progress-bar {
  height: 0.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #e9ecef;
}

.video-progress-fill {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

/* Locked Content Placeholder */
.locked-content {
  padding: 4rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.02);
  border: 2px dashed var(--border-color);
  border-radius: 0.5rem;
}

/* Footer Actions */
.content-footer {
  background-color: rgba(0, 0, 0, 0.02);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
}

/* Accordion Custom Styles */
.accordion-button:not(.collapsed) {
  background-color: rgba(13, 110, 253, 0.08);
  color: var(--primary-color);
}

/* Form Validation */
.invalid-feedback {
  display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
  .sticky-top {
    position: relative !important;
    top: 0 !important;
  }
}

@media (min-width: 768px) {
  .step-icon {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 2.25rem;
  }
}

/* Alert Banner Styles */
.alert-info-custom {
  background-color: rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
  color: #084298;
}

.dark-mode .alert-info-custom {
  background-color: rgba(13, 110, 253, 0.15);
  color: #6ea8fe;
}

.entry-content {
  background: linear-gradient(to bottom, rgba(230, 52, 145, 1) 0%, rgba(3, 3, 50, 1) 100%);
}


.card.progress-wrapper {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3) !important;
  border-radius: 20px;
  overflow: hidden;
}


.button-group .button {
  margin-bottom: 1rem;
}

.button-blue {
  background-color: #030332;
}

.button {
  border: none;
}

.button:disabled {
    opacity: 0.65;
}

.button .icon {
  margin-right: 0.75rem;
}

.button .icon img {
  width: auto;
  max-height: 30px;
}

.button-group {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.button-group .button {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 30px;
}

.contract .button-group .button {
  justify-content: space-between;
}

.contract .button-group .button {
  width: 50%;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.contract .button-group .button .icon {
  margin-right: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 100px;
}

.contract .button-group .button .icon img {
  max-height: 50px;
}

.contract .button-group .button:has(.icon) {
  flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.custom-password-form {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.page-template-page-step-process {
  background-color: #030332;
}