.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 20px;
    position: relative;
    border-radius: 50px;
    color: var(--product-main-color-2);
    display: inline-flex;
    border: 1px solid var(--product-main-color-2);
    text-transform: uppercase;
    background-color: var(--white);
    letter-spacing: 0.05em;
}

.section-subtitle .start-shape::before,
.section-subtitle .start-shape::after,
.section-subtitle .end-shape::before,
.section-subtitle .end-shape::after {
    content: "";
    display: inline-block;
    background: var(--product-main-color-2);
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
}

.section-subtitle .start-shape::before,
.section-subtitle .end-shape::after {
    width: 8px;
    height: 8px;
}

.section-subtitle .start-shape::after,
.section-subtitle .end-shape::before {
    width: 12px;
    height: 12px;
    margin: 0 7px;
}

.product-header-area {
    position: relative;
    background-color: #FFFFFF;
    position: sticky;
    top: 0px;
    z-index: 10;
}

.product-header-area .sub-menu {
    padding: 10px 0px;
}

.product-header-area .sub-menu>ul {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 22px;
}

@media only screen and (max-width: 1400px) {
    .product-header-area .sub-menu>ul {
        gap: 10px;
    }
}

.product-header-area .header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-header-area .header-logo img {
    width: 30px;
    border-radius: 5px;
}

.product-header-area .header-logo .logo-name {
    font-size: 20px;
    background: linear-gradient(45deg, var(--product-main-color-1) 0%, var(--product-main-color-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

@media only screen and (max-width: 1199px) {
    .product-header-area .header-logo img {
        width: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .product-header-area .header-logo img {
        width: 45px;
    }
}

.product-header-area .sub-menu li a {
    font-size: 16px;
    padding: 7px 14px;
    border-radius: 30px;
    transition: 0.4s ease-in-out;
    color: var(--black);
}

@media only screen and (max-width: 1300px) {
    .product-header-area .sub-menu li a {
        padding: 7px 10px;
    }
}

@media only screen and (max-width: 1200px) {
    .product-header-area .sub-menu li a {
        padding: 7px 7px;
    }
}


.product-header-area .sub-menu li a:hover,
.product-header-area .sub-menu li a:active {
    color: var(--product-main-color-2);
}


/* Hero Section */
.hero-section {
    min-height: 399px;
    padding: 50px 0 0;
}

/* Title */
.hero-section .hero-title {
    font-weight: 700;
    line-height: 63px;
    text-align: center;
    background: linear-gradient(45deg, var(--product-main-color-1) 0%, var(--product-main-color-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

/* Content Wrapper */
.hero-section .hero-content {
    max-width: 1025px;
    margin: 0 auto;
}

/* Subtitle */
.hero-section .hero-subtitle {
    font-weight: 600;
    line-height: 38px;
    text-align: center;
    color: #000;
    margin-bottom: 16px;
}

/* Description */
.hero-section .hero-description {
    font-size: 18px;
    /* font-weight: 400; */
    line-height: 28px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #000;
}

/* Button */
.product-button {
    overflow: hidden;
    position: relative;
    z-index: 0;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 2em;
    background: linear-gradient(90deg, var(--product-main-color-1) 0%, var(--product-main-color-2) 100%);
    transition:
        opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1),
        transform 0.3s cubic-bezier(0.2, 0, 0.1, 1),
        box-shadow 0.5s ease,
        color 0.5s ease,
        background 0.5s ease;
    will-change: box-shadow, color, transform, opacity, background;
    font-weight: 600;
}

/* Outlined button */
.product-button.outlined {
    background: none;
    color: var(--black);
}

/* Button pseudo elements */
.product-button::before,
.product-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    top: 0;
    right: -50%;
    left: -50%;
    height: 0;
    padding-bottom: 200%;
    border-radius: 39%;
    opacity: 0;
    transition:
        transform 0s cubic-bezier(0.2, 0, 0.1, 1) 0.5s,
        opacity 0.5s cubic-bezier(0.2, 0, 0.1, 1);
}

.product-button::before {
    transform: translate3d(-10%, 4.8em, 0) rotate(330deg);
    background: linear-gradient(25deg,
            var(--product-main-color-2),
            rgba(210, 210, 210, 0));
}

.product-button::after {
    transform: translate3d(10%, 4.8em, 0) rotate(0deg);
    background: linear-gradient(70deg,
            var(--product-main-color-2),
            rgba(210, 210, 210, 0));
}

/* Hover / focus */
.product-button:hover,
.product-button:focus {
    background: linear-gradient(90deg, var(--product-main-color-1) 0%, var(--product-main-color-2) 100%);
    color: #fff;
    transition:
        opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1),
        transform 0.3s cubic-bezier(0.2, 0, 0.1, 1),
        box-shadow 2s ease,
        color 1.5s ease,
        background 1s ease 0.75s;

}

.product-button:hover.outlined,
.product-button:focus.outlined {
    color: #ffffff;
}

.product-button:hover::before,
.product-button:hover::after,
.product-button:focus::before,
.product-button:focus::after {
    opacity: 1;
    transition:
        transform 2s ease,
        opacity 0.2s ease;
}

.product-button:hover::before,
.product-button:focus::before {
    transform: translate3d(-10%, -1em, 0) rotate(100deg);
}

.product-button:hover::after,
.product-button:focus::after {
    transform: translate3d(10%, -1em, 0) rotate(180deg);
}

/* Dashboard Wrapper */
.dashboard-wrapper {
    padding: 40px 0px;
    position: relative;
    overflow: hidden;
}

/* Background Gradient Layers */
.dashboard-wrapper .bg-layer {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 0;
    z-index: 0;
    bottom: 0px;
}

.dashboard-wrapper .bg-layer img {
    width: 100%;
}

/* Content Container */
.dashboard-wrapper .dashboard-container {
    position: relative;
    z-index: 2;
    max-width: 1160px;
}

/* Card */
.dashboard-wrapper .dashboard-card {
    background-color: color-mix(in srgb, var(--product-main-color-1), transparent 80%);
    border-radius: 20px;
    padding: 5px;
}

/* Image */
.dashboard-wrapper .dashboard-card img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.benifits-section {
    overflow: hidden;
}

.benifits-section .section-title {
    color: var(--black);
    text-align: center;
}

.benifits-section .section-para {
    font-size: 18px;
    text-align: center;
    max-width: 792px;
    margin: 0 auto;
}

.benifits-section .benifit-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2rem;
    background-color: white;
    width: 100%;
    height: 100%;
    /* box-shadow: -1px 0px 29px 8px color-mix(in srgb, var(--product-main-color-1), transparent 80%); */
    /* margin-top: 35px; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: relative;
}

.benifit-card .benifit-card-header-icon {
    position: absolute;
    background-color: var(--white);
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2rem;
    padding: 8px 12px;
    font-size: 35px;
    color: var(--product-main-color-2);
    border: 1px solid var(--product-main-color-2);
}

.benifit-card .benifit-card-info {
    border: none;
    /* padding: 1.5rem; */
    text-align: left;
}

.benifit-card-info ul {
    text-align: left;
    padding: 20px;
    margin: 0;
}

.benifit-card-info ul strong {
    color: var(--product-main-color-2);
}

.benifit-card-info ul li {
    margin-bottom: 5px;
}



.benifit-card .benifit-card-info .title {
    /* color: var(--product-main-color-2); */
    color: white;
    letter-spacing: 0;
    line-height: 1.375;
    font-weight: 550;
    font-size: 28px;
    margin-bottom: 0rem;
    text-align: center;
}

.benifit-card .benifit-card-footer {
    padding: 0.75rem;
    /* border: 1px solid rgb(236 239 241); */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--product-main-color-2);
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
}

.benifit-card .benifit-card-footer .tag {
    font-weight: 300;
    font-size: .75rem;
    display: block;
}

.modules-section {
    /* background-color: color-mix(in srgb, var(--product-main-color-1), transparent 80%); */
}

.modules-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
}

.modules-section .section-para {
    max-width: 792px;
    margin: 0 auto;
}

/* Content Panel */
.modules-panel {
    background-color: color-mix(in srgb, var(--product-main-color-1), transparent 90%);
    border-radius: 15px;
    padding: 40px;
    padding-top: 110px;
    margin: auto;

    margin-top: 120px;
    position: relative;
}

.modules-panel .panel-title {
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 15px;
    color: var(--product-main-color-2);
}

.modules-panel .panel-text {
    line-height: 20px;
    margin-bottom: 15px;
}

/* Feature Cards */
.modules-panel .feature-cards {
    max-width: 1200px;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (max-width: 999px) {

    /* Content Panel */
    .modules-panel {
        padding: 20px;
        padding-top: 20px;
        margin-top: 30px;
        position: relative;
    }

    .modules-panel .feature-cards {
        position: relative;
        top: 0px;
        margin-bottom: 20px;
    }
}

.module-content {
    max-width: 1000px;
    display: block;
    margin: auto;
}

.modules-panel .feature-cards .module-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 0 0 transparent;
    transition: all 0.35s ease-in-out;
    border: 1px solid var(--white);
    width: 180px;
}

.modules-panel .feature-cards .module-card:hover,
.nav-tabs .nav-link.active .module-card {
    border: 1px solid var(--product-main-color-2);
    box-shadow: 0px 0px 29px 8px color-mix(in srgb, var(--product-main-color-1), transparent 80%);
}

.modules-panel .feature-cards .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: var(--main-div-color);
    color: var(--product-main-color-2);
}

.modules-panel .feature-cards .module-card:hover .icon-circle {
    border: 1px solid var(--product-main-color-2);
    font-size: 30px;
    color: var(--main-div-color);
    background-color: var(--product-main-color-2);
}

.modules-panel .feature-cards .module-card p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.modules-panel .nav-tabs {
    border-bottom: none;
}

.modules-panel .nav-tabs .nav-item.show .nav-link,
.modules-panel .nav-tabs .nav-link.active,
.modules-panel .nav-tabs .nav-link.active {
    color: transparent;
    background-color: transparent !important;
    border-color: transparent !important;
    border-bottom: none;
}

.modules-panel .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent !important;
}

.modules-panel .nav-tabs .nav-item .nav-link {
    height: 100%;
}

.inner-module-panel {
    margin-top: 20px;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 10px;
}

.inner-module-panel::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

.inner-module-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.inner-module-panel::-webkit-scrollbar-thumb {
    background: var(--product-main-color-2);
    border-radius: 4px;
    height: 30px ;
}

.inner-module-panel::-webkit-scrollbar-thumb:hover {
    background: var(--product-main-color-1);
}

.inner-module-panel .inner-nav-tabs {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.inner-module-panel .inner-nav-tabs .inner-nav-item {
    min-width: 120px;
}

.inner-nav-link {
    background-color: var(--white);
    padding: 4px 15px;
    border-radius: 20px;
    color: var(--black);
    width: 100%;
    display: block;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.inner-nav-link:hover,
.inner-nav-link.active {
    background-color: var(--product-main-color-1);
    color: var(--white);
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--product-main-color-2);
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.read-more-btn:after {
    content: "\f101";
    font-family: var(--font_awesome);
    margin-inline-start: 3px;
    font-weight: 700;
    font-size: 16px;
    color: var(--product-main-color-2);
}

.why-choose-section {
    /* background-color: color-mix(in srgb, var(--product-main-color-1), transparent 70%); */
    position: relative;
    overflow: hidden;
}

/* Background Gradient Layers */
.why-choose-section .bg-layer {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 0;
    z-index: 0;
    bottom: 0px;
}

.why-choose-section .bg-layer img {
    width: 100%;
}

.why-choose-section .section-title {
    color: var(--black);
    text-align: center;
}

.why-choose-section .section-para {
    text-align: center;
    max-width: 792px;
    margin: 0 auto;
}

/* Card Wrapper */
.why-choose-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #374151; */
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: 100%;
}

.why-choose-card .why-choose-card-header {
    height: 150px;
    position: relative;
}

.why-choose-card .why-choose-card-header img {
    /* height: 160px; */
    position: absolute;
    border-radius: 12px;
    width: 85%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.why-choose-card .why-choose-card-body {
    padding-top: 20px;
}

.why-choose-card .why-choose-card-body i {
    color: var(--black);
}

.why-choose-card .why-choose-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--black);
}

.why-choose-card .why-choose-card-text {
    font-size: 16px;
    line-height: 1.6;
}

.integrations-section {
    padding: 40px 0;
    /* background-color: color-mix(in srgb, var(--product-main-color-1), transparent 80%); */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.integrations-section .section-title {
    font-weight: 700;
    line-height: 44px;
    color: var(--black);
}

/* Integration Pills */
.integrations-section .integration-box {
    min-width: 177px;
    height: 65px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: var(--black);
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease-in-out;
    text-align: center;
}

.integrations-section .integration-box i {
    font-size: 25px;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid var(--product-main-color-2);
    color: var(--product-main-color-2);
}

.integrations-section .integration-box:hover {
    background-color: color-mix(in srgb, var(--product-main-color-1), transparent 0%);
    color: var(--white);
}

.integrations-section .integration-box:hover i {
    border: 1px solid var(--white);
    color: var(--white);
}


.brands-section {
    background: #fff;
}

.brands-section .brands-title {
    line-height: 28px;
    color: #000;
}

/* Logos */
.brands-section .brand-logo {
    display: block;
    object-fit: contain;
}

/* Size variants */
.brands-section .brand-sm {
    width: 150px;
    height: 80px;
}

.brands-section .brand-md {
    width: 160px;
    height: auto;
}

.brands-section .brand-wide {
    width: 160px;
    height: 32px;
}

.brands-section .brand-square {
    width: 90px;
    height: 90px;
}

/* Customers link */
.brands-section .customers-link {
    font-family: "Plus Jakarta Sans";
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brands-section .customers-link .arrow {
    display: inline-block;
    transform: rotate(-90deg);
}