/* ==================================================
   Global Preset Styles
   Bootstrap 5 UI Boilerplate
================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans Flex", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.btn:focus,
.form-control:focus {
  box-shadow: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
textarea {
  resize: none;
  border-radius: 12px;
  border: 1px solid #d6dbe1;
  background: #fff;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  color: #0d0d0d;
}
textarea::placeholder {
  color: #aab0b9;
}
textarea:focus {
  border-color: #4318ff;
  outline: none;  
}
.form-control:hover, textarea:hover, .phone-field:hover {
    border-color: #020617 !important;
}
.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  min-height: 52px;
  padding: 10px 20px;
  background: #4C38FF;
  border-color: #4C38FF;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
}
.btn-primary:hover {
  background: #2C18E0;
}
.btn-outline-primary {
  border-color: #4C38FF;
  color: #4C38FF;
  min-height: 52px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.btn-outline-primary:hover {
  background: #EFEFEF;
  color: #4C38FF;
  border-color: #4C38FF;
}

.rounded-full {
  border-radius: 9999px;
}

h1 {
  color: #000;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
}
p {
  color: #63738c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.phone-field {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.phone-field:focus-within {
    border-color: #4318ff;
}
.phone-field .country-dropdown {
  position: relative;
}

.phone-field .country-btn {
  background: white;
  border: none;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 50px 0 0 50px;
}
.phone-field .country-btn .country-codeb {
  color: #000000;
}

.phone-field .country-btn:hover {
  background: #f9fafb;
}

.phone-field .country-btn img {
  border-radius: 50%;
  width: 20px;
  object-fit: cover;
  height: 20px;
}

.phone-field .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  z-index: 1000;
  max-height: 400px;
  overflow: hidden;
  flex-direction: column;
}

.phone-field .dropdown-list.show {
  display: flex;
}

.phone-field .country-search {
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  outline: none;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.phone-field .country-search:focus {
  border-bottom-color: #4C38FF;
}

.phone-field .country-options-container {
  overflow-y: auto;
  max-height: 340px;
}

.phone-field .dropdown-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s;
}

.phone-field .dropdown-list a img {
  flex-shrink: 0;
  border-radius: 2px;
}

.phone-field .dropdown-list a:hover {
  background-color: #f3f4f6;
}

.phone-field .dropdown-list a:active {
  background-color: #5546ff;
  color: white;
}

.phone-field .no-results {
  padding: 1rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .phone-field .dropdown-list {
    min-width: 260px;
    max-height: 350px;
    left: 0;
    right: auto;
  }
  
  .phone-field .country-options-container {
    max-height: 290px;
  }
}

.phone-field .phone-input {
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  flex: 1;
  font-size: 0.875rem;
  background: transparent;
  border-radius: 0 50px 50px 0;
  width: 100%;
}

.phone-field .phone-input:focus {
  outline: none;
}

.phone-field .phone-field:focus-within {
  border-color: #818cf8;
  box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.1);
}

.wrapper {
  max-width: 1440px;
  margin-inline: auto;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .container-xxl {
    max-width: 1320px;
  }
}
/*----------- Navbar Styles -----------*/
.navbar {
  min-height: 48px;
  position: fixed;
  top: 16px;
  width: 100%;
  z-index: 1000;
  transition: all 0.1s ease;
}
.nav-scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 0;
}
.navbar-nav .nav-item .nav-link {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding: 0;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
  color: #4c38ff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo img {
  width: 27.935px;
  height: 34.912px;
  aspect-ratio: 27.93/34.91;
}
.logo .logo-text {
  font-size: 22.848px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.457px;
  color: #4C38FF;
  font-family: 'Poppins', sans-serif;
}
.navbar .btn-primary {
  padding: 6.52px 16px;
  min-height: 40px;
}
/*--------Landing Page Styles ---------*/
.hero-section {
  min-height: 100vh;
  max-width: 1440px;
  margin-inline: auto;
}
.hero-video {
  max-width: 869px;
  height: 100vh;
  object-fit: unset;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.hero-wrapper {
  max-width: 625px;
  margin-top: 120px;
}
.hero-section h1 {
  color: #020617;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.12px;
  margin-bottom: 32px;
}
.hero-section h1 span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section p {
  color: #475569;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
  margin-bottom: 52px;
}
.note {
  padding: 16px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 376px;
  color: #475569;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 16px 16px 16px 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.40);
  box-shadow: 0 10px 34px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(12px);
  z-index: 1;
}
.note::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
  background: #4C38FF;
  height: calc(100% - 32px);
}

/*------------ Features Section -----------*/
.features-section {
  padding-block: 80px;
  background: url(../images/feature-bg.png) no-repeat center center;
  background-size: cover;
}
.badge-featured {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid #A5B4FB;
  color: #4C38FF;
  font-size: 11px;
  font-weight: 500;
  line-height: 110%;
  min-height: 28px;
  width: max-content;
}
.analytics-card {
  margin-bottom: 56px;
}
.analytics-card h2 {
  color: #0D0D0D;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; 
  letter-spacing: -0.8px;
  margin-bottom: 0;
}
.analytics-card span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.analytics-description {
  color: #475569;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
  margin-bottom: 0;
  padding-top: 8px;
}
.feature-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  border-radius: 24px;
  border: 1px solid #D9DBE0;
  background: #FFF;
  box-shadow: 0 4px 24px 0 rgba(33, 33, 33, 0.08);
}
.feature-card:hover {
  background: #dde5ff;
  border-color: #dde5ff;
}
.feature-card .feature-badge {
  display: flex;
  padding: 6px 12px 6px 6px;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid #D2D4DA;
  background: #FFF;
}
.feature-card .feature-badge span {
  color: #4c38ff;
  font-family: "Google Sans Flex";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  letter-spacing: -0.32px;
}
.feature-card .feature-inner-cont {
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #D5D8DD;
  background: #FFF;
}
.feature-card:hover .feature-badge  {
  border-color: #fff;
}
.feature-card:hover .feature-inner-cont {
  border: 1px solid #fff;
}
.feature-card .feature-inner-cont .feature-title {
  color: #020617;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
  letter-spacing: -0.2px;
}
.feature-card .feature-inner-cont .feature-description {
  color: #475569;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0D0D0D;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.feature-list li:not(:last-child) {
  margin-bottom: 16px;
}
.signal-list .feature-list li {
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid rgba(216, 215, 229, 0.60);
  background: #FFF;
  font-weight: 400;
  color: #475569;
}

/*-- ----------- Testimonial Section -----------*/
.testimonials-section {
  padding-block: 80px;
}
.testimonials-section h2 {
  color: #0D0D0D;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 729px;
  margin-inline: auto;
}
.testimonials-section h2 span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-section p.testimonials-desc {
  max-width: 830px;
  margin-inline: auto;
  color: #475569;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
  margin-bottom: 44px;
}
.testimonials-section .left-card {
  border-radius: 20px;
  background: #F6F7FF;
  padding: 40px 32px;
  height: 100%;
  min-height: 482px;
  background: url(../images/testimonial-card-bg.png) no-repeat center center;
  background-size: cover;
  height: 100%;
}
.tab-numbers span {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #63738C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.tab-numbers span:not(:last-child) {
  margin-right: 17.65px;
}
.tab-numbers span.active {
  position: relative;
  padding-left: 16px;
}
.tab-numbers span.active::before {
  content: "";
  position: absolute;
  width: 14.71px;
  height: 0.735px;
  background: #4C38FF;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tab-numbers span.active {
  opacity: 1;
  color: #4C38FF;
}
.arrows span {
  color: #4c38ff;
  display: flex;
  width: 32.889px;
  height: 32.889px;
  padding: 8.222px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8.222px;
}
.arrows span:hover {
  color: #fff;
  background: #4c38ff;
}
.slide-content h4 {
  color: #0D0D0D;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}
.slide-content p {
  color: #63738C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.16px;
  text-align: start;
  margin-bottom: 44px;
}
.bullet-box {
  max-width: 350px;
  padding: 24px;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0 8px 44px 0 rgba(118, 123, 143, 0.10);
}
.feature-list.bullet-box li:not(:last-child) {
  margin-bottom: 20px;
}

.right-img {
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.right-img img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.right-img img.active {
  opacity: 1;
}
.slide-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.slide-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*-------Swiper Style----------*/
.slider-header .btn {
  color: #4C38FF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.16px;
}
.slide-count {
  display: flex;
  gap: 35px;
  align-items: center;
}
.slide-count span {
  color: #63738C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}
.slide-count span.active {
  color: #4C38FF;
}
.swiper-btns {
  display: flex;
  gap: 36px;
  align-items: center;
}
.swiper-btns .swiper-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
   color: #4C38FF;
}
.swiper-btns .swiper-btn.swiper-button-disabled {
   color: #AAB0B9;
}
.swiper-btns .swiper-btn i {
  font-size: 12px;
}
/* -- Form Secction Styles -- */
.form-container {
  padding-block: 60px;
  background: #F9FAFE;
}
.form-container h2 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 40px */
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.form-container h2 span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-container .description-text {
  color: #475569;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.16px;
  margin-bottom: 20px;
  max-width: 490px;
}

/*------- Insight Section ---------*/
.insights-container {
  padding-block: 60px;
}
.insights-container h2 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 40px */
  letter-spacing: -0.8px;
  max-width: 594px;
  margin-bottom: 0;
}
.insights-container h2 span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insights-container .description-text {
  color: #475569;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.16px;
  margin-bottom: 0;
}

.insights-container .aside-text {
  color: #475569;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.18px;
  margin-bottom: 24px;
}
.insights-container .btn-outline-primary  {
  min-height: 40px;
  min-width: 113px;
  padding: 6px 20px;
}
.form-main-card {
  background: #edf1fd;
  border-radius: 2rem;
  overflow-x: hidden;
}

.form-main-card .form-header {
  background-color: #0d1226;
  color: white;
  padding: 40px 60px;
}
.counterparty-profile {
  max-width: 545px;
}
.form-main-card .form-header h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-main-card .form-header p {
  color: #97a0af;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.form-main-card .form-header .feature-list li {
  color: #97a0af;
}

.form-main-card .form-body {
  padding: 48px 60px;
  background: #EDF1FD;
}
.contact-us-form {
  padding-top: 120px;
}
.contact-us-form .form-main-card .form-body {
  border-radius: 32px;
  padding: 48px 60px;
  z-index: 1;
  position: relative;
}
.contact-us-form .form-control {
  border-color: #fff;
}
.contact-us-form .form-subheading {
  color: #63738c;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  max-width: 705px;
  margin-bottom: 0;
}
.contact-us-illustration {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 500px;
  width: 100%;
  height: auto;
  z-index: 1;
}
.select-check {
  max-width: 471px;
}
.select-check-cont::after {
  content: "";
  position: absolute;
  right: -35px;
  width: 1px;
  height: 100%;
  background: #D8D7E5;
  top: 0;
} 
.form-main-card .btn-primary {
  min-height: 40px;
  width: 128px;
  gap: 8px;
  margin-inline-start: auto;
  margin-top: 16px;
}
.form-main-card .section-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.16px;
  color: #000;
  margin-bottom: 0.75rem;
  display: block;
}
.form-main-card .pill-checkbox {
  display: inline-block;
}

.form-main-card .pill-checkbox input {
  display: none;
}
.form-main-card .pill-checkbox label {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid #D8D7E5;
  color: #475569;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.14px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.form-main-card .pill-checkbox label:hover {
  background: #F5F5F5;
}

.pill-checkbox input:checked + label {
  background: #4c38ff !important;
  color: white;
  border-color: #4c38ff !important;
}

.helper-text {
  font-size: 14px;
  color: #63738C;
  margin-top: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d8d7e5;
}

.form-label-small {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.form-control {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  padding: 0.675rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: white;
  font-size: 0.875rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.form-control::placeholder {
  color: #AAB0B9;
}

.form-control:focus {
  border-color: #818cf8;
  box-shadow: none;
}

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  border-radius: 50px;
  background: #5546ff;
  color: white;
  font-weight: 600;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 10px 25px rgba(85, 70, 255, 0.2);
}

.submit-btn:hover {
  background: #4435ee;
}

.footer-text {
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .main-heading {
    font-size: 2rem;
  }
  .hero-video {
    opacity: 0.2;
    height: 100%;
     object-fit: cover;
  }
}

/*--------Insights Section Styles ---------*/
.insight-card {
  padding: 12px;
  border-radius: 20px;
  border-radius: 24px;
  border: 1px solid rgba(216, 215, 229, 0.70);
}
.insight-card-content {
  padding: 16px 12px 12px 12px;
}
.insight-card img {
  border-radius: 16px;
  height: 221px;
  width: 100%;
}
.insight-card .blog-category {
  display: flex;
  align-items: center;
}
.insight-card .blog-category span {
  color: #4c38ff;
  font-size: 14px;
  font-weight: 500;
  margin-left: 6px;
}
.insight-card .date {
  color: #6f7379;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.insight-card:hover h4 {
  text-decoration: underline
}
.insight-card h4 {
  color: #0d0d0d;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 66px;
  overflow: hidden;
}
.badge-group span {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 65px;
  background: #EDF1FD;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%; 
}
.insight-card:hover .badge-group span {
  background: #EDF1FD;
  color: #4C38FF;
  font-weight: 500;
}
.signal-list h3 {
  color: #0d0d0d;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 24px */
  letter-spacing: -0.48px;
}
.signal-list h3 span {
  background: linear-gradient(84deg, #1135FF 21.19%, #A20DFF 63.93%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*-------------Auth Screen -----------*/
.auth-container {
  padding-block: 20px;
}
.auth-container .left-section,
.auth-container .right-section {
  min-height: calc(100vh - 40px);
}
.left-section {
  border-radius: 12px;
  background-color: #f7eeff;
  background: url(../images/gradient.png) no-repeat center center;
  background-size: cover;
  padding-block: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}
.left-section .logo {
  padding-left: 54px;
}
.left-section .heading {
  color: #0d0d0d;
  font-size: 44.776px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.448px;
  margin-bottom: 20px;
  margin-top: 110px;
}
.left-section .heading span {
  font-size: 48px;
  font-weight: bolder;
}
.gradient-text {
  background: linear-gradient(84deg, #1135ff 56.08%, #a20dff 87.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Cormorant", serif;
  font-style: italic;
  padding-right: 8px;
}
.left-section .subheading {
  color: #63738c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  padding-inline: 54px;
}

.right-section {
  max-width: 415px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 12px;
  padding-top: 136px;
}

.right-header {
  text-align: center;
  margin-bottom: 44px;
}

.right-header h2 {
  color: #0d0d0d;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.32px;
}
.right-header p {
  color: #63738c;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
  margin-bottom: 0;
}
.form-label {
  color: #63738c;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}
.form-control {
  padding: 10px 16px;
  padding-left: 40px;
  border-radius: 92px;
  border: 1px solid #d6dbe1;
  font-size: 14px;
  transition: all 0.3s;
  min-height: 50px;
}
.form-control:focus {
  border-color: #4318ff;
}
input {
  color: #0d0d0d;
}
input::placeholder {
  color: #AAB0B9;
}
.input-field {
  position: relative;
}
.input-field svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #aab0b9;
  font-size: 16px;
}

.signup-link {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #0d0d0d;
}

.signup-link a {
  color: #4c38ff;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

.privacy-text {
  text-align: center;
  margin-top: 120px;
  font-size: 12px;
  color: #727272;
}

.privacy-text a {
  color: #a8a8a8;
  font-weight: 500;
  text-decoration: none;
}

/*---- success-modal ----*/
.success-modal .modal-dialog {
  max-width: 400px;
}
.success-modal .modal-content {
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 44px 0 rgba(118, 123, 143, 0.1);
  text-align: center;
}
.success-modal .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.success-modal .modal-content .modal-body h5 {
  color: #0D0D0D;
  font-size: 24px;
  font-weight: 600;
}
.success-modal .modal-content .modal-body p {
  color: #63738C;
  font-size: 14px;
  line-height: 150%;
}


@media (max-width: 768px) {
  .left-section {
    min-height: 300px;
    padding: 40px 30px;
  }
  .left-section .logo {
    padding-left: 0px;
    justify-content: center;
  }

  .heading {
    font-size: 32px;
  }

  .right-section {
    padding: 40px 30px;
  }
}

/* ------------ Privacy Policy------------ */
.banner-section {
  margin-top: 100px;
  border-radius: 12px;
  min-height: 360px;
  background-color: #f7eeff;
  background: url(../images/banner-gradient.png) no-repeat center center;
  background-size: cover;
}
.content-section {
  padding-block: 60px;
}

.content-wrapper {
  display: flex;
  gap: 48px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

/* Sidebar */
.sidebar {
  flex: 0 0 272px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar-title {
  color: #434343;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu > li {
  margin-bottom: 12px;
}
.sidebar-menu > li > a {
  display: block;
  text-decoration: none;
  color: #343a40;
  font-size: 18px;
  line-height: 150%;
}
.sidebar-menu > li > a.active {
  font-weight: 700;
}

/* Main Content */
.main-content {
  flex: 1;
}
.main-content .last-updated {
  color: #4a4e55;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  text-decoration: underline;
}
.main-content .intro-text {
  color: #434343;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 48px;
}

.subsection {
  margin-bottom: 24px;
}
.subsection h2 {
  color: #434343;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.subsection h3 {
  color: #091b37;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.subsection p {
  color: #63738c;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 0;
}

footer {
  background: #0d1226;
  padding-top: 80px;
}
footer .widget.social ul {
  max-width: 121px;
}
footer .widget h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
footer .widget ul li {
  margin-bottom: 8px;
}
footer .widget ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.copyright-section {
  border-top: 1px solid rgba(79, 79, 79, 0.50);
  height: 56px;
  padding: 19px 0;
  color: #FFF;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 80px;
}
/* .widget ul li a.active, */
.widget ul li a:hover {
  color: #4c38ff;
}
/* .widget ul li a.active svg path, */
.widget ul li a:hover svg path {
  fill: #4c38ff;
}
.footer-logo {
  color: rgba(68, 76, 104, 0.7);
  font-size: 100%;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}


@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1384px;
  }
}
@media (max-width: 991px) {
  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .sidebar {
    position: static;
    flex: 0 0 auto;
    width: 100%;
  }

  .auth-container .left-section,
  .auth-container .right-section {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 36px;
  }
  p {
    font-size: 14px;
    line-height: 100%;
  }
  .navbar {
    border-bottom: 1px solid #E2E8F0;
    background: #FFF;
    min-height: 65px;
    position: relative;
    top: 0;
  }
  .navbar-collapse {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    position: absolute;
    width: calc(100% - 24px);
    left: 50%;
    /* right: 50%; */
    transform: translateX(-50%);
    top: 50px;
    z-index: 10;
  }
  .navbar-toggler  {
    width: 36px;
    height: 36px;
    border-radius: 89.1px;
    border: 0.9px solid rgba(0, 0, 0, 0.15);
    padding: 0;
  }
  .navbar-toggler-icon {
    width: 21.6px;
    height: 21.6px;
  }
  .hero-section {
    min-height: auto;
    height: auto;
   }
   .banner-section {
    margin-top: 24px;
   }
  .note {
    padding: 20px 16px 20px 50px;
    margin-top: 36px;
    margin-bottom: 41px;
    position: relative;
    top: unset;
    bottom: unset;
    align-self: flex-end;
  }
  .form-main-card .form-body,
  .form-main-card .form-header {
    padding: 32px 24px;
  }
  .contact-us-form .form-main-card .form-body {
    border-radius: 20px;
    padding: 32px 24px;
  }
  .footer {
    padding-block: 32px;
  }
  .left-section .heading {
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  .left-section .heading span {
    font-size: 32px;
    font-weight: bolder;
  }
  .left-section .subheading {
    font-size: 14px;
    line-height: 1.4;
  }
  .right-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 28px;
  }
  p {
    font-size: 13px;
    line-height: 1.4;
  }
  .container-xxl {
    --bs-gutter-x: 3rem;
  }
  .note {
    font-size: 12px;
    line-height: 140%;
    margin-inline: auto;
    max-width: 342px;
    left: 0;
  }
  .hero-wrapper {
    margin-top: 60px;
  }
  .hero-section h1 {
    position: relative;
    padding-top: 24px;
    font-size: 32px;
    font-weight: 600;
    line-height: 110%; /* 35.2px */
    letter-spacing: -0.64px;
    margin-bottom: 16px;
  }
  .hero-section h1::before {
    content: '';
    width: 44px;
    height: 4px;
    background: #4C38FF;
    position: absolute;
    top: -4px;
  }
  .hero-section p {
    font-size: 14px;
    letter-spacing: -0.14px;
    margin-bottom: 36px;
  }
  .btn-sm-full {
    width: 100% !important;
  }
  .analytics-card h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.48px;
    margin-bottom: 12px;
  }
  .analytics-description {
    font-size: 15px;
  }
  .analytics-card {
    margin-bottom: 24px;
  }
  .features-section {
    padding-bottom: 0px;
    background: linear-gradient(180deg, #EBEAFF 0%, #FFF 100%);
    background-size: 100% 25%;
    background-repeat: no-repeat;
    background-position: top;
  }
  .feature-card {
    border-radius: 20px;
    padding: 12px;
    gap: 12px;
    box-shadow: none;
  }
  .feature-card .feature-badge {
    padding: 8px;
    border: 1px solid transparent;
  }
  .feature-card .feature-badge span {
    font-size: 14px;
  }
  .feature-card .feature-inner-cont {
    padding: 24px 20px;
    border: 1px solid #D9DBE0;
    border-radius: 12px;
  }
  .feature-card .feature-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.24px;
    margin-bottom: 0;
  }
  .feature-card .feature-inner-cont .feature-description {
    font-size: 14px;
    line-height: 19.5px; /* 139.286% */
    letter-spacing: -0.16px;
    color: #6F7379;
  }
  .feature-list li {
    font-size: 13px;
    line-height: 16px;
  }
  .testimonials-section {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .testimonials-section h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.48px;
    margin-bottom: 12px;
  }
  .testimonials-section p.testimonials-desc {
   font-size: 15px;
  }
  .testimonials-section .left-card {
    padding: 24px 16px;
  }
  .tab-numbers span {
    font-size: 20px;
    margin-right: 10px;
  }
  .slide-content h4 {
    font-size: 28px;
  }
  .swiper-backface-hidden .swiper-slide {
    height: inherit;
  }
  .couterparites-swiper-card {
    padding: 16px;
    border-radius: 12px;
    background: url(../images/feature-mb-img.svg) no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .couterparites-swiper-card > img {
    width: 100%;
    height: 141px;
    border-radius: 8px;
  }
  .couterparites-swiper-card .swiper-content {
    padding: 16px 8px;
  }
  .couterparites-swiper-card .swiper-content h4 {
    color: #0D0D0D;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }
  .couterparites-swiper-card .swiper-content p {
    color: #475569;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.2px;
  }
  .couterparites-swiper-card .feature-list {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 8px 44px 0 rgba(118, 123, 143, 0.10);
    padding: 24px;
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.6px; /* 120% */
  }
  .form-container {
    background: #FFF;
  }
  .form-container .form-label {
    color: #63738C;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.15px;
  }
  .form-container h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.48px;
    margin-bottom: 12px;
  }
  .form-container .description-text {
    font-size: 15px;
    margin-bottom: 0;
  }
  .form-main-card {
    border-radius: 1rem;
  }
  .form-main-card .form-header {
    padding: 1.5rem;
  }
  .form-container-label {
    color: #64768B;
    margin-bottom: 8px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.15px;
  }
  .form-main-card .form-header h2 {
    font-size: 24px;
  }
  .form-main-card .form-header p {
    font-size: 14px;
    margin-left: 10px;
  }
  .form-main-card .form-body {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .form-main-card .btn-primary {
    margin-top: 0;
  }
  .left-section {
    padding: 20px;
  }
  .left-section .heading {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .left-section .subheading {
    font-size: 13px;
  }
  .right-header h2 {
    font-size: 24px;
  }
  .form-main-card .section-label {
    font-weight: 500;
    line-height: 25.6px;
  }
  .form-main-card .pill-checkbox label {
    line-height: 22.4px;
    color: #000;
  }
  
  .insights-container {
    padding-top: 0;
  }
  .insights-container h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.48px;
    margin-bottom: 12px;
  }
  .insights-container .description-text {
    font-size: 15px;
  }
  .insights-container .aside-text {
    position: relative;
    color: #475569;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding: 20px 16px 20px 50px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 10px 34px 0 rgba(0, 0, 0, 0.10);
    margin-bottom: 36px;
  }
  .insights-container .aside-text::before {
    content: "";
    position: absolute;
    width: 2px;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
    background: #4C38FF;
    height: calc(100% - 32px);
  }
  .badge-group span {
    background: #F1F5F9;
  }
  .insight-card h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.3px;
  }
  .insight-card .date {
    font-size: 12px;
  }
  .banner-section {
    min-height: 240px;
  }
  .sidebar-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .sidebar-menu > li > a {
    font-size: 16px;
  }
  .subsection h2 {
    font-size: 18px;
  }
  .main-content .intro-text {
    font-size: 16px;
    margin-bottom: 32px;
  }
  footer {
    padding-top: 48px;
    padding-bottom: 0;
  }
  .copyright-section {
    margin-top: 36px;
  }
  footer .widget h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 16px;
  }
  footer .widget ul li a {
    font-size: 14px;
  }
  .footer .widget ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  .right-img {
    min-height: 350px;
  }
}
