*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container for mobile view on larger screens */
.mobile-container {
  max-width: 420px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Hide scrollbar when not scrolling (for WebKit browsers like Chrome, Safari) */
.mobile-container::-webkit-scrollbar {
  width: 0; /* Hide scrollbar */
  background: transparent; /* Transparent background */
}

/* For Firefox */
.mobile-container {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Show thin scrollbar when scrolling */
.mobile-container:hover::-webkit-scrollbar {
  width: 6px; /* Width of the scrollbar when scrolling */
}

.mobile-container:hover::-webkit-scrollbar-thumb {
  background: #cccccc; /* Scrollbar color */
  border-radius: 3px;
}

/* Full-width on mobile screens */
@media only screen and (max-width: 480px) {
  .mobile-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-shadow: none;
  }

  body {
    background-color: #ffffff;
  }
}

/* Background SVG centered in viewport */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #201606; /* Replaced image URL with solid color */
  z-index: -1;
}

/* Main content styling */
.content {
  display: block;
  color: white;
  padding: 8px;
  text-align: left;
  position: relative;
  z-index: 1; /* Ensure it's above the background */
}

/* Container for footer and header */
.container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(27, 28, 44, 0) 0%,
    rgba(27, 28, 44, 0.9) 100%
  );
  padding: 16px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5);
}

/* Header section text */
.header {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: -20px;
}

/* Card container */
.discount-card {
  background: linear-gradient(
    180deg,
    rgba(87, 49, 87, 0.8),
    rgba(58, 51, 81, 0.6)
  );
  border-radius: 16px;
  padding: 5px;
  color: white;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-top: 40px;
}

/* Discount banner */
.discount-banner {
  background-color: #008643;
  border-radius: 15px;
  padding: 5px 19px;
  color: white;
  font-size: 18px;
  display: inline-block;
  position: absolute;
  top: -14px;
  left: 10px;
}

.book-cover {
  display: inline-block;
  position: relative;
  height: auto;
  width: 80%;
  top: 10px;
  overflow: hidden;
}

.success-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-image img {
  max-width: 100%;
  height: auto;
  width: 95%;
  margin-top: 10px;
  max-width: 500px;
}

.book-cover img {
  width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: -10px;
  margin-top: 10px;
  animation: highlight 2.5s ease-in-out infinite;
}

@keyframes highlight {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* sold out progress bar and count down part */
.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px;
  z-index: 2;
  font-size: 14px;
}

.text-line {
  font-size: 16px;
  margin-bottom: 5px;
}

.countdown-line {
  display: flex;
  align-items: center;
  gap: 4px; /* Space between each digit and ti-text */
}

.digit {
  background-color: #7f44ab;
  color: #ffffff;
  width: 30px;
  height: 35px;
  margin-left: 5px;
  font-size: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", Courier, monospace;
  overflow: hidden;
  position: relative;
}

.ti-text {
  font-size: 24px;
  color: #ffcb96;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  align-items: center; /* Aligns text vertically with digits */
  margin-left: 4px; /* Space to separate from last digit */
}

.flip-animation {
  animation: flip 0.5s ease-in-out;
}

@keyframes flip {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

/* Main Progress Bar Container */
.progress-bar {
  width: 80%;
  height: 20px; /* Slightly larger for a more 3D look */
  background-color: #c5d4ff; /* Light background color for contrast */
  margin: 20px auto;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.15); /* 3D effect */
}

/* Progress Fill */
.progress {
  height: 100%;
  background-color: transparent; /* Set transparent background to show stripes */
  border-radius: 20px;
  width: 60%; /* Initial width */
  position: relative;
  overflow: hidden;
  transition: width 1s ease-in-out;
  box-shadow: inset 0 0 5px rgba(255, 165, 0, 0.5); /* Inner shadow for depth */
}

/* Angled Stripes */
.stripes {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200%;
  background: repeating-linear-gradient(
    45deg,
    #7f44ab,
    #703e96 10px,
    #7f44ab 10px,
    #8f4cc2 20px
  );
  animation: moveStripes 5s linear infinite; /* Animation for moving stripes */
}

@keyframes moveStripes {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Flame Indicator */
.flame {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 60%; /* Initialize at 60% as per the initial progress */
  width: 8px;
  height: 8px;
  background-color: #7f44ab;
  border-radius: 50%;
  box-shadow: 0 0 8px #641c9b; /* Red glow around the flame */
  z-index: 2;
  animation: flicker 1s infinite ease-in-out;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) translateY(-50%);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2) translateY(-50%);
  }
}

/* Card title */
.discount-card h2 {
  font-size: 21px;
  margin-bottom: 8px;
  color: #ffcb96;
}

/* Subtext */
.discount-card p {
  font-size: 12px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Timer section */
.timer-section {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

/* Default timer styling */
.timer {
  background: rgb(135, 226, 99);
  padding: 7px;
  border-radius: 12px;
  width: 80px;
  color: #353942;
  border: 2px solid rgb(226, 226, 226);
  margin-right: 20px; /* Add margin to the right */
}

/* Adjust the right margin for small screens */
@media (max-width: 600px) {
  .timer {
    margin-right: 10px; /* Reduce the right margin for smaller devices */
  }
}

.timer span {
  display: block;
  font-size: 2.9rem;
  font-weight: bold;
}

.timer small {
  font-size: 0.8rem;
}

.row-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin-left: 5px;
  margin-bottom: 5px;
  margin-top: 10px;
  font-family: Arial, sans-serif;
}
.left-text {
  font-size: 18px;
}
.right-button {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
}

.icon {
  font-size: 18px;
}

.card-top-part {
  margin-top: 20px;
  border: 2px solid #c2b4e2;
  overflow: hidden;
  background-color: white;
}

/* 1st card */
.card {
  margin-top: 15px;
  border: 2px solid #c2b4e2;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
}
.card-header {
  background-color: white;
  color: #8a00ca;
  padding: 15px 15px 5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.card-header .badge {
  background-color: rgba(214, 162, 235, 0.2);
  color: #8a00ca;
  padding: 5px 10px;
  border-radius: 20px;
  width: 50%;
  margin-left: 10px;
  font-size: 12px;
  border: 1px solid #8a00ca;
}
.card-content {
  padding: 15px;
}

.price-header-text01 {
  display: block;
  font-size: 16px;
  color: #292828;
  text-align: center;
  text-align: right;
  margin-right: 15px;
}
.price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.price-section .current-price {
  color: #999;
  text-decoration: line-through;
}

.price-section .price-header-text {
  color: #292828;
}
.price-section .old-price {
  color: #292828;
  font-size: 22px;
}
.currency-symbol {
  font-size: 0.7em;
}
.price-tag {
  background-color: #7f44ab;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #444;
  font-weight: 600;
}
.benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  text-align: left;
}
.benefits-list span {
  text-align: start;
}
.benefits-list li .icon {
  margin-right: 8px;
  font-size: 18px;
}
.images-section {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.images-section img {
  width: 48%;
  border-radius: 10px;
}
.button-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  text-align: center;
}

.primary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7f44ab;
  color: white;
  padding: 13px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  gap: 8px;
  font-size: 16px;
  width: 100%;
}

.primary-button:hover {
  background-color: #7f44ab;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.3s;
  animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 120%;
  }
}

.note-section {
  background-color: rgba(27, 133, 45, 0.884);
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  color: #ffffff;
  border: 1.5px solid rgb(0, 0, 0);
}

.dashed-divider {
  border: none;
  border-top: 1px dashed rgb(46, 45, 45);
  opacity: 0.6;
  margin-top: -13px;
  margin-bottom: 1px;
}

.course-image {
  width: 60%;
  height: auto;
  margin-top: 20px; /* Space above the image */
}

.images-section {
  overflow: hidden; /* Hide overflowing images */
  white-space: nowrap; /* Prevent wrapping */
  width: 100%; /* Full width or adjust as needed */
  box-sizing: border-box;
}

.scroll-container {
  display: flex;
  gap: 10px; /* Space between images */
  animation: scroll-animation 20s linear infinite; /* Continuous scrolling */
}

.scroll-container img {
  height: 150px; /* Fixed height */
  width: auto; /* Adjust width proportionally */
  border-radius: 10px;
  flex-shrink: 0; /* Prevent shrinking */
  object-fit: contain; /* Maintain aspect ratio */
  cursor: pointer;
}

/* Keyframes for scrolling animation */
@keyframes scroll-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.images-section::-webkit-scrollbar {
  height: 8px;
}

.images-section::-webkit-scrollbar-thumb {
  background-color: #7f44ab;
  border-radius: 10px;
}

.images-section::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.money-save {
  margin-bottom: -3px;
}

.savings-badge {
  background-color: #a034eb;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  margin-left: 30px;
  font-weight: bold;
  line-height: 2;
}

.card03 {
  background-color: #ffffff;
  margin: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
}

.card-header03 {
  color: #f8a429;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.card-title03 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.pricing03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.pricing03 .price03 {
  font-size: 22px;
  font-weight: 700;
}

.pricing03 .price03 del {
  color: #aaa;
  margin-right: 8px;
}

.card-content03 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.info-item03 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item03 img {
  width: 24px;
  height: 24px;
}

.card-image03 {
  text-align: center;
  margin-bottom: 20px;
}

.card-image03 img {
  width: 100%;
}

.btn-buy03 {
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-buy03:disabled {
  background-color: #d3d3d3;
  color: #a1a1a1;
  cursor: not-allowed;
}

.btn-buy03:hover {
  background-color: #444;
}

.btn-buy03::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.349);
  transform: skewX(-20deg);
  transition: 0.3s;
  animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 120%;
  }
}

.notice03 {
  margin-top: 15px;
  background-color: #e9f5e9;
  padding: 10px;
  border-radius: 15px;
  border: 1.5px solid #008643;
  font-size: 14px;
  color: #202020;
  margin-bottom: 10px;
}

.notice03 .highlight03 {
  color: #4caf50;
  font-weight: bold;
}

.footer03 {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 25px;
}

/* scroll time bottom bar button container come part */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 420px;
  width: 100%;
  height: 75px;
  background-color: rgba(51, 51, 51, 1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.footer-content {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-details {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-line {
  display: flex;
  gap: 10px;
  justify-content: center; /* Center items horizontally */
  align-items: center;
}

.discounted-price {
  color: #ffcb96;
  font-size: 26px;
}

.original-price {
  font-size: 17px;
  text-decoration: line-through;
  color: #bbb;
  margin-left: 8px;
}

.cash-on-delivery {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-top: 5px;
}

.order-button {
  background-color: #c54359;
  color: white;
  padding: 13px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  white-space: nowrap; /* Prevent text wrapping */
  min-width: 100px;
}

.order-button:hover {
  background-color: #7f44ab;
}

.order-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.3s;
  animation: slide 1.5s infinite ease-in-out;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 120%;
  }
}

/*bottom padding part*/
.bottom-padding {
  margin-bottom: 90px;
}

/*From section*/
.form-section {
  padding: 20px;
  text-align: center;
  margin: 10px 20px;
  border: 2px solid #c2b4e2;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
}

.form-input {
  padding: 20px;
  width: 100%;
  font-size: 18px;
  border: 1.5px solid #0f0f0f;
  border-radius: 16px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #212421;
}

/* Improve tel input behavior */
.form-input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.form-input[type="tel"]::-webkit-outer-spin-button,
.form-input[type="tel"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.confirm-btn {
  padding: 20px 20px;
  background-color: #212421;
  color: white;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 22px;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
  width: 100%;
}

.form-step {
  margin-top: -10px;
}

@keyframes vibrate {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

.vibrate-animation {
  animation: vibrate 1s ease-in-out infinite;
}

#form-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 5px;
  color: #181818;
}

.form-label {
  font-size: 16px;
  text-align: left;
  display: block;
  margin-bottom: 8px;
  margin-top: -5px;
}

/* Toast styling */
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #e54e4e;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 20px;
  position: fixed;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  font-size: 17px;
  border: none;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/*Expandable list item part*/

.faq-container {
  margin: 10px 20px;
  border: 2px solid #c2b4e2;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 16px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-answer {
  display: none;
  padding: 16px;
  font-size: 16px;
  color: #666;
}

.icon {
  font-size: 18px;
  transition: transform 0.3s;
  color: #aa6adb;
}

.icon.rotate {
  transform: rotate(180deg);
}

/*For left to right container*/
.text-container {
  width: 100%;
  background-color: #1d1e1e;
  padding: 10px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.animate-text {
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  height: 20px;
  color: white;
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}

@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/*For left to right container*/
.top-text-container {
  width: 100%;
  background-color: #1d1e1e;
  padding: 10px 0;
  overflow: hidden; /* Hides overflowing text */
  position: relative;
  white-space: nowrap; /* Prevents text from wrapping to the next line */
}

.top-animate-text {
  display: inline-block; /* Allows transform animations */
  color: white;
  padding-left: 100%; /* Starts the text outside the right boundary */
  animation: scroll-text 35s linear infinite; /* Defines the scrolling animation */
}

.top-animate-text:hover {
  animation-play-state: paused; /* Pauses animation when hovered */
}

@keyframes scroll-text {
  0% {
    transform: translateX(0); /* Starting position */
  }
  100% {
    transform: translateX(-100%); /* Ending position */
  }
}

@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* Main slider container */
.customer-review-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
  padding-bottom: 8px;
  margin-left: 30px;
  padding-top: 10px;
}

.slider-container {
  position: relative;
  max-width: 85%;
  margin: auto;
  overflow: hidden;
}

/* Slider track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Slider item styling */
.slider-item {
  min-width: 100%; /* Each slide takes the full width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-item img {
  max-width: 100%;
  height: auto;
}
/* Dot indicators */
.dot-indicators {
  text-align: center;
  margin-bottom: 10px;
}

.dot {
  display: inline-block;
  width: 30px;
  height: 5px;
  margin: 0 5px;
  background-color: #717171;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #d6d6d6;
}

@keyframes slide-button {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 120%;
  }
}

.primary-button::before,
.order-button::before,
.btn-buy03::before {
  animation: slide-button 1.5s infinite ease-in-out;
}

/* Add oscillate keyframes for back-and-forth movement */
@keyframes oscillate {
  0% {
    transform: translate(-50%, -50%) translateX(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(-5px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(5px);
  }
}

/* Oscillation animation class */
.oscillate {
  animation: oscillate 2s infinite ease-in-out;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 70%;
  max-width: 300px;
  padding: 10px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border: 3px solid #7f44ab;
  color: rgb(8, 8, 8);
  font-size: 14px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 9999;
}

.toast-container.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-avatar {
  margin-right: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.toast-text {
  flex-grow: 1;
}

/* Define the highlight color for the buyer's name */
.highlight-name {
  color: #e99d3a;
  font-weight: bold;
}

.dollar {
  position: absolute;
  top: -10px; /* Start above the discount-card */
  font-size: 24px;
  color: #2ecc71; /* Customize the color */
  animation: fall linear infinite;
  pointer-events: none; /* Ensure it doesn't interfere with clicks */
  opacity: 1;
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

.top-card-header {
  background-color: #6f8f52;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.aToZText {
  font-size: 28px;
}

.top-card-header02 {
  background-color: #9b505f;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header03 {
  background-color: rgb(71, 122, 113);
  color: #ffffff;
  padding: 15px;
  align-items: center;
  display: flex;
  font-size: 22px;
  font-weight: bold;
}

.top-card-header04 {
  background-color: #003161;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header05 {
  background-color: #427186;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header06 {
  background-color: #af1740;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header07 {
  background-color: #9b7ebd;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header08 {
  background-color: #257180;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header09 {
  background-color: #863cb1;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header10 {
  background-color: #a02e4a;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header11 {
  background-color: #c46f00;
  color: #ffffff;
  padding: 15px;
  display: flex;
  text-align: center;
  font-size: 26px;
  align-items: center;
  font-weight: bold;
}

.top-card-header01 {
  background-color: #d4841b;
  color: #ffffff;
  padding: 8px 15px 5px 15px;
  font-weight: bold;
  font-size: 26px;
}

.number-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.numbers {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-text-count-number01 {
  background-color: #aa5486;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.and-text {
  font-size: 22px;
  margin: 0 5px;
}

.title-text {
  margin-left: 5px;
  flex: 1;
}

.highlight-text {
  color: #4d4d4d;
}

.header-text-count-number02 {
  background-color: #780db6;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number03 {
  background-color: #8b5dff;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number04 {
  background-color: #ed3ef7;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number05 {
  background-color: #4b4376;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number06 {
  background-color: #3d5300;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number07 {
  background-color: #d91656;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number08 {
  background-color: #41b3a2;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number09 {
  background-color: #17387e;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number10 {
  background-color: #15646e;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.header-text-count-number11 {
  background-color: #359460;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 15px;
  margin-right: 18px;
  margin-left: 0;
}

.dashed-divider-cm {
  border: none;
  border-top: 1px dashed rgba(46, 45, 45, 0);
  margin-top: -25px;
  opacity: 0.6;
}

.header-paragraph-text02 {
  margin: 20px;
}

.my-image {
  width: -webkit-fill-available;
  padding-top: 10px;
  padding-left: 6px;
  padding-right: 6px;
}

/* Styling for the text */
.demo-website {
  color: blue;
  text-align: center; /* Center the text in the container */
  font-size: 24px;
  position: relative;
  cursor: pointer;
  margin: 20px 0;
  display: inline-block; /* To center the shimmer effect */
}

/* Underline shimmer animation */
.demo-website::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* Position underline just below the text */
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, blue, transparent);
  animation: shimmer 3s infinite;
}

/* Lottie overlay container over demo text */
.demo-website-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible; /* allow overlay to spill outside if needed */
}

.demo-website-overlay {
  position: absolute;
  top: 25px; /* place above the text */
  left: 50%;
  transform: translateX(-50%);
  width: 120px; /* controls animation size */
  height: 120px;
  pointer-events: none; /* don't block clicks on the text */
  z-index: 2; /* over the text */
}

/* Keyframes for shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -100%;
  }
  100% {
    background-position: 100%;
  }
}

/* Popup styles */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: white;
  padding: 5px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

iframe {
  border-radius: 12px;
  flex-grow: 1;
  width: 100%;
  border: none;
}

.close-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  align-self: flex-end;
}

.top_header_en_text {
  font-size: 28px;
}

.header-yellow-text {
  font-size: 24px;
  margin: 0;
}

.image-section {
  display: flex;
  justify-content: center; /* Centers images horizontally */
  align-items: center; /* Centers images vertically */
  margin: 15px 0; /* Add some spacing around the image section */
}

.image-section img {
  max-width: 100%; /* Ensures the image scales properly */
  height: auto; /* Maintains aspect ratio */
  border-radius: 10px; /* Optional: Rounded corners for images */
}

.car-imoji {
  font-size: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 90%;
  width: 320px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h2 {
  color: #28a745;
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
  color: #333;
}

.modal-content button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.modal-content button:hover {
  background-color: #0069d9;
}

.eight-package-text-header {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  display: block;
  text-align: center; /* Center the text */
}

.eight-package-text-header-div {
  background-color: #007b91;
  margin: 15px 5px 5px 5px; /* Added top margin of 15px */
  border-radius: 8px;
  padding: 10px;
  border: 2px solid rgb(129, 130, 148);
}

.package-en-header-test {
  font-size: 36px;
}

#moreThen11DigitError-1 {
  display: none;
  color: red;
  font-size: 14px;
  margin-bottom: 5px;
}

#moreThen11DigitError-2 {
  display: none;
  color: red;
  font-size: 14px;
  margin-bottom: 5px;
}

#moreThen11DigitError-3 {
  display: none;
  color: red;
  font-size: 14px;
  margin-bottom: 5px;
}

.package-point-en-text {
  font-size: 18px;
}

.form-title-2 {
  color: #da8433;
  font-size: 14px;
  margin-bottom: -10px;
}

/* Add this to your existing CSS */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

button.loading {
  cursor: not-allowed;
  opacity: 0.8;
}

/* Dual image layout */
.dual-image {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.image-column {
  flex: 1;
  max-width: 48%;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive adjustment for small screens */
@media (max-width: 480px) {
  .dual-image {
    flex-direction: column;
    align-items: center;
  }

  .image-column {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/* Add new class for number container */
.number-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
}

/* Add style for the "ও" text */
.and-text {
  font-size: 22px;
  margin: 0 5px;
}

/* Add style for the title text */
.title-text {
  width: 100%;
  margin-top: 5px;
}

.extra-service-div {
  background-color: #007b91;
  margin: 15px 5px 5px 5px; /* Added top margin of 15px */
  border-radius: 8px;
  padding: 10px;
  border: 2px solid rgb(129, 130, 148);
}

.numbers-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-text-count-number01 {
  background-color: #aa5486;
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.and-text {
  font-size: 20px;
  margin: 3px 0;
}

.title-text {
  margin-left: 15px;
  flex: 1;
}

.number-container {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  align-items: center;
}

/* Header Points Section Styles */
.header-points-container {
  margin: 20px 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f0ff 100%);
  border: 2px solid #c2b4e2;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(138, 0, 202, 0.1);
}

.header-points-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #8a00ca;
  margin: 0 0 15px 0;
  padding: 0;
}

.header-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.header-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-point-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(138, 0, 202, 0.15);
}

.point-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8a00ca, #b347d9);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.point-text {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 360px) {
  .header-points-container {
    margin: 15px 10px;
    padding: 15px;
  }

  .header-points-title {
    font-size: 16px;
  }

  .point-text {
    font-size: 11px;
  }

  .point-number {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
}
