*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-raised: #fff3ea;
  --bg-card: #fff8f3;
  --bg-card-hover: #fff2e9;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --border-accent: rgb(255 106 0 / 25%);
  --accent: #ff6a00;
  --accent-hover: #b7410e;
  --accent-border: rgb(255 106 0 / 20%);
  --accent-light: rgb(255 106 0 / 22%);
  --accent-soft: rgb(255 106 0 / 7%);
  --accent-glow: rgb(255 106 0 / 4%);
  --accent-color-30: rgb(255 106 0 / 30%);
  --accent-color-25: rgb(255 106 0 / 25%);
  --accent-color-20: rgb(255 106 0 / 20%);
  --accent-color-19: rgb(255 106 0 / 19%);
  --accent-color-18: rgb(255 106 0 / 18%);
  --accent-color-17: rgb(255 106 0 / 17%);
  --accent-color-16: rgb(255 106 0 / 16%);
  --accent-color-15: rgb(255 106 0 / 15%);
  --accent-color-12: rgb(255 106 0 / 12%);
  --accent-color-10: rgb(255 106 0 / 10%);
  --accent-color-9: rgb(255 106 0 / 9%);
  --accent-color-8: rgb(255 106 0 / 8%);
  --accent-color-7: rgb(255 106 0 / 7%);
  --accent-color-6: rgb(255 106 0 / 6%);
  --accent-color-5: rgb(255 106 0 / 5%);
  --accent-color-4: rgb(255 106 0 / 4%);
  --accent-color-3: rgb(255 106 0 / 3%);
  --accent-color-2: rgb(255 106 0 / 2%);

  --blue: #0f64dc;
  --blue-soft: rgba(15,100,220,0.07);
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-muted: #8a96a8;
  --text_gray: #c2c3c3;
  --green: #0d6e4c;
  --green-soft: rgba(13,110,76,0.07);
  --green-border: rgba(13,110,76,0.18);

   --amber: #b7410e;
   --amber_color_20: rgb(183 65 14 / 20%);
   --amber_color_15: rgb(183 65 14 / 15%);
   --amber_color_10: rgb(183 65 14 / 10%);
   --amber_color_5: rgb(183 65 14 / 5%);
  --amber-soft: rgb(183 65 14 / 7%);
  --amber-border: rgb(183 65 14 / 18%);

  --red-soft: rgba(197,48,48,0.07);
  --red-border: rgba(197,48,48,0.18);
  --red: #c53030;

  --plan-starter: #f4f6f9;
  --plan-growth:  #0f64dc;
  --plan-scale:   #0d1117;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1240px;
  --nav-h: 68px;
  --purple: #6d28d9;
  --purple-soft: rgba(109,40,217,0.07);
  --purple-border: rgba(109,40,217,0.18);
  --red_color: #ff6058;
  --orange_color: #ffbb2c;
  --orange_color_20: rgb(255 187 44 / 20%);
  --orange_color_10: rgb(255 187 44 / 10%);
  --orange_color_15: rgb(255 187 44 / 15%);
  --orange_color_5: rgb(255 187 44 / 5%);
  --green_color: #28c840;
  --green_color_10: rgb(40 200 64 / 10%);
  --green_color_15: rgb(40 200 64 / 15%);
  --green_color_20: rgb(40 200 64 / 20%);
  --green_color_12: rgba(40, 200, 64, 12%);
  --section-gap: 120px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  
}
html { scroll-behavior: smooth; }
html.front_html_tag {
    margin: 0 !important;
}
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: break-word;
  word-wrap: break-word;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none; z-index: 0;
}
p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.78;
    margin-bottom: 18px;
}
a, a:hover {
    text-decoration: none !important;
}
.body_text {
    color: var(--text-secondary);
}
.h1-hero {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}
.h3-card {
    font-size: 24px;
    line-height: 1.3;
}
/*===== common Accordion Css ====*/
.accordion_item {
  margin-bottom: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.accordion_header {
  margin: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.accordion_header .accordion_button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    font-size: 18px;
    color: var(--text-primary);
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
}
.accordion_header .accordion_arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    width: 16px;
    height: 16px;
    justify-content: center;
    align-items: center;
}
.accordion_header .accordion_arrow img {
  width: 16px;
  transition: transform .2s ease-in-out;
  -webkit-transition: transform .2s ease-in-out;
  -moz-transition: transform .2s ease-in-out;
}
.accordion_header.active .accordion_arrow img {
    transform: rotate(180deg);
}
.accordion_item .accordion_body {
  padding: 16px;
}
.accordion_collapse {
  display: none;
}
/*===== common Accordion Css ====*/

/*====== faq css =======*/
.common_faq_section {
    position: relative;
    background: #fff;
}
.faq_left_heading_dv {
    text-align: center;
}
.faq_accordion_item {
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all ease-in .25s;
    -webkit-transition: all ease-in .25s;
    -moz-transition: all ease-in .25s;
}
.faq_accordion_heading {
    cursor: pointer;
    align-items: flex-start;
    color: var(--text_accent);
    padding: 1.25rem 1.5rem;
    transition: all ease-in .25s;
    -webkit-transition: all ease-in .25s;
    -moz-transition: all ease-in .25s;
}
.faq_accordion_heading .texts {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    padding-right: 5px;
}
.faq_accordion_heading .arrow_icon {
    flex: 0 0 auto;
    width: 20px;
    cursor: pointer;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    position: relative;
}
.faq_accordion_heading .arrow_icon i {
    width: 8px;
    height: 8px;
    position: absolute;
    transition: all ease-in .25s;
    -webkit-transition: all ease-in .25s;
    -moz-transition: all ease-in .25s;
    border-left: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all ease-in .25s;
    -webkit-transition: all ease-in .25s;
    -moz-transition: all ease-in .25s;
}
.faq_accordion_heading.active .arrow_icon i {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}
.faq_collapse_content {
    display: none;
}
.faq_collapse_content .accordion_body {
    padding: 0 1.5rem 1.25rem;
}
.faq_collapse_content .accordion_body p a {
    color: var(--accent);
}
.faq_accordion_item:hover {
    background-color: var(--accent-color-10);
}
.faq_accordion_item:hover .faq_accordion_heading {
    background: #fbfbfb;
}
/*====== faq css =======*/
/*====== bradcrumb css =======*/
.breadcrumb_nav {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-strong);
}
.breadcrumb_nav .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
}
.breadcrumb_nav .breadcrumb-item+.breadcrumb-item {
    padding-left: 8px;
}
.breadcrumb_nav .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 8px;
    color: #6c757d;
    content: "/";
}
.breadcrumb_nav .breadcrumb a {
    position: relative;
    transition: color .25s var(--transition-smooth);
    color: var(--text-secondary);
    text-decoration: none;
}
.breadcrumb_nav .breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s var(--transition-smooth);
}
.breadcrumb_nav .breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb_nav .breadcrumb a:hover::after {
    width: 100%;
}
.breadcrumb_nav .breadcrumb-item.active {
    color: var(--text_accent);
}
/*====== bradcrumb css =======*/
/*===== Badge Css ====*/
.banner_badge_red_black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--accent);
    border-radius: 9999px;
    padding: .5rem 1rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    gap: 8px;
}
.banner_badge_red_black img, .banner_badge_red_black svg {
    width: 16px;
    height: 16px;
    display: inline-flex;
}

.badge_full_black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--text_accent);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    gap: 8px;
}
.badge_full_black img, .badge_full_black svg {
    width: 16px;
    height: 16px;
    display: inline-flex;
}
/*===== Badge Css ====*/
/*===== common bootstrap layout Css ====*/
.h-100 {
    height: 100%;
}
.d-inline-flex {
    display: inline-flex;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
    flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
    align-items: center;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.grid_row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.grid_row > .grid_colm {
   flex: 0 0 auto;
   padding-left: 10px;
   padding-right: 10px;
}
.grid_colm_1 {
  width: 100%;
}
.grid_colm_2 {
  width: 50%;
}
.grid_colm_3 {
  width: 33.33333333%;
}
.grid_colm_4 {
  width: 25%;
}
.grid_colm_5 {
  width: 20%;
}
.grid_colm_6 {
  width: 16.66666667%;
}
.section_dark {
  background: var(--text-primary);
}
.section-padding {
  padding: 80px 0;
}
.section-light {
  background: var(--bg-card);
}
.section-white {
    background-color: #ffffff;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.w-100 {
  width: 100%;
}
.container-600 {
    max-width: 600px;
    margin: 0 auto;
}
.container-700 {
    max-width: 700px;
    margin: 0 auto;
}
.container-800 {
    max-width: 800px;
    margin: 0 auto;
}
.container-900 {
    max-width: 900px;
    margin: 0 auto;
}
.container-1000 {
    max-width: 1000px;
    margin: 0 auto;
}
.container-1100 {
    max-width: 1100px;
    margin: 0 auto;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: .25rem;
}
.mb-2 {
    margin-bottom: .5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0!important;
}
.mt-1 {
    margin-top: .25rem;
}
.mt-2 {
    margin-top: .5rem;
}
.mt-3 {
    margin-top: 1rem;
}
.mt-4 {
    margin-top: 1.5rem;
}
.mt-5 {
    margin-top: 3rem;
}
.gap-0 {
    gap: 0;
}
.gap-1 {
    gap: .25rem;
}
.gap-2 {
    gap: .5rem;
}
.gap-3 {
    gap: 1rem;
}
.gap-4 {
    gap: 1.5rem;
}
.gap-5 {
    gap: 3rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.rounded-circle {
  border-radius: 50%;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-left: 0
}
.fw-medium {
    font-weight: 500
}
.fw-semibold {
    font-weight: 600
}
.fw-bold {
    font-weight: 700
}
.fw-extrabold {
    font-weight: 800
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table {
    width: 100%;
}
@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex:0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}
/*===== common bootstrap layout Css ====*/
/*===== Common Color Css ====*/

.success_text {
    color: var(--green_color)
}
.warning_text {
    color: var(--orange_color)
}
.error_text {
  color: var(--accent-hover)
}
.danger_text {
    color: var(--amber);
}
.bg-dark {
    background-color: var(--text-primary);
}
.bg_warning {
    background-color: var(--orange_color)
}
.bg_success {
    background-color: var(--green_color)
}
.bg_error {
    background-color: var(--accent-hover)
}
.bg_danger {
    background-color: var(--amber)
}

.bg-white {
    background-color: #fff;
}
.red_bg {
  background-color: var(--red_color);
}
.bg_accent {
  background-color: var(--accent);
}
.bg_accent_10 {
  background-color: var(--accent-color-10) !important;
}
.bg_accent_15 {
  background-color: var(--accent-color-15) !important;
}
.bg_accent_20 {
  background-color: var(--accent-color-20) !important;
}
.bg_accent_30 {
  background-color: var(--accent-color-30);
}
.orange_bg {
  background-color: var(--orange_color);
}
.green_bg {
  background-color: var(--green_color);
}
.green_bg_soft {
  background-color: var(--green-soft) !important;
}
.container-padding-0 {
  padding: 0;
}
.padding-0 {
  padding: 0;
}
.text_white, .text-white {
  color: #ffffff !important;
}
.text_accent {
  color: var(--accent) !important;
}
.text_amber {
  color:var(--amber) !important;
}
.text_green {
  color: var(--green) !important;
}
.text_muted, .text_color_gray {
  color: var(--text-muted);
}
.text_gray {
    color: var(--text_gray);
}
.font-mono {
  font-family: var(--font-mono);
}
.grid-column-1 {
  grid-column:1/-1;
}
/*===== Common Color Css ====*/
/*===== Common badge Css ====*/
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.success_badge {
  background-color: var(--green_color_20);
  color: var(--green);
}
.warning_badge {
  background-color: var(--orange_color_20);
  color: var(--orange_color);
}
.error_badge {
  background-color: var(--amber_color_20);
  color: var(--amber);
}
.primary_badge {
  background-color: var(--accent-color-20);
  color: var(--accent);
}
/*===== Common badge Css ====*/
/*===== Common width height Css ====*/
.width-height-5 {
    width: 5px;
    height: 5px;
}
.width-height-6 {
    width: 6px;
    height: 6px;
}
.width-height-7 {
    width: 7px;
    height: 7px;
}
.width-height-8 {
    width: 8px;
    height: 8px;
}
.width-height-9 {
    width: 9px;
    height: 9px;
}
.width-height-10 {
    width: 10px;
    height: 10px;
}
.width-height-11 {
    width: 11px;
    height: 11px;
}
.width-height-12 {
    width: 12px;
    height: 12px;
}
.width-height-13 {
    width: 13px;
    height: 13px;
}
.width-height-14 {
    width: 14px;
    height: 14px;
}
.width-height-15 {
    width: 15px;
    height: 15px;
}
.width-height-16 {
    width: 16px;
    height: 16px;
}
.width-height-17 {
    width: 17px;
    height: 17px;
}
.width-height-18 {
    width: 18px;
    height: 18px
}
.width-height-19 {
    width: 19px;
    height: 19px;
}
.width-height-20 {
    width: 20px;
    height: 20px;
}
.width-height-21 {
    width: 21px;
    height: 21px;
}
.width-height-22 {
    width: 22px;
    height: 22px;
}
.width-height-23 {
    width: 23px;
    height: 23px;
}
.width-height-24 {
    width: 24px;
    height: 24px;
}
.width-height-25 {
    width: 25px;
    height: 25px;
}
.width-height-26 {
    width: 26px;
    height: 26px;
}
.width-height-27 {
    width: 27px;
    height: 27px;
}
.width-height-28 {
    width: 28px;
    height: 28px;
}
.width-height-29 {
    width: 29px;
    height: 29px;
}
.width-height-30 {
    width: 30px;
    height: 30px;
}
.width-height-31 {
    width: 31px;
    height: 31px;
}
.width-height-32 {
    width: 32px;
    height: 32px;
}
.width-height-33 {
    width: 33px;
    height: 33px;
}
.width-height-34 {
    width: 34px;
    height: 34px;
}
.width-height-35 {
    width: 35px;
    height: 35px;
}
.width-height-36 {
    width: 36px;
    height: 36px;
}
.width-height-37 {
    width: 37px;
    height: 37px;
}
.width-height-38 {
    width: 38px;
    height: 38px;
}
.width-height-39 {
    width: 39px;
    height: 39px;
}
.width-height-40 {
    width: 40px;
    height: 40px
}
.width-height-41 {
    width: 41px;
    height: 41px;
}
.width-height-42 {
    width: 42px;
    height: 42px;
}
.width-height-43 {
    width: 43px;
    height: 43px;
}
.width-height-44 {
    width: 44px;
    height: 44px
}
.width-height-45 {
    width: 45px;
    height: 45px;
}
.width-height-46 {
    width: 46px;
    height: 46px;
}
.width-height-47 {
    width: 47px;
    height: 47px;
}
.width-height-48 {
    width: 48px;
    height: 48px;
}
.width-height-49 {
    width: 49px;
    height: 49px;
}
.width-height-50 {
    width: 50px;
    height: 50px;
}
.width-height-51 {
    width: 51px;
    height: 51px;
}
.width-height-52 {
    width: 52px;
    height: 52px;
}
.width-height-53 {
    width: 53px;
    height: 53px
}
.width-height-54 {
    width: 54px;
    height: 54px;
}
.width-height-55 {
    width: 55px;
    height: 55px;
}
.width-height-56 {
    width: 56px;
    height: 56px;
}
.width-height-57 {
    width: 57px;
    height: 57px
}
.width-height-58 {
    width: 58px;
    height: 58px;
}
.width-height-59 {
    width: 59px;
    height: 59px;
}
.width-height-60 {
    width: 60px;
    height: 60px;
}
.width-height-61 {
    width: 61px;
    height: 61px;
}
.width-height-62 {
    width: 62px;
    height: 62px;
}
.width-height-63 {
    width: 63px;
    height: 63px;
}
.width-height-64 {
    width: 64px;
    height: 64px;
}
.width-height-65 {
    width: 65px;
    height: 65px;
}
.width-height-66 {
    width: 66px;
    height: 66px;
}
.width-height-67 {
    width: 67px;
    height: 67px;
}
.width-height-68 {
    width: 68px;
    height: 68px;
}
.width-height-69 {
    width: 69px;
    height: 69px;
}
.width-height-70 {
    width: 70px;
    height: 70px;
}
/*===== Common width height Css ====*/
/*===== Common gap Css ====*/
.gap_y_5 { gap: 5px 0; }
.gap_y_6 { gap: 6px 0; }
.gap_y_7 { gap: 7px 0; }
.gap_y_8 { gap: 8px 0; }
.gap_y_9 { gap: 9px 0; }
.gap_y_10 { gap: 10px 0; }
.gap_y_11 { gap: 11px 0; }
.gap_y_12 { gap: 12px 0; }
.gap_y_13 { gap: 13px 0; }
.gap_y_14 { gap: 14px 0; }
.gap_y_15 { gap: 15px 0; }
.gap_y_16 { gap: 16px 0; }
.gap_y_17 { gap: 17px 0; }
.gap_y_18 { gap: 18px 0; }
.gap_y_19 { gap: 19px 0; }
.gap_y_20 { gap: 20px 0; }
.gap_y_21 { gap: 21px 0; }
.gap_y_22 { gap: 22px 0; }
.gap_y_23 { gap: 23px 0; }
.gap_y_24 { gap: 24px 0; }
.gap_y_25 { gap: 25px 0; }
.gap_y_26 { gap: 26px 0; }
.gap_y_27 { gap: 27px 0; }
.gap_y_28 { gap: 28px 0; }
.gap_y_29 { gap: 29px 0; }
.gap_y_30 { gap: 30px 0; }
.gap_y_31 { gap: 31px 0; }
.gap_y_32 { gap: 32px 0; }
.gap_y_33 { gap: 33px 0; }
.gap_y_34 { gap: 34px 0; }
.gap_y_35 { gap: 35px 0; }
.gap_y_36 { gap: 36px 0; }
.gap_y_37 { gap: 37px 0; }
.gap_y_38 { gap: 38px 0; }
.gap_y_39 { gap: 39px 0; }
.gap_y_40 { gap: 40px 0; }
.gap_y_41 { gap: 41px 0; }
.gap_y_42 { gap: 42px 0; }
.gap_y_43 { gap: 43px 0; }
.gap_y_44 { gap: 44px 0; }
.gap_y_45 { gap: 45px 0; }
.gap_y_46 { gap: 46px 0; }
.gap_y_47 { gap: 47px 0; }
.gap_y_48 { gap: 48px 0; }
.gap_y_49 { gap: 49px 0; }
.gap_y_50 { gap: 50px 0; }
/*===== Common gap Css ====*/
/*===== Common font size Css ====*/
.font-size-1  { font-size: 1px; }
.font-size-2  { font-size: 2px; }
.font-size-3  { font-size: 3px; }
.font-size-4  { font-size: 4px; }
.font-size-5  { font-size: 5px; }
.font-size-6  { font-size: 6px; }
.font-size-7  { font-size: 7px; }
.font-size-8  { font-size: 8px; }
.font-size-9  { font-size: 9px; }
.font-size-10 { font-size: 10px; }
.font-size-11 { font-size: 11px; }
.font-size-12 { font-size: 12px; }
.font-size-13 { font-size: 13px; }
.font-size-14 { font-size: 14px; }
.font-size-15 { font-size: 15px; }
.font-size-16 { font-size: 16px; }
.font-size-17 { font-size: 17px; }
.font-size-18 { font-size: 18px; }
.font-size-19 { font-size: 19px; }
.font-size-20 { font-size: 20px; }
.font-size-21 { font-size: 21px; }
.font-size-22 { font-size: 22px; }
.font-size-23 { font-size: 23px; }
.font-size-24 { font-size: 24px; }
.font-size-25 { font-size: 25px; }
.font-size-26 { font-size: 26px; }
.font-size-27 { font-size: 27px; }
.font-size-28 { font-size: 28px; }
.font-size-29 { font-size: 29px; }
.font-size-30 { font-size: 30px; }
.font-size-31 { font-size: 31px; }
.font-size-32 { font-size: 32px; }
.font-size-33 { font-size: 33px; }
.font-size-34 { font-size: 34px; }
.font-size-35 { font-size: 35px; }
.font-size-36 { font-size: 36px; }
.font-size-37 { font-size: 37px; }
.font-size-38 { font-size: 38px; }
.font-size-39 { font-size: 39px; }
.font-size-40 { font-size: 40px; }
/*===== Common font size Css ====*/
/*===== Common margin Css ====*/
/* Margin Top */
.mr_t_1 { margin-top: 1px; }
.mr_t_2 { margin-top: 2px; }
.mr_t_3 { margin-top: 3px; }
.mr_t_4 { margin-top: 4px; }
.mr_t_5 { margin-top: 5px; }
.mr_t_6 { margin-top: 6px; }
.mr_t_7 { margin-top: 7px; }
.mr_t_8 { margin-top: 8px; }
.mr_t_9 { margin-top: 9px; }
.mr_t_10 { margin-top: 10px; }
.mr_t_11 { margin-top: 11px; }
.mr_t_12 { margin-top: 12px; }
.mr_t_13 { margin-top: 13px; }
.mr_t_14 { margin-top: 14px; }
.mr_t_15 { margin-top: 15px; }
.mr_t_16 { margin-top: 16px; }
.mr_t_17 { margin-top: 17px; }
.mr_t_18 { margin-top: 18px; }
.mr_t_19 { margin-top: 19px; }
.mr_t_20 { margin-top: 20px; }
.mr_t_21 { margin-top: 21px; }
.mr_t_22 { margin-top: 22px; }
.mr_t_23 { margin-top: 23px; }
.mr_t_24 { margin-top: 24px; }
.mr_t_25 { margin-top: 25px; }
.mr_t_26 { margin-top: 26px; }
.mr_t_27 { margin-top: 27px; }
.mr_t_28 { margin-top: 28px; }
.mr_t_29 { margin-top: 29px; }
.mr_t_30 { margin-top: 30px; }
.mr_t_31 { margin-top: 31px; }
.mr_t_32 { margin-top: 32px; }
.mr_t_33 { margin-top: 33px; }
.mr_t_34 { margin-top: 34px; }
.mr_t_35 { margin-top: 35px; }
.mr_t_36 { margin-top: 36px; }
.mr_t_37 { margin-top: 37px; }
.mr_t_38 { margin-top: 38px; }
.mr_t_39 { margin-top: 39px; }
.mr_t_40 { margin-top: 40px; }
.mr_t_41 { margin-top: 41px; }
.mr_t_42 { margin-top: 42px; }
.mr_t_43 { margin-top: 43px; }
.mr_t_44 { margin-top: 44px; }
.mr_t_45 { margin-top: 45px; }
.mr_t_46 { margin-top: 46px; }
.mr_t_47 { margin-top: 47px; }
.mr_t_48 { margin-top: 48px; }
.mr_t_49 { margin-top: 49px; }
.mr_t_50 { margin-top: 50px; }
.mr_t_51 { margin-top: 51px; }
.mr_t_52 { margin-top: 52px; }
.mr_t_53 { margin-top: 53px; }
.mr_t_54 { margin-top: 54px; }
.mr_t_55 { margin-top: 55px; }
.mr_t_56 { margin-top: 56px; }
.mr_t_57 { margin-top: 57px; }
.mr_t_58 { margin-top: 58px; }
.mr_t_59 { margin-top: 59px; }
.mr_t_60 { margin-top: 60px; }
.mr_t_61 { margin-top: 61px; }
.mr_t_62 { margin-top: 62px; }
.mr_t_63 { margin-top: 62px; }
.mr_t_64 { margin-top: 64px; }
.mr_t_65 { margin-top: 65px; }

/* Margin Bottom */
.mr_b_1 { margin-bottom: 1px; }
.mr_b_2 { margin-bottom: 2px; }
.mr_b_3 { margin-bottom: 3px; }
.mr_b_4 { margin-bottom: 4px; }
.mr_b_5 { margin-bottom: 5px; }
.mr_b_6 { margin-bottom: 6px; }
.mr_b_7 { margin-bottom: 7px; }
.mr_b_8 { margin-bottom: 8px; }
.mr_b_9 { margin-bottom: 9px; }
.mr_b_10 { margin-bottom: 10px; }
.mr_b_11 { margin-bottom: 11px; }
.mr_b_12 { margin-bottom: 12px; }
.mr_b_13 { margin-bottom: 13px; }
.mr_b_14 { margin-bottom: 14px; }
.mr_b_15 { margin-bottom: 15px; }
.mr_b_16 { margin-bottom: 16px; }
.mr_b_17 { margin-bottom: 17px; }
.mr_b_18 { margin-bottom: 18px; }
.mr_b_19 { margin-bottom: 19px; }
.mr_b_20 { margin-bottom: 20px; }
.mr_b_21 { margin-bottom: 21px; }
.mr_b_22 { margin-bottom: 22px; }
.mr_b_23 { margin-bottom: 23px; }
.mr_b_24 { margin-bottom: 24px; }
.mr_b_25 { margin-bottom: 25px; }
.mr_b_26 { margin-bottom: 26px; }
.mr_b_27 { margin-bottom: 27px; }
.mr_b_28 { margin-bottom: 28px; }
.mr_b_29 { margin-bottom: 29px; }
.mr_b_30 { margin-bottom: 30px; }
.mr_b_31 { margin-bottom: 31px; }
.mr_b_32 { margin-bottom: 32px; }
.mr_b_33 { margin-bottom: 33px; }
.mr_b_34 { margin-bottom: 34px; }
.mr_b_35 { margin-bottom: 35px; }
.mr_b_36 { margin-bottom: 36px; }
.mr_b_37 { margin-bottom: 37px; }
.mr_b_38 { margin-bottom: 38px; }
.mr_b_39 { margin-bottom: 39px; }
.mr_b_40 { margin-bottom: 40px; }
.mr_b_41 { margin-bottom: 41px; }
.mr_b_42 { margin-bottom: 42px; }
.mr_b_43 { margin-bottom: 43px; }
.mr_b_44 { margin-bottom: 44px; }
.mr_b_45 { margin-bottom: 45px; }
.mr_b_46 { margin-bottom: 46px; }
.mr_b_47 { margin-bottom: 47px; }
.mr_b_48 { margin-bottom: 48px; }
.mr_b_49 { margin-bottom: 49px; }
.mr_b_50 { margin-bottom: 50px; }
.mr_b_51 { margin-bottom: 51px; }
.mr_b_52 { margin-bottom: 52px; }
.mr_b_53 { margin-bottom: 53px; }
.mr_b_54 { margin-bottom: 54px; }
.mr_b_55 { margin-bottom: 55px; }
.mr_b_56 { margin-bottom: 56px; }
.mr_b_57 { margin-bottom: 57px; }
.mr_b_58 { margin-bottom: 58px; }
.mr_b_59 { margin-bottom: 59px; }
.mr_b_60 { margin-bottom: 60px; }
.mr_b_61 { margin-bottom: 61px; }
.mr_b_62 { margin-bottom: 62px; }
.mr_b_63 { margin-bottom: 63px; }
.mr_b_64 { margin-bottom: 64px; }
.mr_b_65 { margin-bottom: 65px; }
/*===== Common margin Css ====*/
/*===== Common width Css ====*/
.max-width-100 { max-width: 100px; }
.max-width-200 { max-width: 200px; }
.max-width-300 { max-width: 300px; }
.max-width-400 { max-width: 400px; }
.max-width-500 { max-width: 500px; }
.max-width-600 { max-width: 600px; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }

.width_1_p { width: 1%; }
.width_2_p { width: 2%; }
.width_3_p { width: 3%; }
.width_4_p { width: 4%; }
.width_5_p { width: 5%; }
.width_6_p { width: 6%; }
.width_7_p { width: 7%; }
.width_8_p { width: 8%; }
.width_9_p { width: 9%; }
.width_10_p { width: 10%; }
.width_11_p { width: 11%; }
.width_12_p { width: 12%; }
.width_13_p { width: 13%; }
.width_14_p { width: 14%; }
.width_15_p { width: 15%; }
.width_16_p { width: 16%; }
.width_17_p { width: 17%; }
.width_18_p { width: 18%; }
.width_19_p { width: 19%; }
.width_20_p { width: 20%; }
.width_21_p { width: 21%; }
.width_22_p { width: 22%; }
.width_23_p { width: 23%; }
.width_24_p { width: 24%; }
.width_25_p { width: 25%; }
.width_26_p { width: 26%; }
.width_27_p { width: 27%; }
.width_28_p { width: 28%; }
.width_29_p { width: 29%; }
.width_30_p { width: 30%; }
.width_31_p { width: 31%; }
.width_32_p { width: 32%; }
.width_33_p { width: 33%; }
.width_34_p { width: 34%; }
.width_35_p { width: 35%; }
.width_36_p { width: 36%; }
.width_37_p { width: 37%; }
.width_38_p { width: 38%; }
.width_39_p { width: 39%; }
.width_40_p { width: 40%; }
.width_41_p { width: 41%; }
.width_42_p { width: 42%; }
.width_43_p { width: 43%; }
.width_44_p { width: 44%; }
.width_45_p { width: 45%; }
.width_46_p { width: 46%; }
.width_47_p { width: 47%; }
.width_48_p { width: 48%; }
.width_49_p { width: 49%; }
.width_50_p { width: 50%; }
.width_51_p { width: 51%; }
.width_52_p { width: 52%; }
.width_53_p { width: 53%; }
.width_54_p { width: 54%; }
.width_55_p { width: 55%; }
.width_56_p { width: 56%; }
.width_57_p { width: 57%; }
.width_58_p { width: 58%; }
.width_59_p { width: 59%; }
.width_60_p { width: 60%; }
.width_61_p { width: 61%; }
.width_62_p { width: 62%; }
.width_63_p { width: 63%; }
.width_64_p { width: 64%; }
.width_65_p { width: 65%; }
.width_66_p { width: 66%; }
.width_67_p { width: 67%; }
.width_68_p { width: 68%; }
.width_69_p { width: 69%; }
.width_70_p { width: 70%; }
.width_71_p { width: 71%; }
.width_72_p { width: 72%; }
.width_73_p { width: 73%; }
.width_74_p { width: 74%; }
.width_75_p { width: 75%; }
.width_76_p { width: 76%; }
.width_77_p { width: 77%; }
.width_78_p { width: 78%; }
.width_79_p { width: 79%; }
.width_80_p { width: 80%; }
.width_81_p { width: 81%; }
.width_82_p { width: 82%; }
.width_83_p { width: 83%; }
.width_84_p { width: 84%; }
.width_85_p { width: 85%; }
.width_86_p { width: 86%; }
.width_87_p { width: 87%; }
.width_88_p { width: 88%; }
.width_89_p { width: 89%; }
.width_90_p { width: 90%; }
.width_91_p { width: 91%; }
.width_92_p { width: 92%; }
.width_93_p { width: 93%; }
.width_94_p { width: 94%; }
.width_95_p { width: 95%; }
.width_96_p { width: 96%; }
.width_97_p { width: 97%; }
.width_98_p { width: 98%; }
.width_99_p { width: 99%; }
.width_100_p { width: 100%; }
/*===== Common width Css ====*/
/* ── common css ── */

.btn-ghost { 
    background: none; 
    border: 1px solid var(--border-strong); color: var(--text-secondary); 
    padding: 8px 18px; border-radius: 6px; font-family: var(--font-body); 
    font-size: 14px; cursor: pointer; transition: all .2s; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text-primary); }
.btn-ghost-white { 
    background: none; border: 1px solid rgba(255, 255, 255, .1); 
    color: #ffffff; padding: 8px 18px; 
    border-radius: 6px; 
    font-family: var(--font-body); 
    font-size: 14px; 
    cursor: pointer; 
    transition: all .2s; text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
}
.btn-ghost-white svg {
    width: 16px;
    height: 16px;
}
.btn-ghost-white img {
    width: 16px;
}
.btn-ghost-white:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
    background: var(--accent);
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary svg {
    width: 16px;
    height: 16px;
}
.btn-primary img {
    width: 16px;
}
.btn-primary:hover {
    background: var(--accent-hover);
}
.btn-xl { padding: 14px 30px; font-size: 15px; border-radius: 8px; }
.btn-lg { padding: 12px 24px; font-size: 15px; border-radius: 7px; }


.container { 
    max-width: var(--max-w); 
    margin: 0 auto; 
    padding: 0 30px; 
    position: relative; 
    z-index: 1; 
}
.container-padding-0 {
  padding-left: 0;
  padding-right: 0;
}
.container.container_lg {
    max-width: 1300px;
}
/* ── Common css ── */
/* ── ANIMATIONS ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }
@keyframes shimmer  { from{transform:translateX(-100%)} to{transform:translateX(200%)} }
@keyframes grow     { from{width:0} to{width:var(--w)} }
@keyframes waveBar  { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }
@keyframes phasePulse { 0%,100%{box-shadow:0 0 0 0 rgb(255 106 0 / 0);} 50%{box-shadow:0 0 0 6px rgb(255 106 0 / 15%);} }
@keyframes floatUp  { from{opacity:0;transform:translateY(10px)} to{opacity:.6;transform:none} }

.fade-up { opacity:0; transform:translateY(22px); transition:opacity .62s ease, transform .62s ease; }
.fade-up.in { opacity:1; transform:none; }

/* ── ANIMATIONS ── */
/* ── sections css ── */
  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--text-muted);
  }
  .section-label span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
.section-mono { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.section-mono::before { 
  content:''; 
  width:22px; 
  height:1px; 
  background:var(--text-muted);
 }
.section-mono span { 
  font-family:var(--font-mono); 
  font-size:10.5px; 
  letter-spacing:.1em; 
  text-transform:uppercase; 
  color:var(--text-muted);
 }
.block-h2 { font-family:var(--font-display); font-size:clamp(28px,3.5vw,46px); font-weight:400; line-height:1.08; letter-spacing:-.022em; margin-bottom:22px; }
.block-h2 em { font-style:italic; color:var(--accent); }

.section_heading_container {
    max-width: 864px;
    margin: 0 auto;
}
.section_heading {
  margin-bottom: 48px;
}
.section_heading_title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.022em;
  margin-bottom: 22px;
}
.sec_para {

}
.section_heading_white p {
    color: var(--text-muted);
}
.section_heading_white .section_heading_title {
    color: #ffffff;
}
/* ── sections css ── */
/* === hero banner common css === */


.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 30px;
  opacity: 0; animation: fadeUp .55s ease forwards .05s;
}
.eyebrow::before { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.65)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .5s ease forwards .05s;
}
.hero-eyebrow::before { content:''; width:5px; height:5px; background:var(--accent); border-radius:50%; animation:pulse 2s ease infinite; }

#hero .hero_title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.032em;
  max-width: 860px;
  opacity: 0; animation: fadeUp .65s ease forwards .15s;
}
#hero .hero_title em { font-style: italic; color: var(--accent); }

.hero-sub {
  margin-top: 26px; max-width: 600px;
  font-size: 18px; color: var(--text-secondary); line-height: 1.7;
  opacity: 0; animation: fadeUp .65s ease forwards .28s;
}
.hero-sub strong { color: var(--text-primary); font-weight: 500; }

.hero-actions {
  display: flex; 
  align-items: center;
  gap: 14px; 
  margin-top: 40px; 
  flex-wrap: wrap; 
  opacity: 0; 
  animation: fadeUp .65s ease forwards .4s;
}

@media screen and (max-width:1199px) {
   #hero .hero_title {
        font-size: 46px;
    }
    .hero-sub {
        font-size: 15px;
    }
}
@media(max-width:991px) {
  #hero .hero_title {
      font-size: 30px;
  }
}
@media(max-width:767px) {
    .hero-actions, .cta-row {
      gap: 10px 8px;
    }
}
/* === hero banner common css === */

/* header nav css */
.excruit_header_nav {
  position: sticky; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.04);
}
.back_home_link {
    text-decoration: none;
    color: var(--accent);
}
.nav-logo { font-family: var(--font-display); color: var(--text-primary); text-decoration: none; }
.excruit_header_nav .nav-logo img {
    width: 110px;
    max-width: 110px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none;    margin-bottom: 0; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color .15s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { display: flex; gap: 10px; }
.excruit_header_nav .nav_btn {
    display: inline-flex;
    align-items: center;
    gap: 0 5px;
}
.excruit_header_nav .nav_btn img {
  width: 22px;
}
.excruit_header_nav .nav_btn .btn_icon {
    display: none;
}
.nav_toggle {
  display: none;
  cursor: pointer;
}
.nav_toggle img {
    width: 28px;
}
/* header nav css */
/* footer css */
.footer_style_one {
    border-top: 1px solid var(--border);
    padding: 36px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-inner .nav-logo img {
    width: 75px;
    max-width: 75px;
}
.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color .15s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer_style_one .footer-copy { font-size: 13px; color: var(--text-muted); }
.footer_style_one .footer-copy a { color: var(--accent);}
/* footer css */
@media(max-width:1199px) {
  .excruit_header_nav .nav_btn {
      padding: 8px 12px;
  }
  .excruit_header_nav .nav-logo img {
      width: 100px;
      max-width: 100px;
  }
  .nav-links {
      gap: 28px 20px;
  }
  /* footer css */
  .footer-links {
      gap: 13px 15px;
      justify-content: center;
  }
  .footer-inner {
      justify-content: center;
  }
  /* footer css */
}
@media(max-width:991px) {
  .nav_toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 11;
    padding: 0px 20px 20px;
    border-bottom: 2px solid var(--accent);
  }
  .nav-links > li {
      width: 100%;
  }
  .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      transition: color .15s;
      padding: 6px 5px;
      display: block;
  }
}
@media(max-width:768px) {
  .excruit_header_nav { padding:0 20px; }
  .container { padding:0 20px; }
}
@media(max-width:480px) {
  .excruit_header_nav .nav_btn {
    padding: 7px 8px;
    font-size: 12px;
  }
  .excruit_header_nav .nav_btn img {
      width: 18px;
  }
 .excruit_header_nav .nav_btn .btn_icon {
      display: inline-flex;
  }
  .excruit_header_nav .nav_btn .btn_text {
    display: none;
  }
}


/*====== contact page css ==========*/
.contact_form_card * {
  font-family: var(--font-body) !important;
}
.container_form_section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-TextInput {
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-FieldLabel {
    color: var(--text-primary) !important;
    font-size: 14px;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  background-color: #ffffff !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  background: #ffffff !important;
  border: 1px solid #cccccc !important;
  padding: 12px !important;
  resize: none;
  height: 80px !important;
   font-size: 14px !important;
   font-family: var(--font-body) !important;
}
.contact_form_card [data-hsfc-id=Renderer] .hsfc-Button {
  background-color: var(--accent) !important;
   font-size: 14px !important;
   font-family: var(--font-body) !important;
}

@media screen and (max-width:991px) {
  .contact_form_card [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
      padding: 0 !important;
  }
}
@media screen and (max-width:991px) {
 .contact_form_card [data-hsfc-id=Renderer] .hsfc-Row {
      grid-template-columns: repeat(1, 1fr);
  }
}
/*contact page css*/


/*===== ACTIVE HIRING CYCLE (Live Workflow Preview) =====*/
.active_hire_cycle_sec {
  background:#ffffff; 
  padding:112px 0px; 
  border-top:1px solid #f0f0f0;
}
.active_hire_cycle_sec .section_title {
    line-height: inherit;
    font-weight: 400;
}
.active_hire_cycle_sec .eyebrow:before {
    display: none;
}
.active_hire_progress_card {
  border:1px solid var(--border); border-radius:16px; background:var(--bg-card); padding:32px; box-shadow:0 2px 20px rgba(0,0,0,0.05);
}
.active_hire_progress_header {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border);
}
.active_hire_progress_header .left_text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.active_hire_progress_header .middle_text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 6px;
}
.active_hire_progress_header .middle_text .anim_circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
.active_hire_progress_header .right_text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.workflow_steps_wrap {
  margin-bottom:32px; padding-bottom:32px; border-bottom:1px solid var(--border);
}
.workflow_steps_row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.workflow_steps_row .steps_colms {
  display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; text-align:center;
}
.workflow_steps_row .steps_circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    
}
.workflow_steps_row .circle_checked {
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    color: var(--green);
}
.workflow_steps_row .circle_active {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}
.workflow_steps_row .circle_pending {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.workflow_steps_row .steps_txt {
  font-family:var(--font-mono); font-size:10px; color:var(--text-muted); text-align:center; line-height:1.3;
}

.ai_call_example_text_box {
  border-radius:8px; border:1px solid var(--accent-border); background:var(--accent-soft); padding:16px; margin-bottom:24px;
}
.ai_call_example_row {
  display:flex; 
  flex-wrap: wrap;
  align-items:center; 
  justify-content:space-between;
}
.ai_call_example_row .left_textbox {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding-right: 10px;
}
.ai_wave_anim_div {
  display:flex; gap:2px; align-items:center;
}
.ai_wave_anim_div .wave_1 {
  width:2px; 
  height:8px; 
  border-radius:2px; 
  background:var(--accent); 
  animation:waveBar 1.1s ease-in-out infinite 0s;
}
.ai_wave_anim_div .wave_2 {
width:2px; height:14px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.15s;
}
.ai_wave_anim_div .wave_3 {
width:2px; height:10px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.3s;
}
.ai_wave_anim_div .wave_4 {
width:2px; height:16px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.45s;
}
.ai_wave_anim_div .wave_5 {
width:2px; height:8px; border-radius:2px; background:var(--accent); animation:waveBar 1.1s ease-in-out infinite 0.6s;
}
.ai_call_example_row .ai_prog_text {
 font-family:var(--font-mono); font-size:10.5px; color:var(--accent); font-weight:500;
}
.ai_call_example_row .right_ai_timing {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    flex: 0 0 auto;
}

.about_hiring_Metrics {
  display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.about_hiring_Metrics .metrics_colm {
  text-align: center;
}
.about_hiring_Metrics .metrics_num {
  font-family:var(--font-display); 
  font-size:clamp(24px,2.5vw,32px); 
  font-weight:400; 
  color:var(--text-primary); 
  margin-bottom:8px; letter-spacing:-.02em;
}
.about_hiring_Metrics .metrics_txt {
  font-family:var(--font-mono);
  font-size:9px; 
  letter-spacing:.08em; 
  text-transform:uppercase; 
  color:var(--text-muted);
}

@media(max-width:1199px) {
  .workflow_steps_row .steps_colms {
      flex: 0 0 auto;
      min-width: 100px;
  }
}

@media(max-width:991px) {
    .about_hiring_Metrics {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px 10px;
  }
}
@media(max-width:767px) {
  .active_hire_progress_header {
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
      gap: 5px 0;
  }
  .active_hire_progress_header .left_text, 
  .active_hire_progress_header .middle_text, 
  .active_hire_progress_header .right_text {
    width: 100%;
  }
  .active_hire_progress_header .middle_text {
      justify-content: center;
  }
  .about_hiring_Metrics {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 10px;
  }
  .about_hiring_Metrics .metrics_num {
      font-size: 22px;
      font-weight: 400;
  }
}
@media(max-width:575px) {
   .about_hiring_Metrics {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px 0px;
  }
  .ai_call_example_row .left_textbox {
      flex: 0 0 auto;
      padding-right: 0;
      width: 100%;
      margin-bottom: 8px;
  }
  .ai_call_example_row .right_ai_timing {
      width: 100%;
  }
}
@media(max-width:375px) {
 .workflow_steps_row .steps_colms {
      min-width: auto;
      width: 100%;
  }
}
/*===== ACTIVE HIRING CYCLE (Live Workflow Preview) =====*/

/*cta section css*/
.final-cta {
    padding: 112px 0 128px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}
.final-cta::before { 
  content:''; position:absolute;inset:0; background:radial-gradient(ellipse 900px 560px at 50% 60%, var(--accent-color-8), transparent); pointer-events:none; 
}
.final-cta::after  { 
  content:''; position:absolute; width:1200px; height:1px; left:50%; top:0; transform:translateX(-50%); background:linear-gradient(90deg,transparent,var(--accent-border),transparent); 
}
.cta-mono { 
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:24px; 
}
.cta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.final-cta .cta_title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.03em;
    max-width: 760px;
    margin: 0 auto 24px;
}
.final-cta .cta_title em { font-style:italic; color:var(--accent); }
.final-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.6;
}
.cta-row {
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap; 
}
.cta-qualifier { margin-top:22px; font-family:var(--font-mono); font-size:11px; color:var(--text-muted); line-height:1.65; max-width:600px; margin-left:auto; margin-right:auto; }
/*cta section css*/

/* common media css  */
@media screen and (max-width:1199px) {
    body {
        font-size: 14px !important;
    }
    p {
      font-size: 14px;
    }
    .btn-lg {
        font-size: 14px !important;
    }
  .final-cta .cta_title {
      font-size: 40px;
  }
    .final-cta p {
      font-size: 16px;
  }
  .h1-hero {
      font-size: 36px;
  }
  .h3-card {
      font-size: 22px;
  }
  .section_heading_title {
      font-size: 30px;
  }
}
@media(max-width:991px) {
  .active_hire_cycle_sec .section_title {
      line-height: 1.2;
  }
  .final-cta .cta_title {
      font-size: 40px;
  }
  .final-cta {
      padding: 60px 0;
  }
}
@media(max-width:768px) {
  .cta-row {align-items:center; }
  .final-cta .cta_title {
      font-size: 32px;
      line-height: 1.25;
  }
  .final-cta p {
      font-size: 15px;
  }
}
@media screen and (max-width:767px) {
 .btn-xl {
    font-size: 14px;
  }
    .h1-hero {
        font-size: 30px;
    }
     .h3-card {
        font-size: 20px;
    }
    .section_heading_title {
        font-size: 28px;
    }
}
@media screen and (max-width:575px) {
   .final-cta .cta_title {
      font-size: 30px;
  }
  .section_heading_title {
      font-size: 26px;
  }
}
/* common media css  */