/* 1. Custom Variables */
:root {
    --font-primary: 'Abhaya Libre', serif;
    --font-secondary: 'Poppins', sans-serif;
    --primary-orange: #f26b38;
    --secondary-blue: #104981;
    --light-bg: #10498108;
    --text-dark: #352822;
    --text-para: #373737;
    --text-muted: #5F5F5F;
    --text-light-greeen: #58A100;
    --bg-light-orange: rgba(243, 118, 59, 0.1);
    --bg-light-green: #D6FFDA;
    --bg-gray-custom: #8E8E8E;
}

/* 2. Global Text and Body Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
}

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

.bg-primary-custom {
    background-color: var(--primary-orange) !important;
}

.bg-light-blue {
    background-color: var(--light-bg);
}

.bg-light-orange {
    background-color: var(--bg-light-orange) !important;
}

.bg-light-green {
    background-color: var(--bg-light-green) !important;
}

.bg-gray-custom {
    background-color: var(--bg-gray-custom) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-blue) !important;
}

.text-primary-custom {
    color: var(--primary-orange) !important;
}

.text-secondary-custom {
    color: var(--secondary-blue) !important;
}

.text-green-custom {
    color: var(--text-light-greeen) !important;
}

.text-para {
    color: var(--text-para) !important;
}

.text-dark-custom {
    color: var(--text-dark) !important;
}

.text-muted-custom {
    color: var(--text-muted) !important;
}

.border-secondary-custom {
    border-color: var(--secondary-blue) !important;
}

.border-green-custom {
    border-color: var(--text-light-greeen) !important;
}

.border-gray-custom {
    border-color: var(--bg-gray-custom) !important;
}

.shadow-custom {
    box-shadow: 3px 7px 16px 0px #00000008;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-22 {
    font-size: 22px;
}

.fs-26 {
    font-size: 26px;
}

.w-20 {
    width: 20px;
}

/* 3. Headings Styling (Using Primary Font) */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 600;
}

.nav-link,
p,
.lead,
small {
    font-family: var(--font-secondary);
}

.navbar-brand img {
    max-width: 170px;
    width: 100%;
    height: auto;
}

/* 4. Custom Component Overrides */
.bg-custom-light {
    background-color: var(--light-bg);
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    border: 1px solid var(--primary-orange) !important;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: white;
    color: var(--primary-orange);
}

.btn-secondary-custom {
    background-color: var(--secondary-blue);
    border: 1px solid var(--secondary-blue) !important;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: var(--secondary-blue);
}

.btn-outline-primary-custom {
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    background-color: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-orange);
    color: white;
}

header {
    background-color: #f7f9fc;
    z-index: 99;
}

section {
    scroll-margin-top: 110px;
}

/* Hero Section Styling */
.hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    background-image: url('../images/hero-banner-bg.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    overflow-x: hidden;
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f7f9fc;
    opacity: 1;
    z-index: -1;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 171px;
    height: 171px;
    background: #F3763B;
    filter: blur(150px);
    border-radius: 50%;
    top: 30%;
    right: -100px;
}

.divider {
    border-bottom: 1px solid #E5E7EB99;
    margin: 10px 0px;
}

/* Phone Mockup Styling */
.phone-mockup-img {
    max-width: 320px;
    height: auto;
}

.seperator-icon {
    max-width: 420px;
}


.seperator-icon-left {
    max-width: 380px;
}

.logo-wrapper {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background-position: center;
}


.logo-wrapper.width-150 {
    max-width: 150px;
}

.arrow-icon {
    position: absolute;
    top: 0;
    right: 10%;
    max-width: 100px;
}

/* Feature Card Styling */
.features-wrapper {
    position: relative;
}

.features-wrapper::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 200px;
    background: #F3763B;
    filter: blur(150px);
    border-radius: 50%;
    top: -50px;
    left: 0;
    z-index: -1;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gray-arrow-icon {
    max-width: 120px;
    transform: rotate(4.14deg);
    position: absolute;
    top: 40px;
    left: 90%;
    z-index: -1;
}

/* Benefits section */

.benefits-wrapper {
    position: relative;
    overflow-x: hidden;
}

.benefits-wrapper::before {
    content: "";
    position: absolute;
    width: 30%;
    height: 50%;
    background: url('../images/dots-bg.svg') no-repeat;
    background-position: top right;
    background-size: contain;
    top: -50px;
    right: 0;
    z-index: 0;
}

.benefit-box {
    background: #fff;
    box-shadow: 0px 0px 6px 0px #0000001A;
    border-radius: 20px;
}

.benefit-box .icon-wrapper {
    transition: all 0.3s;
}

.benefit-icon {
    width: 20px;
}

.benefit-box span {
    transition: all 0.3s;
}

.benefit-box:hover {
    background-color: var(--primary-orange);
}

.benefit-box:hover .icon-wrapper {
    background-color: #FFF !important;
}

.benefit-box:hover span {
    color: #FFF !important;
}

/* Problem and solution */

.blue-box-wrapper,
.blue-box-wrapper .header,
.green-box-wrapper,
.green-box-wrapper .header {
    box-shadow: 0px 0px 20px 0px #0000001A;
}

.blue-box-wrapper .icon-wrapper {
    background-color: #10498133;
    padding: 11px;
}

.blue-box-wrapper ul li {
    padding: 20px;
    border-bottom: 1px solid #F3763B29;
    gap: 12px;
}

.ps-icon {
    width: 28px;
}

.blue-box-wrapper .arrow-icon {
    width: 16px;
    position: unset;
}

.green-box-wrapper .icon-wrapper {
    background-color: #4B9B651A;
    padding: 11px;
}

.green-box-wrapper ul li {
    padding: 20px;
    border-bottom: 1px solid #58A1004D;
    gap: 12px;
}

.blue-box-wrapper ul li:last-child,
.green-box-wrapper ul li:last-child {
    border-bottom: none;
}

.blue-box-wrapper ul li:first-child,
.green-box-wrapper ul li:first-child {
    padding-top: 0;
}

.blue-box-wrapper li span,
.green-box-wrapper li span {
    line-height: 1.2;
}

/* Price section */

.price-box-wrapper {
    box-shadow: 0px 0px 6px 0px #0000001A;
    border-radius: 26px;
    background-color: #FFFFFF;
    height: 100%;
    border: 1px solid #0000001A;
}

.price-box-wrapper .card-header .icon-wrapper {
    background-color: #FFF1E0;
    width: 40px;
    height: 40px;
}

.price-box-wrapper .card-header {
    border-radius: 26px 26px 0px 0px;
    background-color: #F8E2C8;
    padding: 20px;
    transition: all 0.3s;
}

.price-box-wrapper .card-body {
    padding: 20px;
}


.price-box-wrapper .card-header span {
    transition: all 0.3s;
}

.price-box-wrapper.active:hover .card-header {
    background-color: var(--primary-orange);
    color: #FFF !important;
}

.price-box-wrapper.active:hover .card-header span {
    color: #FFF !important;
}

.price-box-wrapper.active:hover {
    border: 1px solid var(--primary-orange);
}

.price-box-wrapper.active:hover button {
    background-color: var(--secondary-blue) !important;
    color: #FFF !important;
}

.author-img {
    width: 61px;
    height: 61px;
    object-fit: cover;
    border-radius: 50px;
}

/* FI wrapper */

.fi-wrapper {
    position: relative;
}

.fi-wrapper::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 150px;
    background: #F3763B;
    filter: blur(150px);
    border-radius: 50%;
    top: 50px;
    left: -100px;
    z-index: 1;
}

.fi-wrapper::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 150px;
    background: #F3763B;
    filter: blur(150px);
    border-radius: 50%;
    top: 100px;
    right: -100px;
    z-index: 0;
}

/* Contact */

.contact-box {
    padding: 40px;
    box-shadow: 2px 7px 14px 0px #DADADA99;
    border-radius: 24px;
}

.bg-gradient-custom {
    background: linear-gradient(93.26deg, #F3763B 1.27%, #D74500 99.5%);
}

.contact-box .height-50 {
    height: 50%;
}

.contact-img {
    max-width: 400px;
    margin-bottom: -50%;
}

.contact-box .crmWebToEntityForm {
    padding: 0px !important;
}

.contact-box .zcwf_lblLeft .zcwf_row {
    display: flex;
    flex-direction: column;
}

.contact-box .zcwf_lblLeft .zcwf_col_fld,
.contact-box .zcwf_lblLeft .zcwf_col_fld input[ type=text],
.contact-box [ type=password],
.contact-box .zcwf_lblLeft .zcwf_col_fld textarea {
    width: 100%;
}

.contact-box .zcwf_lblLeft .zcwf_col_lab {
    font-family: var(--font-secondary) !important;
    font-size: 16px;
    color: #000;
}

.contact-box .zcwf_lblLeft .zcwf_col_fld input[ type=text],
.contact-box [ type=password],
.contact-box .zcwf_lblLeft .zcwf_col_fld textarea {
    border: 0.8px solid #CECECE !important;
    border-radius: 50px;
    padding: 8px 15px;

    font-size: 16px;
    color: var(--text-muted);
}

.contact-box .zcwf_lblLeft .zcwf_col_fld textarea {
    border-radius: 20px;
}

.contact-box .zcwf_lblLeft .zcwf_button {
    background: #FFF !important;
    border: 1px solid var(--secondary-blue) !important;
    color: var(--secondary-blue) !important;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    transition: all 0.3s;
}

.contact-box .formsubmit.zcwf_button {
    background: var(--secondary-blue) !important;
    border: 1px solid var(--secondary-blue) !important;
    color: #FFF !important;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    transition: all 0.3s;
}

.contact-box .formsubmit.zcwf_button:hover {
    background-color: #FFF !important;
    color: var(--secondary-blue) !important;
}

.contact-box .zcwf_lblLeft .zcwf_button:hover {
    background-color: var(--secondary-blue) !important;
    color: #FFF !important;
}


.footer-logo {
    max-width: 215px;
}

footer li {
    line-height: 1.3;
}

footer li a {
    transition: all 0.3s;
}

footer li a:hover {
    color: var(--primary-orange) !important;
}

/* Team section */

.team-img-wrapper {
    width: 100%;
    height: 320px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
}


.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 1199.98px) {
    .phone-mockup-img {
        max-width: 280px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100px;
        z-index: 5;
        background: #FFF;
        width: 100%;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0px 0px 20px 0px #0000001A;
        transition: all 0.3s;
    }

}


@media (max-width: 991.98px) {
    .hero-section::before {
        height: 60%;
    }

    .phone-mockup-img {
        max-width: 250px;
    }
}

@media (max-width: 767.98px) {
    .hero-section::before {
        height: 55%;
    }

    .hero-section {
        background-position: 100% 80%;
    }

    .phone-mockup-img {
        max-width: 200px;
    }

    .md-hide-border {
        border: none !important;
    }

    .team-img-wrapper {
        height: auto;
        margin-bottom: 10px;;
    }
}


@media (max-width: 576.98px) {
    .fs-14 {
        font-size: 12px;
    }

    .fs-15 {
        font-size: 12px;
    }

    .fs-16 {
        font-size: 13px;
    }

    .fs-18 {
        font-size: 14px;
    }

    .fs-22 {
        font-size: 16px;
    }

    .fs-26 {
        font-size: 20px;
    }

    .hero-section::before {
        height: 69%;
    }

    .hero-section {
        padding: 2rem 0px;
    }

    .contact-box .height-50 {
        height: auto;
    }

    .contact-img {
        max-width: 90%;
    }

    .contact-box {
        padding: 20px;
    }

    .author-img {
        width: 40px;
        height: 40px;
    }

    .logo-wrapper {
        flex: 0 0 45%;
        height: 30px;
    }

    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-outline-primary-custom {
        padding: 8px 12px;
        font-size: 12px !important;
    }

    .navbar-brand img {
        max-width: 140px;
    }

    section {
        scroll-margin-top: 80px;
    }

    .seperator-icon,
    .seperator-icon-left {
        max-width: 80%;
    }

    .top-wrapper {
        border-radius: 32px 32px 0px 0px !important;
    }

    .bottom-wrapper {
        border-radius: 0px 0px 32px 32px !important;
        width: 100%;
    }

    .benefit-box {
        border-radius: 16px;
    }

    .blue-box-wrapper .header,
    .green-box-wrapper .header {
        padding: 12px !important;

    }

    .blue-box-wrapper .icon-wrapper,
    .green-box-wrapper .icon-wrapper {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
    }

    .blue-box-wrapper .icon-wrapper img,
    .green-box-wrapper .icon-wrapper img {
        width: 100%;
        height: auto;
    }

    .ps-icon {
        width: 20px;
    }

    .security-box {
        border-radius: 20px !important;
    }


}

.export-btn-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}
.talk-btn svg path {
    transition: all 0.3s;
}
.talk-btn:hover svg path {
    fill: #104981;
}