/* ✅ Apply global font */
body {
  font-family: var(--font-family-primary);
  margin: 0;
  padding: 0;
}

blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

/* 🎨 Global Variables */
:root {
  /* Font */
  --font-family-primary: 'Inter', sans-serif;

  /* 🎨 Colors */
  --color-heading: #32254C;
  --color-text: #302F32;
  --color-body: #484452;
  --color-light-bg: #F8F7F8;
  --color-white: #ffffff;

  --color-cta-bg: #340C97;
  --color-stroke: #DEDDE1;
  --color-stroke-bottom: #F4F1FA;
  --color-icon: #733BFD;
  --color-footer-bg: #211A31;

  --color-light-blue: #E6F0FF;
  --color-light-green: #D8FCDA;
  --color-light-yellow: #F9EECF;
  --color-light-red: #FADDDB;
  --color-medium-grey: #C0BEC6;
  --color-green: #33BF3B;
  --color-light-purple: #F1EBFF;
  --color-logo-yellow: #FFBF01;


  /* ✅ Font Sizes and Line Heights (Responsive using clamp) */
  --font-size-h1: clamp(36px, 5vw, 36px);
  --line-height-h1: 124%;
  --letter-spacing-h1: -0.02em;

  --font-size-h2: clamp(32px, 4vw, 36px);
  --line-height-h2: 124%;
  --letter-spacing-h2: 0em;

  --font-size-h3: clamp(29px, 3.5vw, 32px);
  --line-height-h3: 124%;
  --letter-spacing-h3: 0em;

  --font-size-h4: clamp(26px, 3vw, 29px);
  --line-height-h4: 132%;
  --letter-spacing-h4: 0em;

  --font-size-h5: clamp(23px, 2.5vw, 26px);
  --line-height-h5: 140%;
  --letter-spacing-h5: 0em;

  --font-size-h6: clamp(20px, 2vw, 23px);
  --line-height-h6: 140%;
  --letter-spacing-h6: 0em;

  /* 🟠 Body Text Styles */
  --font-size-big-body: clamp(18px, 2vw, 16px);
  --line-height-big-body: 148%;

  --font-size-body: clamp(16px, 1.8vw, 16px);
  --line-height-body: 148%;

  --font-size-small-body: clamp(14px, 1.5vw, 16px);
  --line-height-small-body: 148%;

  /* 🟡 Others */
  --font-size-button: clamp(12px, 1.5vw, 12px);
  --line-height-button: 100%;

  --font-size-label: clamp(14px, 1.5vw, 16px);
  --line-height-label: 100%;

  --font-size-overline: clamp(13px, 1.2vw, 14px);
  --line-height-overline: 100%;

}

/* 🟢 Heading Styles */
h1,
.h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  letter-spacing: var(--letter-spacing-h1);
  font-family: var(--font-family-primary);
  font-weight: 400;
}

h2,
.h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letter-spacing-h2);
  font-family: var(--font-family-primary);
  font-weight: 700;
}

h3,
.h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
  font-family: var(--font-family-primary);
  font-weight: 700;
}

h4,
.h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  letter-spacing: var(--letter-spacing-h4);
  font-family: var(--font-family-primary);
  font-weight: 700;
}

h5,
.h5 {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  letter-spacing: var(--letter-spacing-h5);
  font-family: var(--font-family-primary);
  font-weight: 600;
}

h6,
.h6 {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  letter-spacing: var(--letter-spacing-h6);
  font-family: var(--font-family-primary);
  font-weight: 600;
}

/* 🟠 Body and Utility Text Styles */
.big-body {
  font-size: var(--font-size-big-body);
  line-height: var(--line-height-big-body);
  font-family: var(--font-family-primary);
  font-weight: 600;
}

.body,
p {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-primary);
  font-weight: 400;
}

.small-body {
  font-size: var(--font-size-small-body);
  line-height: var(--line-height-small-body);
  font-family: var(--font-family-primary);
  font-weight: 400;
}

.button-text {
  font-size: var(--font-size-button);
  line-height: var(--line-height-button);
  font-family: var(--font-family-primary);
  text-transform: uppercase;
  font-weight: 700;
}

.label {
  font-size: var(--font-size-label);
  line-height: var(--line-height-label);
  font-family: var(--font-family-primary);
  font-weight: 400;
}

.overline {
  font-size: var(--font-size-overline);
  line-height: var(--line-height-overline);
  font-family: var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}


/* Full width container */
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Css */

header {
  border-bottom: 1px solid #F4F1FA;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 6px 3px 8px 3px #0000000f;
}

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

.container.header-main {
  max-width: 100%;
  padding-left: 13%;
  padding-right: 13%;
  box-shadow: 0px 8px 7px -1px rgba(249, 249, 249, 0.47);
  -webkit-box-shadow: 0px 8px 7px -1px rgba(249, 249, 249, 0.47);
  -moz-box-shadow: 0px 8px 7px -1px rgba(249, 249, 249, 0.47);
}

section.announcement_section {
  background: var(--Footer-BG, #211A31);
  color: white;
}

.announcement.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

ul.header_items {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.fw-bolder {
  font-weight: 700;
}

.header_button_div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link:hover {
  color: var(--color-cta-bg);
}

button.header_login_btn {
  border-radius: 16px;
  border: 1px solid var(--color-cta-bg);
  background: var(--White, #FFF);
  padding: 14px 20px;
  color: var(--color-cta-bg);
}

button.header_demo_btn {
  border-radius: 16px;
  background: var(--color-cta-bg);
  padding: 14px 20px;
  color: var(--color-white);
  border: 1px solid var(--CTA-BG);
  color: var(--color-white);
}

.book_demo_popop {
  border-radius: 24px;
  background: var(--White, #FFF);
  padding: 60px;
  min-width: 650px;
  margin-left: -32px;
}

img.btn-close {
  position: absolute;
  top: 54px;
  right: 60px;
  cursor: pointer;
  opacity: 1 !important;
  background: none !important;
  width: 32px;
  height: 32px;
}

p.popup-description {
  color: var(--Body, #484452);
  padding: 16px 0 0px 0;
  font-style: normal;
}


div#mobile_menu_popup {
  background: var(--White, #FFF);
  width: 100%;
}

.popup-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-stroke-bottom);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-body {
  padding: 32px 20px;
}

.accordion-item {
  border: none;
}

button.accordion-button.collapsed {
  padding: 0;
}

button.accordion-button {
  padding: 0;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.accordion-body {
  padding: 16px 0;
  border: none !important;
}

.mobile_menu_items_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}


button.mobile_login_btn.button-text {
  border-radius: 16px;
  border: 1px solid var(--CTA-BG, #340C97);
  background: var(--White, #FFF);
  padding: 14px 20px;
  color: var(--color-cta-bg);
  width: 100%;
}

button.mobile_demo_btn.button-text {
  border-radius: 16px;
  background: var(--CTA-BG, #340C97);
  padding: 14px 20px;
  color: var(--color-white);
  border: 1px solid var(--CTA-BG);
  color: var(--color-white);
  width: 100%;
}

button.mobile_login_btn.button-text {
  margin: 32px 0 16px 0;
}





div#offcanvasTop {
  margin-top: 72px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff00;
  border: none;
  height: fit-content;
}

.offcanvas-backdrop.fade.show {
  opacity: 0 !important;
}


/* Offcanvas Mega Menu */
.offcanvas-body.mega_menu {
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 16px rgba(67, 54, 98, 0.08);
  background: var(--color-white);
  padding: 40px;
}

/* Offcanvas inner container */
.mega_menu_container {
  display: flex;
  gap: 16px;
  margin: auto;
}

/* Each column inside */
.offcanvas-top .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Links inside each column */
.offcanvas-top .column a {
  text-decoration: none;
  color: var(--color-body);
  font-size: var(--font-size-small-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.offcanvas-top .column a:hover {
  color: var(--color-cta-bg);
}




footer {
  background: var(--Footer-BG, #211A31);
  padding: 60px 0px 20px 0px;
}

.inner_container.footer.first_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first_row_col {
  display: flex;
  align-items: center;
  gap: 12px;
}

a.footer_social_icon img {
  width: 40px;
  height: 40px;
}

p.button {
  color: var(--color-white);
}

.inner_container.footer.second_row {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 60px;
  padding: 64px 0 48px 0;
}

.second_row_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.second_row_col.col_2,
.second_row_col.col_3 {
  padding-top: 40px;
}

a.small-body.footer_link_item {
  text-decoration: none;
  color: white;
  font-weight: 200;
}

.inner_container.footer.third_row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid #2e273d;
  border-bottom: 1px solid #2e273d;
}

.third_row_col.col_2 {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}

p.small-body.footer_address {
  color: white;
  width: 64%;
}

.inner_container.footer.fourth_row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  padding: 20px 0 0 0;
}

.fourth_row_col.col_2 {
  display: flex;
  align-items: center;
  gap: 24px;
}

p.small-body.footer_copyright {
  color: white;
}

/* 🌱 Extra Small (XS) — Mobile Portrait */
@media (max-width: 575.98px) {

  .header {
    padding: 16px 0;
  }

  .post-hightlight-card {
    flex-direction: column;
  }

  p.announcement_text.label {
    width: 65%;
  }

  .hs-field-desc {
    color: #fff !important;
  }

  ul.header_items {
    display: none;
  }

  button.header_login_btn,
  button.header_demo_btn {
    display: none;
  }

  img.header_hamburger {
    display: block !important;
  }

  .book_demo_popop {
    border-radius: 24px;
    background: var(--White, #FFF);
    padding: 24px;
    min-width: 100%;
    margin-left: 0px;
  }

  img.btn-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
  }

  h3.popup-title {
    width: 80%;
  }

  .inner_container.footer.second_row {
    grid-template-columns: 1fr;
    grid-gap: 16px;
    padding: 32px 0 40px 0;
  }

  .inner_container.footer.first_row {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    flex-direction: column !important;
    gap: 24px;
  }

  .second_row_col.col_2,
  .second_row_col.col_3 {
    padding-top: 0px;
  }

  .second_row_col.col_4 {
    padding-top: 12px;
  }

  .inner_container.footer.third_row,
  .inner_container.footer.fourth_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }


  .inner_container.footer.third_row {
    padding: 24px 0;
  }

  .inner_container.footer.fourth_row {
    padding: 24px 0 0 0;
    align-items: center;
  }

  .third_row_col.col_2 {
    width: 100%;
    justify-content: flex-start;
  }

  p.small-body.footer_address {
    width: 100%;
  }
}


/* 🟠 Medium (MD) — Tablet */
@media only screen and (min-width: 768px) {
  img.header_hamburger {
    display: none;
  }

  h3.popup-title {
    width: 100%;
  }

  footer {
    padding: 48px 0px 24px 0px;
  }


  .mega_menu_container {
    gap: 0px;
  }

  .offcanvas-body.mega_menu {
    padding: 20px 24px;
  }

  .inner_container.footer.second_row {
    grid-gap: 16px;
    padding: 48px 0 48px 0;
  }

}

/* 🟡 Large (LG) — Small Laptop / Desktop */
@media (min-width: 992px) and (max-width: 1199.98px) {
  img.header_hamburger {
    display: none;
  }

  h3.popup-title {
    width: 100%;
  }

  .offcanvas-body.mega_menu {
    padding: 20px 24px;
  }
}

/* 🟣 Extra Large (XL) — Large Desktop */
@media (min-width: 1200px) and (max-width: 1439.98px) {
  img.header_hamburger {
    display: none;
  }

  h3.popup-title {
    width: 100%;
  }

  .offcanvas-body.mega_menu {
    padding: 40px;
  }
}

/* 🟤 XXL — Ultra-Wide Screens (1440px and above) */
@media (min-width: 1440px) {
  img.header_hamburger {
    display: none;
  }

  h3.popup-title {
    width: 100%;
  }

  .offcanvas-body.mega_menu {
    padding: 40px;
  }
}



input.hs-button.primary.large {
  width: 100% !important;
  border-radius: 16px !important;
  background: var(--CTA-BG, #340C97) !important;
  color: var(--White, #FFF) !important;
  text-align: center !important;
  font-family: Inter !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 100% !important;
}

button#openPopupBtn:hover {
  background: var(--Icon-Color, #733BFD);
  color: white;
}

a.related_post_btn:hover {
  background: var(--Icon-Color, #733BFD);
  color: white;
}

.secdtion-blog-demo {
  padding: 24px;
  background: #0FD461;
  background: linear-gradient(90deg, rgb(15 212 97 / 19%) 1%, rgb(115 59 253 / 30%) 99%);
  border-radius: 16px;
  min-height: 200px;
}

.secdtion-blog-demo.h1,
.h4,
.h6 {
  font-weight: 500;
}

.secdtion-blog-demo img {
  margin: 0px !important;
}

.flow-arrows.arrow-left {
  padding-top: 30px;
}

.custom-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
    outline: none;
  box-shadow: none;
  border: none;
}

.custom-select-wrapper svg,
.custom-select-wrapper .dropdown-arrow {
  pointer-events: none; /* So the real <select> below gets the click */
}

.real-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  padding-left: 42px;
    outline: none;
  box-shadow: none;
  border: none;
}
.real-select:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

