/* ====== global styling ====== */

* {
    /* Firefox Support */
    scrollbar-width: thin;
    scrollbar-color: var(--ct-scrollbar-thumb-bg) var(--ct-scrollbar-track-bg);
}

/* 2. Webkit Support (Safari, Chrome, iOS, Edge) */
::-webkit-scrollbar {
    width: var(--ct-scrollbar-width);
    height: var(--ct-scrollbar-width);
    /* For horizontal scrolls */
}

::-webkit-scrollbar-track {
    background: var(--ct-scrollbar-track-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--ct-scrollbar-thumb-bg);
    border-radius: var(--border-radius-outer);
    /* This creates the 'padding' effect around the thumb */
    border: var(--ct-scrollbar-border-size) solid var(--ct-scrollbar-track-bg);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--ct-scrollbar-thumb-hover);
}

.ct-body-setup {
    font-family: var(--ct-body-setup-font-family);
    background-color: var(--ct-tertiary-solid-color);
    font-size: var(--ct-body-setup-font-size);
    /* overflow-x: hidden; */
}

/* css for fonts */



/* css for font size */
.ct-banner-title .ct-h-text {
    font-size: var(--ct-banner-title);
}

.ct-section-heading .ct-h-text {
    font-size: var(--ct-section-heading);
}

.ct-footer-heading .ct-h-text {
    font-size: var(--ct-footer-heading);
}

.ct-section-sub-heading .ct-h-text {
    font-size: var(--ct-section-sub-heading);
    transition: color 0.6s ease-in-out;
}

.ct-section-para .ct-text {
    font-size: var(--ct-section-para);
    margin-bottom: 0;
    transition: color 0.6s ease-in-out;
}

.ct-banner-title .ct-h-text,
.ct-section-heading .ct-h-text,
.ct-section-sub-heading .ct-h-text {
    font-weight: var(--bold);
}

/* end of css for fonts */



/* css for brand logo */
.ct-navbar-brand-a img {
    max-width: 200px;
    max-height: max-content;
}

/* end of css for brand logo */



/* css for svg elements */
.ct-about-us-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -25px;
    margin-bottom: 20px;
    padding-left: 420px;
}

.ct-about-us-section .ct-responsive-underline {
    width: 215px;
    position: relative;
}

.ct-the-problem-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 20px;
    padding-left: 90px;
}

.ct-the-problem-section .ct-responsive-underline {
    width: 110px;
    position: relative;
}

.ct-features-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 20px;
    padding-left: 250px;
}

.ct-features-section .ct-responsive-underline {
    width: 200px;
    position: relative;
}

.ct-modules-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 20px;
    padding-left: 200px;
}

.ct-modules-section .ct-responsive-underline {
    width: 200px;
    position: relative;
}

.ct-ai-powered-section .ct-responsive-underline-wrapper {
    display: block;
    position: relative;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 20px;
    padding-left: 320px;
}

.ct-ai-powered-section .ct-responsive-underline {
    width: 200px;
    position: relative;
}

.ct-future-scope-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 20px;
    padding-left: 110px;
}

.ct-future-scope-section .ct-responsive-underline {
    width: 175px;
    position: relative;
}

/* .ct-lets-transform-section .ct-responsive-underline-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 20px;
    padding-left: 660px;
} */

/* .ct-lets-transform-section .ct-responsive-underline {
    width: 175px;
    position: relative;
} */

.ct-svg-icons-size {
    max-width: 100px;
    max-height: 100px;
}

/* end of css for svg elements */

/* section background */

.ct-section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* end of section background */


/* css for buttons */
.ct-request-demo-button-a-1,
.ct-book-a-free-demo-button-button-1 {
    background: var(--ct-primary-gradient-color);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight);
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
}

.ct-book-a-free-demo-button-button-1 {
    border: none;
}


.ct-request-demo-button-a-1:hover,
.ct-book-a-free-demo-button-button-1:hover {
    background-position: right center;
    box-shadow: var(--ct-primary-box-shadow);
}

.ct-explore-features-button-a {
    background: var(--ct-secondary-gradient-color);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
    color: var(--black);
    text-decoration: none;
    font-weight: var(--font-weight);
    padding: 10px 20px;
    border: 1px solid var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
}

.ct-explore-features-button-a:hover {
    background-position: right center;
    color: var(--ct-primary-solid-color);
    box-shadow: var(--ct-secondary-box-shadow);
}

.ct-request-demo-button-a-2 {
    background: var(--ct-secondary-gradient-color);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
    color: var(--ct-primary-solid-color);
    text-decoration: none;
    font-weight: var(--font-weight);
    padding: 10px 20px;
    border: 1px solid var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
}

.ct-request-demo-button-a-2:hover {
    background-position: right center;
    color: var(--ct-primary-solid-color);
    box-shadow: var(--ct-secondary-box-shadow);
}

.ct-get-in-touch-button-a {
    background: var(--ct-primary-gradient-color);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight);
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: var(--border-radius-full);
}

.ct-get-in-touch-button-a:hover {
    background-position: right center;
    color: var(--white);
    box-shadow: var(--ct-secondary-box-shadow);
}

/* end of css for buttons */



/* css for image size */
img {
    max-width: 100%;
    height: auto;
}

/* end of css for image size */

/* ====== end of global styling ====== */



/* css for nav bar */

#ct-navbar-sticky-js {
    position: fixed;
    z-index: 10;
    width: 100dvw;
    transition: transform 0.3s ease-in-out;
    margin-top: var(--ct-margin-top-header);
}

.ct-navbar-show-js {
    transform: translateY(0dvh);
}

.ct-navbar-hide-js {
    transform: translateY(-25dvh);
}

.ct-asset-management-nav-js {
    background-color: var(--white);
    border-radius: var(--border-radius-full);
    box-shadow: var(--ct-tertiary-box-shadow);
    max-width: 100%;
    /* margin-left: calc(60px - var(--ct-scrollbar-width)); */
    margin-right: calc(60px + var(--ct-scrollbar-width));
    margin-left: 60px;
    /* margin-right: 60px; */
    padding: 15px 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.ct-navbar-container-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.ct-navbar-brand-a {
    font-weight: var(--bold);
    color: var(--black);
    text-decoration: none;
    /* margin-right: auto; */
    flex-shrink: 0;
}

.ct-navbar-links-div {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-right: 25px;
    transition: all 0.6s ease;
}

.ct-asset-management-nav-js .ct-navbar-container-div .ct-navbar-links-div .ct-nav-link-a-js {
    color: var(--black);
    text-decoration: none;
    font-weight: var(--font-weight);
    padding: 5px 0;
    transition: color 0.6s ease;
}

.ct-asset-management-nav-js .ct-navbar-container-div .ct-navbar-links-div .ct-nav-link-a-js:hover {
    color: var(--ct-primary-solid-color);
}

.ct-mobile-button-a-js {
    display: none;
}

.ct-navbar-toggle-button-div-js {
    display: none;
}

/* end of css for nav bar */



/* css for banner section */
.ct-banner-section {
    padding-top: 120px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--ct-quatarnary-solid-color);
}

.ct-banner-section .ct-content-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    outline: none;
    height: stretch;
}

.ct-banner-section .ct-section-para .ct-text {
    margin-bottom: 20px;
}

.ct-banner-section .ct-nav-links {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ct-banner-section .ct-banner-title .ct-h-text span {
    display: block;
    color: var(--ct-primary-solid-color);
}

.ct-banner-section .ct-img-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    outline: none;

    /* display: block; */
    padding: 0px;
}

/* end of css for banner section */



/* css for about-us section */
.ct-about-us-section {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--white);
}



/* css for about-us badges */
.ct-about-us-section .ct-badge-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    left: -235px;
    margin-bottom: 5px;
}

.ct-about-us-section .ct-badge-bg {
    position: absolute;
    width: 115px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-about-us-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 25px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-about-us-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for about-us badges */



.ct-about-us-section .ct-section-heading,
.ct-about-us-section .ct-section-para .ct-text {
    text-align: center;
}

.ct-about-us-section .ct-section-heading .ct-h-text span {
    display: block;
    color: var(--ct-primary-solid-color);
}

.ct-about-us-section .ct-section-para .ct-text>span {
    display: block;
    margin-top: 20px;
}

.ct-about-us-section .ct-section-para .ct-text>span>span {
    color: var(--ct-primary-solid-color);
}

.ct-about-us-section .ct-grad-rect-bg {
    margin-top: 50px;
    background: linear-gradient(to top, #3A7AFE, #F0F8FF);
    border-radius: var(--border-radius-outer);
    justify-self: center;
}

.ct-about-us-section .ct-grad-rect-bg img {
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
}

/* end of css for about-us section */



/* css for the problems section */
.ct-the-problem-section {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--white);
}



/* css for the problems badge */
.ct-the-problem-section .ct-custom-badge-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    left: -255px;
    margin-bottom: 5px;
}

.ct-the-problem-section .ct-badge-bg {
    position: absolute;
    width: 125px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-the-problem-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 20px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-the-problem-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for the problems badge */



.ct-the-problem-section .ct-section-heading .ct-h-text,
.ct-the-problem-section div>.ct-section-para .ct-text {
    text-align: center;
}

.ct-the-problem-section .container-fluid .row {
    justify-content: center;
}

.ct-the-problem-section .ct-mb-20 {
    margin-bottom: 20px;
}

.ct-the-problem-section .ct-section-heading .ct-h-text span {
    display: block;
    color: var(--ct-primary-solid-color);
}

.ct-the-problem-section .ct-mt-20 {
    margin-top: 20px;
}

.ct-the-problem-section .ct-card {
    display: flex;
    border: 4px solid var(--white);
    border-radius: var(--border-radius-outer);
    box-shadow: var(--ct-primary-box-shadow);
    padding: 10px;
    background-color: var(--ct-quatarnary-solid-color);
    transition: background 0.6s ease-in-out;
    height: 100%;

}

.ct-the-problem-section .ct-card:hover {
    background-color: var(--ct-secondary-solid-color);
}

.ct-the-problem-section .ct-card>.ct-svg-icons-size {
    margin-right: 15px;
}

.ct-the-problem-section .ct-card:hover .ct-list>ul>li:nth-child(2) {
    color: var(--white);
}

.ct-the-problem-section .ct-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: left;
}

.ct-the-problem-section .ct-list>ul>li:nth-child(1) {
    color: var(--ct-primary-solid-color);
}

/* end of css for the problems section */



/* css for features section */
.ct-features-section {
    position: relative;
}

.ct-features-section .ct-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
}



/* css for features badge */
.ct-features-section .ct-custom-badge-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    left: -255px;
    margin-bottom: 5px;
}

.ct-features-section .ct-badge-bg {
    position: absolute;
    width: 105px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-features-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 20px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-features-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for features badge */



.ct-features-section .ct-section-heading .ct-h-text {
    color: var(--white);
    text-align: center;
}

.ct-features-section .ct-section-heading .ct-h-text>span {
    display: block;
}

.ct-features-section .ct-section-heading .ct-h-text span>span {
    color: var(--ct-primary-solid-color);
}

.ct-features-section .ct-card {
    border: 1px solid var(--ct-primary-solid-color);
    border-radius: var(--border-radius-outer);
    box-shadow: var(--ct-primary-box-shadow), var(--ct-primary-box-shadow-inset);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    background: var(--ct-secondary-solid-color);
    transition: background 0.6s ease-in-out;
    height: 100%;
}

.ct-features-section .ct-card>.ct-svg-icons-size {
    max-width: 75px;
}

.ct-features-section .ct-list li .ct-section-para .ct-text {
    color: var(--ct-tertiary-solid-color);
}

.ct-features-section .ct-card:hover {
    background: var(--black);
}

/* featured section svg and card group hover effect */
.ct-features-section .ct-card:hover .ct-svg-icons-size-2 {
    filter: var(--ct-primary-drop-shadow);
    transition: color 0.6s ease-in-out;
}

/* featured section title and card group hover effect */
.ct-features-section .ct-card:hover .ct-section-sub-heading .ct-h-text {
    color: var(--ct-primary-solid-color);
}

.ct-features-section .ct-card:hover .ct-features-section .ct-list li .ct-section-para .ct-text {
    color: var(--white);
}

.ct-features-section .ct-list {
    padding-left: 0;
    margin-top: 25px;
    margin-bottom: 0;
    list-style: none;
}

.ct-features-section .ct-list li .ct-section-sub-heading .ct-h-text {
    color: white;
}

.ct-features-section .ct-content-wrapper>.container-fluid>.row>div:nth-child(1) {
    margin-bottom: 20px;
}

.ct-features-section .ct-content-wrapper>.container-fluid>.row>div:nth-child(2n + 3) {
    margin-top: 45px;
}

.ct-features-section .ct-content-wrapper>.container-fluid>.row>div:nth-child(2n + 2) {
    margin-bottom: 45px;
}

/* end of css for features section */



/* css for modules section */
.ct-modules-section {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--white);
}

/* css for modules badge */
.ct-modules-section .ct-custom-badge-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    left: -255px;
    margin-bottom: 5px;
}

.ct-modules-section .ct-badge-bg {
    position: absolute;
    width: 105px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-modules-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 22px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-modules-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for modules badge */

.ct-modules-section .ct-section-heading .ct-h-text,
.ct-modules-section div:nth-child(1)>.ct-section-para .ct-text {
    text-align: center;
}

.ct-modules-section .ct-section-heading span {
    color: var(--ct-primary-solid-color);
}

.ct-modules-section .ct-section-heading span>span {
    display: block;
}

.ct-modules-section>.container-fluid>.row>div:nth-child(1) {
    margin-bottom: 40px;
}



/* css for modules section cards */
.ct-modules-section>.container-fluid>.row>div:nth-child(n+2) {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.ct-modules-section .ct-card {
    border: 2px solid var(--white);
    box-shadow: var(--ct-primary-box-shadow);
    border-radius: var(--border-radius-outer);
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
}

.ct-modules-section .ct-card.ct-flex-dir-1 {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: row;
    align-items: center;
}

.ct-modules-section .ct-card.ct-flex-dir-2 {
    padding-top: 40px;
    flex-direction: column;
}

.ct-modules-section>.container-fluid>.row>div:nth-child(2)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(4)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(5)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(7)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(9)>.ct-card {
    background-color: var(--ct-quatarnary-solid-color);
}

.ct-modules-section>.container-fluid>.row>div:nth-child(3)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(6)>.ct-card,
.ct-modules-section>.container-fluid>.row>div:nth-child(8)>.ct-card {
    background-color: var(--ct-tertiary-solid-color);
}

.ct-modules-section .ct-card .ct-list ul {
    list-style: none;
    padding-left: 18.4px;
    padding-right: 18.4px;
}

.ct-modules-section .ct-card div:nth-child(2) {
    margin-top: auto;
}

.ct-modules-section>.container-fluid>.row>div:nth-child(5)>.ct-card div:nth-child(2) {
    margin-top: 0px;
}

/* end of css for modules section cards */
/* css for modules section */



/* css for ai-powered section */
.ct-ai-powered-section {
    position: relative;
}

.ct-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
}



/* css for ai-powered badge */
.ct-ai-powered-section .ct-custom-badge-wrapper {
    display: flex;
    justify-content: start;
    position: relative;
    padding: 10px 0px;
    z-index: 1;
    /* left: -300px; */
    margin-bottom: 5px;
}

.ct-ai-powered-section .ct-badge-bg {
    position: absolute;
    width: 125px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-ai-powered-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 20px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-ai-powered-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for ai-powered badge */


.ct-ai-powered-section .ct-content-wrapper .container-fluid .row div:nth-child(2) {
    padding-left: 0px;
    margin-top: auto;
    display: block;
}

.ct-ai-powered-section .ct-section-heading .ct-h-text {
    color: var(--white);
    text-align: left;
}

.ct-ai-powered-section .ct-section-heading .ct-h-text>span {
    display: block;
}

.ct-ai-powered-section .ct-section-heading .ct-h-text>span>span {
    color: var(--ct-primary-solid-color);
}

.ct-ai-powered-section .ct-content-wrapper .container-fluid .row div>.ct-section-para .ct-text {
    color: var(--ct-tertiary-solid-color);
    margin-top: 16px;
    margin-bottom: 36px;
}

/* css for ai-powered section cards */
.ct-ai-powered-section .ct-card {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
}

.ct-ai-powered-section .ct-list ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px
}

.ct-ai-powered-section .ct-list ul>li:nth-child(1)>.ct-section-sub-heading .ct-h-text {
    color: var(--ct-primary-solid-color);
}

.ct-ai-powered-section .ct-list ul>li:nth-child(2)>.ct-section-para .ct-text {
    color: var(--white);
}

.ct-ai-powered-section .ct-list ul>li:nth-child(2)>.ct-section-para .ct-text>span {
    display: block;
}

/* end of css for ai-powered section cards */

.ct-ai-powered-section .ct-content-wrapper hr {
    margin: 0px 0;
    color: var(--ct-primary-solid-color);
    border: 0;
    border-top: 2px solid var(--ct-primary-solid-color);
    border-radius: var(--border-radius-outer);
    opacity: 1;
}

/* end of css for ai-powered section */



/* css for future scope section */
.ct-future-scope-section {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--white);
}



/* css for future scope badge */
.ct-future-scope-section .ct-custom-badge-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    left: -275px;
    margin-bottom: 5px;
}

.ct-future-scope-section .ct-badge-bg {
    position: absolute;
    width: 135px;
    height: 30px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-full);
    z-index: -1;
    transform: rotate(-5deg);
}

.ct-future-scope-section .ct-badge-fg {
    background-color: var(--ct-quatarnary-solid-color);
    border: 1px solid var(--ct-primary-solid-color);
    color: var(--ct-primary-solid-color);
    padding: 1px 20px;
    border-radius: var(--border-radius-badge-outer);
    display: inline-block;
    transform: rotate(-10deg);
    box-shadow: var(--ct-secondary-box-shadow);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.ct-future-scope-section .ct-badge-fg:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--ct-primary-box-shadow);
}

/* end of css for future scope badge */



.ct-future-scope-section .ct-section-heading .ct-h-text,
.ct-future-scope-section .container-fluid .row div:nth-child(1)>.ct-section-para .ct-text {
    text-align: center;
}

.ct-future-scope-section .container-fluid .row {
    justify-content: center;
}

.ct-future-scope-section .container-fluid .row div:nth-child(1) {
    /* margin-bottom: 40px; */
}

.ct-future-scope-section .container-fluid .row div .ct-section-heading .ct-h-text>span {
    display: inline;
}

.ct-future-scope-section .container-fluid .row div .ct-section-heading .ct-h-text>span>span {
    display: block;
    color: var(--ct-primary-solid-color);
}

/* css for future scope card wrapper and cards */
.ct-future-scope-section .ct-card-wrapper {
    background-color: var(--ct-quatarnary-solid-color);
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: var(--border-radius-outer);
}

.ct-future-scope-section .ct-card-wrapper,
.ct-future-scope-section .ct-card-wrapper .row > div {
    margin-top: 20px;
}

.ct-future-scope-section .ct-card {
    display: flex;
    border: 4px solid var(--white);
    border-radius: var(--border-radius-inner);
    box-shadow: var(--ct-primary-box-shadow);
    padding: 10px;
    background-color: var(--ct-quatarnary-solid-color);
    transition: background 0.6s ease-in-out;
    height: 100%;

}

.ct-future-scope-section .ct-card:hover {
    background-color: var(--ct-secondary-solid-color);
}

.ct-future-scope-section .ct-card>.ct-svg-icons-size {
    margin-right: 15px;
}

.ct-future-scope-section .ct-card:hover .ct-future-scope-section .ct-list ul>li:nth-child(2) {
    color: var(--white);
}

.ct-future-scope-section .ct-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-align: left;
}

.ct-future-scope-section .ct-list ul>li:nth-child(1) {
    color: var(--ct-primary-solid-color);
}

.ct-future-scope-section .ct-card:hover .ct-list ul>li:nth-child(2) {
    color: var(--white);
}

/* end of css for future scope card wrapper and cards */

/* end of css for future scope section */



/* css for lets transform section */

.ct-lets-transform-section {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--white);
}

.ct-lets-transform-section .ct-content-wrapper {
    padding-left: 60px;
    padding-right: 60px;
    background-color: var(--ct-primary-solid-color);
    border-radius: var(--border-radius-outer);
}

.ct-lets-transform-section .ct-content-wrapper .container-fluid .row>div {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.ct-lets-transform-section .ct-content-wrapper .ct-section-heading .ct-h-text,
.ct-lets-transform-section .ct-content-wrapper .ct-section-para .ct-text {
    color: var(--white);
    margin-bottom: 30px;
}

/* .ct-lets-transform-section .ct-content-wrapper .ct-section-heading .ct-h-text>span {
    display: inline;
} */

.ct-lets-transform-section .ct-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

/* end of css for lets transform section */



/* css for footer section */

.ct-footer-section {
    position: relative;
}

.ct-footer-section .ct-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    color: var(--white);
}

.ct-footer-section .ct-content-wrapper .ct-footer-heading .ct-h-text {
    margin-bottom: 30px;
    font-weight: var(--bold);
}

.ct-footer-section .ct-content-wrapper .ct-list ul {
    margin-bottom: 0px;
}

.ct-footer-section .ct-content-wrapper .ct-footer-col> div > .ct-list ul {
    list-style: none;
    padding-left: 0px;
} 


.ct-footer-section .ct-content-wrapper .ct-footer-col> :nth-child(1) .ct-list ul li:nth-child(2) .ct-section-para .ct-text {
    margin-bottom: 30px;
}

.ct-footer-section .ct-content-wrapper .ct-footer-col> div:nth-child(2) > .ct-list ul li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.ct-footer-section .ct-content-wrapper .ct-footer-col> div:nth-child(2) > .ct-list ul li> div:nth-child(1) {
    width: 30px;
}
.ct-footer-section .ct-content-wrapper .ct-nav-link-a {
    text-decoration: none;
}

.ct-footer-section .ct-content-wrapper .ct-nav-link-a .ct-section-para .ct-text {
    color: white;

    font-weight: var(--font-weight);
    margin-bottom: 15px;
    text-align: left;
}

.ct-footer-section .ct-content-wrapper .ct-nav-link-a .ct-section-para .ct-text:hover {
    color: var(--ct-primary-solid-color);
}

/* end of css for footer section */