:root {
    --color-primary: #0974F2;
    --color-primary-dark: #0056b3;
    --color-accent: #FC8802;
    --color-indigo: #6155F5;
    --color-light-green: #00A246;
    --color-brown: #AC7F5E;
    --color-yellow: #FFCC00;
    --color-accent-light: #F59E0B;
    --color-text-dark: #0A0A0A;
    --color-text-muted: #3B3B3B;
    --color-text-light-muted: #6C6C6C;
    --color-white: #ffffff;
    --color-white-light: #E8E8E8;
    --color-white-smoke: #CECECE;
    --color-light-bg: aliceblue;
    --color-border-light: #ddd;
    --color-scrollbar-track: #F5F5F5;
    --color-scrollbar-shadow: rgba(0, 0, 0, 0.3);
    --color-scrollbar-1: #0974F2;
    --color-scrollbar-2: #ff7c00;
    --color-scrollbar-3: #ff7c00;
    --color-navbar-mobile-bg: #ff7c00;
    --color-toggler-icon: #183c5b;
    --color-light-grey: #F5F9FC;
    --color-pink: #CB30E0;
    --color-accordion-bg: #f1f6fb;
    --color-accordion-button-bg: #EEF2F7;
    --color-accordion-item-border: #E2E8EF;
    --color-footer-copyright-bg: #151719;
    --color-footer-divider: #5862684f;
    --color-site-footer-bg: #101213;
    --color-site-footer-text: #bfc5cc;
    --color-blue-tick: #0974F2;
    --color-red-pill: #F73825;
    --color-sky-pill: #13A0DB;
}

/* ================= ORIGINAL CSS ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
}
.container {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-bottom: 10px;
}
/* Link Styles */
a {
    text-decoration: none;
    color: var(--color-primary);
    display: inline-block;
}

a:hover {
    color: var(--color-primary);
}
/* Basic Button Styles */
button {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
}
figure {
    margin-bottom: 0;
}
html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--color-scrollbar-shadow);
    background-color: var(--color-scrollbar-track);
    border-radius: 10px;
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: var(--color-scrollbar-track);
}
html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(0.44, var(--color-scrollbar-1)),
            color-stop(0.72, var(--color-scrollbar-2)),
            color-stop(0.86, var(--color-scrollbar-3)));
}
.hero-banner-area {
    min-height: 660px;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.hero-banner-area h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 58px;
    letter-spacing: 0;
    color: var(--color-text-dark);
    margin-top: 150px;
}
.hero-banner-area h1 span {
    color: var(--color-primary);
}
.hero-banner-area p {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    color: var(--color-text-muted);
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0 180px;
}
.hero-banner-area .container {
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-hero-banner-area {
    min-height: auto;
}
.sub-hero-banner-area .container {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: start;
}
.banner_holder {
    max-width: 720px;
    text-align: left;
}
.sub-hero-banner-area .banner_heading_ft_48,
.banner_heading_ft_48 {
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0;
    color: var(--color-text-dark);
    margin-top: 150px;
}
.banner_heading_ft_24 {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    color: var(--color-text-muted);
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0 !important;
}
.hero-banner-area .container .row {
    width: 100%;
}

.hero-banner-area .btn-area {
    margin-top: 50px;
    margin-bottom: 50px;
}
.hero-banner-area .btn-area a {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    border: 1px solid transparent;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s;
    border-radius: 4px;
}
.hero-banner-area .btn-area a:hover {
    background-color: var(--color-primary);
    transition: 0.5s;
}
.hero-banner-area figure img {
    border: 15px solid var(--color-border-light);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

/* sayan header design */
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 10px;
    width: 100vw;
    z-index: 100;
    transition: all 0.5s ease-in-out;
    height: 79px;
}
header.scrolled {
    /* background: #000; */
    top: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); */
    transition: all 0.5s ease-in-out;
    height: 79px;
}
header .header_nav_holder {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* align-items: center; */
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14.2px);
    -webkit-backdrop-filter: blur(14.2px); 
    /* border-radius: 100px; */
    height: 79px;
    /* padding: 10px 16px; */
    padding: 0 16px;
}
header.scrolled .header_nav_holder {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
header .header_nav_holder .cx_logo_holder {
    width: 240px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    padding: 16px;
    padding-left: 0;
}
header .dropdown-menu .dropdown-submenu {
    position: relative;
}
header .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    display: none;
    position: absolute;
}
header .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
header .header_nav_holder ul.cx_menu_lists_holder {
    /* width: calc(100% - 250px); */
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 25px; */
    padding-left: 0;
    margin-bottom: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li a {
    font-size: 16px;
    color: var(--color-text-dark);
    position: relative;
}
/* header .header_nav_holder ul.cx_menu_lists_holder li a:active,
header .header_nav_holder ul.cx_menu_lists_holder li a:hover {
    background: transparent;
    color: #33B1E0;
} */
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 13px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.mobile_links_holder {
    display: none;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-link.cstm_anchor_holder {
    font-weight: 400;
    padding: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-link.cstm_anchor_holder:hover,
header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown.active .nav-link.cstm_anchor_holder {
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown .nav-link.cstm_anchor_holder::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-text-dark);
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
}
/* header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown.active .nav-link.cstm_anchor_holder::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    position: absolute;
    left: 0;
    bottom: -5px;
} */
/* header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown .nav-link.cstm_anchor_holder::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-text-dark);
    border-width: 0 0 1px 1px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
} */
/* header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last {
    height: auto;
    align-self: center;
    margin-left: 40px;
    display: inline-block;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(74deg, #01FFC7 0%, #0076F7 100%);
} */
/* header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last .cx_gradient_btn {
    white-space: nowrap;
    background: rgba(0, 0, 0, 0) !important;
    color: #fff;
    max-height: 40px;
    padding: 10px 14px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item-last .cx_gradient_btn:hover {
    color: #fff;
} */
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
    width: 100%;
    max-width: 1320px;
    max-height: calc(100dvh - 85px);
    /* min-height: 550px; */
    position: fixed;
    left: 50%;
    top: 77px;
    transform: translateX(-50%);
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    background: #000;
    backdrop-filter: blur(40.3px);
    -webkit-backdrop-filter: blur(40.3px);
    border: none;
    /* border-radius: 43px; */
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.5s;
}
header.scrolled .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
    width: 100%;
    max-width: 100%;
    /* border-radius: 43px; */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: 0.5s;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container {
    width: 100%;
    display: flex;
    /* border-radius: 43px; */
    overflow: hidden;
    background: #fff;
    color: var(--color-text-muted);
    /* background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%); */
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel {
    min-width: 260px;
    width: 260px;
    background: #fff;
    padding: 32px 20px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel .each_right_panel_holder {
    display: none;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel .each_right_panel_holder.active {
    display: flex;
    flex-direction: column;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel .heading_holder {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 23px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel .content_holder {
    font-size: 14px;
    font-weight: 400;
    /* color: #B7B7B7; */
    color: var(--color-text-muted);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel {
    /* width: calc(100% - 580px); */
    min-width: 320px;
    width: 320px;
    /* background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%); */
    background: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    /* gap: 18px; */
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel {
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #383838 var(--color-light-grey);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel .menu_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 16px;
    /* color: #fff; */
    color: var(--color-text-muted);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel .menu_item .arrow  {
    display: none;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel .menu_item.active {
    /* background: linear-gradient(90deg, rgba(1, 255, 199, 0.17) 0%, rgba(0, 118, 247, 0.17) 100%); */
    background: var(--color-light-grey);
    color: var(--color-primary);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel {
    width: 100%;
    max-height: 100%;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #383838 var(--color-light-grey);
    background: var(--color-light-grey);
    padding: 27px 10px;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .back_right_btn {
    display: none;
    color: #fff;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel::-webkit-scrollbar,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar {
    width: 8px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel::-webkit-scrollbar-track,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-track {
    background: #b6b3b3; /* Track background */
    border-radius: 10px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel::-webkit-scrollbar-thumb,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
    border: 2px solid #1e1e1e; /* Creates spacing */
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel::-webkit-scrollbar-thumb:hover,
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .right-panel::-webkit-scrollbar-thumb:hover {
    background: #999393;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group {
    width: 100%;
    display: none;
    flex-direction: column;
    /* position: absolute;
    top: 27px;
    left: 0; */
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .main_heading_holder {
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0 20px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group.active {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .content_menu_holder {
    color: #fff;
    padding: 22px;
    padding-top: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .content_menu_holder .heading_holder {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
}
/* header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .content_menu_holder .heading_holder .gradient_txt,
.pie_steps_carousel_section .left_section #stepNumber {
    display: inline-block;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .content_menu_holder .heading_holder::before {
    content: '';
    width: 20%;
    height: 1px;
    background: linear-gradient(90deg, #01FFC7 0%, #0076F7 100%);
    position: absolute;
    left: 0;
    bottom: -16px;
} */
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .content_menu_holder .only_text {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 32px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .submenu_links_outer_holder {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .submenu_links_outer_holder::after {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--color-light-grey);
    position: absolute;
    right: 0;
    top: 0;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .submenu_links_outer_holder .submenu_item {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    border: 1px solid #DAE4EB;
    border-width: 0 1px 1px 0;
    width: 50%;
    font-weight: 400;
    /* color: #fff; */
    color: var(--color-text-light-muted);
    transition: all 0.3s ease;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .submenu_links_outer_holder .submenu_item .heading_span_holder {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .content_right_panel {
    display: none;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel {
    padding: 0 10px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel .submenu_group.active {
    height: 100%;
    align-items: center;
    gap: 25px;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel .submenu_group.active img {
    width: 40%;
    height: 100%;
    object-fit: cover;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel .submenu_group.active .content_wrapper_holder {
    width: calc(60% - 25px);
    font-weight: 400;
    color: var(--color-text-muted);
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel .submenu_group.active .content_wrapper_holder .heading_holder {
    font-size: 18px;
    font-weight: 400;
}
header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container.no_right_panel .menu_subitems_panel .submenu_group.active .content_wrapper_holder .content_holder {
    font-size: 14px;
}
header .header_nav_holder .menu_right_btns_holder {
    display: flex;
    align-items: center;
    gap: 6px;
}
header .header_nav_holder .menu_right_btns_holder .cstm_anchor_holder {
    color: var(--color-text-dark);
    padding: 10px 14px;
}
header .header_nav_holder .menu_right_btns_holder .cstm_anchor_holder:hover {
    color: var(--color-primary);
}
header .header_nav_holder .cstm_anchor_btn_holder,
.primary_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 14px;
    border-radius: 4px;
}
header .header_nav_holder .cx_hamburg_btn,
header .header_nav_holder .cx_delete_btn {
    display: none;
    background: linear-gradient(90deg, #01E3D2, #0187F2);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 8px;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}
header .header_nav_holder .cx_delete_btn {
    /* display: inline-flex; */
    width: 0;
    transform: translateY(-200%);
    margin-right: 0;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .8rem;
    padding-left: .8rem;
}
/* sayan header design end */
.main_section {
    padding: 50px 0;
}
.section_top_blue_heading {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.section_main_heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}
.section_heading_subtitle {
    color: var(--color-text-muted);
    font-size: 20px;
    font-weight: 400;
}
.tabs_outer_holder .each_tab_holder .each_tab_button_holder {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-white-light);
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 20px;
    background: var(--color-white);
    margin-bottom: 10px;
    transition: all 0.2s ease;
    width: 100%;
}
.tabs_outer_holder .each_tab_holder .each_tab_button_holder.active,
.tabs_outer_holder .each_tab_holder .each_tab_button_holder:hover {
    border-color: var(--color-primary);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    color: var(--color-text-muted);
    font-weight: 600;
    background-color: var(--color-white);
}
.heading_ft_24 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
}
.heading_ft_36 {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text-dark);
}
.grey_ft_16_content_holder {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
}
.grey_ft_16_content_holder strong {
    color: var(--color-text-dark);
}
.icon_rounded_box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: transparent;
}
.icon_rounded_box.primary_icon_holder {
    background: color-mix(in srgb, var(--color-primary) 10%, transparent);
    color: var(--color-primary);
}
.icon_rounded_box.pink_icon_holder {
    background: color-mix(in srgb, var(--color-pink) 10%, transparent);
    color: var(--color-pink);
}
.icon_rounded_box.orange_icon_holder {
    background: color-mix(in srgb, var(--color-accent) 10%, transparent);
    color: var(--color-accent);
}
.icon_rounded_box.indigo_icon_holder {
    background: color-mix(in srgb, var(--color-indigo) 10%, transparent);
    color: var(--color-indigo);
}
.icon_rounded_box.green_icon_holder {
    background: color-mix(in srgb, var(--color-light-green) 10%, transparent);
    color: var(--color-light-green);
}
.icon_rounded_box.brown_icon_holder {
    background: color-mix(in srgb, var(--color-brown) 10%, transparent);
    color: var(--color-brown);
}
.orange_outlined_btn {
    display: inline-block;
    font-size: 18px;
    color: var(--color-accent-light);
    padding: 12px 20px;
    border: 1px solid var(--color-accent-light);
    border-radius: 4px;
}
.orange_outlined_btn:hover {
    background: var(--color-accent-light);
    color: var(--color-white);
}
.why-factor-section {
    background: #F5F9FC;
}
.why-factor-section .all_items_holder {
    margin: 0 !important;
}
.why-factor-section .each_item_holder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 24px;
    margin: 0;
    position: relative;
}
.why-factor-section .each_item_holder:nth-child(1),
.why-factor-section .each_item_holder:nth-child(2) {
    border-bottom: 1px solid var(--color-white-smoke);
}
.why-factor-section .each_item_holder:nth-child(1)::after,
.why-factor-section .each_item_holder:nth-child(3)::after {
    content: '';
    width: 1px;
    height: 80%;
    background: var(--color-white-smoke);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.why-factor-section .each_item_holder:nth-child(3),
.why-factor-section .each_item_holder:nth-child(4) {
    flex-direction: row-reverse;
}
.why-factor-section .each_item_holder .img_holder {
    border-radius: 4px;
    width: 280px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.all_items_holder .each_item_holder .text_holder {
    max-width: 300px;
}
.each_item_holder .text_holder .text_holder_heading {
    font-weight: 600;
    position: relative;
    padding-left: 14px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #0a0a0a;
}
.each_item_holder .text_holder .text_holder_heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 18px;
    background-color: var(--color-primary);
}
.all_items_holder .each_item_holder:nth-child(2) .text_holder .text_holder_heading::before,
.all_items_holder .each_item_holder:nth-child(4) .text_holder .text_holder_heading::before {
    background-color: var(--color-accent);
}
.custom_slider {
    width: 100%;
}
.custom_slider .slider_viewport {
    padding-top: 40px;
    overflow: hidden;
}
.custom_slider .slider_viewport .slider_track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.custom_slider .slider_viewport .slider_track .slider_item {
    display: flex;
    min-width: 100%;
    border-radius: 6px;
    border: 1px solid var(--color-white-smoke);
}
.custom_slider .slider_viewport .slider_track .slider_item .left_holder {
    min-width: 275px;
    max-width: 275px;
    background: var(--color-white);
    padding: 16px;
    border-radius: 6px 0 0 6px;
    position: relative;
}
.custom_slider .slider_viewport .slider_track .slider_item .left_holder .quote_mark_holder {
    position: absolute;
    left: 30px;
    top: -35px;
}
.custom_slider .slider_viewport .slider_track .slider_item .right_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 275px);
    background: var(--color-light-grey);
    border-left: 1px solid var(--color-white-smoke);
    border-radius: 0 6px 6px 0;
    padding: 16px;
}
.custom_slider .slider_viewport .slider_track .slider_item .right_holder .testimonial_text {
    font-style: italic;
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.custom_slider .slider_viewport .slider_track .slider_item .right_holder .testimonial_author {
    font-size: 18px;
    color: var(--color-text-dark);
}
.custom_slider .slider_viewport .slider_track .slider_item .right_holder .testimonial_author strong {
    font-weight: 600;
    font-size: 24px;
}
.custom_slider .slider_controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.custom_slider .slider_controls .slider_btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
}  
.custom_slider .slider_controls .slider_btn i {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 40px;
    color: var(--color-primary);
}
.custom_slider .slider_controls .slider_btn.disabled i {
    color: var(--color-white-smoke);
}
.industries-section {
    background-size: cover;
    background-position: center;
}
.industries-section .row > div[class^="col-"]  {
    padding: 0;
}
.card_bottom_content_holder {
    height: 375px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}
.card_bottom_content_holder.image_card .bottom_content_holder {
    height: 100%;
    padding: 20px;
    color: var(--color-white);
    position: relative;
    z-index: 2;
    transition: 0.5s;
    transform: translateY(calc(100% - 140px));
}
.card_bottom_content_holder.image_card:hover .bottom_content_holder {
    background: var(--color-white);
    top: 0;
    transition: 0.5s;
    color: var(--color-text-muted);
    transform: translateY(0);
}
.card_bottom_content_holder.image_card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    min-height: 48px;
}
.card_bottom_content_holder.image_card:hover h5 {
    display: block;
    color: var(--color-text-dark);
}
.card_bottom_content_holder.image_card::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.card_bottom_content_holder.image_card img.main_bg_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 375px;
    object-fit: cover;
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box {
    color: var(--color-white);
    margin-bottom: 10px;
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box i {
    font-size: 25px;
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box.primary_icon_holder {
    background: var(--color-primary);
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box.orange_icon_holder {
    background: var(--color-accent);
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box.yellow_icon_holder {
    background: var(--color-yellow);
}
.card_bottom_content_holder.image_card .bottom_content_holder .icon_rounded_box.brown_icon_holder {
    background: var(--color-brown);
}
.faq-accordion .accordion-item {
    border: 1px solid var(--color-accordion-item-border);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background-color: var(--color-accordion-button-bg);
    font-weight: 600;
    color: var(--color-text-dark);
    padding: 18px 22px;
    font-size: 20px;
    padding-left: 50px;
}
.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\e3d7";
    font-family: "Phosphor-Duotone" !important;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);
    transform: none;
    position: absolute;
    left: 20px;
    top: 21px;
    /* border: 2px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 1px;
    /* background: rgb(0 0 255 / 8%); */
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\e32d";
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--color-accordion-bg);
    box-shadow: none;
}
.faq-accordion .accordion-body {
    padding: 10px 22px 10px;
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 400;
}
/* faq section end */
.cta-inefficiency {
    background-size: cover;
    background-position: center;
}
.cta-inefficiency img {
    height: 443px;
    object-fit: cover;
}
.talk-expert-btn a i {
    font-size: 12px;
    border: 1px solid var(--color-white);
    padding: 4px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    margin-left: 5px;
}
.cta-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.25;
    color: var(--color-text-dark);
}
.cta-text {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
}
.cta-text strong {
    color: var(--color-text-dark);
    font-weight: 600;
}
.cta-btn {
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 400;
    background: var(--color-primary);
    font-size: 18px;
    color: var(--color-white);
}
.cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}
.talk-expert-btn {
    margin-top: 40px;
}

/* Visual block */
.cta-visual {
    position: relative;
    max-width: 360px;
}
.cta-person {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 8px;
}

/* footer start */
.site-footer {
    background: var(--color-site-footer-bg);
    color: var(--color-site-footer-text);
    padding: 30px 0 0px;
    font-size: 14px;
}
.footer-contact-info {
    text-align: end;
}
.site-footer a {
    color: var(--color-white-smoke);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}
.footer-divider {
    border-top: 1px solid var(--color-footer-divider);
    margin: 0;
    margin-top: 30px;
}
.footer-contact-section {
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-contact-info ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    list-style: none;
}
.footer-contact-info ul li {
    display: inline-flex;
    align-items: center; 
}
.footer-contact-info ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-contact-info ul li::after {
    content: "|";
    margin-left: 10px;
    color: var(--color-white);
}
.footer-contact-info ul li:last-child::after {
    content: none;
    margin-left: 0;
}
.site-footer a:hover {
    color: var(--color-white);
}
.footer-title {
    color: var(--color-text-light-muted);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-list,
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social li .icon_holder {
    border: 1px solid var(--color-white);
    min-width: 25px;
    min-height: 25px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.footer-list li,
.footer-social li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.footer-social li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.copyright-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white-smoke);
}
.privacy-links a {
    color: var(--color-white-smoke);
}
.footer-list li:hover,
.footer-social li:hover {
    color: var(--color-white);
}
.privacy-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.footer-social i {
    margin-right: 8px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom a {
    color: #bfc5cc;
    text-decoration: none;
}
.footer-contact-section-two {
    background-color: var(--color-footer-copyright-bg);
    padding: 20px 0;
}
.footer-bottom a:hover {
    color: var(--color-white);
}
.footer-contact {
    color: var(--color-white) !important;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
}
.footer-contact-info {
    margin: 0;
    font-style: normal;
    font-size: 13px;
}

/* Customer Management banner area*/
.hero-banner-area.inner-page-banner {
    text-align: left;
}
.hero-banner-area.inner-page-banner p {
    padding: 0;
}
.hero-banner-area.inner-page-banner h1 {
    font-size: 48px;
    margin-top: auto;
}
.hero-banner-area.inner-page-banner figure img {
    border: none;
    border-bottom: none;
    border-radius: 0;
    margin-left: auto;
    display: block;
    height: 356px;
    object-fit: contain;
}
.hero-banner-area.inner-page-banner,
.hero-banner-area.inner-page-banner .container {
    min-height: 520px;
}
.hero-banner-area.inner-page-banner .row {
    height: 100%;
    min-height: 520px;
    align-items: center;
    padding-top: 100px;
}
.hero-banner-area.inner-page-banner .btn-area {
    margin-top: 40px;
    margin-bottom: 20px;
}
.service-section-cm {
    padding-top: 70px;
    padding-bottom: 70px;
}
.service-section-cm .section-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}
.service-section-cm .section-subtitle {
    color: var(--color-text-muted);
    font-size: 20px;
    font-weight: 400;
    max-width: 1100px;
    margin: auto;
}
.service-section-cm .feature-item {
    margin-bottom: 30px;
    gap: 18px;
}
.service-section-cm .feature-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}
.service-section-cm .feature-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0;
}
.service-section-cm .stats-wrapper {
    border-left: 1px solid var(--color-white-light);
}
.service-section-cm .stat-row {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 22px;
    flex-direction: column;
}
.service-section-cm .stat-icon {
    font-size: 22px;
    padding-left: 25px;
}
.service-section-cm .stat-content h2 {
    color: var(--color-text-muted);
    font-size: 48px;
    font-weight: 600;
    margin: 0;
}
.service-section-cm .stat-content span {
    font-size: 24px;
    color: var(--color-text-light-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
}
.service-section-cm .stat-divider {
    height: 1px;
    background: var(--color-white-light);
    margin: 18px 0;
}
.service-section-cm .stats-div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
.stat-content {
    padding-left: 25px;
}
.management-section-cm {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}
.feature-card {
    background: var(--color-white);
    border-radius: 4px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
}
.feature-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--color-text-dark);
}
.feature-card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 24px;
    margin: 0;
    margin-top: 10px;
}
.management-section-cm .text-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
section.suite-section-cm {
    padding: 80px 0;
}
section.suite-section-cm .section-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}
section.suite-section-cm .section-subtitle {
    color: var(--color-text-muted);
    font-size: 20px;
    font-weight: 400;
    max-width: 1100px;
    margin: auto;
}
section.suite-section-cm .suite-col {
    padding: 0 40px;
}
section.suite-section-cm .suite-image {
    background: var(--color-white);
    padding: 20px;
    margin-bottom: 22px;
    border: 1px solid #D5DBE1;
}
section.suite-section-cm .suite-image figure {
    background-color: rgba(0, 0, 0, 0.05);
}
section.suite-section-cm .suite-image img {
    width: 100%;
    height: 350px;
}
section.suite-section-cm .suite-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 35px;
}
section.suite-section-cm .suite-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}
section.suite-section-cm .btn-area .learn-btn {
    color: var(--color-accent);
    padding: 8px 25px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    border: 1px solid var(--color-accent);
    display: inline-flex;
    gap: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s;
    border-radius: 4px;
}
section.suite-section-cm .btn-area .learn-btn:hover i,
section.suite-section-cm .btn-area .learn-btn:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
section.suite-section-cm .btn-area .learn-btn i {
    font-size: 12px;
    border: 1px solid var(--color-accent);
    padding: 3px;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    transform: rotate(-45deg);
}
section.suite-section-cm .btn-area {
    margin-top: 30px;
}
.suite-section-cm-box .suite-col:nth-child(odd) {
    border-right: 1px solid #D5DBE1;
}
.suite-section-cm-box .image-overlay {
    position: relative;
    display: inline-block;
}
.suite-section-cm-box .image-overlay img {
    display: block;
    width: 100%;
    height: auto;
}
.suite-section-cm-box .image-overlay .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.suite-section-cm-box .floating-div .icon-img {
    width: 61px;
    height: 61px;
    object-fit: cover;
}
.suite-section-cm-box .floating-div ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 10px;
    line-height: 20px;
}
.suite-section-cm-box .floating-div {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--color-white);
    position: absolute;
    top: 80px;
    left: 45px;
    border-radius: 8px;
    padding: 10px 10px;
    background-color: #ffffff6e;
}
.suite-section-cm-box .floating-div.floating-div-two {
    right: 45px;
    left: auto;
    top: auto;
    bottom: 80px;
}
.suite-section-cm-box .floating-div ul li span {
    color: var(--color-text-dark);
    font-size: 20px;
    font-weight: 600;
}
.suite-section-cm-box .floating-div ul li a {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 400;
}
.warranty-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.warranty-title i {
    color: var(--color-primary);
    font-size: 36px;
}
.warranty-manufature-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;  
}
.warranty-manufature-title i {
  color: var(--color-accent);
  font-size: 36px;
}
.warranty-list-holder {
    list-style: none;
    padding: 0;
    margin: 0;
}
.warranty-list-holder li {
    position: relative;
    padding-left: 39px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}
.green_tick_list_holder i {
    color: var(--color-light-green);
    margin-right: 5px;
    font-size: 22px;
}
.blue_tick_list_holder i {
    color: var(--color-blue-tick); 
    margin-right: 5px;
    font-size: 22px;
}
.service_contract_holder {
    display: flex;
    justify-content: center;
}
.process-container {
    display: inline-flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.ticket_step {
    display: inline-block;
    width: 188px;
    vertical-align: middle;
}
.step_pill {
    display: inline-block;
    padding: 10px;
    border-radius: 25px;
    background: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
.step_card_holder {
    margin-top: 14px;
    background: var(--color-white);
    border: 1px solid var(--color-white-smoke);
    border-radius: 6px;
    padding: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
    min-height: 112px;
    width: 100%;
    text-align: center;
}
.green_pill_holder {
    border: 1px solid var(--color-light-green);
    color: var(--color-text-dark);
    background: rgba(0, 162, 70, 0.2);
    position: relative;
    z-index: 1;
}
.green_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-light-green) 0px,
      var(--color-light-green) 3px,
      transparent 3px,
      transparent 7px
    );
}
.orange_pill_holder {
    border: 1px solid var(--color-accent);
    color: var(--color-text-dark);
    background: rgba(252, 136, 2, 0.2);
    position: relative;
    z-index: 1;
}
.orange_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-accent) 0px,
      var(--color-accent) 3px,
      transparent 3px,
      transparent 7px
    );
}
.pink_pill_holder {
  border: 1px solid var(--color-pink);
    color: var(--color-text-dark);
    background: rgba(149, 9, 242, 0.2);  
    position: relative;
    z-index: 1; 
}
  /* .pink_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -32px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      #CB30E0 0px,
      #CB30E0 3px,
      transparent 3px,
      transparent 7px
    );
  } */
.red_pill_holder {
  border: 1px solid var(--color-red-pill);
    color: var(--color-text-dark);
    background: rgba(247, 56, 37, 0.2);
    position: relative;
    z-index: 1;   
}
.red_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-red-pill) 0px,
      var(--color-red-pill) 3px,
      transparent 3px,
      transparent 7px
    );
}
.sky_pill_holder {
    border: 1px solid var(--color-sky-pill);
    color: var(--color-text-dark);
    background: rgba(19, 160, 219, 0.2);  
    position: relative;
    z-index: 1; 
}
.sky_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-sky-pill) 0px,
      var(--color-sky-pill) 3px,
      transparent 3px,
      transparent 7px
    );
}
.blue_pill_holder {
    border: 1px solid var(--color-blue-tick);
    color: var(--color-text-dark);
    background: rgba(9, 116, 242, 0.2); 
    position: relative;
    z-index: 1;  
}
.blue_pill_holder::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-blue-tick) 0px,
      var(--color-blue-tick) 3px,
      transparent 3px,
      transparent 7px
    );
}
.red-icon i {
    color: var(--color-red-pill) !important;
}
.purple-icon i {
    color: var(--color-indigo) !important;
}

/********* Responsive css **********/

@media (max-width: 1439px) {
    .container {
        max-width: 1250px;
    }
    .blue_pill_holder::before {
        content: none !important;
    }
    .pink_pill_holder::before {
        content: none;
    }
}

@media (max-width: 1280px) {

    .container {
        max-width: 1200px;
    }
    .hero-banner-area h1 {
        font-size: 52px;
    }
    .hero-banner-area p {
        font-size: 22px;
        margin-top: 30px;
    }
    .section_top_blue_heading {
        font-size: 17px;
    }
    .section_main_heading,
    .cta-title {
        font-size: 32px;
    }
    .section_heading_subtitle,
    .faq-subtitle {
        font-size: 18px;
    }
    .tabs_outer_holder .each_tab_holder .each_tab_button_holder {
        display: flex;
        padding: 10px 20px;
        font-size: 18px;
    }
    .each_item_holder .text_holder .text_holder_heading {
        font-size: 18px;
    }
    .faq-accordion .accordion-button {
        font-size: 18px;
    }
    .blue_pill_holder::before {
        content: none;
    }
    .green_pill_holder::before {
        content: none;
    }
    .orange_pill_holder::before {
        content: none;
    }
    .red_pill_holder::before { 
        content: none;
    }
    .sky_pill_holder::before {
        content: none;
    }
}

@media (max-width: 1200px) {

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    .container {
        max-width: 1000px;
    }
    .hero-banner-area p {
        padding: 0 50px;
    }
    .tabs_outer_holder .each_tab_holder .each_tab_button_holder {
        font-size: 15px;
    }
    .hero-banner-area h1 {
        font-size: 42px;
    }
    .why-factor-section .each_item_holder:not(:last-child) {
        border-bottom: 1px solid var(--color-white-smoke);
    }
    .why-factor-section .each_item_holder .img_holder {
        width: 215px;
        height: 160px;
    }
    .preview-card {
        padding-left: 0px;
    }
    .all_items_holder .each_item_holder .text_holder {
        max-width: calc(100% - 250px);
    }
    .why-factor-section .each_item_holder:nth-child(1), .why-factor-section .each_item_holder:nth-child(2) {
        flex-direction: row-reverse;
    }
    .why-factor-section .each_item_holder:nth-child(1)::after, 
    .why-factor-section .each_item_holder:nth-child(3)::after {
        content: none;
    }
    .warranty-list-holder li { 
       align-items: start;
    }
}

@media (max-width: 1024px) {
    .why-factor-section .each_item_holder {
        flex-wrap: wrap;
    }
    .banner_holder {
        max-width: 100%;
        /* text-align: center; */
    }

    /* sayan design */
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1;
        width: 100dvw;
        height: 100dvh;
        border: none;
        border-radius: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel .menu_item .arrow {
        display: inline-flex;
        width: 24px;
        height: 24px;
        margin-top: -4px;
        margin-left: auto;
        font-size: 24px;
        position: relative;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel .menu_item .arrow::after {
        content: "\e02f";
        font-family: "Phosphor-Duotone" !important;
        display: inline-block;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .menu_subitems_panel.more_menu_right_panel {
        position: fixed;
        left: 0;
        top: 0;
        width: 100dvw;
        height: 100dvh;
        display: block;
        z-index: 1;
        padding: 30px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .menu_subitems_panel.more_menu_right_panel .back_right_btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0 12px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .menu_subitems_panel.more_menu_right_panel .back_right_btn .icon_holder {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 40px;
        min-height: 40px;
        width: 40px;
        height: 40px;
        background: linear-gradient(90deg, #01E3D2, #0187F2);
        border-radius: 100%;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show.show_mobile_menu_items_panel .dropdown_all_items_container .menu_subitems_panel.more_menu_right_panel .back_right_btn .dynamic_heading_holder {
        font-size: 24px;
        font-weight: 500;
        color: var(--color-text-muted);
        margin-bottom: 0;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel .submenu_group .main_heading_holder {
        display: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_item_panel {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 750px;
    }
    header .header_nav_holder .cx_logo_holder {
        width: 150px;
    }
    header .header_nav_holder {
        height: auto;
    }
    header .header_nav_holder .cx_hamburg_btn {
        display: inline-flex;
        transform: translateY(0);
        height: 100%;
        align-self: center;
    }
    header .header_nav_holder .cx_menu_lists_holder.active + .cx_delete_btn {
        width: 35px;
        transform: translateY(0);
        transition: transform 0.5s ease-in-out;
    }
    header .header_nav_holder .cx_delete_btn {
        position: absolute;
        right: 20px;
        top: 10px;
        margin-right: 0;
        z-index: 100;
    }
    header .header_nav_holder .cx_hamburg_btn, 
    header .header_nav_holder .cx_delete_btn, 
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.mobile_links_holder {
        display: inline-flex;
    }
    header .header_nav_holder .menu_right_btns_holder,
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .menu_subitems_panel,
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu .dropdown_all_items_container .content_right_panel {
        display: none;
    }
    header .header_nav_holder ul.cx_menu_lists_holder {
        position: fixed;
        top: -10px;
        /* left: -20.5%; */
        display: block;
        width: 100dvw;
        height: 100dvh;
        background: #fff;
        padding: 20px;
        padding-top: 50px;
        overflow: auto;
        transform: translateX(-100%);
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }
    header .header_nav_holder ul.cx_menu_lists_holder.active {
        padding-top: 60px;
        transform: translateX(0%);
        transition: all 0.5s ease-in-out;
    }
    header .header_nav_holder .cx_menu_lists_holder.active + .menu_right_btns_holder + .cx_delete_btn {
        width: 35px;
        transform: translateY(0);
        transition: transform 0.5s ease-in-out;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item {
        height: auto;
        display: block;
        padding: 12px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item a.cstm_anchor_holder {
        position: relative;
        padding: 10px;
    }
    header .header_nav_holder ul.cx_menu_lists_holder .nav-item.dropdown .nav-link.cstm_anchor_holder::after {
        width: 8px;
        height: 8px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg) !important;
    }
    header .header_nav_holder ul.cx_menu_lists_holder li.nav-item.dropdown .dropdown-menu.show {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-height: auto;
        max-height: initial;
        margin-top: 10px;
        border: none;
        border-radius: 0;
    }
    .hero-banner-area p {
        padding: 0 0px;
    }
    .hero-banner-area h1 {
        font-size: 42px;
    }
    .navbar-nav .dropdown-menu {
        position: static;
        text-align: center;
    }
    .tabs_outer_holder .each_tab_holder .each_tab_button_holder {
        font-size: 14px;
        padding: 7px 10px;
    }
    .footer-contact-section-two .footer-bottom {
        flex-direction: column;
    }
    .testimonial-img img {
        height: 260px;
    }
    .all_items_holder .each_item_holder .text_holder {
        max-width: 100%;
    }
    .why-factor-section .each_item_holder {
        justify-content: center;
    }
    .why-factor-section .each_item_holder .img_holder {
        width: 300px;
        height: 210px;
    }
    .why-factor-section .each_item_holder:nth-child(1),
    .why-factor-section .each_item_holder:nth-child(4) {
        border-right: none;
    }
    .why-factor-section .each_item_holder:nth-child(1),
    .why-factor-section .each_item_holder:nth-child(2),
    .why-factor-section .each_item_holder:nth-child(3),
    .why-factor-section .each_item_holder:nth-child(4),
    .why-factor-section .each_item_holder:nth-child(5) {
        flex-direction: column-reverse;
    }
    .cta-inefficiency img {
        height: auto;
    }
    .custom_slider .slider_viewport .slider_track .slider_item {
        flex-wrap: wrap;
    }
    .custom_slider .slider_viewport .slider_track .slider_item .left_holder {
        min-width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .custom_slider .slider_viewport .slider_track .slider_item .right_holder {
        width: 100%;
        border-left: none;
    }
    .cta-visual {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .tick_list_holder {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {

    .why-factor-section .each_item_holder,
    .why-factor-section .each_item_holder:nth-child(1),
    .why-factor-section .each_item_holder:nth-child(4),
    .why-factor-section .each_item_holder:nth-child(4),
    .why-factor-section .each_item_holder:nth-child(5) {
        flex-direction: column;
    }
    .testimonial-card {
        flex-direction: column;
    }
    .why-factor-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    .cta-btn {
        font-size: 15px;
    }
    .hero-banner-area h1 {
        font-size: 30px;
    }
    .hero-banner-area p {
        font-size: 18px;
        margin-top: 30px;
        line-height: 23px;
    }
    .hero-banner-area,
    .hero-banner-area .container {
        min-height: auto;
    }
    .hero-banner-area .btn-area a {
        padding: 8px 20px;
        font-size: 15px;
    }
    .section_top_blue_heading {
        font-size: 15px;
    }
    .section_main_heading,
    .cta-title {
        font-size: 24px;
    }
    .section_heading_subtitle {
        font-size: 16px;
    }
    .orange_outlined_btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    .dashboard-mock {
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .each_item_holder .text_holder .text_holder_heading {
        margin-bottom: 10px;
    }
    .why-factor-section {
        padding-bottom: 20px;
    }
    .footer-contact-info ul {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 0;
        flex-wrap: wrap;
        padding-left: 0;
        margin-top: 20px;
    }
    .faq-accordion .accordion-button {
        font-size: 16px;
    }
    .privacy-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
        flex-wrap: wrap;
        column-gap: 30px;
    }
    .footer-contact-section-two .footer-bottom {
        flex-direction: column-reverse;
    }
    .copyright-text {
        text-align: center;
        margin-top: 10px;
    }
    .why-factor-section .each_item_holder .img_holder {
        width: 100%;
        height: 230px;
    }
    .tabs_outer_holder .each_tab_holder .each_tab_button_holder {
        font-size: 12px;
        padding: 4px 7px;
    }
}