.mt-100 {
  margin-top: 100px;
}

.use-steps-wrapper h1 {
  font-size: 36px;
  font-weight: 600;
}

.use-steps-wrapper h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}
/* --- Slider container --- */

.arrow:disabled {
  opacity: 0.3;
  color: #777;
  cursor: not-allowed;
}

/* --- Step Tabs Wrapper --- */
.step-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Spacing between cards */
  justify-content: center;
}

.card-wrapper-inner {
  flex: 1 1 calc(20% - 20px); /* 5 cards per row on full width */
  min-width: 200px;
}

/* --- Step Card --- */

.step-card {
  border-radius: 10px;
  padding: 10px 10px 10px 15px;
  text-align: center;
  border: 1px solid rgba(93, 0, 150, 0.4);
  background: rgba(93, 0, 150, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  transition: 0.2s;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #515151;
}

.step-content {
  text-align: left;
}
.step-card:hover {
  background: #650099;
  border-color: #650099;
  color: #fff;
}

.step-card:hover p {
  color: #fff;
}

/* --- Step Number --- */
.step-number {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: #650099;
}

.step-card:hover .step-number {
  color: #fff;
}

/* --- Step Title --- */
.step-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #333333;
}

.step-card:hover .step-title {
  font-weight: 500;
  color: #fff;
}

/* Tab Content */

.tab-content-warapper {
  border-radius: 20px;
  overflow: hidden;
}

.tab-content {
  margin-top: 40px;
}

.step-hero h1 {
  padding: 30px 40px;
  margin: 0px;
  color: var(--color-primary-1);
  border-bottom: 3px solid var(--color-primary-1);
}

.steps-content {
  padding: 60px 40px;
}

.light-bg {
  background-color: #f9f8ff;
}

.dark-bg {
  background-color: #ede5f4;
}

.steps-content .left-right {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}

.steps-content .left-right .left {
  width: 100%;
  background-color: #fff;
  padding: 50px 40px;
}

.steps-content .left-right .right {
  width: 50%;
  background-color: #dfccea;
  padding: 60px 40px;
}

sup {
  font-size: 100%;
  /* line-height: 80%; */
  /* vertical-align: super; */
  display: inline-block;
}

.steps-content h2 {
  color: var(--color-primary-1);
}

/* Maintains 16:9 aspect ratio and makes the video responsive */
.video-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.responsive-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' if you want whole frame visible */
  background: #000;
}

.stamp-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ede5f4;
  padding: 16px;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stamp-card-image-container {
  padding: 0;
  margin: 0 auto;
}

.stamp-card img {
  width: 70px;
}

.card-text {
  padding-left: 16px !important;
}

small {
  font-size: 12px;
  line-height: 18.75px;
  margin-bottom: 0.4rem;
  display: block;
}

.cta-section {
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  margin-top: 50px;
}

.cta-section .cta-text {
  font-size: 24px;
  margin-bottom: 20px;
}

.styled-list {
  list-style: disc;
  padding-left: 15px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
}

.large-list {
  font-size: 18px;
  gap: 20px;
  margin-bottom: 0;
}

.dwnld-link {
  color: #00749e;
  text-decoration: underline;
}

.bg-card-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.bg-card {
  padding: 60px 40px;
}

.w-lg-50 {
  width: 50%;
}

.use-steps .stamp-card {
  flex-direction: column;
  padding: 50px 40px;
  align-items: start;
  gap: 40px;
  justify-content: start;
}

.use-steps .stamp-card img {
  width: auto;
  margin: 0 auto;
}

/* Popup Style  */

/* Fullscreen background layer */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: -1;
}

/* Popup box */
.popup {
  background: white;
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 650px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Text */
.popup-text {
  font-size: 22px;
  color: #650099;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Buttons */
.popup-buttons {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-light);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.no-btn {
  background: #eaeaea;
  color: #444;
  border: 1px solid transparent;
}

.no-btn:hover {
  background: #f2f2f2f0;
  color: #444;
  border: 1px solid transparent;
}

.yes-btn {
  color: #fff;
  background: var(--color-primary-1);
}

.yes-btn:hover {
  color: var(--color-primary-1);
  background: var(--color-light);
  border: 1px solid var(--color-primary-1);
}

.popup-logo img {
  width: 150px;
}

/* ========== Responsive Css ==========  */

/* Laptop slider mode */

@media (max-width: 1200px) {
}

/* Tablet slider mode */

@media (max-width: 991px) {
  .w-lg-50 {
    width: 100%;
  }
  .steps-content .left-right {
    flex-wrap: wrap;
  }
  .steps-content .left-right .left {
    width: 100%;
  }

  .steps-content .left-right .right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .step-title {
    font-size: 16px;
  }
  .popup {
    width: 90%;
    margin: auto;
  }
  .mt-100 {
    margin-top: 70px;
  }
  .step-card {
    padding: 10px 20px;
    gap: 25px;
  }
}

/* Mobile slider mode */
@media (max-width: 600px) {
  .use-steps-wrapper h1 {
    font-size: 24px;
  }

  .step-hero h1 {
    padding: 40px 30px;
    font-size: 30px;
  }

  .use-steps-wrapper h2 {
    font-size: 24px;
  }

  .use-steps-wrapper .hub-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .steps-content {
    padding: 40px 30px;
  }

  .bg-card {
    padding: 40px 30px;
  }

  .use-steps .stamp-card {
    gap: 25px;
    padding: 40px 30px;
  }

  .steps-content .left-right .left {
    padding: 40px 30px;
  }

  .steps-content .left-right .right {
    padding: 40px 30px;
  }

  .use-steps .stamp-card img {
    width: 100%;
  }
  .step-card-wrapper {
    gap: 15px;
  }
}
