:root {
    --primary-color: #2c1e0d;
    --secondary-color: #f6991c;
    --white: #fff;
    --grey444: #444444;
    --font-Inter: "Inter Tight", sans-serif;
    --font-Poppins: "Poppins", sans-serif;
    --font-Manrope: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: var(--font-Poppins);
}

.container-fluid {
    margin: 0 auto;
    padding-inline: 20px;
    width: 1560px;
    max-width: 100%;
}

.container {
    margin: 0 auto;
    padding-inline: 20px;
    width: 1300px;
    max-width: 100%;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    margin-top: 0;

    @media screen and (max-width: 991px) {
        font-size: 30px;
        line-height: normal;
    }

    @media screen and (max-width: 767px) {
        font-size: 26px;
    }
}

h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 0;

    @media screen and (max-width: 991px) {
        font-size: 20px;
    }
}

h4 {
    margin-top: 0;
}

h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 0;

    @media screen and (max-width: 991px) {
        font-size: 20px;
    }
}

h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 0;

    @media screen and (max-width: 991px) {}
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    @media screen and (max-width: 991px) {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    max-width: 100%;
}

/* Desktop Navigation */

button.lc_mobile_menu_btn,
.lc_mobile_menu {
    display: none;

    @media screen and (max-width: 991px) {
        display: block;
        border: 0;
        background: transparent;
    }
}

ul.nav-menu.menu {
    display: flex;

    @media screen and (max-width: 991px) {
        display: none;
    }

}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.lc_mobile_menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 320px;
    z-index: 99;
    background-color: #fff;
    top: 0;
    padding: 50px 25px;
    left: -100%;

    transition: left 0.3s ease-in-out;

    box-shadow: 0 0 10px rgba(133, 133, 133, 0.2);
}

.lc_mobile_menu.open {
    left: 0;
}

.lc_mobile_menu .menu>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
    margin-right: 0;
}

.lc_mobile_menu .menu>li>a {
    padding-block: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* Mobile Button */
.lc_mobile_menu_btn {
    background-color: transparent !important;
    height: 40px;
    width: 40px;
    padding: 0;
    display: none;

    align-items: center;
    justify-content: center;
    border: none;
}

.lc_mobile_menu_btn.open .lc_open {
    display: none;
}

.lc_mobile_menu_btn.open .lc_close {
    display: block !important;
}

@media screen and (max-width: 991px) {
    .lc_mobile_menu_btn {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .lc_mobile_menu ul.nav-menu.menu {
        display: flex;
        flex-direction: column;
    }
}

.tp-header__top-left li a,
.tp-header__top-left li {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;

    @media screen and (max-width: 991px) {
        gap: 15px;
    }
}

.tp-header__top-left li a {
    gap: 10px;
}

.tp-header__top-area .tp-header__top-left a span {
    color: var(--white);
    font-size: 16px;
    padding-left: 0;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-Poppins);

    @media screen and (max-width: 767px) {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .tp-header__top-area .row.align-items-center {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tp-header__top-area .row.align-items-center>div {
        flex: 1;
    }
}

.text-end {
    text-align: right !important;
}

.tp-header__top-right .widget_block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.tp-header__top-area .tp-header__top-right .widget a:nth-child(2) img {
    scale: 1.2;
}

/* === hero section ===== */
#hero {
    background: url(../images/coming-soon.png) no-repeat center center;
    /* background-color: #eee9da; */
    padding-bottom: 50px;
}

.hero-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.hero-left {
    padding: 150px 0 0 80px;
    flex: 0 0 40%;
    max-width: 40%;
}

.hero-text {
    margin-top: 200px;

    @media screen and (max-width: 767px) {
        margin-top: 150px;
    }

}

.hero-text p {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 0;
}

.hero-text h1 {
    font-size: 60px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 10px 0 0;
}

/* === hero section end ===== */

/* === innner banner section ===== */
.inner-page-banner {
    overflow: hidden;
}

.breadcrumb-outer {
    background: var(--white);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
}

.breadcrumb-list li {
    position: relative;
    padding-right: 20px;
    list-style: none;
}

.breadcrumb-list li+li {
    padding-left: 20px;
}

.breadcrumb-list li+li:after {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translate(0, -50%) rotate(-130deg);
    width: 7px;
    height: 7px;
    border-left: 1.5px solid #666666;
    border-bottom: 1.5px solid #666666;
}

.breadcrumb-list a,
.breadcrumb-list span {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #666666;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.banner-inner-outer {
    position: relative;
    padding-top: 100px;
}

.banner-inner-outer img {
    max-width: 100%;
    width: 100%;
}

.banner-inner-outer h1 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px !important;
    font-weight: 700;
    margin: 0;
    line-height: 70px !important;

    @media screen and (max-width: 991px) {
        font-size: 28px !important;
        margin: 0;
        line-height: normal !important;
    }
}

/* === inner banner section end ===== */

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 38px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link svg {
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Header */

.header {
    background: var(--bg-white);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */

    @media screen and (max-width: 991px) {
        padding: 16px 0;
        top: 0;
        position: relative;
    }
}

.header a.logo {
    width: auto;
    margin-right: auto;

    @media screen and (max-width: 991px) {
        width: 200px;
        max-width: 100%;
        margin-right: auto;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

/* .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

*/
.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: var(--grey444);
    font-weight: 400;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 28px;
    cursor: pointer;
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
}

/* Submenu Dropdown */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 1000;
    margin-top: 0.5rem;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.submenu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Sign In Button */

.btn-signin {
    background: #2072ff;
    color: white;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    font-family: var(--font-Poppins);
    letter-spacing: 0.5px;
    margin-left: 80px;
}

.btn-signin:hover {
    background: #1a5dd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 114, 255, 0.3);
}

/* Hero Section */
.home-wrapper.hero {
    position: relative;
    background-image: url(../images/home-hero-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 700px;
    background-position: bottom;

    @media screen and (max-width: 1240px) {
        height: 600px;

        @media screen and (max-width: 991px) {
            height: 500px;
        }
    }
}

.hero .container {
    height: 100%;
}

.home-wrapper .hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    z-index: 2;
    align-items: start;
    height: 100%;

    @media screen and (max-width: 1024px) {
        grid-template-columns: 60% 50%;
        align-items: center;
    }

    @media screen and (max-width: 991px) {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}

.home-wrapper .hero-text {
    padding-left: 0;

    @media screen and (max-width: 1024px) {
        margin-top: 0;

        @media screen and (max-width: 991px) {
            text-align: center;
            max-width: 90%;
            margin: 0 auto;

            @media screen and (max-width: 767px) {
                max-width: 100%;
            }

        }
    }
}

.home-wrapper .hero-text p {
    margin-bottom: 35px;
    font-size: 20px;
    color: var(--grey444);
    font-weight: 400;

    @media screen and (max-width: 991px) {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: normal;
    }

    @media screen and (max-width: 991px) {
        font-size: 16px;
    }

    br {
        @media screen and (max-width: 776px) {
            display: none;
        }
    }
}

.home-wrapper .hero-text h1 {
    font-family: var(--font-Poppins);
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 20px;
    color: var(--primary-color);
    margin-top: 0;

    @media screen and (max-width: 991px) {
        font-size: 35px;
        line-height: normal;
        margin-bottom: 10px;
    }

    @media screen and (max-width: 767px) {
        font-size: 30px;
        margin-bottom: 0;
    }
}

.home-wrapper .hero-text .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-description {
    font-family: var(--font-Poppins);
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    color: #032021;
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border: 2px solid transparent;
    padding: 5px 20px;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 16px;
    height: 47px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-Poppins);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 20px hsla(34, 92%, 54%, 0.3); */
    text-decoration: none;
    background: #e58b12;
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 5px 20px;
    border-radius: 0.5rem;
    height: 47px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    font-family: var(--font-Poppins);
    text-transform: uppercase;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.hero-dashboard-container {
    position: relative;
    width: 100%;
    max-width: 615px;
}

.hero-dashboard-container img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.hero-bottom {
    margin-top: 50px;

    @media screen and (max-width: 1024px) {
        align-self: flex-end;
        width: 350px;
    }

    @media screen and (max-width: 991px) {
        margin: 0px auto;
        width: 300px;
    }
}

/* Fragmented Section */
.fragmented-section {
    padding: 100px 0 0;
    text-align: center;
    background: linear-gradient(180deg,
            rgba(250, 245, 243, 1) 35%,
            rgba(254, 247, 237, 1) 100%);
    border-bottom-left-radius: 600px;

    @media screen and (max-width: 1024px) {
        padding: 60px 0 0;
    }

    @media screen and (max-width: 767px) {
        padding: 30px 0 0;
    }
}

.fragmented-av {
    position: absolute;
    left: 50px;
    bottom: 0;

    @media screen and (max-width: 1440px) {
        width: 250px;
    }

    @media screen and (max-width: 767px) {
        width: 150px;
        left: 20px;
    }
}

.fragmented-bg {
    text-align: right;
}

.fragmented-section h2 {
    margin-bottom: 100px;
    color: var(--primary-color);
    font-weight: 600;

    @media screen and (max-width: 1024px) {
        margin-bottom: 60px;
    }

    @media screen and (max-width: 1024px) {
        margin-bottom: 30px;
    }
}

.subtitle {
    color: #444444;
    margin-block: 0 100px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    max-width: 1270px;
    margin-inline: auto;

    @media screen and (max-width: 1200px) {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        gap: 20px;
    }

    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 50px 30px;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;

    @media screen and (max-width: 767px) {
        padding: 40px 20px;
    }
}

.feature-card {
    border: none;
}

.feature-card.feature-card-1 {
    border-bottom: 4px solid #f6991c;
}

.feature-card.feature-card-2 {
    border-bottom: 4px solid #bc7d67;
}

.feature-card.feature-card-3 {
    border-bottom: 4px solid #dbb622;
}

.feature-card {
    background-color: var(--white);
    border-radius: 20px;
}

.feature-card:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
    z-index: -1;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feature-card-1:before {
    background: #f6991c;
}

.feature-card-2:before {
    background: #bc7d67;
}

.feature-card-3:before {
    background-color: #dbb622;
}

.icon-box {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 6px 13px 34px rgba(11, 50, 43, 0.1);

    @media screen and (max-width: 767px) {
        margin: 0 auto 20px;
        width: 80px;
        height: 80px;
        flex: 0 0 80px;
    }
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 500;

    @media screen and (max-width: 767px) {
        font-size: 18px;
    }
}

.feature-card p {
    color: var(--grey444);
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;

    @media screen and (max-width: 767px) {
        font-size: 16px;
        line-height: normal;
    }
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #fff;
}

.feature-card:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section-footer {
    color: #444444;
    text-align: center;
}

.section-footer .bold {
    color: #2072ff;
}

/* Drives Success */

.successSection {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
    overflow: hidden;

    @media screen and (max-width: 1024px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 991px) {
        padding: 60px 20px;
    }

    @media screen and (max-width: 767px) {
        padding: 30px 20px;
    }
}

.successSection .feature-card p {
    font-size: 16px;
}

.successSection .slick-track {
    height: 100%;
    display: flex !important;
    align-items: stretch !important;
}

.successSection ul.slick-slider {
    max-width: 90%;
    margin-left: auto;
    height: 100%;

    @media screen and (max-width: 1440px) {
        max-width: 100%;
        padding: 0 40px;
    }

    @media screen and (max-width: 767px) {
        max-width: 100%;
        padding: 0 20px;
    }
}

.successSection .slick-slide {
    height: auto;
    margin: 0 20px;

    @media screen and (max-width: 1440px) {
        margin: 0 10px;
    }
}

/* compensate for the extra space on container */
.successSection .slick-list {
    margin: 0 -20px;

    @media screen and (max-width: 1440px) {
        margin: 0 -10px;
    }
}

button.slick-next.slick-arrow {
    right: 10px;
    left: auto;
}

button.slick-prev.slick-arrow {
    left: -20px;
    right: auto;

    @media screen and (max-width: 1440px) {
        left: 0;
    }
}

button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 100px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;

    @media screen and (max-width: 1440px) {
        width: 40px;
        height: 40px;
    }
}

button.slick-arrow:focus,
button.slick-arrow:focus-visible {
    outline: none;
}

button.slick-prev.slick-arrow:before {
    content: "";
    position: absolute;
    background-image: url(../images/arrow.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
}

button.slick-next.slick-arrow:before {
    content: "";
    position: absolute;
    background-image: url(../images/arrow.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    /* transform: rotate(180deg); */
}

.successSection h2 {
    margin-bottom: 100px;
    color: var(--primary-color);
    font-weight: 600;

    @media screen and (max-width: 1024px) {
        margin-bottom: 60px;
    }

    @media screen and (max-width: 767px) {
        margin-bottom: 30px;
    }
}

.feature-card.slider-item-wrap {
    text-align: left;
    padding: 40px;
    height: 100%;

    @media screen and (max-width: 1366px) {
        padding: 30px;
    }
}

.feature-card.slider-item-wrap h3 {
    margin-top: 0;
}

.feature-card.feature-card-1.slider-item-wrap {
    background-color: rgba(246, 152, 28, 0.08);
}

.feature-card.feature-card-2.slider-item-wrap {
    background-color: rgba(188, 126, 103, 0.08);
}

.feature-card.feature-card-3.slider-item-wrap {
    background-color: rgba(219, 182, 34, 0.08);
}

/* Organizations Section */
.empowering-card {
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
    height: 100%;
    padding: 30px 40px;

    @media screen and (max-width: 767px) {
        padding: 30px 20px;
    }
}

.empoweringSection {
    padding: 100px 0 0;
    text-align: center;
    background: linear-gradient(90deg,
            rgba(250, 245, 243, 1) 35%,
            rgba(254, 247, 237, 1) 100%);
    border-bottom-right-radius: 600px;

    @media screen and (max-width: 1024px) {
        padding: 60px 0 0;
    }

    @media screen and (max-width: 767px) {
        padding: 30px 0 0;
        border-bottom-right-radius: 300px;
    }
}

.empoweringSection ul {
    display: grid;
    gap: 20px;
    list-style: none;
    height: 100%;
    max-width: 1230px;
    margin: 0 auto 50px;
    grid-template-columns: repeat(4, 1fr);

    @media screen and (max-width: 1200px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media screen and (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.empoweringSection ul li {
    height: auto;
    text-align: left;
    position: relative;
    max-width: 95%;
}

.empoweringSection h2 {
    margin: 0 0 100px;
    color: var(--primary-color);
    font-weight: 600;

    @media screen and (max-width: 1024px) {
        margin: 0 0 60px;
    }

    @media screen and (max-width: 767px) {
        margin: 0 0 30px;
    }
}

.empoweringSection .fragmented-av {
    right: 0;
    bottom: 0;
    left: auto;

    @media screen and (max-width: 1440px) {
        width: 250px;
        max-width: 100%;
    }

    @media screen and (max-width: 767px) {
        width: 150px;
    }
}

.empowering-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);

    @media screen and (max-width: 767px) {
        font-size: 18px;
    }
}

.empowering-card p {
    font-size: 16px;
    font-weight: 400;
}

.empowering-card .icon-box {
    width: auto;
    height: auto;
    margin: 0 0 25px 0;
    justify-content: start;
    box-shadow: none;

    @media screen and (max-width: 767px) {
        margin: 0 0 15px 0;
    }
}

.empowering-card p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: var(--grey444);
    line-height: 26px;
}

.empoweringSection ul li:after {
    content: "";
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 80px;
    z-index: -1;
    background-size: 50px;

    @media screen and (max-width: 767px) {
        right: -28px;
        width: 40px;
        background-size: 40px;
    }
}

.empoweringSection ul li:nth-child(1)::after {
    background-image: url(../images/empowering-arrow1.svg);
    background-repeat: no-repeat;
}

.empoweringSection ul li:nth-child(2)::after {
    background-image: url(../images/empowering-arrow2.svg);
    background-repeat: no-repeat;
}

.empoweringSection ul li:nth-child(3)::after {
    background-image: url(../images/empowering-arrow3.svg);
    background-repeat: no-repeat;
}

.empoweringSection .fragmented-bg {
    text-align: right;
    transform: scaleX(-1);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.products-subtitle {
    color: #444444;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 3rem;
}

/* .product-item {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.product-character-left {
    position: absolute;
    left: 0;
    top: 60px;
    width: 280px;
    height: 280px;
}

.product-character-right {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 330px;
    height: 330px;
}

.product-character-left img,
.product-character-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.leecycle-product {
    justify-content: flex-end;
}

.leeforce-product {
    justify-content: flex-start;
}

.product-character-left,
.product-character-right {
    flex-shrink: 0;
}

.product-content {
    max-width: 511px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 50px 40px;
    width: 100%;
}

.product-content-inner {
    padding-left: 78px;
}

.product-content-left {
    box-shadow: 40px 0 44px 0 rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.product-content-right {
    box-shadow: -40px 0 44px 0 rgba(0, 0, 0, 0.05);
    margin-right: auto;
}

.product-logo {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.product-logo svg {
    width: 60px;
    height: 60px;
}

.product-name {
    margin-bottom: 0;
    color: #032021;
    font-size: 34.286px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.343px;
}

.product-tagline {
    color: #444444;
    margin-bottom: 1.25rem;
}

.product-description {
    color: #444444;
    margin-bottom: 2rem;
}

.btn-view-product {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.938rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-Poppins);
    color: white;
    text-transform: uppercase;
}

.btn-view-product.green {
    background: #0ea084;
}

.btn-view-product.orange {
    background: #f6991c;
}

.products-footer {
    color: #444444;
    text-align: center;
}

/* One Login Section */
.one-login-section {
    padding: 120px 0 100px;

    @media screen and (max-width: 1024px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 1024px) {
        padding: 40px 0;
    }
}

.one-login-section .container {
    position: relative;
    z-index: 2;
}

.one-login-header {
    text-align: center;
    margin-bottom: 4rem;
}

.one-login-header h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.one-login-header .subtitle {
    color: var(--grey444);
    margin-block: 0;
    font-size: 18px;

    @media screen and (max-width: 767px) {
        font-size: 16px;
        line-height: normal;
    }
}

.one-login-flow-header h4 {
    text-align: center;
    font-weight: 500;
    color: var(--grey444);
    margin-bottom: 100px;
    font-size: 18px;

    @media screen and (max-width: 1024px) {
        margin-bottom: 60px;
    }

    @media screen and (max-width: 767px) {
        margin-bottom: 30px;
    }
}

.one-login-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 30px;
    max-width: 1270px;
    margin: 0 auto 0 auto;
    position: relative;

    @media screen and (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
    }

    @media screen and (max-width: 767px) {
        gap: 20px;
    }
}

.one-login-flow:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background-image: url(../images/one-login-line.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    z-index: -1;
    top: 30px;

    @media screen and (max-width: 1024px) {
        max-width: 500px;
    }

    @media screen and (max-width: 991px) {
        top: 10px;
    }

    @media screen and (max-width: 767px) {
        display: none;
    }
}

.flow-item {
    text-align: center;
}

.flow-icon-circle {
    margin: 0 auto 30px auto;

    @media screen and (max-width: 767px) {
        margin: 0 auto 20px auto;
    }
}

.flow-icon {
    width: auto;
    margin: 0 auto;

    @media screen and (max-width: 991px) {
        width: 80px;
        margin: 0 auto;
    }
}

.flow-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;

    @media screen and (max-width: 991px) {
        font-size: 18px;
    }

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.flow-item p {
    color: #444444;
    max-width: 255px;
    margin-inline: auto;
    line-height: 28px;
}

.flow-connector {
    width: 80px;
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            var(--primary-color) 0,
            var(--primary-color) 8px,
            transparent 8px,
            transparent 16px);
    margin-top: 50px;
    flex-shrink: 0;
}

.one-login-character {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    background: url(<path-to-image>) lightgray 0px 0px / 100% 103.272% no-repeat;
    mix-blend-mode: darken;
    max-width: 500px;
    width: 100%;
}

/* .one-login-flow .flow-item:nth-child(even) {
    margin-top: 40px;
} */

.one-login-character img {
    width: 100%;
    height: auto;
    display: block;
}

/* Clarity Section */
.clarity-section {
    padding: 6rem 0 0;
    background: var(--bg-white);
    position: relative;
}

.clarity-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.clarity-left {
    padding-right: 2rem;
}

.clarity-left h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.clarity-left p {
    color: #444444;
    margin-bottom: 3rem;
}

.clarity-left h2,
.clarity-left p {
    max-width: 360px;
    margin-left: auto;
}

.clarity-characters img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.clarity-right {
    width: 100%;
}

.clarity-right .section-footer {
    text-align: left;
    padding-top: 70px;
}

.clarity-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.clarity-card {
    padding: 30px;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.clarity-card.blue-card {
    background-color: #edf4ff;
    border-bottom: 4px solid #2072ff;
}

.clarity-card.cyan-card {
    background-color: #ebfcff;
    border-bottom: 4px solid #0ad7ff;
}

.clarity-card.purple-card {
    background-color: #f6f4fe;
    border-bottom: 4px solid #8c7af2;
}

.clarity-card:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
    z-index: -1;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.clarity-card:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.clarity-card.blue-card:before {
    background: #2072ff;
}

.clarity-card.cyan-card:before {
    background: #0ad7ff;
}

.clarity-card.purple-card:before {
    background: #8c7af2;
}

.clarity-card h3,
.clarity-card h6 {
    transition: all 0.3s ease;
}

.clarity-card:hover h3,
.clarity-card:hover h6 {
    color: #fff;
}

.clarity-card .card-icon {
    display: flex;
    align-items: center;
    gap: 25px;
}

.clarity-card h3 {
    color: var(--primary-color);
}

.clarity-card h6 {
    padding-left: 68px;
    padding-top: 10px;
    color: #444444;
}

/* AI Native Section */
.ai-native-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;

    @media screen and (max-width: 1024px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 30px 0;
    }
}

.ai-native-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 130vw;
    background-image: radial-gradient(circle,
            rgba(255, 255, 255, 1) 45%,
            rgba(246, 153, 28, 0.08) 100%);
    border-radius: 50%;
    height: 100vh;
    left: 50%;
    z-index: -2;
    transform: translateX(-50%);

    @media screen and (max-width: 991px) {
        display: none;
    }
}

.ai-native-section h2 {
    margin-bottom: 100px;
    color: var(--primary-color);
    font-weight: 600;

    @media screen and (max-width: 1024px) {
        margin-bottom: 60px;
    }

    @media screen and (max-width: 767px) {
        margin-bottom: 30px;
    }
}

.ai-native-section .section-footer {
    margin-top: 40px;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 250px;
    max-width: 1270px;
    margin: 0 auto;
    position: relative;
    padding-top: 50px;

    @media screen and (max-width: 1180px) {
        gap: 30px;
        padding-top: 0;
    }

    @media screen and (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.ai-features .ai-feature+.ai-feature {
    margin-top: 40px;

    @media screen and (max-width: 767px) {
        margin-top: 20px;
    }
}

.ai-feature-left .ai-feature:nth-child(1) {
    margin-right: 0px;
}

.ai-feature-left .ai-feature {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 25px;

    @media screen and (max-width: 1180px) {
        flex-direction: row;
    }

    @media screen and (max-width: 767px) {
        gap: 15px;
    }
}

.ai-feature .icon-box {
    margin: 0;

    @media screen and (max-width: 767px) {
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
    }
}

.ai-feature-right .ai-feature {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;

    @media screen and (max-width: 767px) {
        gap: 15px;
    }
}

.ai-feature-left .ai-feature-content {
    text-align: right;

    @media screen and (max-width: 1180px) {
        text-align: left;
    }
}

.ai-feature-right .ai-feature-content {
    text-align: left;
}

.ai-feature-left .ai-feature:last-child {
    padding-right: 150px;

    @media screen and (max-width: 1180px) {
        padding-right: 0;
    }
}

.ai-feature-left .ai-feature:nth-child(2) {
    padding-right: 110px;

    @media screen and (max-width: 1180px) {
        padding-right: 0;
    }
}

.ai-feature-right .ai-feature:last-child {
    padding-left: 150px;

    @media screen and (max-width: 1180px) {
        padding-left: 0;
    }
}

.ai-feature-right .ai-feature:nth-child(2) {
    padding-left: 100px;

    @media screen and (max-width: 1180px) {
        padding-left: 0;
    }
}

.ai-character {
    max-width: 100%;
    width: 900px;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    z-index: -1;

    @media screen and (max-width: 1180px) {
        position: static;
        transform: unset;
    }
}

@media screen and (max-width: 1180px) {
    .ai-character img {
        display: none;
    }
}

.ai-character .charatermob {
    display: none;
}

.ai-character img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: contain;
}

.ai-feature h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--primary-color);

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }

    br {
        @media screen and (max-width: 1180px) {
            display: none;
        }
    }
}

.ai-feature p {
    font-size: 1rem;
    color: #444444;
}

/* Smarter Section */

.smarter-section {
    position: relative;
    background-image: url(../images/organigation-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 830px;
    padding-block: 100px 0;
}

.smarter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

.smarter-left .character-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: -2rem;
}

.smarter-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 500px;
    height: 400px;
}

.smarter-center img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: contain;
}

.smarter-right {
    padding-left: 1rem;
}

.smarter-right h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.smarter-subtitle {
    color: #444444;
    margin-bottom: 2.5rem;
}

.smarter-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smarter-features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.smarter-features-list .feature-content p {
    color: #444444;
    margin: 0;
}

.smarter-section .section-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.smarter-section .section-background .skyline {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* AI Native Section 2 */
.ai-native-section-2 {
    padding: 6rem 0;
    background: var(--bg-white);
    text-align: center;
}

.ai-native-section-2 .ai-feature-left .ai-feature:first-child {
    padding-right: 120px;
}

.ai-native-section-2 .ai-feature-right .ai-feature:first-child {
    padding-left: 120px;
}

.ai-native-section-2 .ai-feature-left .ai-feature:last-child {
    padding-right: 80px;
}

.ai-native-section-2 .ai-feature-right .ai-feature:last-child {
    padding-right: 80px;
}

.ai-native-section-2 .ai-features .ai-feature+.ai-feature {
    margin-top: 120px;
}

.ai-native-section-2 .ai-character {
    max-width: 768px;
    height: 600px;
    width: 100%;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
}

.ai-native-section-2 h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.ai-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.ai-icon-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.ai-icon-card:hover {
    transform: translateY(-8px);
}

/* CTA Section */
.cta-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-top: 120px;

    @media screen and (max-width: 1024px) {
        padding-top: 60px;
    }

    @media screen and (max-width: 767px) {
        padding-top: 30px;
    }
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 260px;
    max-width: 1390px;
    margin: 0 auto;
    padding: 80px 100px;
    background-color: var(--primary-color);
    border-top-left-radius: 250px;

    @media screen and (max-width: 1440px) {
        max-width: 85%;
        margin: 0 auto 0 0;
        padding: 50px 50px 50px 120px;
    }

    @media screen and (max-width: 991px) {
        min-height: auto;
        max-width: 100%;
    }

    @media screen and (max-width: 767px) {
        border-top-left-radius: 0;
        padding: 30px 15px;
    }
}

.cta-text {
    text-align: center;
    z-index: 2;
    flex: 1;
}

.cta-text h2 {
    color: white;
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;

    @media screen and (max-width: 991px) {
        font-size: 22px;
    }

    @media screen and (max-width: 767px) {
        font-size: 18px;
        font-weight: 500;
    }
}

.cta-content a.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
}

.cta-subtitle {
    color: var(--white);
    /* margin-bottom: 40px; */
    font-size: 18px;
    line-height: 28px;

    @media screen and (max-width: 991px) {
        font-size: 16px;
        margin-bottom: 0;
    }

    @media screen and (max-width: 767px) {
        font-size: 14px;
        line-height: normal;
    }
}

.cta-character {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 1;
    width: 350px;

    @media screen and (max-width: 1440px) {
        right: -10px;
    }

    @media screen and (max-width: 1366px) {
        right: -20px;
    }

    @media screen and (max-width: 1200px) {
        width: 310px;
    }

    @media screen and (max-width: 1024px) {
        right: -46px;
    }

    @media screen and (max-width: 991px) {
        display: none;
    }
}

.cta-character img {
    height: auto;
    display: block;
}

/* Faq */

/* FAQ */

.faq-section-outer h2.section-heading {
    color: var(--primary-color);
    margin-bottom: 0;

    @media screen and (max-width: 767px) {
        max-width: 90%;
        margin: 0 auto;
    }
}

.faq-section-outer {
    padding: 6rem 0 0;
    text-align: center;

    @media screen and (max-width: 767px) {
        padding: 30px 0 0;
    }
}

.faq-section-outer .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.faq-content-outer {
    padding-top: 60px;

    @media screen and (max-width: 1024px) {
        max-width: 95%;
        margin: 0 auto;
    }

    @media screen and (max-width: 767px) {
        padding-top: 30px;
    }
}

.faq-button {
    width: 100%;
    text-align: left;
    background: none !important;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--primary-color) !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    padding: 0px 55px 0px 55px;
    position: relative;

    @media screen and (max-width: 991px) {
        padding: 0px 40px 0px 30px;
        font-size: 18px;
        line-height: normal;
    }

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.faq-button.active {
    background: none !important;
}

.faq-content {
    display: block;
    height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0px 100px 0 55px;
    background: #fff;
    transition: 300ms all;
}

.faq-content.show {
    height: 100%;
    max-height: 100vh;
    opacity: 1;
    padding: 15px 100px 0 55px;

    @media screen and (max-width: 991px) {
        padding: 15px 50px 0 30px;
    }

    @media screen and (max-width: 767px) {
        padding: 15px 0 0 30px;
    }
}

.faq-content p {
    font-weight: 400;
    font-size: 18px !important;
    line-height: 28px !important;
    color: var(--grey444);
    margin: 0;
    text-align: left;

    @media screen and (max-width: 991px) {
        font-size: 16px !important;
        line-height: normal !important;
    }

    @media screen and (max-width: 767px) {
        font-size: 14px !important;
    }
}

.faq-count {
    position: absolute;
    left: 0;
}

.faq-item {
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;

    @media screen and (max-width: 1024px) {
        padding: 20px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 15px 0;
    }
}

.faq-button:after,
.faq-button:before {
    content: "";
    position: absolute;
    transform: unset;
    background: var(--primary-color);
}

.faq-button:after {
    width: 2px;
    height: 13px;
    right: 14px;
    top: 8px;
}

.faq-button:before {
    width: 14px;
    height: 2px;
    right: 8px;
    border-radius: 6px;
    z-index: 9;
    box-shadow: 0 0 0 0px var(--secondary-color);
    transition: 0.3s all;
    top: 13px;
}

.faq-button.active:after {
    opacity: 0;
}

.faq-button.active:before {
    box-shadow: 0 0 0 13px var(--secondary-color);
    background: #ffffff;
}

/* Footer */
.footer {
    background: #f9fafb;
    color: var(--primary-color);
    padding: 100px 0;

    @media screen and (max-width: 1024px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 30px 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 0;
    max-width: 1270px;
    margin-inline: auto;

    @media screen and (max-width: 1024px) {
        grid-template-columns: 1fr 1fr;
    }

    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo {
    height: auto;
    width: auto;

    @media screen and (max-width: 767px) {
        width: 200px;
    }
}

.footer-brand .company-name {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-brand .company-address {
    font-size: 18px;
    color: #444444;
    margin-bottom: 1.25rem;
    line-height: 1.7;

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.footer-brand .contact-info {
    font-size: 18px;
    color: #444444;
    margin-bottom: 0.5rem;
    line-height: 1.6;

    @media screen and (max-width: 767px) {
        font-size: 16px;
        line-height: normal;
    }
}

.footer-brand .contact-info+.contact-info {
    margin-top: 15px;
    color: var(--grey444) !important;
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
    color: var(--primary-color);

    @media screen and (max-width: 767px) {
        font-size: 18px;
    }
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: #444444;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
    font-weight: 400;

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--primary-color);

    @media screen and (max-width: 767px) {
        font-size: 18px;
    }
}

.newsletter-subtitle {
    font-size: 18px;
    color: #444444;
    margin-bottom: 1.25rem;
    line-height: 1.6;

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #f5f2ee;
    background: #f5f2ee;
    border-radius: 4px 0 0 4px;
    color: #a8a8a8;
    font-family: var(--font-Poppins);
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-newsletter .legal-text {
    font-size: 16px;
    color: #777777;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.product-item,
.ai-feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* === Contact us === */

/* New Contact Section Styles */
.lc_new_contact_section {
    padding: 60px 0 0;
    background: linear-gradient(0deg,
            rgba(250, 245, 243, 1) 0%,
            rgba(254, 247, 237, 1) 100%);
    position: relative;
    background-position: bottom;
    border-bottom-left-radius: 600px;

    @media screen and (max-width: 767px) {
        padding: 30px 0 0;
        border-bottom-left-radius: 300px;
    }
}

.lc_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lc_contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    align-items: start;
    min-height: 600px;
    position: relative;
    z-index: 1;
    /* max-width: 85%; */
    margin: 0 auto 50px;
}

/* Contact Info Section */
.lc_contact_info_section {
    position: relative;
    padding: 20px 0;
}

.lc_mascot_container {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(14, 160, 132, 0.1));
}

.lc_contact_info_title {
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #1a1a1a;
    margin: 0 0 36px 0;
    font-family: "Poppins", sans-serif;
}

.lc_contact_info_items {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.lc_contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lc_contact_icon_wrapper {
    flex-shrink: 0;
    margin-top: 5px;
}

.lc_contact_icon_bg svg,
.lc_contact_icon_bg i {
    color: white;
    font-size: 24px;
    z-index: 1;
}

.lc_contact_info_content h4 {
    font-size: 20px !important;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-family: "Poppins", sans-serif;
}

.lc_contact_info_content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-family: "Outfit", sans-serif;
}

.lc_contact_info_content a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.lc_contact_info_content a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.lc_contact_form_section {
    background: white;
    border-radius: 24px;
    padding: 48px 60px 0 60px;
    box-shadow: 0 8px 32px rgba(246, 152, 28, 0.08);
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.contact-outer .lc_contact_form_title {
    font-size: 30px !important;
    font-weight: 600;
    color: #032021;
    margin: 0 0 36px 0;
    font-family: "Poppins", sans-serif;
    text-align: left;
    line-height: normal !important;
}

.lc_contact_form_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lc_form_row {
    display: flex;
    gap: 16px;
}

.lc_contact_form_section #crmWebToEntityForm.zcwf_lblLeft form {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

h2.lc_contact_form_title {
    font-size: 30px !important;
    font-weight: 600;
    line-height: normal !important;
    margin-bottom: 20px;
}

.lc_contact_form_section .zcwf_col_fld input[type="text"],
.lc_contact_form_section .zcwf_col_fld textarea {
    height: 47px;
    border-radius: 6px;
    border: 1px solid #d9e5e3;
    width: 100%;
    margin: 0;
    /* margin-bottom: 30px; */
}

.lc_contact_form_section .zcwf_col_fld textarea {
    line-height: var(--global--line-height-body);
    padding: var(--form--spacing-unit);
    max-width: 100%;
}

.lc_contact_form_section .zcwf_col_lab label {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height: normal;
    margin-bottom: 5px;
    font-family: var(--font-Poppins);
}

.lc_contact_form_section .textareaFull {
    grid-area: 3/1/3/3;
}

.lc_contact_form_section input[type="reset"],
.lc_contact_form_section input[type="submit"] {
    height: 47px;
    padding-block: 12px !important;
}

.lc_contact_form_section.contactForm input[type="reset"],
.lc_contact_form_section.contactForm input[type="submit"] {
    height: 47px;
    padding: 12px 12px !important;
}

.lc_contact_form_section.contactForm input[type="reset"] {
    min-width: 120px;
}

.lc_contact_form_section.contactForm .zcwf_lblLeft .zcwf_button {
    max-width: max-content;
}

.lc_contact_form_section input[type="submit"] {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.lc_contact_form_section input[type="reset"] {
    font-size: 16px !important;
    font-weight: 600 !important;
    background-color: #fff !important;
    color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

/* Wave Background */
.lc_contact_wave_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.7;
}

.lc_contact_wave_bg svg {
    width: 100%;
    height: auto;
}

/* ==== Thank You Page ===== */

.thankyou-outer .banner-inner {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.thankyou-outer .banner-inner h1 {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
}

.thankyou-outer .banner-inner h2 {
    color: #032021;
    font-size: 26px !important;
    font-weight: 400;
}

.thankyou-outer .banner-inner p {
    color: #555555;
    font-size: 18px;
    font-weight: 400;
    max-width: 80%;
    margin: 0 auto;
    line-height: 28px;
    margin-bottom: 35px;
}

.thankyou-outer .banner-inner .lc_btn_green {
    height: 47px;
    font-weight: 600;
}

.thankyou-gif {
    max-width: 275px;
    width: 100%;
    position: absolute;
    bottom: 40%;
    right: 10%;
    transform: scaleX(-1);
}

.breadcrumb-outer.thankyou-outer .btn-primary {
    width: max-content;
    margin: 0 auto;
}

@media (max-width: 1366px) {
    .thankyou-gif {
        max-width: 200px;
        right: 2%;
    }
}

@media (max-width: 767px) {
    .thankyou-outer .banner-inner h2 {
        font-size: 22px !important;
    }

    .thankyou-outer .banner-inner p {
        font-size: 16px;
        max-width: 100%;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .thankyou-gif {
        display: none;
    }
}

/* Responsive Design */

@media (max-width: 1440px) {
    .lc_new_contact_section .lc_mascot_container {
        width: 120px;
    }
}

@media (max-width: 1280px) {
    .lc_contact_form_section {
        padding: 50px 40px 0 40px;
    }
}

@media (max-width: 1200px) {
    .lc_contact_wrapper {
        grid-template-columns: 1fr;
    }

    .lc_contact_info_items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .lc_contact_info_item {
        flex: 0 0 calc(50% - 20px);
        gap: 10px;
    }
}

@media (max-width: 968px) {
    .lc_contact_wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .lc_contact_mascot {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .lc_contact_info_title {
        font-size: 28px !important;
    }

    .lc_new_contact_section {
        padding: 40px 0 0;
    }

    .lc_contact_form_section {
        padding: 30px 20px;
    }

    .lc_contact_info_item {
        flex: 0 0 100%;
        gap: 10px;
    }

    .lc_contact_form_section #crmWebToEntityForm.zcwf_lblLeft form {
        display: flex;
        align-items: start;
        gap: 10px;
        flex-wrap: wrap;
    }

    .lc_contact_form_section #crmWebToEntityForm.zcwf_lblLeft form .zcwf_row {
        float: none;
        min-width: 100%;
    }

    .lc_contact_form_section #crmWebToEntityForm.zcwf_lblLeft form .g-recaptcha {
        justify-content: start !important;
    }

    .lc_contact_info_content h4 {
        font-size: 16px !important;
    }

    .lc_contact_info_content p {
        font-size: 14px;
    }

    .lc_contact_info_section {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .lc_container {
        padding: 0 15px;
    }

    .lc_contact_form_section {
        padding: 25px 15px;
        /* margin: 0 5px; */
        min-width: 100%;
    }
}

div#rc-anchor-container {
    display: none !important;
}

@media (max-width: 1550px) {
    .contact-form .lc_mascot_container {
        width: 350px;
    }
}

@media (max-width: 1440px) {
    .contact-form .lc_mascot_container {
        width: 350px;
    }
}

@media (max-width: 1200px) {
    .contact-form .lc_mascot_container {
        width: 180px;
    }

    .contact-form .lc_mascot_container img {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .contact-form .lc_mascot_container {
        width: 100px;
    }
}