/* Modern Sidebar (FinSight-like) */
.modern-sidebar {
    width: 280px;
    background: #f7f8fa;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 16px 12px;
    border-radius: 16px;
}
.modern-sidebar .ms-header {
    display: flex;
    align-items: center;
    padding: 8px 10px 16px;
}
.modern-sidebar .ms-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.modern-sidebar .ms-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7aa8 0%, #a06af9 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
}
.modern-sidebar .ms-title {
    font-weight: 600;
    color: #34394a;
}
.modern-sidebar .ms-nav { margin-top: 8px; }
.modern-sidebar .ms-menu { margin: 0; padding: 0; }
.modern-sidebar .ms-item { list-style: none; margin-bottom: 6px; }
.modern-sidebar .ms-item.has-children > .ms-link { position: relative; }
.modern-sidebar .ms-caret { margin-left: auto; font-size: 14px; opacity: 0.6; }

.modern-sidebar .ms-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #3f475a;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.modern-sidebar .ms-link:hover {
    background: #f2f4f8;
    box-shadow: 0 6px 16px rgba(17,24,39,0.06);
}
.modern-sidebar .ms-item.is-active .ms-link {
    background: linear-gradient(180deg, #eef3ff 0%, #e8f0ff 100%);
    border-color: rgba(52, 152, 219, 0.25);
}
.modern-sidebar .ms-icon { color: #6b7280; font-size: 18px; }
.modern-sidebar .ms-text { flex: 1; font-weight: 500; }
.modern-sidebar .ms-badge {
    background: #ff6b6b;
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 18px;
}

.modern-sidebar .ms-submenu { padding-left: 8px; margin-top: 6px; }
.modern-sidebar .ms-sublink {
    display: block;
    padding: 8px 12px 8px 40px;
    color: #606b85;
    text-decoration: none;
    border-radius: 10px;
}
.modern-sidebar .ms-sublink:hover { background: #f5f7fb; color: #353c4f; }

@media (max-width: 991px) {
    .modern-sidebar { width: 100%; border-radius: 12px; }
}
:root {
    /* --theme-color: var(--theme-color); */
    /* --theme-color: #000f2d; */
    /* --theme-color: #041e3c; */
    --theme-color: #050b19;
    /* --theme-color: rgb(3, 16, 59); */
    --white-color: #ffffff;
    --logo-orange: #fc8a20;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

.row {
    --bs-gutter-x: 2rem;
}

a {
    color: #021523;
    position: relative;
    text-decoration: none;
}

a:focus,
a:hover {
    color: var(--teal) !important;
    text-decoration: none;
}

article a {
    text-decoration: underline;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h4,
h5,
h6 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.6;
}

ul {
    margin-bottom: 0;
    padding-left: 1.8rem !important;
}

li {
    position: relative;
}

::selection {
    background: #021523;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #021523;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #021523;
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: 0 !important;
}

hr {
    background: #e5e8ec;
    margin-bottom: 15px;
    margin-top: 15px;
    opacity: 0.1;
}

.form-control {
    border-radius: 3px;
    color: #021523;
    font-size: 13px;
    margin-top: 15px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #777;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control::placeholder {
    color: #777;
}

section {
    background-color: #FFF;
    padding: 100px 0 50px;
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.theme-color {
    color: var(--theme-color);
}

.white-txt {
    color: #fff !important;
}

.cookie-consent {
    border-top: 3px solid var(--theme-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    margin: 0 20px 20px;
    padding: 20px !important;
    float: right;
    left: auto;
    background: #fff;
    color: #333 !important;
}

body {
    color: #555;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 400;
    overflow-x: hidden;
    letter-spacing: -0.05px;
    text-rendering: optimizeLegibility;
}

.h1,
h1 {
    font-size: 40px;
}

.h2,
h2 {
    font-size: 30px;
}

.h3,
h3 {
    font-size: 24px;
}

.h4,
h4 {
    font-size: 20px;
}

.h5,
h5 {
    font-size: 18px;
}

.h6,
h6 {
    font-size: 16px;
}

.light {
    font-weight: 300 !important;
}

.regular {
    font-weight: 400 !important;
    color: var(--theme-color);
}

.semi-bold {
    font-weight: 500 !important;
    color: var(--theme-color);
}

.bold {
    font-weight: 700 !important;
    color: var(--theme-color);
}

p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
    font-family: "Rubik", sans-serif;
}

p.lead {
    font-size: 18px;
}

li {
    font-weight: 400;
}

.ml-0 {
    margin-left: 0 !important
}

.pl-0 {
    padding-left: 0 !important
}

.button {
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1;
    padding: 13px 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9;
}

.button.sm {
    font-size: 12px;
    padding: 10px 15px;
}

.button.md {
    font-size: 13px;
    padding: 12px 20px;
}

.button.lg {
    font-size: 16px;
    padding: 18px 30px;
}

.button.xlg {
    font-size: 16px;
    padding: 24px 60px;
}

.button.style1,
a.button.style1 {
    background-color: var(--logo-orange);
    color: #fff;
}

.button.style1:hover,
a.button.style1:hover {
    background-color: var(--white-color);
    color:  var(--logo-orange) !important;
}
/* .button.style1:hover,
a.button.style1:hover {
    background-color: var(--theme-color);
    color: #e5e8ec !important;
} */


.button.style4,
a.button.style4 {
    background-color: var(--theme-color);
    /* border-color: var(--white-color); */
    border-color: var(--logo-orange);
    color: #fff;
}

a.button.style4:hover {
    background-color: var(--white-color);
    color: var(--theme-color) !important;
    border-color: var(--white-color);
}

.button.style5,
a.button.style5 {
    background-color: #FFF;
    /* border-color: var(--theme-color); */
    color: var(--theme-color);
}
.button.style5:hover,
a.button.style5:hover {
    background-color: var(--theme-color);
    color: #e5e8ec !important;
    border-color: var(--logo-orange);
}

.button.style2,
a.button.style2 {
    background-color: #FFF;
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.button.style2:hover,
a.button.style2:hover {
    background-color: var(--theme-color);
    color: #e5e8ec !important;
    border-color: var(--logo-orange);
}

.button.style3,
a.button.style3 {
    background-color: #111;
    color: #fff;
}

.button.style3:hover,
a.button.style3:hover {
    background-color: #111;
    color: #e5e8ec !important;
}

.button:hover {
    box-shadow: 0 3px rgba(44,44,44,0.2);
}

.button.lg:hover {
    box-shadow: 0 5px rgba(44,44,44,0.2);
}

.grey-bg {
    background-color: #cdd2de;
}

.heading {
    font-weight: 400;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    position: relative;
}

.header-middle {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 60px;
    /* background-color: rgba(4, 30, 60, 0.7); */
    background-color: var(--theme-color);
}

.header-middle.fixed {
    /* background-color: rgba(4, 30, 60, 0.7); */
    background-color: var(--theme-color);
    box-shadow: 0 5px 10px rgba(44,44,44,0.1);
    line-height: 60px;
    min-height: 60px;
    position: fixed;
    z-index: 999999;
    top: 0;
    width: 100%;
    animation-name: fadeInDown;
    animation-duration: 0.25s;
}

.header-middle .logo {
    max-width: 150px;
}

.offset-menu-wrapper li {
    display: inline-block;
}

.dropdown-menu {
    padding-left: 0 !important;
}

.header-search .dropdown-menu li {
    font-size: 13px;
}

.header-search .dropdown-menu li a {
    padding: 7px 10px !important;
}

.body__overlay {
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s,
        transform 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 99999;
}

.body__overlay.is-visible {
    opacity: 1;
    transition: opacity 0.3s ease 0s, visibility 0s ease 0s,
        transform 0.3s ease 0s;
    visibility: visible;
}

.header-menu {
    background: #fff;
}

.main-menu {
    position: relative;
}

.main-menu ul li {
    display: inline-block;
    list-style: none;
}

.main-menu ul li a {
    font-size: 18px;
    /* color: #5F6673; */
    color: #c7c7c7;
    font-weight: 400;
    display: block;
    padding: 0 15px;
}

.has-dropdown .dropdown{
    background-color:#fff;
    border:1px solid #e5e8ec;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(44,44,44,0.1);
    width:200px;
    opacity:0;
    padding:10px!important;
    position:absolute;
    transition: all 0.3s;
    visibility:hidden;
    z-index:999
}
.dropdown.show,
.has-dropdown:hover>.dropdown{
    opacity:1;
    visibility:visible
}
.has-dropdown .dropdown li{
    display:block;
    line-height:1;
    white-space:nowrap
}
.has-dropdown .dropdown li a{
    color: #5F6673;
    display: block;
    padding:11px 12px;
}

.has-dropdown:after{
    color:var(--theme-color);
    content:'\e64b';
    font-family:themify;
    font-size:10px;
    margin-left:7px;
    position:absolute;
    top:0;
    right:0
}

.offset-menu-wrapper {
    padding-left: 0;
    text-align: right;
    width: 100%;
}

.offset-menu-wrapper li {
    display: inline-block;
    font-size: 16px;
    padding: 0 10px;
}

.offset-menu-wrapper li i {
    font-size: 18px;
    /* color: #999; */
    color: #c7c7c7;
}

.offset-menu-wrapper li a:hover i {
    color: var(--theme-color);
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    /* background: linear-gradient(20deg, rgba(96, 253, 157, 0.1) 80%, rgba(113, 102, 238, 0.05) 100%); */
    /* background: linear-gradient(20deg, var(--theme-color) 80%, rgba(29, 27, 47, 0.05) 100%); */
    background-color: var(--theme-color);
    overflow-y: hidden;
    text-align: left;
}

/* @media all and (min-width:1100px){
    .hero-text {
        padding: 0 5rem;
    }
} */

.hero-img {
    /* border: 2px solid #393939; */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 44, 44, 0.3);
}

.feature {
    margin-bottom: 30px;
}

.icon {
    align-items: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    font-size: 30px;
    height: 80px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 80px;
    color: #fff;
}

.feature h3 {
    font-size: 15px;
}

.feature2 {
    display: flex;
    align-items: center;
    min-height: 100px;
}

.feature2 .icon {
    background-color: #FFF;
    font-size: 20px;
    height: 50px;
    margin-right: 10px;
    max-width: 50px;
    min-width: 50px;
    color: var(--theme-color);
}

.feature2 h4 {
    font-weight: 400;
}

.place-cta {
    background-color: #0084B4;
    border-radius: 15px;
    color: #FFF;
    overflow: hidden;
    padding: 50px;
    position: relative;
}

.negative-margin {
    margin-bottom: -100px;
    z-index: 999;
}

@media all and (min-width: 991px) {
    .place-cta::after {
        content: '';
        background-color: var(--theme-color);
        position: absolute;
        right: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        top: -250px;
    }
}

.review {
    background: #FFF;
    margin-bottom: 70px;
    padding: 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #f2b827;
}

.reviewer {
    color: #0084B4;
    margin-top: 30px;
}

.reviewer:before {
    content: '-by';
    color: #999;
    margin-right: 5px;
}

.reviewer img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
}

.swiper-nav-prev {
    background-image: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
    position: absolute;
    z-index: 999;
    background: rgb(255, 255, 255);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    top: 55%;
    left:-15px;
}

.swiper-nav-next {
    background-image: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
    position: absolute;
    z-index: 999;
    background: rgb(255, 255, 255);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    top: 55%;
    right: -15px;
}


.swiper-pagination-bullet-active {
    background: var(--theme-color);
    width: 30px;
    border-radius: 30px;
}

.addon-img .badge {
    position: absolute;
    left: 15px;
    top: 25px;
}

.accordion-item {
    box-shadow: -1px 5px 15px 0 rgba(0,0,0,.07);
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #FFF;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.07);
}

.accordion-button:focus {
    border-color: transparent;
}

#scrolltotop {
    border: 2px solid #e5e8ec;
    border-radius: 50%;
    bottom: 40px;
    color: var(--theme-color);
    cursor: pointer;
    display: none;
    font-size: 14px;
    height: 40px;
    text-align: center;
    position: fixed;
    right: 30px;
    width: 40px;
    z-index: 999;
    line-height: 40px;
    background: #fff;
    transition: 0.5s;
}

#scrolltotop:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.footer-wrapper {
    background-color: #e5e8ec;
    padding: 70px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo img {
    max-width: 150px;
}

.footer-widget h3 {
    color: #5F6673;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(225px,1fr));
    list-style: none;
    padding-left: 0;
}

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

.footer-menu li a {
    font-size: 14px;
}

.footer-menu li a img {
    background-color: #FFF;
    border-radius: 50%;
    margin-right: 10px;
    padding: 5px;
    width: 40px
}

.footer-social li,
.social-share li {
    display: inline-block;
    padding-right: 15px;
}

.footer-social li a {
    font-size: 16px;
}

.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.copyright {
    font-size: 12px;
}

@media all and (max-width: 1024px) {
    section {
        padding: 30px 0 15px;
    }

    .cookie-alert {
        width: 80%;
    }
}

@media all and (max-width: 1023px) {
    .header-middle {
        min-height: 70px;
    }

    .logo {
        float: left;
    }

    #mobile-nav {
        background-color: #fff;
        height: 100%;
        left: -300px;
        opacity: 0;
        overflow-y: scroll;
        padding: 20px;
        position: fixed;
        top: 0;
        visibility: hidden;
        width: 300px;
        z-index: 999999;
    }

    #mobile-nav.show {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    #mobile-nav ul {
        padding-left: 0;
    }

    #mobile-nav ul li {
        display: block;
        line-height: 2;
    }

    #mobile-nav ul li a {
        color:#021523;
        font-size: 24px;
    }

    .has-dropdown .dropdown{
        border: none;
        box-shadow: none;
        width: auto;
        margin-left: 10px
    }

    .has-dropdown .dropdown li a {
        padding: 0 12px;
    }

    .has-dropdown::after {
        font-size: 16px;
        top: 15px;
    }

    .mobile-menu-icon {
        color: var(--theme-color);
        cursor: pointer;
        font-size: 18px;
        float: left;
        margin-right: 15px;
    }
}

@media all and (max-width: 991px) {
    .offset-menu-wrapper li:first-child {
        display:none
    }

    .button {
        padding: 13px 20px
    }

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

    .heading {
        font-size: 28px
    }

    h2 {
        font-size: 22px
    }

    .place-cta {
        margin: 0 5px;
        padding: 30px 15px;
        text-align: center;
    }

    .swiper-nav-prev {
        bottom: 0;
        left: 5px;
        top: auto
    }

    .swiper-nav-next {
        bottom: 0;
        right: 5px;
        top: auto
    }
}

@media all and (max-width: 767px) {
    .header-middle .logo {
        max-width: 150px;
    }

    .footer-widget h3 {
        margin-top: 30px;
    }
}

@media all and (max-width: 675px) {
    .cookie-alert {
        width: 100%;
    }
}

@media all and (max-width: 320px) {

}

.pricing {
    background-color: #FFF;
    text-align: center;
}
.pricing-header {
    background-color: var(--theme-color);
    font-size: 24px;
    padding: 20px 15px;
}
.pricing-header .h3 {
    color: #FFF !important;
}
.pricing-details p {
    padding: 20px 15px;
}
.pricing-details p i {
    font-weight: bold;
}
.pricing-details p .ti-check {
    color: green
}
.pricing-details p .ti-close {
    color: red
}
.pricing-details p:nth-child(even) {
    background-color: #ececec;
}
.price {
    align-items: center;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    min-height: 130px;
    padding: 20px 15px;
}

.pricing-m {
    background-color: #FFF;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.pricing-m .pricing-header {
    align-items: center;
    background-color: transparent;
    display: flex;
    font-size: 24px;
    padding: 15px;
    width: 70%;
}
.pricing-m .pricing-header .h3 {
    color: #141414 !important;
}
.pricing-m .price {
    min-height: 80px;
}
.pricing-m .price span {
    color: #2aa6de;
    display: block;
    font-size: 20px;
}
.currency-code {
    color: #666;
    font-size: 14px;
}
.pricing-m .pricing-details:first-child {
    width: 70%
}
.pricing-m .pricing-details:last-child {
    text-align: center;
    width: 30%
}
.pricing-m .signup {
    padding: 15px;
}
.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-switch {
    padding-left: 2.25rem;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    padding-left: 10px;
    vertical-align: top;
}
.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 2rem;
    pointer-events: all;
    border-radius: .5rem;
}
.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 2rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #adb5bd;
}
.custom-switch .custom-control-label::after {
    top: calc(.25rem - 1px);
    left: calc(-2.25rem);
    width: calc(1.15rem);
    height: calc(1.15rem);
    background-color: #adb5bd;
    border-radius: .5rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
}
.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat;
    background-color: rgba(0, 0, 0, 0);
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    left: calc(-2rem);
    -webkit-transform: translateX(.75rem);
    transform: translateX(.75rem);
}

.h6, .h4, h3{
   color: var(--theme-color);
}

.flex-container {
    display: flex;
    justify-content: flex-start;
  }

  .flex-item {
    /* width: 100px;
    height: 100px; */
    background-color: #ccc;
  }


  .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type=hidden] + label::before, .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
    border-color: #007bff
}

.icheck-primary > input:first-child:not(:checked):not(:disabled):focus + input[type=hidden] + label::before, .icheck-primary > input:first-child:not(:checked):not(:disabled):focus + label::before {
    border-color: #007bff
}

.icheck-primary > input:first-child:checked + input[type=hidden] + label::before, .icheck-primary > input:first-child:checked + label::before {
    background-color: #007bff;
    border-color: #007bff
}

.icheck-primary a{
    color: #007bff;
}


.contact-details i {
    color: var(--theme-color) !important;
    margin-right: 15px !important;
}
.contact-form {
    background-color: #FFF;
    border-radius: 5px;
    padding: 50px;
}

.recommended-package{
    /* background: rgba(37, 180, 91, 0.2) !important; */
    background: rgba(255, 179, 1, 0.3) !important;
}
.recommended-btn{
    /* background-color: var(--theme-color);
    color: #e5e8ec !important;
    border-color: var(--logo-orange); */
    background-color: var(--theme-color) !important;
    color: #e5e8ec !important;
    border-color: var(--logo-orange) !important;
    box-shadow: 0 3px rgba(44,44,44,0.2);
}

/* ===== Features section (modern) ===== */
#features { background: #fff; }
#features .section-head { max-width: 760px; margin: 0 auto 2rem; }
#features .section-head .eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(4, 30, 60, 0.12);
    border-radius: 999px;
    font-size: 12px;
    color: var(--theme-color);
    background: rgba(4, 30, 60, 0.04);
}
#features .section-head h3 { color: var(--theme-color); margin-top: 1rem; }
#features .lead { color: #5F6673; }

.features-visual {
    position: relative;
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(44,44,44,0.06);
}
.features-visual .preview {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(44,44,44,0.12);
}
.features-visual .badge-stack { display: none; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #fff;
    color: var(--theme-color);
    border: 1px solid rgba(4, 30, 60, 0.12);
    box-shadow: 0 4px 10px rgba(44,44,44,0.08);
}
.chip i { color: var(--logo-orange); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (max-width: 991px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-left: 3px solid var(--logo-orange);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 6px 16px rgba(44,44,44,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(44,44,44,0.08);
}
.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}
.feature-card h4 { color: var(--theme-color); font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: #5F6673; }

/* ===== Quick features strip ===== */
#features-quick { padding-top: 40px; padding-bottom: 40px; }
#features-quick .row { row-gap: 16px; }
.qf-card {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 16px rgba(44,44,44,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    height: 100%;
}
.qf-card:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(44,44,44,0.08); }
.qf-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: #fff;
    font-size: 18px;
}
.qf-title { margin: 0; color: var(--theme-color); font-size: 14px; font-weight: 500; }

/* ===== Pricing cards ===== */
#packages { background: #f6f8fb; }
#packages .nav-tabs { border-bottom: none; }
#packages .nav-tabs .nav-link { color: #5F6673; border: none; margin: 0 6px; }
#packages .nav-tabs .nav-link.active { color: var(--theme-color); border-bottom: 2px solid var(--logo-orange); }

/* Pricing segmented control (Mobile/POS) */
#packages .segmented-control {
    display: inline-flex;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
#packages .segmented-control .segment {
    appearance: none;
    border: 0;
    background: transparent;
    color: #334155;
    padding: 8px 14px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
}
#packages .segmented-control .segment:hover {
    background: rgba(2, 8, 23, 0.06);
}
#packages .segmented-control .segment.active {
    background: #fff;
    color: var(--theme-color);
    box-shadow: 0 1px 2px rgba(2,6,23,0.06), 0 1px 1px rgba(2,6,23,0.04);
}

.pricing-grid { margin-top: 10px; }
.plan-card {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(44,44,44,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(44,44,44,0.1); }
.plan-card.is-recommended { border-color: rgba(252, 138, 32, 0.5); }

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid rgba(4,30,60,0.06);
}
.plan-title { display: flex; flex-direction: column; }
.plan-name { font-weight: 600; color: var(--theme-color); font-size: 16px; }
.plan-type { font-size: 12px; color: #5F6673; }
.plan-badge { background: var(--logo-orange); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 999px; }

.plan-price { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 16px; }
.plan-price .label { color: #5F6673; font-size: 12px; margin-right: 6px; }
.plan-price .currency-code { color: #5F6673; font-size: 12px; margin-right: 4px; }
.plan-price .amount { color: var(--theme-color); font-weight: 700; font-size: 22px; }
.plan-price .per { color: #5F6673; font-size: 12px; }

.plan-feature-list { list-style: none; padding: 0 16px; margin: 0; }
.plan-feature-list li { display: flex; align-items: center; gap: 8px; padding: 8px 0; color: #5F6673; font-size: 14px; }
.plan-feature-list i.ti-check { color: #28a745; }
.plan-feature-list i.ti-close { color: #dc3545; }

.plan-cta { display: flex; gap: 8px; padding: 16px; border-top: 1px solid rgba(4,30,60,0.06); }
.plan-cta .button { flex: 1; text-align: center; }

/* Modules (Included Features) pills */
.plan-modules { padding: 0 16px 12px; }
.plan-modules .modules-label { display:block; font-size:12px; font-weight:600; color:#5F6673; margin-bottom:6px; }
.modules-pills { display:flex; flex-wrap:wrap; gap:6px; }
.module-pill { background:#f1f5f9; color:#041e3c; font-size:11px; padding:4px 8px; border-radius:999px; line-height:1.2; border:1px solid rgba(4,30,60,0.08); cursor:default; }
.module-pill.more-toggle { background:#fff; cursor:pointer; color:var(--theme-color); border-color: var(--logo-orange); }
.module-pill.more-toggle:hover { background: var(--logo-orange); color:#fff; }
.module-pill.view-less { background:#fff; cursor:pointer; color:#dc3545; border-color:#dc3545; }
.module-pill.view-less:hover { background:#dc3545; color:#fff; }

/* ===== Signup form (modern) ===== */
#customer-signup .signup-card {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(44,44,44,0.06);
    padding: 18px 18px 22px;
}
#customer-signup .card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
#customer-signup .card-head h4 { margin: 0; color: var(--theme-color); }
#customer-signup .chip { font-size: 11px; }
#customer-signup label { font-weight: 600; color: #334155; font-size: 13px; }
#customer-signup .modern-input,
#customer-signup .input-group.modern .form-control {
    border: 1px solid rgba(4, 30, 60, 0.14);
    border-radius: 10px;
    padding: 10px 12px;
    transition: box-shadow .15s ease, border-color .15s ease;
}
#customer-signup .input-group.modern { display: flex; align-items: stretch; }
#customer-signup .input-group.modern .input-group-btn { display:flex; align-items:center; padding: 8px 8px; margin-top: 13px; border:1px solid rgba(4,30,60,0.14); border-left:none; border-radius: 0 10px 10px 0; }
#customer-signup .modern-input:focus,
#customer-signup .input-group.modern .form-control:focus {
    outline: none;
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 3px rgba(252, 138, 32, 0.18);
}
#customer-signup .input-group.modern .input-group-text {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.14);
    border-radius: 10px;
    padding: 0;
    display: flex;
    align-items: center;
}
#customer-signup .input-group.modern .form-control { border-top-right-radius: 0; border-bottom-right-radius: 0; }
#customer-signup .input-group.modern .input-group-text { border-top-left-radius: 0; border-bottom-left-radius: 0; }
#customer-signup .input-group.modern .form-control { border-right: none; }
#customer-signup .input-group.modern .input-group-text { border-left: none; }
#customer-signup .input-group.modern .button { border-radius: 10px; }
#customer-signup .input-group.modern .input-group-text .button {
    height: auto;
    border-radius: 0 10px 10px 0;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}
#customer-signup .input-group.modern .input-group-text { padding: 0 6px; }
#customer-signup .modern-terms { margin-top: 6px; }
#customer-signup .button.style4 { font-weight: 600; }

/* ===== Contact section (modern) ===== */
#contact .contact-card {
    background: #fff;
    border: 1px solid rgba(4, 30, 60, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(44,44,44,0.06);
    padding: 18px 18px 22px;
    margin-bottom: 16px;
}
#contact .card-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
#contact label { font-weight:600; color:#334155; font-size:13px; }
#contact .modern-input { border:1px solid rgba(4,30,60,0.14); border-radius:10px; padding:10px 12px; transition: box-shadow .15s ease, border-color .15s ease; }
#contact .modern-input:focus { outline:none; border-color: var(--logo-orange); box-shadow: 0 0 0 3px rgba(252,138,32,0.18); }
#contact .chip { font-size:11px; }
#contact .modern-map .gmap_canvas iframe { border-radius: 12px; box-shadow: 0 6px 16px rgba(44,44,44,0.06); }
