:root {
    --text-color: #fff;
    --black: #000;
    /* --primary-color: #2F3C7E; */
    --primary-color: #1f7ab1;
    --secondary-color: #2F3C7E;
    --primary-background: linear-gradient(to right, #ffffff, #F5F9FA): --body-color: #14092d;
    --faded-text: rgba(124, 110, 151, 1);
    --primary-bg-color: #eceef0;
    --border-color: #322f38;
    --badge-background: rgb(31 122 177 / 30%);
    --badge-text-color: #b9b2c9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter',
        sans-serif
}
.mt-3 {
    margin-top: 1rem !important;
}
.w-full {
    width: 100%;
}
.h-100 {
    height: 100% !important;
}
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

body,
html {
    color: var(--black);
    margin: 0 auto;
    width: fit-content;
    scroll-behavior: smooth;
}

/* Buttons */
.btn {
    padding: 10px 10px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    border-radius: 4px;
    min-height: 45px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.btn--outline {
    background-color: transparent;
    color: var(--text-color);
    transition: color 0.3s,
        border-color 0.3s;

}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn--primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
}

.btn--primary:hover {
    background-color: var(--primary-color);
}

.drawer {
    position: fixed;
    overflow: auto;
    top: 0;
    right: -500px;
    /* hidden by default */
    width: 500px;
    height: 100%;
    background-color: var(--primary-bg-color);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.subscription-left,.subscription-right{
    flex: 1;
    padding: 0 15px;
    width: 100%;
}
.drawer.open {
    right: 0;
}

.drawer-content {
    padding: 20px;
}

.badge-text {
    display: inline-block;
    background: var(--badge-background);
    color: var(--primary-color);
    font-size: 1rem;
    border-radius: 8px;
    padding: 10px 30px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 500;
    text-transform: uppercase;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 15vw;
}

.navbar__links {
    display: flex;
    gap: 25px;
}

.navbar__link {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.navbar__link {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.navbar__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 15%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar__link:hover::after {
    width: 40%;
}

.navbar__link:hover {
    color: var(--primary-color);
}

.navbar__actions {
    display: flex;
    gap: 10px;

    button:first-child {
        margin-left: auto;
    }
}

.navbar__dropdown {
    position: relative;
}

.navbar__dropdown>.navbar__link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-bg-color);
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    min-width: 160px;
    z-index: 1000;
    flex-direction: column;
}

.navbar__dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
}

/* Hide toggle by default on desktop */
.navbar__toggle {
    display: none;
}

.navbar__logo svg {
    width: 12rem;
    color: var(--text-color);
    height: auto;
}

.form-input {
    margin-bottom: 10px;
}

.form-input label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.drawer-content-container {
    margin-bottom: 20px;
    width: 100%;
}

.subscription {
    padding: 0 15vw;
    background: var(--primary-bg-color);
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.subscription-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.subscription-card ul {
    margin: 0px;
    padding: 0;
}
.subscription-card li {
    list-style: none;
    padding: 10px 0px;
}
.subscription-card .badge {
    width: max-content;
    padding: 12px 20px;
}
.badge {
    color: white !important;
    background-color: var(--primary-color);
    border-radius: 10em;
    padding: 4px 15px 5px 15px;
}
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.subscription-card h3 {
    font-size: 35px;
    padding: 15px 0px;
}
.drawer-content__title {
    font-size: 2rem;
    color: var(--secondary-color);
}

.form-input textarea.form-control {
    height: 5rem;
}

.form-input .form-control {
    font-size: 14px;
    border: 1px solid #dee2e6;
    padding: 5px;
    width: 100%;
    height: 45px;
    border-radius: 5px;
}

/* Hide navbar links and show toggle on mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    .navbar__links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary-bg-color);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        /* Hide by default */
        padding: 10px 0;
        z-index: 999;
    }

    .navbar__link {
        width: 100%;
        padding: 15px 20px;
    }

    .navbar__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navbar__toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-right: 12px;
    }

    .navbar__toggle span {
        width: 28px;
        height: 3px;
        background: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s;
    }

    /* Show menu when active */
    .navbar__links.active {
        display: flex;
    }

    .navbar__logo svg {
        width: 12.5rem;
        height: auto;
    }

    .navbar__actions {
        flex-direction: row;
        width: 100%;
        /* Optional: take full width if needed */
        justify-content: flex-start;
        /* Or center, if you prefer */
        padding: 10px 20px 0 20px;
        /* Optional: adjust for spacing */
        margin-top: 10px;
    }

}

@media (max-width: 1024px) {

    .navbar {
        padding: 0 40px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 14px;
        min-width: 90px;
    }

    .navbar__logo svg {
        width: 8.5rem;
        height: auto;
    }
}

/* main section start */

.hero {
    gap: 3rem;
    overflow: hidden;
    min-height: calc(100vh - 120px);
    padding: 0 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    flex: 1.5;
}

.hero__title {
    font-size: 3.5rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.hero__subtitle {
    margin-top: 2.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.hero__email-form {
    margin-top: 2.5rem;
    height: 60px;
    display: flex;
}

.hero__email-input {
    padding: 0 1rem;
    width: 68%;
    background: transparent;
    border: 1px solid gray;
    color: var(--text-color);
    height: 100%;
    font-size: 1.1rem;
    margin-right: 8px;
}

.hero__email-input::placeholder {
    color: var(--text-color);
}

.hero__note {
    display: block;
    margin-top: 1.7rem;
    color: var(--text-color);
}

.hero__image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-footer {
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 16vh;
    color: var(--faded-text);
}

.company__logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 1.5rem 15vw;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .hero {
        gap: 3rem;
        margin-top: 5rem;
        min-height: unset;
        padding: 0 40px;
    }

    .hero__content {
        margin-top: 5rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__email-form {
        height: 48px;
    }

    .hero__email-input {
        font-size: 1rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
        align-items: center;
        min-height: unset;
        padding: 0 16px;
    }

    .hero__content {
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero__subtitle {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .hero__email-form {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        margin-top: 1.5rem;
        gap: 10px;
    }

    .hero__email-input {
        width: 100%;
        margin-right: 0;
        min-width: 0;
        font-size: 1rem;
        height: 42px;
    }

    .hero__note {
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    .hero__image {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero__image img {
        max-width: 90vw;
        height: auto;
    }

    .company__logos {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero {
        margin-top: 1.5rem;
        gap: 1rem;
        padding: 0 6px;
    }

    .hero__content {
        margin-top: 1rem;
        padding: 0 6px;
    }

    .hero__title {
        font-size: 1.3rem;
    }

    .hero__subtitle {
        font-size: 0.97rem;
    }

    .hero__email-form {
        margin-top: 1rem;
    }

    .main-footer {
        font-size: 0.9rem;
    }
}

.navbar-hero-container {
    background: linear-gradient(135deg, #175462 0%, #2F3C7E 50%, rgb(20, 9, 44) 100%);
}

/* main section end */


/* features section start */

.features {
    padding: 4rem 15vw;
    background-color: var(--primary-bg-color);
}

.features__badge {
    display: block !important;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.features__tag {
    text-align: center;
    font-size: 1rem;
    border: 1px solid gray;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    text-transform: uppercase;
}

.features__title {
    width: 36rem;
    margin: 1rem auto;
    text-align: center;
}

.features__description {
    width: 30rem;
    text-align: center;
    margin: 0 auto;
}

.features__content {
    display: flex;
    margin-top: 4rem;
    gap: 3rem;
    justify-content: center;
}

.features__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1 1 340px;
}

.features__item {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

.features__item--highlighted {
    align-items: flex-start;
    gap: 1rem;

    .features__icon {
        font-size: 1.8rem;
        margin-top: auto;
        margin-bottom: auto;
    }
}

.features__text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.features__item-title {
    font-size: 1.5rem;
}

.features__item-subtext {
    opacity: 0.5;
    margin-top: 8px;
}

.features__right {
    min-height: 30rem !important;
    background-color: #062f47;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    flex: 1 1 350px;
    padding: 2rem;
}

.features__right img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .features {
        padding-left: 40px;
        padding-right: 40px;
    }

    .features__title {
        font-size: 2.1rem;
        width: 95vw;
        max-width: 32rem;
    }

    .features__description {
        width: 90vw;
        max-width: 25rem;
        font-size: 1rem;
    }

    .features__content {
        gap: 2rem;
    }

    .features__right {
        min-height: 22rem !important;
        padding: 1.2rem;
    }

    .features__item-title {
        font-size: 1.1rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .features {
        padding-left: 16px;
        padding-right: 16px;
    }

    .features__title {
        font-size: 1.35rem;
        width: 98vw;
        margin: .6rem auto;
    }

    .features__description {
        width: 98vw;
        font-size: 0.98rem;
    }

    .features__content {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .features__left,
    .features__right {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }

    .features__right {
        min-height: 15rem !important;
        padding: 0.7rem;
    }

    .features__item {
        gap: 1.2rem;
        padding: 0.8rem;
        align-items: center;
    }

    .features__item-title {
        font-size: 1rem;
    }

    .features__item-subtext {
        font-size: 0.92rem;
    }

    .features__tag {
        font-size: 0.93rem;
        padding: 7px 13px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .features {
        padding-left: 6px;
        padding-right: 6px;
    }

    .features__title {
        font-size: 1.07rem;
        width: 100vw;
    }

    .features__description {
        font-size: 0.93rem;
    }

    .features__item,
    .features__item--highlighted {
        gap: 0.7rem;
        padding: 0.6rem;
    }

    .features__right {
        min-height: 10rem !important;
        padding: 0.3rem;
    }
}

/* features section end */



/* about section start */

.about {
    display: flex;
    gap: 6rem;
    align-items: center;
    padding: 6rem 15vw;
    background: var(--text-color);
    /* background: var(--primary-background); */
}

.about__content {
    flex: 1;
}

.about__title {
    font-size: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about__description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.85;
}

.about__image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .about {
        gap: 2.5rem;
        padding-left: 40px;
        padding-right: 40px;
    }

    .about__title {
        font-size: 2.1rem;
    }

    .about__image {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about__content {
        width: 100%;
    }

    .about__title {
        font-size: 1.35rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }

    .about__description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about__image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
    }

    .about__image img {
        max-width: 90vw;
        margin: 0 auto;
    }

    .badge-text {
        font-size: 0.92rem;
        padding: 6px 13px;
    }
}

@media (max-width: 480px) {
    .about {
        gap: 1rem;
        padding-left: 6px;
        padding-right: 6px;
    }

    .about__title {
        font-size: 1.02rem;
    }

    .about__description {
        font-size: 0.92rem;
    }

    .about__image {
        max-width: 210px;
    }
}

/* about section end */


/* customer section start */

.customers {
    background-color: var(--primary-bg-color);
    /* background: var(--primary-background); */
    padding: 4rem 0;
}

.customers__title {
    font-size: 3rem;
    text-align: center;
    width: 40rem;
    margin: auto;
    color: var(--secondary-color);
}

.customers__description {
    width: 36rem;
    text-align: center;
    margin: 1rem auto;
}

.customers__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.customers__stat-item {
    width: 16rem;
    height: 16rem;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.customers__stat-number {
    font-size: 1.5rem;
    margin: 0;
}

.customers__stat-text {
    opacity: 0.6;
    margin-top: 1rem;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .customers__title {
        font-size: 2.1rem;
        width: 95vw;
        max-width: 32rem;
    }

    .customers__description {
        width: 90vw;
        max-width: 28rem;
        font-size: 1rem;
    }

    .customers__stats {
        gap: 1.5rem;
        align-items: center;
    }

    .customers__stat-item {
        width: 13rem;
        height: 13rem;
    }

    .customers__stat-number {
        font-size: 1.15rem;
    }

    .customers__stat-text {
        font-size: 0.96rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .customers__title {
        font-size: 1.35rem;
        width: 100vw;
        margin: .6rem auto;
    }

    .customers__description {
        width: 98vw;
        font-size: 0.99rem;
    }

    .customers__stats {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    .customers__stat-number {
        font-size: 1.05rem;
    }

    .customers__stat-text {
        font-size: 0.93rem;
        margin-top: .6rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .customers__title {
        font-size: 1rem;
    }

    .customers__description {
        font-size: 0.93rem;
    }

    .customers__stat-item {
        width: 12rem;
        height: 12rem;
    }

    .customers__stat-number {
        font-size: 0.98rem;
    }

    .customers__stat-text {
        font-size: 0.89rem;
    }
}

/* customer section end */

/* support section start */

.support {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 15vw;
    background: var(--text-color);
    /* background: var(--primary-background); */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.support__content {
    flex: 1;
}

.support__title {
    font-size: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.support__description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.85;

}

.support__channels {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.support__channel {
    display: flex;
    gap: 1rem;
    border: 1px solid #322f38;
    padding: 8px;
    border-radius: 4px;
    align-items: center;
}

.support__channel:first-child {
    background-color: rgb(24, 32, 87);
    color: #fff;
}

.support__channel__logo {
    font-size: 1.35rem;
}

.link-group {
    border: 1px solid #322f38;
    border-radius: 8px;
    width: 70%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    align-items: center;
    background: #412e66;
    gap: 1rem;
    margin-top: 1.5rem;
}

.link-text {
    text-decoration: none;
    color: inherit;
    word-break: break-all;
    font-size: 1rem;
}

.support__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support__btn-go {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.support__visuals {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support__visuals img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .support {
        flex-direction: row;
        gap: 2rem;
        padding-left: 40px;
        padding-right: 40px;
    }

    .support__title {
        font-size: 2.1rem;
    }

    .link-group {
        width: 95%;
        padding: 0.8rem;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .support {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 16px;
        padding-right: 16px;
    }

    .support__content {
        width: 100%;
    }

    .support__title {
        font-size: 1.4rem;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
        text-align: center;
    }

    .support__description {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .support__channels {
        flex-wrap: wrap;
        gap: 0.7rem;
        justify-content: center;
    }

    .support__channel {
        font-size: 0.98rem;
        padding: 6px;
        border-radius: 4px;
        min-width: 105px;
        justify-content: center;
    }

    .support__channel__logo {
        font-size: 1.1rem;
    }

    .link-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        padding: 0.8rem 0.6rem;
        margin-top: 1.2rem;
    }

    .support__visuals {
        width: 100%;
        justify-content: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .support__visuals img {
        max-width: 90vw;
        margin: 0 auto;
    }

    .badge-text {
        font-size: 0.9rem;
        padding: 6px 13px;
    }

    .support__btn-go {
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .support {
        gap: 1rem;
        padding-left: 6px;
        padding-right: 6px;
    }

    .support__title {
        font-size: 1.08rem;
    }

    .support__description {
        font-size: 0.93rem;
    }

    .support__channel {
        font-size: 0.92rem;
        padding: 4px;
        min-width: 90px;
    }

    .link-group {
        padding: 0.6rem 0.3rem;
    }

    .support__visuals {
        max-width: 170px;
    }
}

/* support section end */


/* testimonials section start */

.testimonials-section {
    margin: 0 auto;
    text-align: center;
    background-color: var(--text-color);
    /* background: var(--primary-background); */
    padding: 4rem 15vw;
}

.testimonials-header {
    margin-bottom: 36px;
}

.testimonials-badge {
    display: inline-block;
    background: var(--badge-background);
    color: var(--badge-text-color);
    font-size: 1rem;
    border-radius: 8px;
    padding: 10px 30px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 500;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 25px 0 0 0;
    color: var(--secondary-color);
    line-height: 1.1;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    margin-top: 50px;
}

.carousel-btn {
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, border .2s;
}

.carousel-btn:focus {
    outline: none;
}

.carousel-btn.right {
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.testimonial-card-container {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
    justify-content: center;
}

.testimonial-image-bg {
    background: var(--primary-color);
    border-radius: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 150px;
    min-height: 150px;
    box-shadow: 0px 0px 0px 1.5px var(--border-color);
}

.testimonial-img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-content {
    text-align: left;
    min-width: 420px;
    max-width: 540px;
}

.testimonial-quote-icon {
    color: var(--secondary-color);
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #ffd600;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--black);
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--black);
}

.testimonial-author-role {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 3px;
}

/* Tablet responsiveness */
@media (max-width: 900px) {
    .testimonials-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonial-content {
        min-width: 0;
        max-width: 95vw;
        text-align: center;
    }

    .testimonial-image-bg {
        width: 180px;
        height: 180px;
        min-width: 180px;
        min-height: 180px;
    }

    .testimonials-carousel {
        gap: 24px;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .testimonials-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .testimonials-header {
        margin-bottom: 18px;
    }

    .testimonials-badge {
        font-size: 0.92rem;
        padding: 7px 16px;
    }

    .testimonials-title {
        font-size: 1.2rem;
        margin-top: 12px;
    }

    .testimonials-carousel {
        gap: 10px;
        flex-direction: column;
        margin-top: 24px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .testimonial-card-container {
        width: 100vw;
        min-width: 0;
    }

    .testimonial-card {
        gap: 10px;
    }

    .testimonial-image-bg {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
    }

    .testimonial-content {
        padding: 0 10px;
        max-width: 98vw;
    }

    .testimonial-quote-icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .testimonial-stars {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .testimonial-text {
        font-size: 0.96rem;
        margin-bottom: 16px;
    }

    .testimonial-author-name {
        font-size: 1.05rem;
    }

    .testimonial-author-role {
        font-size: 0.92rem;
    }
}

/* testimonials section end */

/* faq section start */
.text-center{
    text-align: center;
}
.faq-section {
    min-height: 100vh;
    background: var(--primary-bg-color);
    /* background: radial-gradient(ellipse at top, #3d2460 0%, #150f26 100%); */
    /* background: var(--primary-background); */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.faq-section__container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section__header {
    text-align: center;
    margin-bottom: 36px;
}

.faq-section__badge {
    display: inline-block;
    padding: 4px 18px;
    background: var(--badge-background);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #ded6f7;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-weight: 500;
}

.main__title {
    font-size: 3rem;
    font-weight: 600;
    margin-top: 25px;
    color: var(--secondary-color);
    line-height: 1.1;
}

/* Accordion */
.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-accordion__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    transition: background 0.2s, box-shadow 0.2s;
    overflow: hidden;
    color: var(--black);
    border: 1px solid var(--primary-color);
}

.faq-accordion__item--active {
    background: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 2px 12px 0 rgba(60, 26, 90, 0.07);
}

.faq-accordion__question:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.faq-accordion__question {
    width: 100%;
    border: none;
    background: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 15px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    justify-content: space-between;
    text-align: left;
    transition: background 0.25s;
}

.faq-accordion__q {
    font-weight: 700;
    margin-right: 18px;
    font-size: 1.1em;
}

.faq-accordion__text {
    flex: 1 1 auto;
    font-size: 1.1em;
    font-weight: 500;
}

.faq-accordion__icon {
    margin-left: 22px;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.2s;
    width: 24px;
    text-align: center;
    display: inline-block;
}

.faq-accordion__question:hover .faq-accordion__icon {
    color: var(--text-color);
}

.faq-accordion__icon--active,
.faq-accordion__item--active .faq-accordion__question {
    color: var(--text-color);
}

.faq-accordion__answer {
    padding: 0 28px 24px 28px;
    color: var(--text-color);
    font-size: 1em;
    line-height: 1.6;
    animation: fadeIn 0.22s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

/* Responsive styles */
@media (max-width: 900px) {
    .faq-section__container {
        max-width: 95vw;
    }

    .faq-section__title {
        font-size: 2rem;
    }

    .faq-section__badge {
        font-size: 0.85rem;
    }

    .faq-accordion__question {
        font-size: 1rem;
    }

    .faq-accordion__q,
    .faq-accordion__text {
        font-size: 1em;
    }

    .faq-accordion__answer {
        font-size: 0.97em;
    }
}

@media (max-width: 600px) {
    .faq-section__container {
        padding-left: 6px;
        padding-right: 6px;
    }

    .faq-section__title {
        font-size: 1.4rem;
    }

    .faq-section__badge {
        font-size: 0.75rem;
    }

    .faq-accordion__question {
        padding: 22px 12px 16px 12px;
        font-size: 0.95rem;
    }

    .faq-accordion__answer {
        padding: 0 12px 14px 12px;
        font-size: 0.92em;
    }

    .faq-accordion__q,
    .faq-accordion__text {
        font-size: 0.98em;
    }

    .faq-accordion__q {
        margin-right: 12px;
    }

    .faq-accordion__icon {
        font-size: 1.2em;
        margin-left: 10px;
    }
}

@media (max-width: 375px) {

    .faq-section__title {
        font-size: 1.1rem;
    }

    .faq-section__badge {
        font-size: 0.7rem;
    }

    .faq-accordion__question,
    .faq-accordion__answer,
    .faq-accordion__q,
    .faq-accordion__text {
        font-size: 0.85em;
    }
}

/* faq section end */

/* integration section start */

.integrations-section {
    background: var(--primary-bg-color);
    /* background: var(--primary-background); */
    color: var(--text-color);
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 4rem;
}

.integrations-section__container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 16px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integrations-section__header {
    text-align: center;
    margin-bottom: 36px;
}

.integrations-section__badge {
    display: inline-block;
    padding: 6px 28px;
    background: var(--badge-background);
    border-radius: 8px;
    font-size: 0.97rem;
    color: var(--badge-text-color);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    font-weight: 500;
}

.integrations-section__title {
    color: var(--text-color);
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 18px 0;
    line-height: 1.1;
}

.integrations-section__description {
    color: #ded6f7;
    font-size: 1.13rem;
    font-weight: 400;
    line-height: 1.44;
    margin: 0 auto 0 auto;
    max-width: 900px;
}

/* ICONS ROW */
.integrations-section__icons {
    margin-top: 54px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}

.integration-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 14px 0 rgba(60, 26, 90, 0.07);
}

.integration-icon img,
.integration-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

/* Tablet responsiveness */
@media (max-width: 900px) {
    .integrations-section__container {
        max-width: 98vw;
    }

    .integrations-section__title {
        font-size: 2rem;
    }

    .integrations-section__icons {
        gap: 28px;
        margin-top: 36px;
    }

    .integration-icon {
        width: 56px;
        height: 56px;
    }

    .integration-icon img,
    .integration-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .integrations-section__container {
        padding-left: 4px;
        padding-right: 4px;
    }

    .integrations-section__title {
        font-size: 1.19rem;
    }

    .integrations-section__description {
        font-size: 0.92rem;
    }

    .integrations-section__icons {
        gap: 18px;
        margin-top: 28px;
    }

    .integration-icon {
        width: 40px;
        height: 40px;
    }

    .integration-icon img,
    .integration-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* integration section end */
.footer {
    background: radial-gradient(ellipse at top, #175462 0%, #2F3C7E 50%, rgb(20, 9, 44) 100%);
}

/* newsletter section start */
.newsletter-cta {
    min-height: 420px;
    /* background: var(--primary-background); */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15vw;
}

.newsletter-cta__content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 64px 16px 54px 16px;
}

.newsletter-cta__badge {
    display: inline-block;
    background: var(--badge-background);
    color: var(--badge-text-color);
    font-size: 1.08rem;
    font-weight: 400;
    padding: 8px 34px;
    border-radius: 7px;
    letter-spacing: 0.03em;
    border: none;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 3px 14px 0 rgba(90, 40, 140, 0.08);
}

.newsletter-cta__title {
    color: var(--text-color);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.16;
    margin: 0 0 38px 0;
    letter-spacing: -0.02em;
}

.newsletter-cta__form {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 11px;
    box-shadow: 0 2px 12px 0 rgba(60, 26, 90, 0.08);
    overflow: hidden;
    position: relative;
    gap: 18px;
    padding: 0 8px;
}

.newsletter-cta__input {
    flex: 1 1 190px;
    min-width: 0;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.11);
    outline: none;
    color: var(--text-color);
    font-size: 1.18rem;
    font-weight: 400;
    padding: 0 18px;
    height: 60px;
    letter-spacing: 0.01em;
    border-radius: 8px;
    transition: border-color 0.18s;
}

.newsletter-cta__input:focus {
    border-color: #A587FF;
}

.newsletter-cta__input::placeholder {
    color: var(--text-color);
    opacity: 1;
    font-weight: 400;
}

.newsletter-cta__button {
    background: var(--primary-color);
    color: var(--text-color);
    font-size: 1.18rem;
    font-weight: 500;
    border: none;
    outline: none;
    height: 60px;
    padding: 0 46px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s;
    white-space: nowrap;
}

/* Decorative SVGs - positions */
.newsletter-cta__star--yellow {
    position: absolute;
    left: 16vw;
    bottom: 4px;
    z-index: 1;
    width: 84px;
    height: 90px;
    opacity: 0.85;
}

.newsletter-cta__sparkle--green {
    position: absolute;
    left: 24vw;
    top: 206px;
    z-index: 1;
    width: 34px;
    height: 34px;
    opacity: 0.85;
}

.newsletter-cta__star--blue {
    position: absolute;
    right: 24vw;
    top: 62px;
    z-index: 1;
    width: 46px;
    height: 56px;
    opacity: 0.9;
}

.newsletter-cta__flower {
    position: absolute;
    right: 20vw;
    bottom: 28px;
    z-index: 1;
    width: 66px;
    height: 66px;
    opacity: 0.8;
}

@media (max-width: 950px) {
    .newsletter-cta {
        padding-left: 40px;
        padding-right: 40px;
    }

    .newsletter-cta__title {
        font-size: 1.6rem;
    }

    .newsletter-cta__form {
        max-width: 99vw;
        gap: 7px;
        padding: 0 2px;
    }

    .newsletter-cta__input,
    .newsletter-cta__button {
        border-radius: 6px;
        height: 60px !important;
        font-size: 1rem;
        padding: 0 30px;
    }
}

/* Mobile optimization for input, button, SVGs */
@media (max-width: 600px) {
    .newsletter-cta {
        padding-left: 12px;
        padding-right: 12px;
    }

    .newsletter-cta__content {
        padding: 23px 2px 17px 2px;
    }

    .newsletter-cta__title {
        font-size: 1.07rem;
        margin-bottom: 15px;
    }

    .newsletter-cta__form {
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        border-radius: 8px;
        box-shadow: none;
        background: none;
        padding: 0;
        max-width: 99vw;
    }

    .newsletter-cta__input,
    .newsletter-cta__button {
        flex: unset;
        height: 60px !important;
        font-size: 0.97rem;
        border-radius: 5px;
        padding: 0 30px;
    }

    .newsletter-cta__button {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }

    .newsletter-cta__badge {
        font-size: 0.82rem;
        padding: 6px 10px;
        margin-bottom: 13px;
    }

    /* SVGs: shrink, move to corners, prevent overlap */
    .newsletter-cta__star--yellow {
        left: 30px;
        bottom: 6px;
        width: 38px;
        height: 38px;
        opacity: 0.6;
    }

    .newsletter-cta__sparkle--green {
        left: 40px;
        top: 38px;
        width: 18px;
        height: 18px;
        opacity: 0.5;
    }

    .newsletter-cta__star--blue {
        right: 40px;
        top: 28px;
        width: 22px;
        height: 24px;
        opacity: 0.5;
    }

    .newsletter-cta__flower {
        right: 44px;
        bottom: 6px;
        width: 30px;
        height: 30px;
        opacity: 0.4;
    }
}

/* Extra small screens: optionally hide SVGs */
@media (max-width: 400px) {
    .newsletter-cta {
        padding-left: 4px;
        padding-right: 4px;
    }

    .newsletter-cta__star--yellow,
    .newsletter-cta__star--blue,
    .newsletter-cta__sparkle--green,
    .newsletter-cta__flower {
        display: none;
    }
}

/* newsletter section end */

/* footer section start */

.site-footer {
    position: relative;
    padding-top: 40px;
}

.footer__bottom a {
    color: var(--text-color);
    text-decoration: none;
}

.footer__bottom {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 0.01em;
    border-top: 1px solid #8b8b8b;
    padding: 24px 20px 18px 20px;
    margin-top: 0;
}

@media (max-width: 600px) {
    .footer__bottom {
        font-size: 0.88rem;
        padding: 13px 2vw 11px 2vw;
    }
}

/* footer section end */

/* float chat section start */
.sb-ft-chat {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 0;
    background: -moz-linear-gradient(0deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background: -webkit-linear-gradient(0deg, var(--primary-color) 0%, var(--primary-color) 100%);
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #fff;
    z-index: 99;
}

.sb-ft-chat.expand {
    background: #fff;
}

.sb-ft-chat .fa {
    font-size: 24px;
}

.sb-ft-chat.enter:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
}

.sb-ft-chat.enter {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}

.sb-ft-chat.expand {
    width: 350px;
    max-height: 450px;
    height: 450px;
    border-radius: 20px;
    cursor: auto;
    opacity: 1;
}

.sb-ft-chat :focus {
    outline: 0;
    box-shadow: 0 0 3pt 2pt rgba(53, 133, 151, 0.18);
}

.sb-ft-chat button {
    background: transparent;
    border: 0;
    color: #fff;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.sb-ft-chat .sb-ft-container-chat {
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    transition: all 250ms ease-out;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sb-ft-chat .sb-ft-container-chat.enter {
    opacity: 1;
    border-radius: 0;
    width: auto;
    height: auto;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-header {
    flex-shrink: 0;
    padding-bottom: 10px;
    display: flex;
    background: transparent;
    color: #fff;
    font-weight: bold;
    padding: 13px 10px;
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
    align-items: center;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-header .title {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0 5px;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-header button {
    flex-shrink: 0;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages {
    padding: 10px;
    margin: 0;
    list-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: transparent;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages::-webkit-scrollbar {
    width: 5px;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li {
    position: relative;
    clear: both;
    display: inline-block;
    padding: 14px;
    margin: 0 0 20px 0;
    font-size: 12px;
    border-radius: 10px;
    background-color: var(--primary-color);
    word-wrap: break-word;
    max-width: 81%;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li:before {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    content: '';
    background-size: cover;
    border: 1px solid #d9d9d9;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid var(--primary-color);
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.other {
    animation: show-chat-odd 0.15s 1 ease-in;
    -moz-animation: show-chat-odd 0.15s 1 ease-in;
    -webkit-animation: show-chat-odd 0.15s 1 ease-in;
    float: right;
    margin-right: 40px;
    color: #fff;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.other:before {
    right: -40px;
    background-image: url('../assets/images/ic_profile.png');
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.other:after {
    border-right: 8px solid transparent;
    right: -7px;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.self {
    animation: show-chat-even 0.15s 1 ease-in;
    -moz-animation: show-chat-even 0.15s 1 ease-in;
    -webkit-animation: show-chat-even 0.15s 1 ease-in;
    float: left;
    margin-left: 45px;
    color: #000;
    background-color: #EEEDE9;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.self:before {
    left: -45px;
    background-image: url(https://github.com/ortichon.png);
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-messages li.self:after {
    border-left: 10px solid transparent;
    left: -10px;
    border-top-color: #EEEDE9;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-footer {
    flex-shrink: 0;
    display: flex;
    margin-top: 10px;
    max-height: 90px;
    background: transparent;
    position: relative;
    padding: 10px;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-footer .text-box {
    border-radius: 50px;
    background: rgba(255, 255, 255);
    min-height: 100%;
    width: 100%;
    margin-right: 5px;
    color: #000;
    overflow-y: auto;
    font-size: 12px;
    padding: 13px 10px;
    border: 1px solid #d9d9d9;
}

.text-box:empty:before {
    content: attr(data-placeholder);
    color: #999;
    pointer-events: none;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-footer .text-box::-webkit-scrollbar {
    width: 5px;
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-footer .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}

.sb-ft-chat .sb-ft-container-chat .sb-ft-footer .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}

.sb-ft-chat .sb-ft-footer-send {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #d9d9d9;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}
@keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@-moz-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }

    100% {
        margin-left: 0;
    }
}

@keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}

@-moz-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}

@-webkit-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }

    100% {
        margin-right: 0;
    }
}
.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
.starlabel label:after {
    content: " *";
    color: red;
}

.iti  {
    width: 100%;  /* Adjust width if needed */
}
.iti__country-list {
    width: 460px;
}

.d-none {
    display: none !important;
}

.spinner-border {
    border: 4px solid var(--text-color);
    border-radius: 50%;
    border-top: 3px solid transparent;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    margin: 0px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* float chat section end */