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

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* FONTS */

@font-face {
    font-family: 'Roboto-Black';
    src: url(../font/roboto-black.ttf);
}

@font-face {
    font-family: 'Roboto-BlackItalic';
    src: url(../font/roboto-blackitalic.ttf);
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(../font/roboto-bold.ttf);
}

@font-face {
    font-family: 'Roboto-Light';
    src: url(../font/roboto-light.ttf);
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url(../font/roboto-medium.ttf);
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url(../font/roboto-regular.ttf);
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url(../font/roboto-thin.ttf);
}

/* COLORS */

:root {
    --primary: #1D2130;
    --blue: #6B7CFF;
    --Light-Violet: #E0E4FC;
    --Label-gradient: linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 82.83%);
    --Blur-gradient: radial-gradient(2762.36% 537.65% at -49.5% -250%, #D798E1 17.55%, #9BFFA5 27.56%, #AED3FF 49.89%, #C9D4EF 56.53%, #CACFFA 65.69%);
    --White: #FFF;
}

/* HEADER */

.m-menu {
    display: none;
}

.header-pd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--White);
    z-index: 2;
    transition: box-shadow 0.3s ease;
    padding: 0px 0px 24px 0px;
}

.header-pd.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-main {
    display: flex;
    align-items: center;
    padding-top: 25px;
    justify-content: space-between;
}

.h-right-m {
    display: flex;
    align-items: center;
}

.h-left-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-left-logo a {
    max-width: 140px;
    height: 70px;
    width: 100%;
    display: flex;
    text-decoration: none;
    align-items: center;
}

.kb_stocks-logo {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.kb_stocks-logo p {
    margin-bottom: 0px;
}

.h-left-logo a img {
    max-width: 100%;
    height: 71px;
}

.kb_stocks-logo h6 {
    color: black;
    font-size: 22px;
    margin-bottom: 1px;
}

.kb_stocks-logo p {
    color: black;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.kb_stocks-logo p span {
    color: #c32803;
}

ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.h-r-left-main ul {
    display: flex;
    align-items: center;
}

.h-r-left-main ul li {
    list-style: none;
    margin: 0px 20px;
}

.h-r-left-main ul li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-family: "Roboto", serif;

    line-height: 150%;
}

.h-r-left-main ul li:hover {
    color: #313852;
}



.h-r-f-trail button {
    border: none;
    text-decoration: none;
    padding: 19px 40px;
    border-radius: 12px;
    background: var(--Primary, #1D2130);
    color: var(--White);
    text-align: center;
    font-size: 15px;
    font-family: 'Roboto-Bold';
    line-height: 150%;
}

.h-r-f-trail button:hover {
    background: #313852;
    transition: 1s all;
}

.h-r-f-trail button:focus-within {
    background: #313852;
    transition: 1s all;
}

/* HERO-SECTION */




.hero-home-bg {
    background-image: url(../images/Blur\ Gradient.png);
    background-position: left;
    background-size: cover;
    position: relative;
    top: 0;
    padding-top: 96px;
}

.hero-h-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-h-top h5 {
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 56px;
    font-family: 'Roboto-Bold';
    line-height: 61.6px;
    max-width: 768px;
    margin-bottom: 32px;
}

.hero-h-top p {
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    font-family: 'Roboto-Regular';
    max-width: 768px;
    opacity: 0.87;
    margin-bottom: 48px;
}

.hero-h-bottom-email {
    display: flex;
    align-items: center;
    background-color: var(--White);
    padding: 8px;
    max-width: max-content;
    /* width: 100%; */
    border-radius: 20px;
}

.hero-home-top-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 64px;
}

.hero-h-bottom-email input[type="email"] {
    width: 69%;
    border: none;
    padding: 16px 24px;
}

.hero-h-bottom-email input[type="email"]::placeholder {
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    line-height: 24px;
    text-transform: capitalize;
    opacity: 0.4;
}

.hero-h-bottom-email input[type="email"]:focus-visible {
    outline: 0px;
}

.hero-h-bottom-email button {
    border: none;
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--Primary, #1D2130);
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Roboto-Medium';
    font-size: 16px;
    line-height: 24px;
    margin-left: 15px;
}

.hero-h-bottom-email button:hover {
    background: #313852;
    transition: 1s all;
}

.hero-home-b-inner {
    max-width: 1024px;
    width: 100%;
    height: auto;
}

.hero-home-b-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--Light-Violet);
}

/* BEST-SOLUTION-SECTION */

.best-solution-section-pd {
    padding: 128px 0px;
}

.hero-home-bottom-main {
    display: flex;
    justify-content: center;
    width: 100%;
}

.best-solution-top-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.best-solution-top-title h5 {
    font-size: 24px;
    line-height: 120%;
    background: linear-gradient(53.94deg, #373FFF 15.02%, #3ACAF8 59.78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Roboto-Bold';
    margin-bottom: 24px;
}

.best-solution-top-title p {
    max-width: 576px;
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: var(--Primary);
    margin-bottom: 48px;
}

.best-solution-bottom-main {

    background: var(--Light-Violet);
    border-radius: 24px;
    padding: 64px;
}

.best-solution-card-top-icon {
    max-width: 48px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.best-solution-card-top-icon img {
    max-width: 100%;
    object-fit: contain;
}

.best-bottom-text h6 {
    font-size: 30px;
    line-height: 38px;
    color: var(--primary);
    font-family: 'Roboto-Bold';
    max-width: 362px;
    margin-bottom: 20px;
}

.best-bottom-text p {
    max-width: 362px;
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    color: #1D2130;
    opacity: 0.87;
}

.best-solution-bottom-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* WORK-WITH-US-SECTION */

.work-with-us-pd {
    padding-bottom: 128px;
}

.work-with-us-main {
    display: flex;
    align-items: center;
}

.work-with-us-left {
    width: 50%;
}

.work-with-us-right {
    width: 50%;
}

.work-with-us-top-title h6 {
    font-family: 'Roboto-Bold';
    font-size: 24px;
    line-height: 28.8px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    max-width: max-content;
}

.work-with-us-top-title h5 {
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    line-height: 57.6px;
    max-width: 576px;
    margin-bottom: 32px;
}

.work-with-us-top-title p {
    color: var(--Primary, #1D2130);
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto-Regular';
    max-width: 576px;
}

.work-with-us-right-cards {
    display: flex;
    align-items: center;
    padding-bottom: 32px;
}

.work-left-icons {
    max-width: 48px;
    height: auto;
    width: 100%;
}

.work-left-icons img {
    max-width: 100%;
    height: auto;
}

.work-right-text {
    padding-left: 24px;
}

.work-right-text p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Medium';
    font-size: 20px;
    line-height: 30px;
    max-width: 504px;
    margin-bottom: 0px;
}

/* IMPRESSIONS-SECTION-START */

.impressions-section-pd {
    padding: 64px 0px;
    background-image: url(../images/impressions-blur-gradient.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.impressions-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.impressions-left-inner-top-text h6 {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    line-height: 57.6px;
    margin-bottom: 24px;
}

.impressions-left-inner-top-text p {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}

.impressions-left-inner-bottom-btn a {
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--Primary, #1D2130);
    color: var(--White, #FFF);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    font-family: 'Roboto-Medium';
}

.impressions-left-inner-bottom-btn a:hover {
    background: #313852;
    transition: 1s all;
}

.impressions-right-inner-image {
    max-width: 576px;
    width: 100%;
    height: auto;
}

.impressions-right-inner-image img {
    max-width: 100%;
}

/* LOGO-SLIDER */

.logo-slider-pd {
    padding-top: 64px;
    padding-bottom: 128px;
}

.c-logo {
    max-width: 196.967px;
    width: 100%;
}

.c-logo img {
    max-width: 100%;
}

.cus-company-logo .owl-stage {
    display: flex;
    align-items: center;
}

/* MARKETING-SECTION-START */

.marketing-main {
    display: flex;
    justify-content: space-between;
}

.marketing-left-top-title h5 {
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 24px;
    font-family: 'Roboto-Bold';
    line-height: 28.8px;
    margin-bottom: 24px;
    max-width: max-content;
}


.marketing-left-bottom-text h6 {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    line-height: 57.6px;
    margin-bottom: 32px;
}

.marketing-left-bottom-text p {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    line-height: 24px;
}

.marketing-right-cards {
    display: flex;
    align-items: center;
    padding-bottom: 43px;
}

.marketing-right-card-left {
    width: 72px;
    height: 72px;
    background: #F4F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.marketing-right-card-left img {
    max-width: 36px;
    width: 100%;
}

.marketing-right-card-right {
    padding-left: 32px;
}

.marketing-right-card-right h5 {
    color: var(--Primary, #1D2130);
    font-size: 24px;
    line-height: 25px;
    font-family: 'Roboto-Bold';
    margin-bottom: 8px;
}

.marketing-right-card-right p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0px;
}

/* FEATURE-SECCTION */

.feature-section-pd {
    padding: 128px 0px;
}

.feature-top-title {
    text-align: center;
    padding-bottom: 48px;
}

.feature-top-title h6 {
    color: #000;
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 0px;
}

.feature-middel-cards {
    display: flex;
}



.feature-card-right-line {
    width: 2px;
    margin: 0px 32px;
    background: #CDC7D2;
}

.feature-middel-section-bg {
    border-radius: 24px;
    background: rgba(215, 152, 225, 0.15);
    padding: 64px;
    display: flex;
}

.feature-card-l-inner-top-icon {
    max-width: 56px;
    width: 100%;
}

.feature-card-l-inner-top-icon img {
    max-width: 100%;
}

.feature-card-l-inner-bottom-text {
    padding-top: 24px;
}

.feature-card-l-inner-bottom-text h5 {
    color: var(--Primary, #1D2130);
    font-size: 36px;
    font-family: 'Roboto-Bold';
    line-height: 43.2px;
    margin-bottom: 16px;
    max-width: 339px;
}

.feature-card-l-inner-bottom-text p {
    max-width: 339px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0px;
}

/* 
CUSTOMER-SECTION */

.customer-section-pd {
    padding-bottom: 128px;
}

.customer-top-title {
    display: flex;
    justify-content: center;
    text-align: center;
}

.customer-top-title h6 {
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    max-width: 628px;
    line-height: 57.6px;
    margin-bottom: 0px;
}

.customer-bottom-card-main {
    padding-top: 48px;
    display: flex;
    /* align-items: center; */
}

.customer-card-body {
    padding: 64px 64px;
    border-radius: 24px;
    border: 2px solid rgba(97, 153, 237, 0.26);
    max-width: 411px;
    width: 100%;
    margin-right: 24px;
}

.customer-card-top-title h6 {
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 18px;
    font-family: 'Roboto-Bold';
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 0px;
}

.customer-card-bottom {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.card-user-profile {
    max-width: 56px;
    width: 100%;
    height: 56px;
}

.card-user-profile img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 56px;
    height: 100%;
    width: 100%;
    object-position: center;
}

.card-user-description {
    padding-top: 12px;
}

.card-user-description h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Medium';
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0px;
}

.card-user-description p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 12px;
    margin-bottom: 0px;
    line-height: 18px;
}

/* READY-SECTION-START */


.ready-top-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ready-top-title h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 56px;
    line-height: 61.6px;
    max-width: 846px;
    margin-bottom: 24px;
}

.ready-top-title p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}

.ready-bot-btn a {
    text-decoration: none;
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    max-width: max-content;
    background: #506673;
    color: var(--White, #FFF);
    font-family: 'Roboto-Medium';
    font-size: 16px;
    line-height: 24px;
}

.ready-bot-btn a:hover {
    background: #1D2130;
    transition: 1s all;
}

.ready-bot-btn a:focus-within {
    background: #1D2130;
    transition: 1s all;
}

.ready-bot-btn {
    display: flex;
    justify-content: center;

}

/* FOOTER */

.footer-pd {
    padding-top: 128px;
    background-image: url(../images/footer-blur.png);
    background-size: 100% 100%;
    background-position: top;
    position: relative;
    bottom: 0;
}

.footer-bg {
    padding: 40px 0px;
    position: absolute;
    background: var(--Primary, #1D2130);
    left: 0;
    right: 0;
}

.footer-main {
    display: flex;
    justify-content: center;
}

.f-left {
    width: 57%;
    display: flex;
    justify-content: space-between;
}

.f-right {
    display: flex;
    justify-content: end;
    width: 25%;
}

.f-left-cards {
    display: flex;
    flex-direction: column;
}

.f-left-cards p {
    color: var(--White, #FFF);
    font-size: 18px;
    font-family: 'Roboto-Bold';
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.f-left-cards a {
    text-decoration: none;
    color: var(--White, #FFF);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    line-height: 24px;
    opacity: 0.6;
    margin-bottom: 16px;
}

.f-left-cards a:hover {
    color: var(--White);
    opacity: 100%;
}

.f-left-cards a:focus-within {
    color: var(--White);
    opacity: 100%;
}

.f-right-top {
    border: 1px solid white;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
}

.border-gradient {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
}

.border-gradient-purple {
    border-image-source: linear-gradient(to left, #00C853, #B2FF59);
}

.f-right-top img {
    max-width: 100%;
    height: 100%;
}

.f-right-bottom {
    padding-top: 37px;
}

.f-right-bottom h6 {
    color: var(--White, #FFF);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto-Bold';
    line-height: 27px;
    margin-bottom: 16px;
}

.f-right-sub-bg {
    display: flex;
    align-items: center;
    max-width: max-content;
    border-radius: 12px;
    background: #2B2E3C;
}

.f-btn button {
    display: inline-flex;
    padding: 16px 40px;
    align-items: flex-start;
    border-radius: 12px;
    background: var(--White, #FFF);
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Medium';
    font-weight: 500;
    line-height: 24px;
    border: none;
}

.f-btn button:hover {
    background-color: var(--primary);
    color: var(--White);
    transition: 1s all;
    border: 1px solid #3e3e3e;
}

.f-btn button:focus-within {
    background-color: var(--primary);
    color: var(--White);
    border: 1px solid #3e3e3e;
    transition: 1s all;
}

.f-right-inner {
    max-width: max-content;
}

.f-input input[type="email"] {
    padding: 16px 22px;
    background: transparent;
    border: none;
    max-width: 290px;
    font-family: 'Roboto-Medium';
    color: var(--White);
}

.f-input input[type="email"]:focus-within {
    outline: 0px;
}

.footer-left-line {
    max-width: 442px;
    height: 1px;
    width: 100%;
    background: #888;
}

.footer-right-line {
    max-width: 445px;
    height: 1px;
    width: 100%;
    background: #888;
}

.footer-bottom {
    display: flex;
    align-items: center;
    padding-top: 0;
}

.footer-copy-right {
    margin: 0px 32px;
}

.footer-copy-right p {
    margin-bottom: 0px;
    color: var(--White, #FFF);
    font-size: 15px;
    font-weight: 400;
    font-family: 'Roboto-Regular';
    line-height: 18px;
    opacity: 0.5;
}

.footer-middel-flex {
    display: flex;
    align-items: center;
    /* margin: 0px 32px; */
}


.footer-social-icons a {
    text-decoration: none;
    max-width: 20px;
    display: flex;
    flex-direction: row;
    margin-right: 24px;
}

.footer-social-icons a img {
    max-width: 100%;
    filter: opacity(0.5);
    object-fit: contain;
}

.footer-social-icons a img:hover {
    filter: opacity(100%);
    transition: 1s all;
}

.footer-social-icons a img:focus-within {
    filter: opacity(100%);
    transition: 1s all;
}

.footer-social-icons {
    display: flex;
    align-items: center;
}

/* CONTACT-PAGE-START */



/* CONTACT-SECTION-START */

.contact-section-bg {
    position: relative;
    top: 96px;
    background-position: left;
    background-size: 100% 100%;
    background-image: url(../images/contact-bg.png);
}

.contact-section-pd {
    padding-top: 96px;
    padding-bottom: 290px;
}

.contact-top-title {
    display: flex;
    justify-content: center;
}

.contact-top-title h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 56px;
    line-height: 61.6px;
    margin-bottom: 64px;
}

.contact-bottom-bg {
    border-radius: 24px;
    background: #F0F2FE;
    padding: 64px 64px;
}



.contact-b-left-top h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 36px;
    line-height: 43.2px;
    margin-bottom: 16px;
}

.contact-b-left-top p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0px;
}

.contact-b-left-bot {
    width: 50%;
}

.contct-b-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.contact-b-left-top-input input[type="text"] {
    padding: 20px 22px;
    border: none;
    color: var(--primary);
    font-family: 'Roboto-Medium';
    border-radius: 8px;
    width: 100%;
    max-width: 303px;
}

.contact-b-left-top-input input[type="text"]:focus-within {
    outline: 0px;
}

.contact-b-left-top-input input[type="text"]::placeholder {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
}

.contact-b-left-top-input {
    display: flex;
    align-items: center;
}

input.company-input {
    margin-left: 16px;
    /* padding-left: 52px !important; */
}

.contact-b-left-middel-input {
    margin: 16px 0px;
}

.contact-b-left-middel-input input[type="email"] {
    padding: 20px 22px;
    border: none;
    color: var(--primary);
    font-family: 'Roboto-Medium';
    border-radius: 8px;
    width: 100%;
}

.contact-b-left-middel-input input[type="email"]::placeholder {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
}

.contact-b-left-middel-input input[type="email"]:focus-within {
    outline: 0px;
}

.contact-b-left-middel-input input[type="text"] {
    padding: 20px 22px;
    border: none;
    color: var(--primary);
    font-family: 'Roboto-Medium';
    border-radius: 8px;
    width: 100%;
}

.contact-b-left-middel-input input[type="text"]::placeholder {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.8;
}

.contact-b-left-middel-input input[type="text"]:focus-within {
    outline: 0px;
}

.contact-b-left-bottom-text {
    margin-bottom: 16px;
}

.contact-b-left-bottom-text textarea {
    width: 100%;
    padding-top: 18px;
    padding-left: 24px;
    height: 148px;
    border: none;
    font-family: 'Roboto-Medium';
    border-radius: 8px;
    background-color: var(--White);
    color: var(--primary);
    resize: none;
    overflow: hidden;
}

.contact-b-left-bottom-text textarea::placeholder {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    opacity: 0.8;
    line-height: 24px;
}

.contact-b-left-bottom-text textarea:focus-within {
    outline: 0px;
}

.contact-b-left-s-btn button {
    border-radius: 12px;
    background: var(--Primary, #1D2130);
    width: 100%;
    padding: 16px 40px;
    color: var(--White);
    font-family: 'Roboto-Medium';
    border: none;
    color: var(--White, #FFF);
    font-size: 16px;
    line-height: 24px;
}

.contact-bottom-main {
    display: flex;
    padding-top: 48px;
}

.contact-b-r-icon-bg {
    max-width: 48px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6B7CFF;
    border-radius: 50%;
}

.contact-b-r-icon-bg img {
    max-width: 21px;
    height: auto;
    object-fit: contain;
}

.contact-b-right-text h6 {
    color: var(--Primary, #1D2130);
    font-size: px;
    font-family: 'Roboto-Bold';
    line-height: 33.6px;
    margin-bottom: 4px;
}

.contact-b-right-text p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.6;
    margin-bottom: 0px;
}

.contact-b-right-cards {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.contact-b-right-text {
    padding-left: 24px;
}

.contact-b-right-inner {
    max-width: 311px;
    width: 100%;
}

/* PRODUCT-PAGE-CSS */

/* GROW-SECTION */

.grow-section-bg {
    position: relative;
    top: 96px;
    background-image: url(../images/grow-bg.png);
    background-position: right top;
    background-size: cover;
}

.grow-section-pd {
    padding-top: 97px;
}

.grow-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 96px;
}

.grow-left {
    width: 50%;
}

.grow-left-top-text h6 {
    color: var(--Primary, #1D2130);
    font-size: 56px;
    font-weight: 700;
    font-family: 'Roboto-Bold';
    line-height: 61.6px;
    margin-bottom: 24px;
}

.grow-left-top-text p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0px;
    max-width: 576px;
}

.grow-b-left a {
    text-decoration: none;
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--Primary, #1D2130);
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Roboto-Medium';
    font-size: 16px;
    line-height: 24px;
}

.grow-b-right {
    padding-left: 16px;
}

.grow-b-left a:hover,
.grow-b-left a:focus-within {
    transition: 1s all;
    background: #313852;
}

.grow-b-right a {
    text-decoration: none;
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 2px solid var(--Light-Violet, #E0E4FC);
    color: var(--Primary, #1D2130);
    text-align: center;
    font-family: 'Roboto-Medium';
    font-size: 16px;
    line-height: 24px;
}

.grow-b-right a:hover {
    background: var(--Primary, #1D2130);
    transition: 1s all;
    color: var(--White);
}

.grow-b-right a:focus-within {
    background: var(--Primary, #1D2130);
    transition: 1s all;
    color: var(--White);
}

.grow-left-bottom {
    display: flex;
    align-items: center;
    padding-top: 32px;
}

.grow-right-inner-image {
    max-width: 616px;
    height: auto;
    width: 100%;
}

.grow-right-inner-image img {
    max-width: 100%;
    height: auto;
}

.g-logo {
    max-width: 196.967px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-logo img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

.grow-logo-slider .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grow-bottom-main {
    padding-bottom: 30px;
}

/* OUR-SERVICE-SECTION */

.our-service-bg {
    background-image: url(../images/our-service-bg.png);
    background-position: center;
    background-size: cover;
    margin-top: 240px;
}

.our-service-top-title {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 128px;
    padding-bottom: 48px;
}

.our-service-top-title h6 {
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    line-height: 57.6px;
    max-width: 768px;
    margin-bottom: 0px;
}

.our-services-middel-bg {
    border-radius: 0px 67px 0px 0;
    background: rgba(255, 255, 255, 0.69);
    /* max-width: 1360px; */
    width: 100%;
}

.our-services-middel-pd {
    padding-left: 80px;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-right: 98px;
}

.our-services-card-top-icon {
    max-width: 56px;
    width: 100%;
    height: auto;
}

.our-services-card-top-icon img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
    width: 100%;
}

.our-services-card-bottom-text {
    padding-top: 16px;
}

.our-services-card-bottom-text h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 24px;
    line-height: 33.6px;
    margin-bottom: 16px;
}

.our-services-card-bottom-text p {
    max-width: 378px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
    opacity: 0.87;
}

.our-services-main {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.our-services-card-body {
    padding-bottom: 64px;
}

/* DATA-SECTION-SECTION */

.data-section-pd {
    padding-top: 128px;
    padding-bottom: 128px;
}



.data-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.data-left {
    width: 50%;
}

.data-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.data-left-inner h5 {
    max-width: max-content;
    font-size: 24px;
    font-family: 'Roboto-Bold';
    line-height: 28.8px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.data-left-inner h6 {
    max-width: 576px;
    font-family: 'Roboto-Bold';
    color: var(--Primary, #1D2130);
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 32px;
}

.data-left-inner p {
    max-width: 576px;
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
}

.data-right-inner-image {
    max-width: 466.983px;
    height: auto;
    width: 100%;
}

.data-right-inner-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* TIME-TRACKER-SECTION */


.time-tracker-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.time-tracker-left {
    width: 50%;
}

.time-tracker-right {
    width: 50%;
}

.timer-tracker-right-inner-text h5 {
    font-family: 'Roboto-Bold';
    font-size: 24px;
    line-height: 28.8px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: max-content;
    margin-bottom: 24px;
}

.timer-tracker-right-inner-text h6 {
    font-family: 'Roboto-Bold';
    color: var(--Primary, #1D2130);
    font-size: 48px;
    line-height: 57.6px;
    max-width: 576px;
    margin-bottom: 32px;
}

.timer-tracker-right-inner-text p {
    margin-bottom: 0px;
    opacity: 0.87;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    max-width: 576px;
    line-height: 24px;
}

.time-tracker-left-image {
    max-width: 576px;
    width: 100%;
    height: auto;
}

.time-tracker-left-image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

/* LEAD-SECTION-START */

.lead-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.lead-left {
    width: 50%;
}

.lead-right {
    width: 50%;
}

.lead-left-text h5 {
    font-family: 'Roboto-Bold';
    font-size: 24px;
    line-height: 28.8px;
    margin-bottom: 24px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: max-content;
}

.lead-left-text h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    max-width: 576px;
    margin-bottom: 32px;
}


.lead-left-text p {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
    opacity: 0.87;
}

.lead-section-pd {
    padding-top: 127px;
}

.lead-right-inner-image {
    max-width: 576px;
    width: 100%;
    height: auto;
}

.lead-right-inner-image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

/* REAL-SECTION-START */

.real-section-pd {
    padding-top: 128px;
}

.real-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.real-left,
.real-right {
    width: 50%;
}

.real-right-inner h5 {
    font-size: 24px;
    line-height: 28.8px;
    font-family: 'Roboto-Bold';
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: max-content;
    margin-bottom: 24px;
}

.real-right-inner h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    max-width: 576px;
    margin-bottom: 32px;
}

.real-right-inner p {
    max-width: 576px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.87;
    margin-bottom: 0px;
}

.real-left-image {
    max-width: 576px;
    width: 100%;
    height: auto;
}

.real-left-image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

/* PRICING-PAGE-START */


.pricing-section-pd {
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
    top: 96px;
}

.pricing-top-title {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.pricing-top-title h6 {
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 56px;
    line-height: 61.6px;
    font-family: 'Roboto-Bold';
    margin-bottom: 24px;
    max-width: 529px;
}

.pricing-top-title p {
    margin-bottom: 0px;
    max-width: 392px;
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 18px;
    font-family: 'Roboto-Regular';
    line-height: 27px;
}

.pricing-middel-top-tab-btn {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.pricing-nav-tab-bg {
    border-radius: 20px;
    background: var(--Light-Violet, #E0E4FC);
    padding: 8px 8px;
}

.pricing-tab-btn {
    display: inline-flex;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-size: 16px;
    border-radius: 12px !important;
    line-height: 24px;

}

.pricing-tab-btn:hover {
    color: #000;
}

.pricing-tab-btn.active {
    background: var(--Primary, #1D2130) !important;
}

.pricing-monthly-cards {
    background: #fff;
    border-radius: clamp(16px, 4vw, 24px);
    padding: clamp(20px, 4vw, 32px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.cd-bg {
    border: 4px solid var(--Blue, #6B7CFF);
    background: linear-gradient(176deg, #D7E7F9 13.12%, #D5F4EC 96.48%);
}

.pricing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: clamp(16px, 3vw, 24px);
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .pricing-card-top {
        flex-direction: column;
    }

    .subscription-info {
        width: 100%;
        text-align: left !important;
        !i;
        !;
    }
}

.ipo-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
}

.company-name {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    color: #1D2130;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

.subscription-info {
    text-align: right;
}

.subscription-label {
    color: #666;
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 4px;
}

.subscription-value {
    color: #2e7d32;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin: 0;
}

.details-section {
    background: #F8F9FC;
    border-radius: clamp(8px, 2vw, 12px);
    padding: clamp(16px, 3vw, 24px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 24px);
    margin-bottom: clamp(24px, 4vw, 32px);
}

.detail-item {
    text-align: left;
}

.detail-item h6 {
    color: #666;
    font-size: clamp(13px, 2vw, 15px);
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-item p {
    color: #1D2130;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    margin: 0;
    word-break: break-word;
    /* Added for better text wrapping */
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .min-investment {
        text-align: center;
    }

    .apply-btn {
        width: 100%;
    }
}

.min-investment-label {
    color: #666;
    font-size: clamp(13px, 2vw, 15px);
    margin-bottom: 4px;
}

.min-investment-value {
    color: #1D2130;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin: 0;
}

.apply-btn {
    background: #1D2130;
    color: white;
    border: none;
    border-radius: clamp(8px, 2vw, 12px);
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.apply-btn:hover {
    background: #313852;
}

/* Container responsiveness */
/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
} */

/* Spacing utilities */
.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.pricing-middel {
    background-image: url(/assets/images/pricing-blur-gredient.png);
    background-size: 100% 100%;
    padding-bottom: 60px;
}



.pricing-middel-cards {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}

.pricing-m-left {
    max-width: 24px;
    height: auto;
    width: 100%;
}

.pricing-m-left img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
}

.pricing-m-right {
    padding-left: 16px;
}

.pricing-m-right p {
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Bold';
    line-height: 24px;
    margin-bottom: 0px;
}

.pricing-m-text {
    text-align: center;
    display: flex;
    justify-content: center;
}

.pricing-m-text p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    text-align: center;
    max-width: 297px;
    font-size: 14px;
    font-family: 'Roboto-Regular';
    line-height: 21px;
}

.pricing-b-top h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 36px;
    margin-bottom: 1px;
    line-height: 43.2px;
}

.pricing-b-top p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 12px;
    line-height: 18px;
}

.pricing-bottom {
    padding-top: 48px;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.pricing-bottom-btn {
    padding-top: 24px;
}

.pricing-bottom-btn a {
    text-decoration: none;
    max-width: max-content;
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    color: var(--White, #FFF);
    text-align: center;
    font-size: 16px;
    font-family: 'Roboto-Medium';
    line-height: 24px;
    border-radius: 12px;
    background: var(--Primary, #1D2130);
}

.pricing-bottom-btn a:hover {
    transition: 1s all;
    background: #313852;
}

.pricing-bottom-btn a:focus-within {
    transition: 1s all;
    background: #313852;
}


.pricing-cards-mid {
    background: #1d2130;
    color: white;
    padding: 15px 25px;
    border-radius: 11px;
    text-align: end;
}

.pricing-cards-mid h6 {
    font-family: "Poppins", sans-serif;

}


.pricing-cards-mid p {
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}


.pricing-card-m {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 30px;
}

/* FREQUESTLY-SECTION-START */

.frequestly-section-pd {
    padding-bottom: 128px;
}

.frquestly-ask-bg {
    border-radius: 24px;
    background: #F0F2FE;
}

.frequestly-ask-pd {
    padding: 64px 64px;
    display: flex;
}

.frequestly-right {
    width: 60%;
}

.frequestly-left {
    width: 40%;
}

.frequestly-inner-left h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 28px;
    max-width: 448px;
}

.frequestly-inner-left p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    max-width: 448px;
    margin-bottom: 0px;
    opacity: 0.87;
}

.frequestly-ask-btn {
    padding: 40px 40px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 24px;
    border-radius: 24px !important;
    line-height: 33.6px;
    background: var(--White, #FFF);
    transition: padding-bottom 0.3s ease;
    /* Add smooth transition effect */
}



.frequestly-item {
    border-radius: 24px !important;
    border: none !important;
    margin-bottom: 16px;
}

.frequestly-ask-btn:not(.collapsed) {
    background: var(--White);
    color: var(--Primary);
    box-shadow: none;
}

.frequestly-ask-btn:focus-visible {
    outline: 0px;
}

.frequestly-ask-btn:focus {
    box-shadow: none;
}

.frequestly-ask-body {
    padding-left: 40px;
    padding-top: 0px;
}

.frequestly-ask-text p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    opacity: 0.87;
}

.frequestly-ask-btn:after {
    content: '+';
    color: var(--primary);
    font-family: 'Roboto-Medium';
    float: right;
    font-size: 30px;
    background-image: none;
    transition: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.active:after {
    content: "";
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: var(--Primary, #1D2130);
}

.frequestly-ask-btn:not(.collapsed)::after {
    background-image: none;
}

/* ABOUT-US PAGE START*/

/* PROUD-SECTION-START */

.proud-section-bg {
    background-image: url(../images/about-product-bg.png) !important;
    !i;
    !;
    background-position: left;
    background-size: 100% 100%;
    position: relative;
    top: 96px;
    padding-bottom: 91px;
    /* background: white !important; */
    !i;
    !;
}

.proud-section-pd {
    padding-top: 96px;
    padding-bottom: 37px;
}

.proud-top-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.proud-top-title h6 {
    color: var(--Primary, #1D2130);
    text-align: center;
    font-size: 56px;
    font-family: 'Roboto-Bold';
    line-height: 61.6px;
    margin-bottom: 24px;
}

.proud-top-title p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    opacity: 0.87;
    max-width: 768px;
}

.proud-bottom-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
}

.proud-b-images {
    margin-right: 24px;
}

.proud-b-images {
    max-width: 325px;
    height: 288px;
    width: 100%;
}

.proud-b-images img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* DATA-ANALYTS-SECTION */

.data-analyts-pd {
    padding-top: 91px;
    padding-bottom: 128px;
}

.data-anylyts-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.data-anylyts-inner h5 {
    font-family: 'Roboto-Bold';
    font-size: 24px;
    line-height: 28.8px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: max-content;
    margin-bottom: 24px;
}

.data-anylyts-inner h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 24px;
}

.data-anylyts-inner p {
    margin-bottom: 0px;
    opacity: 0.87;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 27px;
    max-width: 768px;
}

.our-goals-bg {
    background: #F0F2FE;
}

.our-goals-main {
    display: flex;
    padding: 96px 0px;
    align-items: center;
}

.our-goals-left,
.our-goals-right {
    width: 50%;
}

.our-goals-inner h5 {
    max-width: max-content;
    font-family: 'Roboto-Bold';
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 28.8px;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.our-goals-inner h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 57.6px;
    max-width: 607.002px;
}

.our-goals-inner p {
    color: #6D6E76;
    font-family: 'Roboto-Regular';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
    max-width: 607.002px;
}

.our-goals-inner {
    max-width: max-content;
}

.our-goals-right {
    display: flex;
    justify-content: end;
}

/* CORPORATE-SECTION */


.corporate-pd {
    padding: 128px 0px;
}


.corporate-top-title {
    text-align: center;
}

.corporate-top-title h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 16px;
}

.corporate-top-title p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    line-height: 24px;
}

.corporate-bottom-bg {
    padding: 64px 64px;
    margin-top: 48px;
    border-radius: 24px;
    background: #F9F0FB;
}

.corporate-b-top-icons {
    max-width: 48px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-b-top-icons img {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.corporate-b-middel-text {
    padding-top: 24px;
}


.corporate-b-middel-text h6 {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Bold';
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    margin-bottom: 16px;
}

.corporate-b-middel-text p {
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    max-width: 341px;
    margin-bottom: 0px;
}


.corporate-bottom-bg {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}


.corporate-b-cards {
    padding-bottom: 64px;
}

/* TALANETD-SECTION-START */

.talanted-main {
    display: flex;
}

.talanted-left {
    width: 40%;
}

.talanted-right {
    width: 60%;
}

.talanted-left-inner-text {
    padding-top: 38px;
}

.talanted-left-inner-text h6 {
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 57.6px;
    margin-bottom: 24px;
}

.talanted-left-inner-text p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-family: 'Roboto-Regular';
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    max-width: 408px;
}

.talanted-right-inner {
    display: flex;
}

.talanted-team-card-body {
    border-radius: 12px;
    background: var(--Light-Violet, #E0E4FC);
    max-width: 264px;
    width: calc(100% / 3);
    margin-bottom: 24px;
    margin-right: 24px;
}

.talanted-team-top-image {
    max-width: 264px;
    width: 100%;
    height: 224px;
}

.talanted-team-top-image img {
    height: 100%;
    border-radius: 12px 12px 12px 12px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.talanted-team-bottom-text {
    padding-left: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.talanted-team-bottom-text h6 {
    color: var(--Primary, #1D2130);
    font-size: 24px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 33.6px;
    margin-bottom: 4px;
}

.talanted-team-bottom-text p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto-Regular';
    line-height: 24px;
    opacity: 0.9;
}

section.talnted-team-section {
    padding-bottom: 128px;
}

/* BLOG-PAGE START */

.read-blogs-pd {
    padding-top: 40px;
    padding-bottom: 48px;
    /* position: relative; */
    margin-bottom: 115px;
    /* top: 96px; */
}

.read-top-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.read-top-title h6 {
    color: var(--Primary, #1D2130);
    font-size: 56px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 61.6px;
    margin-bottom: 24px;
}

.treanding-post-section {
    padding-top: 60px;
    padding-bottom: 0;
}

.read-top-title p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-size: 18px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    line-height: 27px;
    max-width: 795px;
}

.treanding-post-main {
    padding: 64px 64px;
    border-radius: 24px;
    border: 1px solid #D8D8D8;
    display: flex;
    align-items: center;
}

.treanding-post-left,
.treanding-post-right {
    width: 50%;
}


.treanding-post-inner-left h4 {
    font-size: 24px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 28.8px;
    max-width: max-content;
    background: var(--Label-gradient, linear-gradient(54deg, #373FFF 15.02%, #3ACAF8 59.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.treanding-post-inner-left h5 {
    color: var(--Primary, #1D2130);
    font-size: 48px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 57.6px;
    max-width: 552px;
}

.treanding-post-inner-left h6 {
    color: #6D6E76;
    font-family: 'Roboto-Regular';
    font-size: 16px;
    max-width: 552px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 19px;
}

.treanding-post-inner-left p {
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-family: 'Roboto-Medium';
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0px;
    opacity: 0.6;
}

.treanding-post-right-inner-image {
    max-width: 552px;
    height: 319px;
    width: 100%;
}

.treanding-post-right-inner-image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.treanding-post-right {
    display: flex;
    justify-content: end;
}

/* ALL-POST -SECTION */

.all-post-section-pd {
    padding: 128px 0px;
}

.all-post-top-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.all-post-top-title h6 {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-size: 56px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 61.6px;
}

.all-post-bottom-main {
    padding-top: 64px;
}

.all-post-b-card-body {
    max-width: 411px;
    margin-right: 24px;
}

.all-post-card-top-image {
    max-width: 411px;
    height: 256px;
    width: 100%;
}

.all-post-card-top-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.all-post-card-bot-text {
    padding-top: 32px;
}

.all-post-card-bot-text h5 {
    color: var(--Primary, #1D2130);
    font-size: 24px;
    font-family: 'Roboto-Bold';
    font-weight: 700;
    line-height: 33.6px;
    max-width: 411px;
    margin-bottom: 16px;
}

.all-post-card-bot-text h6 {
    color: var(--Primary, #1D2130);
    max-width: 411px;
    font-size: 16px;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 24px;
    opacity: 0.87;
}

.all-post-card-bot-text p {
    margin-bottom: 0px;
    color: var(--Primary, #1D2130);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roboto-Medium';
    line-height: 24px;
    opacity: 0.6;
}

.all-post-b-row {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-bottom: 64px;
}

.pricing-tab-btn.active:after {
    display: none;
}

.freetrail-bg {
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
    /* background-image: url(../images/free-bg.png); */
    background-repeat: none;
    background-size: 100% 100%;
}

.freetrail-w-bg {
    background-color: white;
    padding: 30px 30px;
    border-radius: 15px;
    max-width: 456px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
}

.freetrail-main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.freetrail-top-title h6 {
    color: black;
    font-family: "Josefin Sans", sans-serif;
    font-size: 23px;
}

.freetrail-top-title p {
    margin-bottom: 0px;
    font-size: 13px;
    font-family: 'Roboto-Regular';
    color: grey;
}

.form-edit:focus-visible {
    outline: 0px;
}

.form-edit:focus-within {
    border-bottom: 2px solid grey;
    box-shadow: none;
}

.form-edit {
    border-bottom: 2px solid #bbbbbb;
    border-top: none;
    border-right: none;
    border-left: none;
    padding-left: 0px !important;
    border-radius: 0px !important;
}

.f-edit label {
    padding-left: 0px !important;
    COLOR: darkgrey;
}

.freetrail-input {
    padding-top: 15px;
}

.freetrail-input form button {
    width: 100%;
    padding: 11px 0px;
    margin-top: 20px;
    border: none;
    transition: 1s;
    background: teal;
    color: white;
}


.freetrail-input form button:hover {
    background-color: black;
    color: white;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(19, 21, 20, 0.9);
    z-index: 20000;
    cursor: pointer;

    backdrop-filter: blur(5px);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 28px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    z-index: 555555;
}

.fullscreen-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(235 29 29 / 0%);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
}

.thank-msg-bg {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.thank-msg-main {
    max-width: 430px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.thank-msg-top-title h6 {
    font-family: "Poppins", sans-serif;
    color: black;
    font-size: 23px;
    margin-bottom: 0px;
}

.thank-msg-top-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-msg-top-title img {
    max-width: 30px;
    width: 100%;
    margin-left: 10px;
}

.thank-middel {
    border: 2px dashed black;
    padding: 9px 10px;
    margin-top: 25px;
    border-radius: 10px;
}

.thank-middel p {
    font-family: "Poppins", sans-serif;
    color: black;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 27px;
}

.thank-bottom {
    max-width: 40px;
    width: 100%;
    margin-top: 15px;
}

.thank-bottom img {
    max-width: 100%;
    width: 100%;
}

.for-dropdown {
    text-decoration: none;
    color: var(--primary);
    font-size: 16px;
    font-family: 'Roboto-Regular';
    line-height: 150%;
}

.cus-font a {
    color: white !important;
}

label.for-dropdown {
    display: flex;
    align-items: center;
}

.marketing-right {
    padding-left: 75px;
}

.feature-main p {
    text-align: center;
}

section.ready-section-bg {
    padding-bottom: 0;
}


.pricing-monthly-cards {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
    max-width: 800px;
    width: 100%;
    margin-bottom: 45px;
}

.pricing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.ipo-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.company-name {
    font-size: 28px;
    font-weight: 600;
    color: #1D2130;
    margin: 0;
    line-height: 1.3;
}

.subscription-info {
    text-align: right;
}

.subscription-label {
    color: #666;
    font-size: 16px;
    margin-bottom: 4px;
}

.subscription-value {
    color: #2e7d32;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.details-section {
    background: #F8F9FC;
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item {
    text-align: left;
}

.detail-item h6 {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-item p {
    color: #1D2130;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.min-investment-label {
    color: #666;
    font-size: 15px;
    margin-bottom: 4px;
}

.min-investment-value {
    color: #1D2130;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.apply-btn {
    background: #1D2130;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.apply-btn:hover {
    background: #313852;
}

/* New styles for price range */
.price-range {
    display: flex;
    flex-direction: column;
}

.price-range-value {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.currency-symbol {
    font-size: clamp(14px, 2vw, 16px);
    color: #1D2130;
}

@media (max-width: 480px) {
    .details-section {
        grid-template-columns: 1fr;
    }

    .detail-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .detail-item:last-child {
        border-bottom: none;
    }

    .price-range-value {
        justify-content: flex-start;
    }
}

@media (max-width: 360px) {
    .price-range-value {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .price-range-separator {
        margin: 4px 0;
    }
}

.pricing-monthly-main {
    margin-top: 55px;
}


.footer-pd {
    /* display: none; */
}


.chat-bot-container {
    position: fixed;
    bottom: 213px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.chat-bot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-box {
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chat-header {
    background: #1a73e8;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-body {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
}

.chat-input.disabled {
    display: none;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.chat-input button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.chat-toggle {
    position: fixed;
    bottom: 0;
    right: 20px;
    background: #1a73e8;
    color: white;
    width: 60px;
    top: 820px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
    line-height: 27px;
    position: relative;
    /* height: 245px; */
    padding-bottom: 23px;
}

.chat-message a {
    margin-top: 100px;
    /* position: absolute; */
    bottom: 17px;
    background: white;
    padding: 8px 18px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075);
    border-radius: 45px;
    /* display: flex; */
    align-items: center;
    /* margin-right: 15px; */
}

.user-message {
    background: #e3f2fd;
    margin-left: auto;
}

.bot-message {
    background: #f5f5f5;
}

.chat-input.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.chat-input.disabled button,
.chat-input.disabled input {
    cursor: not-allowed;
}

.whatsapp-bg a {
    text-decoration: none;
}

.cus-home-bg {


    height: 100VH;

    display: flex;

    justify-content: center;

    align-items: center;

    padding-top: 0px;
}

.cus-logo {
    padding: 0;
}

.cus-com-logo {
    max-width: 160px;
}


.sansex-main {
    display: none;
}

.f-right-top h5 {
    color: white;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 6px;
}

.f-right-top p {
    color: white;
    font-size: 17px;
    font-family: 'Roboto-regular';
    margin-bottom: 0px;
}

div#chatContainer {
    top: 325px;
}

.footer-top {
    padding-bottom: 25px;
}

.header-top {
    top: 155px;
    position: relative;
}

.our-pics-pd {
    /* padding-top: 100px; */
    padding-bottom: 250px;
}


.mf-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.mf-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 33.33%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.mf-card:hover {
    transform: translateY(-5px);
}

.mf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
    padding-bottom: 25px;
}

.mf-card-header img {
    height: 40px;
    object-fit: contain;
}

.mf-rating {
    color: #ffc107;
    font-size: 18px;
}

.mf-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    /* margin-bottom: 15px; */
    /* min-height: 44px; */
}

.mf-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mf-return,
.mf-risk {
    /* text-align: center; */
}

.return-value {
    font-size: 20px;
    font-weight: 700;
    color: #46287A;
}

.return-period,
.risk-text {
    font-size: 12px;
    color: #666;
}

.risk-label {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
}

.mf-invest-btn {
    width: 100%;
    padding: 12px;
    background: #46287A;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.mf-invest-btn:hover {
    background: #351d5b;
}

@media (max-width: 768px) {
    .mf-card {
        width: 100%;
    }
}

.mutual-fund-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    /* background-color: #ffffff; */
    border-radius: 12px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    /* padding: 25px; */
    /* max-width: max-content; */
    width: 100%;
}

.feature-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 35%;
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: #f8f5ff;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #46287A;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(70, 40, 122, 0.1);
}

.feature-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .feature-item {
        width: 100%;
    }

    .mutual-fund-features {
        padding: 20px 15px;
    }
}


/* New styles for mutual fund cards */
.mf-category {
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: inline-block;
    margin: 5px 0;
}

.mf-nav {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 17px;
    font-weight: 600;
    color: #0156b3;
    border: 1px solid #dddddd;
    border-radius: 50px;
    padding: 5px 17px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075);
}

/* Adjust existing card spacing */
.mf-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 0px;
    align-items: self-end;
}

/* Adjust rating style */
.mf-rating {
    display: flex;
    align-items: center;
    color: #FFA500;
    font-weight: 600;
}

/* Improve header layout */
.mf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mf-card-header .mf-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}


.top-mutual-funds {
    margin-bottom: 30px;
}

.view-more-container {
    margin-top: 0;
    margin-bottom: 55px;
}

button.view-more-btn {
    background-color: #2868d8;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 31px;
    font-size: 18px;
}


/* Trading Opportunities Section Styles */
.trading-opportunities-section {
    margin: 60px auto;
}

.trading-cards-container {
    margin: 40px 0;
}

.trading-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.trading-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.trading-card-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.trading-logo-container {
    display: flex;
    align-items: center;
}

.trading-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    overflow: hidden;
}

.trading-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.trading-symbol h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333366;
}

.trading-type {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.trading-action {
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.trading-action.buy {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.trading-action.sell {
    background-color: #ffebee;
    color: #c62828;
}

.trading-card-body {
    padding: 15px;
}

.trading-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.price-column {
    flex: 1;
}

.price-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.price-value.locked {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 5px;
    width: 80%;
}

.trading-return-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.return-label {
    font-size: 14px;
    color: #666;
}

.return-value {
    font-size: 18px;
    font-weight: 700;
}

.return-value.positive {
    color: #2e7d32;
}

.return-value.negative {
    color: #c62828;
}

@media (max-width: 1199px) {
    .trading-symbol h3 {
        font-size: 16px;
    }

    .price-value {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .trading-card {
        margin-bottom: 20px;
    }
}

/* F&O Trading Sections CSS */
.fno-explanation-section {
    padding: 60px 0;
    background-color: #fff;
}

.fno-risks-rewards-section {
    padding: 60px 0;
    background-color: #f9f9ff;
}

.fno-start-trading-section {
    padding: 60px 0;
    background-color: #fff;
}

.explanation-content {
    /* max-width: 900px; */
    margin: 0 auto;
    line-height: 1.8;
}

.explanation-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.explanation-content .highlight-link {
    color: #102770;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.explanation-content .highlight-link:hover {
    color: #3359cc;
    text-decoration: underline;
}

.subsection-title {
    color: #102770;
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    text-align: center;
}

.benefits-risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.benefit-item,
.risk-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.benefit-item:hover,
.risk-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #102770 0%, #3359cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-container i {
    font-size: 24px;
    color: white;
}

.icon-container.red {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.benefit-item h4,
.risk-item h4 {
    color: #333366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-item p,
.risk-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.strategy-container {
    margin: 30px 0;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.strategy-item:hover {
    transform: translateX(5px);
}

.strategy-number {
    width: 40px;
    height: 40px;
    background-color: #102770;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.strategy-content {
    flex: 1;
}

.strategy-content h4 {
    color: #333366;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.strategy-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.conclusion-text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    font-weight: 500;
}

.trading-concept {
    margin: 30px 0;
}

.concept-text {
    color: #46287A;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .benefits-risks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .explanation-content p,
    .concept-text {
        font-size: 15px;
        text-align: left;
    }

    .subsection-title {
        font-size: 22px;
    }

    .strategy-item {
        flex-direction: column;
    }

    .strategy-number {
        margin-bottom: 15px;
    }
}

.sortable {
    cursor: pointer;
    user-select: none;
}

.sortable:hover {
    background-color: #f8f9fa;
}

.sortable.asc i::before {
    content: "\f0de";
    /* fa-sort-up */
}

.sortable.desc i::before {
    content: "\f0dd";
    /* fa-sort-down */
}

/* Filter button styles */
.filter-btn {
    transition: all 0.3s ease;
    /* border: 1px solid #dee2e6; */
    background-color: #fff;
    color: #6c757d;
}

.text-muted {
    font-size: 15px;
}

.custom-font {
    font-size: 15px;
}

.content-container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: 600;
    color: #102770;
    /* text-align: center; */
    margin-bottom: 20px;
}

.content-container p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
}


.contact-order-list ol {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
}

.contact-order-list ol li {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    text-decoration: underline;
    color: #102770;
}

p.mt-3.contect-fo-p {
    font-family: 'Roboto-Regular';
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
}


.contact-order-list {
    padding-top: 25PX;
}

.custom-font-title {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #102770;
    /* text-align: center; */
    margin-bottom: 20px;
    max-width: max-content;
    border: 1px solid #f1f1f1;
    padding: 10px 20px;
    border-radius: 5px;
}

.ipo-tab:hover {
    background-color: #0056b3;
    color: white !important;
    border-radius: 5px;
}

/* STOCK PICKS SECTION STYLES */

.stock-picks-section {
    padding: 100px 0 80px;
    background-color: #f9faff;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 42px;
    color: #102770;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #373FFF 0%, #3ACAF8 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.stock-picks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.stock-pick-card {
    width: 100%;
    max-width: 550px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.stock-pick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f2fe 100%);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stock-info {
    flex: 1;
}

.recommendation-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.recommendation-badge.buy {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.recommendation-badge.wait {
    background-color: #fff3e0;
    color: #e65100;
}

.recommendation-badge.sell {
    background-color: #ffebee;
    color: #c62828;
}

.stock-name {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 26px;
    color: #1D2130;
    margin: 0 0 5px;
}

.stock-fullname {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.stock-logo {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stock-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.card-body {
    padding: 25px;
}

.stock-description {
    margin-bottom: 25px;
}

.stock-description p {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.stock-targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
}

.target-item {
    display: flex;
    flex-direction: column;
}

.target-item.highlight {
    position: relative;
}

.target-item.highlight::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #373FFF 0%, #3ACAF8 100%);
    bottom: -20px;
    left: 0;
    border-radius: 10px;
}

.target-label {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.target-value {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 18px;
    color: #1D2130;
}

.target-value.status {
    color: #2e7d32;
}

.card-footer {
    padding: 0 25px 25px;
}

.stock-chart {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stock-chart img {
    width: 100%;
    height: auto;
    display: block;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.published-date {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 14px;
    color: #666;
}

.action-button {
    display: inline-block;
    padding: 10px 20px;
    background: #102770;
    color: #fff;
    font-family: 'Roboto-Medium', sans-serif;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #373FFF;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.disclaimer-content h4 {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 18px;
    color: #1D2130;
    margin-bottom: 10px;
}

.disclaimer-content p {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .stock-targets {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .stock-pick-card {
        max-width: 100%;
    }
    
    .stock-targets {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-item.highlight::before {
        display: none;
    }
    
    .card-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .action-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stock-picks-section {
        padding: 70px 0 50px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .stock-logo {
        align-self: center;
    }
}

