:root {
  /* MAIN COLORS */
  --main-bg: #fbfbfb;
  --main-grad: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);
  --main-grad-flip: conic-gradient(from 161.26deg at 78.44% -5%, #713AE8 -19.64deg, #B460DC 205.27deg, #713AE8 340.36deg, #B460DC 565.27deg);
  --main-disabled: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);
  /* ACCENT COLORS */
  --default: #3751FF;
  --default-04: rgba(55, 82, 255, 0.04);
  --light: #DDE2FF;
  --disabled: #E7EAFF;
  /* GRAY SCALES */
  --black: #252733;
  --gray-dark: #424242;
  --gray: #4B506D;
  --gray-light: #C5C7CD;
  --divider: #DFE0EB;
  --divider-graph: #EBEDF0;
  --gray-lightest: #e5e6ec;
  --bg: #F3F4F5;
  --white: #FFFFFF;
  --sidebar-bg: #363740;
  --transparent: var(--transparent) !important;
  --slider-connect-bg: #713AE8;
  --slider-tooltip-bg: #fff;
  --slider-handle-bg: #713AE8;
  --slider-tooltip-color: #252733;
  --slider-handle-ring-color: #713AE8;
}

/* TEXT SELECT COLOR AND BG COLOR */
::-moz-selection {
  color: var(--white);
  background: #713AE8;
}

::selection {
  color: var(--white);
  background: #713AE8;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #713AE8;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--main-bg);
  color: #1a1a1a;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

header, .section, footer {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.navbar a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 10px;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2) {
  top: 8px;
}

.hamburger-icon span:nth-child(3) {
  top: 16px;
}

/* Hamburger Animation */
.hamburger-icon.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.half-section {
  max-width: 620px;
  margin: 0 1em 16em 1em;
}

.hero-bg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100vh;
}

.hero {
  padding-top: 4rem;
  justify-items: end;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

.hero .hero-bigtitle {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 1.1em;
  text-transform: uppercase;
}

.hero p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero input {
  padding: 0.8rem;
  width: 300px;
  max-width: 100%;
  margin-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hero .hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 60%;
  height: 90vh;
  z-index: -1;
}

.hero .hero-bg svg {
  max-width: 100%;
  max-height: 100%;
}

.hero-img {
  width: 100%;
  max-height: 100vh;
}

.blocks-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.blocks-1-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.self-end {
  justify-self: self-end;
}

.pe-10 {
  padding-right: 10em;
}

.btn {
  display: inline-block;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box;
  border: none;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  font-size: 1em;
  transition: 0.2s;
}

.btn-type-2,
.btn-type-2:hover {
  padding: 1.1rem 1.5rem !important;
  background: var(--main-grad) !important;
  border-radius: 8px !important;
  height: 3.5rem !important;
  color: var(--white) !important;
}

.btn-type-4,
.btn-type-4:hover {
  padding: 1.1rem 1.5rem !important;
  background: transparent !important;
  border: 1px solid #a947d6 !important;
  height: 3.5rem !important;
  border-radius: 8px !important;
}

.btn-type-2::after,
.btn-type-4::after {
  content: "";
  opacity: 0;
  background: var(--main-grad-flip) !important;
  transition: 0.2s;
  display: block;
  position: relative;
  height: 3.5rem !important;
  margin: -1.1rem -1.5rem;
  top: -1rem;
  border-radius: 6px;
}

.btn-type-2:hover::after,
.btn-type-4:hover::after {
  opacity: 1;
}

.btn-type-2 *,
.btn-type-4 * {
  position: relative;
  z-index: 2;
}

.btn-type-4::after {
  background: var(--main-grad) !important;
}

.btn-type-4:hover {
  color: #fff !important;
}

.btn-type-2.btn-small,
.btn-type-4.btn-small {
  padding: 0.2rem 0.4rem !important;
  height: 2.2rem !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-type-2.btn-small::after,
.btn-type-4.btn-small::after {
  height: 2rem;
  margin: -0.2rem -0.4rem;
}

.btn-type-2.btn-normal,
.btn-type-4.btn-normal {
  padding: 0.4rem 1.5rem !important;
  height: 2.5rem !important;
}

.btn-type-2.btn-normal::after,
.btn-type-4.btn-normal::after {
  height: 2.375rem;
  margin: -0.4rem -1.5rem;
}

.btn-type-4:active .text-gradient,
.btn-type-4:focus-visible .text-gradient,
.btn-type-4:hover .text-gradient {
  background: -webkit-linear-gradient(white, white) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.btn-type-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.btn-type-5:hover {
  border-bottom: 1px solid #a947d6 !important;
  border-radius: 0 !important;
}

.btn-outline-primary {
  border: 1px solid #a947d6 !important;
  color: #a947d6 !important;
}

.btn-outline-primary:hover {
  color: #fff !important;
  background: #a947d6 !important;
  border: 1px solid #753ce7 !important;
}

.btn-primary {
  border: 1px solid #a947d6 !important;
  background: #a947d6 !important;
}

.btn-primary:hover {
  background: #753ce7 !important;
}

h2 {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.4em;
  letter-spacing: 0.3px;
  color: #140029;
}

p, ul li {
  line-height: 2em;
  letter-spacing: 0.3px;
  color: #757095;
}

.clients {
  text-align: center;
  margin: 4rem 0;
}

.clients h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.4em;
  text-align: center;
  color: #4D4D4D;
}

.client-logos {
  margin: 4em auto;
  gap: 1em;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.client-logos img {
  height: 2em;
  display: inline-block;
  margin: 0.5em;
}

.box {
  background: #e8ebf7;
  border-radius: 6px;
  padding: 1em 2em 2em 2em;
  height: -webkit-fill-available;
  text-align: center;
}

.gap-1 {
  gap: 1em;
}

.text-center {
  text-align: center;
}

.bg-section-1 {
  position: relative;
  background-color: #f3ecfe; /* light purple */
  padding: 4em 2em;
  z-index: 0;
  margin-top: calc(50px + 4em);
  padding-bottom: calc(50px + 4em);
}

.bg-section-1::before,
.bg-section-1::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f3ecfe;
  border-radius: 100% 100% 0 0/70% 70% 0 0;
  z-index: -1;
}

.bg-section-1::before {
  top: -50px;
}

.bg-section-1::after {
  bottom: 0;
  background-color: var(--main-bg);
}

.list-3-block {
  display: flex;
  gap: 2em;
  align-items: flex-start;
}

.list-3-block .icon {
  line-height: 1;
  padding: 0.8em;
  border-radius: 100%;
  display: flex;
  height: 3em;
  width: 3em;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.list-3-block .icon svg {
  width: 3em;
}

.bg-1 {
  background: #00A99D;
}

.bg-2 {
  background: #7860DC;
}

.bg-3 {
  background: #3F327A;
}

.bg-4 {
  background: #DB4A87;
}

.bg-5 {
  background: #FFA42F;
}

.bg-6 {
  background: #6AB04C;
}

.testimonial {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  font-family: sans-serif;
}

.subheading {
  color: #7c4bff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.testimonial h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonial-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-image {
  position: relative;
  flex: 1;
  max-width: 320px;
  background-color: #eaf0fe;
  padding: 1rem;
}

.testimonial-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.testimonial-image::before,
.testimonial-image::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #7c4bff;
  border-radius: 0 0 100% 0;
  z-index: 0;
}

.testimonial-image::before {
  top: -20px;
  left: -20px;
  transform: rotate(180deg);
}

.testimonial-image::after {
  bottom: -20px;
  right: -20px;
}

.testimonial-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.quote-mark {
  font-size: 4em;
  color: #ff6a3d;
}

.stars {
  color: #ff6a3d;
  font-size: 2em;
  margin-bottom: 1em;
}

.testimonial .quote {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial .author {
  font-size: 0.9em;
  color: #444;
  margin-bottom: 0.5em;
}

.testimonial .role {
  color: #888;
  font-size: 0.85em;
}

.cta-section {
  background: #872cd6;
  color: white;
  text-align: center;
  padding: 4em 2em;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 1em;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #e0d7f1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.circle-left {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -100px;
}

.circle-right {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
}

.circle-left2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: -160px;
  border-color: #7625C8;
}

.circle-right2 {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -80px;
  border-color: #7625C8;
}

/* Ensure text is above circles */
.cta-section > *:not(.circle) {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: #fff;
  padding: 60px 40px 30px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1d1d1d;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #872cd6;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  /* General adjustments */
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.6em !important;
  }
  p {
    font-size: 0.9em !important;
  }
  /* Navbar adjustments */
  .navbar {
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  .hamburger-menu {
    display: block;
  }
  .menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .menu-container.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .self-end {
    justify-self: center;
  }
  .navbar nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .navbar a {
    margin-left: 0;
    padding: 0.5rem;
  }
  /* Grid layouts */
  .blocks-1-1, .blocks-1-1-1 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Hero section */
  .hero {
    padding-top: 2rem;
  }
  .hero .half-section {
    margin: 0 0 2em 0;
  }
  .hero input {
    margin-right: 1em;
  }
  .hero-img {
    max-height: 50vh;
    margin-top: 2rem;
  }
  /* Spacing adjustments */
  .section, header, footer {
    padding: 1.5rem;
  }
  .pe-10 {
    padding-right: 0;
  }
  /* List blocks */
  .list-3-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  /* Hero-2 section */
  .hero-2 {
    padding: 2em 1em;
    min-height: auto;
  }
  .hero-2 .hero-content {
    margin-top: 30px;
  }
  .hero-2 .hero-content h1 {
    font-size: 1.8em;
  }
  .hero-2 .hero-content p br {
    display: none;
  }
  .hero-2 .card.amazon,
  .hero-2 .card.emag,
  .hero-2 .card.sales {
    position: static;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 280px;
  }
  .hero-2 .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
  .hero-2 .card-img.card-img1 {
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
  }
  /* Testimonial section */
  .testimonial {
    padding: 2rem 1rem;
  }
  .testimonial-content {
    flex-direction: column;
  }
  .testimonial-image {
    max-width: 250px;
  }
  .testimonial .quote {
    font-size: 1.1em;
  }
  /* CTA section */
  .cta-section {
    padding: 3em 1em;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  /* Footer adjustments */
  .footer {
    padding: 40px 20px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-bg svg {
    display: none;
  }
}
/* Small mobile devices */
@media screen and (max-width: 480px) {
  /* General adjustments */
  h1 {
    font-size: 1.7rem !important;
  }
  h2 {
    font-size: 1.4em !important;
  }
  p {
    font-size: 0.85em !important;
  }
  /* Navbar adjustments */
  .navbar {
    padding: 0.8rem;
  }
  /* Hero section */
  .hero .hero-bigtitle {
    font-size: 0.9em;
  }
  /* Hero-2 section */
  .hero-2 .hero-content h1 {
    font-size: 1.5em;
  }
  .hero-2 .card {
    padding: 15px;
    min-width: auto;
    width: 100%;
    max-width: 220px;
  }
  /* List blocks */
  .list-3-block .icon {
    padding: 0.5em;
    height: 2em;
    width: 2em;
  }
  .list-3-block .icon svg {
    width: 2em;
  }
  /* Testimonial section */
  .testimonial .quote {
    font-size: 1em;
  }
  /* CTA section */
  .cta-section h2 {
    font-size: 1.3em !important;
  }
  /* Footer adjustments */
  .footer {
    padding: 30px 15px 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Tablet specific adjustments */
  .blocks-1-1-1 {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  /* Navbar adjustments */
  .navbar {
    padding: 1.5rem;
    gap: 1rem;
  }
  .navbar a {
    margin-left: 0.5rem;
  }
  /* Hero section */
  .hero .half-section {
    margin: 0 0 8em 0;
  }
  .hero-img {
    max-width: 90%;
  }
  /* Hero-2 section */
  .hero-2 {
    padding: 3em 2em;
  }
  .hero-2 .hero-content h1 {
    font-size: 2em;
  }
  .hero-2 .card.amazon {
    left: 5%;
    top: 120px;
    max-width: 200px;
  }
  .hero-2 .card.emag {
    left: 10%;
    top: 220px;
    max-width: 200px;
  }
  .hero-2 .card.sales {
    right: 5%;
    top: 82px;
    max-width: 200px;
  }
  .hero-2 .card-img.card-img1 {
    width: 90%;
    max-width: 392px;
  }
  /* List blocks */
  .list-3-block {
    gap: 1em;
  }
  .list-3-block .icon {
    padding: 0.6em;
    height: 2.5em;
    width: 2.5em;
  }
  .list-3-block .icon svg {
    width: 2.5em;
  }
  /* Testimonial section */
  .testimonial-content {
    gap: 1.5rem;
  }
  .testimonial-image {
    max-width: 280px;
  }
  /* CTA section */
  .cta-section {
    padding: 3em 2em;
  }
  /* Spacing adjustments */
  .section, header, footer {
    padding: 1.8rem;
  }
  .pe-10 {
    padding-right: 5em;
  }
  /* Footer adjustments */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Brand description and social */
.brand p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.social-icons a {
  margin-right: 12px;
  color: #4b32c3;
  font-size: 16px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #872cd6;
}

/* Newsletter */
.newsletter form {
  display: flex;
  margin-bottom: 10px;
}

.newsletter input[type=email] {
  padding: 10px;
  flex: 1;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter button {
  background-color: #872cd6;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #6c20a6;
}

.note {
  font-size: 12px;
  color: #999;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
}

.footer-bottom hr {
  margin-bottom: 12px;
  border: none;
  border-top: 1px solid #eee;
}

.hero-2 {
  padding: 4em 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 30em;
}

.hero-2 .hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 90vh;
  max-height: 54em;
  z-index: -1;
}

.hero-2 .hero-bg svg {
  width: 100%;
  height: 100%;
}

.hero-2 .hero-content {
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.hero-2 .hero-content h1 {
  font-family: "Urbanist";
  font-size: 2.4em;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.6;
}

.highlight {
  background: #e3d6ff;
  color: #872cd6;
  padding: 4px 10px;
  border-radius: 6px;
}

.hero-2 .hero-content p {
  margin: 20px auto 40px;
  max-width: 600px;
  color: #666;
  font-size: 16px;
}

.hero-2 .cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-2 .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-2 .card.amazon {
  position: absolute;
  left: 0;
  top: 140px;
}

.hero-2 .card.emag {
  position: absolute;
  left: 78px;
  top: 240px;
}

.hero-2 .card.sales {
  position: absolute;
  right: 0;
  top: 82px;
}

.hero-2 .card img {
  height: 24px;
}

.hero-2 .card-img.card-img1 {
  width: 392px;
  margin-bottom: -2em;
}

.hero-2 .card i {
  font-size: 24px;
  color: #872cd6;
  margin-bottom: 10px;
}

.hero-2 .card span {
  text-align: center;
  color: #333;
  font-size: 14px;
}

/*# sourceMappingURL=style.css.map*/