* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bricolage Grotesque", sans-serif;
}
body {
  background-image: url("abstract-shapes-wave-background.webp");
  background-repeat: no-repeat;
  background-color: transparent;
  background-attachment: fixed;
  color: #242424;
}

.new_ecom_style_highlight {
  color: #ff0808;
}
.new_ecom_style_container {
  max-width: 1500px;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 40px;
}

.new_ecom_style_headdiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.new_ecom_style_heading {
  font-size: 50px;
  max-width: 600px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_text {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 0px 15px;
  color: rgb(52, 52, 52);
  letter-spacing: 0.5px;
  margin-top: 15px;
  font-weight: 300;
}

/* ------- */
.new_ecom_style_card_container {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.7rem;
  border: 1px solid rgb(229, 229, 229);
  background: white;
  box-sizing: border-box;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15),
    -5px -5px 15px rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.6rem;
  font-size: 14px;
  gap: 0.6rem;
}

.radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
  position: relative;
}

.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  padding: 0.8rem 1rem;
  color: #2d3748;
  font-weight: 500;
  border: 1px solid rgb(239, 233, 233);
  font-family: inherit;
  background: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1),
    -3px -3px 6px rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  overflow: hidden;
}

.radio-inputs .radio input:checked + .name {
  background: linear-gradient(145deg, #c90505, #ff0808);
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.1),
    3px 3px 8px rgba(59, 130, 246, 0.3);
}

/* Hover effect */
.radio-inputs .radio:hover .name {
  background: white;
  transform: translateY(-1px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.radio-inputs .radio:hover input:checked + .name {
  transform: translateY(1px);
}

/* Animation */
.radio-inputs .radio input:checked + .name {
  animation: select 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Particles */
.radio-inputs .radio .name::before,
.radio-inputs .radio .name::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.radio-inputs .radio input:checked + .name::before,
.radio-inputs .radio input:checked + .name::after {
  animation: particles 0.8s ease-out forwards;
}

.radio-inputs .radio .name::before {
  background: #ff0808;
  box-shadow: 0 0 6px #ff0808;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.radio-inputs .radio .name::after {
  background: #ff0808;
  box-shadow: 0 0 8px #ff0808;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Sparkles */
.radio-inputs .radio .name::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    #ff0808 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.radio-inputs .radio input:checked + .name::after {
  opacity: 1;
  animation: sparkle-bg 1s ease-out forwards;
}

/* Multiple particles */
.radio-inputs .radio input:checked + .name {
  overflow: visible;
}

.radio-inputs .radio input:checked + .name::before {
  box-shadow: 0 0 6px #ff0808, 10px -10px 0 #ff0808, -10px -10px 0 #ff0808;
  animation: multi-particles-top 0.8s ease-out forwards;
}

.radio-inputs .radio input:checked + .name::after {
  box-shadow: 0 0 8px #ff0808, 10px 10px 0 #ff0808, -10px 10px 0 #ff0808;
  animation: multi-particles-bottom 0.8s ease-out forwards;
}

@keyframes select {
  0% {
    transform: scale(0.95) translateY(2px);
  }
  50% {
    transform: scale(1.05) translateY(-1px);
  }
  100% {
    transform: scale(1) translateY(2px);
  }
}

@keyframes multi-particles-top {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  40% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px) scale(0);
    box-shadow: 0 0 6px transparent, 20px -20px 0 transparent,
      -20px -20px 0 transparent;
  }
}

@keyframes multi-particles-bottom {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  40% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0);
    box-shadow: 0 0 8px transparent, 20px 20px 0 transparent,
      -20px 20px 0 transparent;
  }
}

@keyframes sparkle-bg {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Ripple effect */
.radio-inputs .radio .name::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    #ff0808 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.radio-inputs .radio input:checked + .name::before {
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0.2);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

/* Glowing border */
.radio-inputs .radio input:checked + .name {
  position: relative;
}

.radio-inputs .radio input:checked + .name::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(45deg, #ff0808, #ff0808);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-glow 1.5s ease-in-out infinite alternate;
}

@keyframes border-glow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Package */
.new_ecom_style_package-container {
  display: none;
  margin-top: 30px;
  width: 100%;
}
.new_ecom_style_package-container.active {
  display: block;
}
.new_ecom_style_package-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.new_ecom_style_package-card {
  padding: 20px;
  width: 100%;
  border: 1px solid rgb(234, 234, 234);
  border-radius: 12px;
  background-color: white;
  transition: transform 0.2s;
}

.new_ecom_style_package-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  border-bottom: 4px solid green;
}

.new_ecom_style_package-card h4 {
  font-weight: 400;
  margin-top: 20px;
  font-size: 17px;
  color: #242424;
  line-height: 0px;
  letter-spacing: 0.3px;
}

.new_ecom_style_card_subheading {
  font-size: 13px;
  line-height: 1.3;
  color: rgb(52, 52, 52);
  letter-spacing: 0.5px;
  margin-top: 25px;
  font-weight: 300;
}
.new_ecom_style_button {
  margin-top: 20px;
  --bg: #242424;
  --hover-bg: #fff;
  width: 100%;
  --hover-text: #242424s;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bg);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
  color: var(--hover-text);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

.new_ecom_style_button:hover {
  color: white;
  background: #242424;
}

.new_ecom_style_button:active {
  transform: translate(0);
  box-shadow: none;
}

.new_ecom_style_features_div {
  margin-top: 20px;
}
.new_ecom_style_features_div .new_ecom_style_features_div_heading {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: rgb(97, 97, 97);
}

.new_ecom_style_features_div_list {
}

.new_ecom_style_features_div_list_item {
  display: flex;
  align-items: center;
  margin-top: 13px;
  gap: 8px;
}
.new_ecom_style_features_div_list_item svg {
}
.new_ecom_style_features_div_list_item p {
  font-size: 13px;
  font-weight: 300;
  color: #7c7b7b;
}

.new_ecom_style_faq_container {
}

.new_ecom_style_faq {
  padding: 40px 40px;
  max-width: 1500px;
  margin: auto;
}

.new_ecom_style_faq h2 {
  font-size: 35px;
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.new_ecom_style_faq p {
  font-size: 13px;
  line-height: 1.5;
  color: #7c7b7b;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  font-weight: 300;
}

.new_ecom_style_faq_inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 25px;
  column-gap: 25px;
}
.new_ecom_style_faq_inner_card {
  border: 1px solid rgb(240, 235, 235);
  padding: 20px;
  border-radius: 15px;
  background-color: white;
}
.new_ecom_style_faq_inner_card h3 {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 400;
}

.new_ecom_style_faq_inner_card p {
  font-size: 13px;
  color: #7c7b7b;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-weight: 300;
}
.new_ecom_style_tech_stack_container {
  background-color: white;
}
.new_ecom_style_tech_stack {
  max-width: 1500px;
  padding: 40px;
  margin: auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: var(--color-bg);
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee var(--duration) linear infinite;
}

.marquee__group {
  display: flex;
  gap: 2rem;
}

.marquee__group img {
  width: var(--size);
  background: var(--color-bg-accent);
  padding: calc(var(--size) / 10);
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.new_ecom_style_process_container {
  background-color: white;
  padding: 40px;
}

.new_ecom_style_process_heading h3 {
  margin-bottom: 35px !important;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_clients_container {
  background-color: white;
  padding: 40px;
}
.new_ecom_style_clients {
  max-width: 1500px;
  margin: auto;
}
.new_ecom_style_clients h2 {
  margin-bottom: 35px !important;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_features_container {
  padding: 40px;
}
.new_ecom_style_features {
  max-width: 1500px;
  margin: auto;
}
.new_ecom_style_features h2 {
  margin-bottom: 10px;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_features p {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 0px 15px;
  color: #7c7b7b;
  letter-spacing: 0.5px;
  margin-top: 15px;
  font-weight: 300;
}
.new_ecom_style_features_inner {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.new_ecom_style_features_card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: white;
  /* border: 1px solid gray; */
  border-radius: 10px;
  box-shadow: rgba(27, 27, 176, 0.1) 0px 7px 29px 0px;
  padding: 15px;
}

.new_ecom_style_features_card img {
  height: 50px;
  width: 50px;
}

.new_ecom_style_features_card h2 {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  line-height: normal;
}
.new_ecom_style_platforms_container {
  padding: 40px;
  background-color: white;
}
.new_ecom_style_platforms {
  max-width: 1500px;
  margin: auto;
}
.new_ecom_style_platforms h2 {
  margin-bottom: 20px;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}

.new_ecom_style_platforms_inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.new_ecom_style_platforms_inner_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(239, 237, 237);
  border-radius: 15px;
  padding: 20px 15px;
  background-color: white;
}
.new_ecom_style_platforms_inner_card img {
  height: 50px;
  width: 100%;
  object-fit: contain;
}
.new_ecom_style_platforms_inner_card h3 {
  font-weight: 300;
  font-size: 16px;
}
.new_ecom_style_whyus_container {
  padding: 40px;
}
.new_ecom_style_whyus {
  max-width: 1500px;
  margin: auto;
}
.new_ecom_style_whyus h2 {
  margin-bottom: 10px;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_whyus p {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  padding: 0px 10px;
  color: #494949;
  letter-spacing: 0.5px;
  margin-top: 15px;
  font-weight: 300;
}
.new_ecom_style_whyus_inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}

.new_ecom_style_whyus_card {
  border: 1px solid rgb(237, 231, 231);
  padding: 20px;
  border-radius: 15px;
}

.new_ecom_style_whyus_card img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.new_ecom_style_whyus_card h4 {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 400;
}

.new_ecom_style_whyus_card p {
  text-align: left;
  font-size: 14px;
  color: #7c7b7b;
  padding: 0px;
  font-weight: 300;
}
.new_ecom_style_platformsweused_container {
  padding: 40px;
  margin: auto;
  background-color: white;
}
.new_ecom_style_platformsweused_container h2 {
  margin-bottom: 10px;
  max-width: 700px;
  margin: auto;
  font-size: 36px;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0px;
  font-weight: 400;
  text-align: center;
}
.new_ecom_style_platformsweused_inner {
  max-width: 1500px;
  margin: auto;
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.new_ecom_style_platformsweused_card {
}
.new_ecom_style_platformsweused_card img {
  height: 50px;
  width: auto;
}
.new_ecom_style_platformsweused_card h4 {
  font-size: 22px;
  font-weight: 400;
}

.new_ecom_style_platformsweused_card p {
  font-size: 13px;
  line-height: 1.5;
  color: #7c7b7b;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-weight: 300;
}
.new_ecom_style_platformsweused_card_head {
  margin-bottom: 15px;
  align-items: center;
  gap: 10px;
}
.hidden-paragraph {
  display: none;
}

.read-more-btn {
  color: #ff0808;
  text-decoration: underline;
  text-underline-offset: 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
