@import url('https://fonts.googleapis.com/css2?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&display=swap');

body {
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif;    */
    font-family: "Poppins", sans-serif !important;
    /* font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Helvetica, Apple Color Emoji, Arial, sans-serif, Segoe UI Emoji, Segoe UI Symbol; */
    color: #2C2B2B;
    overflow-x: hidden;
}

figure {
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #2C2B2B;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
}

.btn-fill {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #153B7A;
    border: 1px solid #153B7A;
    background-color: #fff;
    min-width: 120px;
    padding: 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
    text-align: center;
}

.btn-fill:focus {
    background-color: #153B7A;
    color: #fff;
    border-color: #153B7A;
}

.btn-fill:hover {
    background-color: #153B7A;
    color: #fff;
    border-color: #153B7A;
}

.btn-fill::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #153B7A;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-fill:hover::before {
    width: 100%;
}

.btn-fill:hover:active,
.btn-fill:hover:active {
    outline: none;
    color: #fff;
}

.btn-secondry {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #153B7A;
    border: 1px solid #007AB2;
    background-color: #fff;
    min-width: 120px;
    padding: 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
    text-align: center;
}

.btn-secondry:focus {
    background-color: #153B7A;
    color: #fff;
    border-color: #153B7A;
}

.btn-secondry:hover {
    background-color: #153B7A;
    color: #fff;
    border-color: #153B7A;
}

.btn-secondry::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #153B7A;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-secondry:hover::before {
    width: 100%;
}

.btn-secondry:hover:active,
.btn-secondry:hover:active {
    outline: none;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: 1px solid transparent;
    background-color: transparent;
    min-width: 120px;
    padding: 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

.btn-primary:hover {
    color: #fff;
    border-color: #153B7A;
    background-color: transparent;
}

.btn-primary::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #153B7A;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover:active {
    outline: none;
    color: #fff;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    padding: 12px 0;
    z-index: 9;
    transition: all 0.4s ease-in-out;
}

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

.header-inner .left-section {
    display: flex;
    align-items: center;
}

.header-inner .left-section .chat-history {
    margin-right: 26px;
    border: none;
    background-color: transparent;
}

.header-inner .left-section .chat-history:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.header-inner .left-section ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 68px;
    transition: all 0.4s ease-in-out;

}

.header-inner .left-section ul li:not(:last-child) {
    margin-right: 60px;
    transition: all 0.4s ease-in-out;

}

.header-inner .left-section ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
}

.header-inner .left-section ul li a:hover {
    border-color: #fff;
}

.header-inner .right-section a:not(:last-child) {
    margin-right: 10px;
}

.ai-chat-banner {
    background-image: url(../images/chat-banner.jpg);
    background-size: 100%;
    /* height: 100vh; */
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: center top;
    transition: all 0.4s ease-in-out;

}

.ai-chat-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: #000; */
    background: rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.28895308123249297) 55%, rgba(0, 0, 0, 0.5270483193277311) 76%);
    content: "";
    z-index: 0;
}

.chat-section {
    height: calc(100vh - 39px);
    padding: 105px 0 10px;
    z-index: 1;
    position: relative;
}

.chat-section>figure {
    height: 100%;
    width: 100%;
}

.chat-section>figure img {
    height: 100%;

}

.chat-start-box {
    padding-right: 10px;
    overflow-y: auto;
    height: 100%;
}

.chat-start-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.chat-start-box::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.chat-start-box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #0053E5;
}

.chat-start-box .chat {
    margin-bottom: 45px;
    position: relative;
}

.chat-start-box .chat div figure {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.chat-start-box .chat.sender-box {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    max-width: 510px;
    margin-left: auto;
}

.chat-start-box .chat.receiver-box {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    max-width: 510px;
}

.chat-start-box .chat p {
    font-size: 14px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    padding: 11px 16px;
    border-radius: 5px;
    width: fit-content;
    max-width: 700px;
    margin-bottom: 0;
    background-color: #fff;
    z-index: 0;
    position: relative;
    white-space: break-spaces;
}

.chat-start-box .chat p::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -7px;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 15px solid #fff;
    z-index: -1;
}

.chat-start-box .chat.sender-box p::before {
    left: auto;
    right: 0;
    border-left: 15px solid #fff;
    border-right: none;
    transform: rotate(90deg);
}

.chat-start-box .chat ul {
    display: flex;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    overflow: hidden;
    overflow-x: auto;
    width: calc(100% - 50px);
    max-width: 700px;
}

.chat-start-box .chat ul {
    margin-left: 50px;
}

.chat-start-box .chat ul li {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    min-width: 210px;
}

.chat-start-box .chat ul li:hover {
    border-color: #153B7A;
}

.chat-start-box .chat ul li:hover a {
    color: #153B7A;
}

.chat-start-box .chat ul li:not(:last-child) {
    margin-right: 15px;
}

.chat-start-box .chat ul li a {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.chat-start-box .chat ul li a span {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-start-box .chat ul li a figure {
    width: 59px;
    flex: 0 0 auto;
    padding-right: 7px;
}

.bottom-fixed-typetext {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* position: relative; */
}

.bottom-fixed-typetext input {
    width: 100%;
    height: 72px;
    border: 1px solid #153B7A;
    background-color: #fff;
    padding: 10px 20px 10px 65px;
    box-shadow: 0px 10px 30px #0053E5;
    border: 1px solid #153B7A;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.bottom-fixed-typetext input::placeholder {
    color: #000000;
}

.bottom-fixed-typetext input:focus {
    outline: none;
    box-shadow: 0px 10px 30px #0053E5;

}

.bottom-fixed-typetext .send-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

footer {
    padding: 9px 0;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease-in-out;

}

footer p {
    color: rgb(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

footer p a {
    color: rgb(255, 255, 255, 0.85);
    text-decoration: underline;
}

.chat-history-canvas {
    max-width: 300px;
    transition: all 0.4s ease-in-out;

}

.history-start {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.history-start span {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.history-start a {
    /* font-size: 14px;
    font-weight: 500;
    margin: 10px 0; */
    display: block;
    /* background: #153B7A;
    padding: 10px;
    color: #fff;
    border-radius: 7px; */
} 

.chat-history-canvas .offcanvas-body p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offcanvas-backdrop {
    display: none;
}

.expand-links {
    padding-left: 5px;
}
.btn.premium-features-btn{
    background-color: rgb(21, 59, 122);
    color: #fff;
    border: solid 1px rgb(21, 59, 122);
}
.btn.premium-features-btn:hover{
    background-color: transparent;
    color: rgb(21, 59, 122);
}
.btn-fill.premium-features-btn::before{
    background-color: #fff;
}
@media(min-width:1300px), (max-width:1420px) {
    body.slide .header-inner .left-section ul {
        margin-left: 35px;
    }

    body.slide .header-inner .left-section ul li:not(:last-child) {
        margin-right: 35px;
    }
}

@media(min-width:1200px), (max-width:1299px) {
    body.slide .header-inner .left-section .logo {
        max-width: 130px;
    }

    body.slide .header-inner .left-section ul li a {
        font-size: 14px;
    }
}

@media(min-width:1200px) {
    body.slide .header-inner .left-section ul {
        margin-left: 35px;
    }

    body.slide .header-inner .left-section ul li:not(:last-child) {
        margin-right: 35px;
    }

    body {
        transition: all 0.4s ease-in-out;
        overflow: auto !important;

    }

    body.slide header {
        width: calc(100% - 300px);
        left: 300px;
        transition: all 0.4s ease-in-out;
    }

    body.slide .ai-chat-banner {
        width: calc(100% - 300px);
        margin-left: auto;
        transition: all 0.4s ease-in-out;
    }

    body.slide footer {
        width: calc(100% - 300px);
        margin-left: auto;
        left: 300px;
        transition: all 0.4s ease-in-out;
    }

}

@media(min-width:1568px) {
    .container {
        max-width: 1544px;
        margin: 0 auto;
    }
}

@media(max-width:1199px) {
    .header-inner .left-section ul li:not(:last-child) {
        margin-right: 38px;
    }

    .header-inner .left-section .logo {
        max-width: 150px;
    }

    .header-inner .left-section ul {
        margin-left: 35px;
    }
}

@media(max-width:991px) {
    .container {
        max-width: 100%;
    }

    .navbar-box {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        margin: 0 !important;
        z-index: 9;
        flex-direction: column;
        padding: 30px 0;
        transform: translateY(-100%);
        transition: all 0.3s ease-in-out;
    }

    .navbar-box.open {
        transform: none;
        top: 84px;
    }

    .header-inner .left-section ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .header-inner .left-section ul li a {
        color: #153B7A;
        font-weight: 600;
    }

    .header-inner .right-section {
        display: flex;
        align-items: center;
    }

    .menu-btn {
        margin-left: 25px;
        width: 29px;
        height: 24px;
        position: relative;
        border: none;
        background-color: transparent;
        transition: all 0.3s ease-in-out;
    }

    .menu-btn:focus {
        outline: none;
        border: none;
        box-shadow: none;
    }

    .menu-btn span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease-in-out;

    }

    .menu-btn span:nth-child(2) {
        top: 10px;
    }

    .menu-btn span:nth-child(3) {
        top: 20px;
    }

    .menu-btn.show span:nth-child(1) {
        display: none;
    }

    .menu-btn.show span:nth-child(2) {
        transform: rotate(45deg);
    }

    .menu-btn.show span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

    header {
        transition: all 0.3s ease-in-out;
    }

    header:has(.menu-btn.show) {
        background-color: #000;
    }

    .chat-section {
        padding: 100px 0 20px;
        height: calc(100vh - 0px);
    }
    .chat-section:has(.chat-box-section) {
        padding: 100px 0 80px;
        height: calc(100vh - 75px);
    }

    .chat-start-box .chat p {
        font-size: 14px;
    }

    .header-inner .left-section ul li a:hover {
        border-color: #153B7A;
    }
}

@media(max-width:576px) {
    .header-inner .right-section a {
        font-size: 0 !important;
        min-width: auto;
        width: 40px;
        height: 40px;
        padding: 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-inner .right-section a img {
        width: 18px;
    }

    .header-inner .right-section a:hover img {
        filter: invert(1) brightness(5);
    }

    .chat-start-box .chat p {
        font-size: 13px;
    }

    .chat-start-box .chat {
        margin-bottom: 35px;
        width: 96%;
    }

    .chat-start-box .chat.receiver-box {
        margin-left: auto;
    }

    .bottom-fixed-typetext input {
        height: 60px;
        font-size: 15px;
        padding: 10px 20px 10px 55px;
    }

    .bottom-fixed-typetext .send-btn {
        width: 27px;
    }

    .chat-start-box .chat ul li a {
        font-size: 12px;
    }

    footer p {
        font-size: 13px;
    }

    .menu-btn {
        margin-left: 13px;
    }

    .header-inner .left-section .logo {
        max-width: 120px;
    }

    .header-inner .left-section .chat-history {
        margin-right: 19px;
        width: 34px;
    }

    .chat-history-canvas {
        max-width: 100%;
        width: 100% !important;
    }

    .chat-section {
        padding: 80px 0 20px;
        height: 100vh;
    }
    .chat-section:has(.chat-box-section){
        padding: 80px 0 20px;
        height: calc(100vh - 15px);
    }

    .navbar-box.open {
        top: 72px;
    }
}

/* landing-page-popup */


.chat-selectionmodal .modal-header {
    background-color: #153B7A;
}

.chat-selectionmodal .modal-title {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.chat-selectionmodal .modal-body {
    padding: 15px 20px 30px;
}

.chat-selectionmodal .modal-body p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.chat-selectionmodal .modal-header .btn-close {
    z-index: 0;
    opacity: 1;
}

.gender-selection-list {
    margin: 0 -10px;
}

.gender-selection-list li {
    padding: 0 10px;
    width: 50%;
}

.gender-selection-list li .form-check {
    padding: 0;
}

.gender-selection-list li .form-check input {
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
}

.gender-selection-list li .form-check .form-check-label {
    width: 100%;
    border: 1px solid #ddd;
    padding: 20px 15px 45px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #fff;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.gender-selection-list li .form-check .form-check-label::after {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/check_mark_icon.svg);
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    content: "";
    transition: all 0.3s ease-in-out;
    filter: invert(1) grayscale(1);
}

.gender-selection-list li .form-check input:checked+.form-check-label::after {
    filter: none;
}

.gender-selection-list li .form-check .form-check-label span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
}

.gender-selection-list li .form-check input:checked+.form-check-label {
    /* background-color: #153B7A; */
    border-color: #153B7A;
    color: #153B7A;
}

.gender-selection-list li .form-check .form-check-label img {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.language-selection-list.gender-selection-list {
    flex-wrap: wrap;
}

.language-selection-list.gender-selection-list li {
    width: 100%;
}

.language-selection-list.gender-selection-list li .form-check {
    margin-bottom: 20px;
}

.language-selection-list.gender-selection-list li .form-check .form-check-label img {
    border-radius: 0;
    width: 47px;
}

.language-selection-list.gender-selection-list li .form-check .form-check-label::after {
    display: none !important;
}

.language-selection-list.gender-selection-list li .form-check .form-check-label {
    padding: 40px 15px 40px;
    filter: grayscale(1);
    opacity: 0.7;
    text-align: left;
    display: flex;
    align-items: center;
}

.language-selection-list.gender-selection-list li .form-check .form-check-label span {
    margin-top: 0;
    margin-left: 20px;
}

.language-selection-list.gender-selection-list li .form-check .form-check-label img {
    width: 30px;
}

.language-selection-list.gender-selection-list li .form-check input:checked+.form-check-label {
    background-color: rgb(21 59 122 / 10%);
    border-color: #153B7A;
    filter: none;
    opacity: 1;
}

.language-selection-list.gender-selection-list li.india-bg .form-check .form-check-label::before {
    position: absolute;
    bottom: 0;
    right: 4px;
    content: "";
    width: 38%;
    height: 100%;
    background-position: bottom right;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/in-bg-vector.svg);
}

.language-selection-list.gender-selection-list li.english-bg .form-check .form-check-label::before {
    position: absolute;
    bottom: 0;
    right: 4px;
    content: "";
    width: 38%;
    height: 100%;
    background-position: bottom right;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/en-bg-vector.svg);
}

.language-selection-list.gender-selection-list li.arbic-bg .form-check .form-check-label::before {
    position: absolute;
    bottom: 0;
    right: 4px;
    content: "";
    width: 38%;
    height: 100%;
    background-position: bottom right;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/ar-bg-vector.svg);
    opacity: 0.7;
}

.modal.show .modal-dialog:has(.language-selection-list) {
    max-width: 530px;
}




/* landing-page-popup */

/* profile login */

.dropdown.profile-login .dropdown-toggle {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.dropdown.profile-login .dropdown-toggle img {
    margin-right: 10px;
    width: 27px;
    /* filter: invert(1) brightness(0);  */
}

.profile-menu {
    position: absolute;
    top: calc(100% + 20px);
    z-index: 1;
    right: 0;
    width: 200px;
    min-height: 100px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    border-radius: 10px;
    transition: 300ms;
}

.profile-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 14px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.profile-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.profile-menu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background: #fff;
    border-radius: 10px;
    padding: 12px 0;
}

.profile-menu ul li {
    list-style: none;
    transition: all 0.3s ease-in-out;
    padding: 0 4px;
}


.profile-menu ul li a {
    color: #000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-right: 25px;
    text-transform: capitalize;
}

.profile-menu ul li a:hover {
    background: #eee;
    transition: all 0.3s ease-in-out;
}

.profile-menu ul li a.current-active {
    border-bottom: 2px solid #ddd;
}

.profile-menu ul li a::after {
    position: absolute;
    content: "";
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url(images/right-green-arrow.svg);
    filter: invert(1) brightness(0);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.profile-menu ul li a:hover::after {
    opacity: 1;
    visibility: visible;
}

.profile-menu ul li a.logout:hover::after {
    background-image: url(images/logout_icon.svg);
    width: 17px;
    height: 17px;
}

.profile-mobile-login.profile-login .dropdown-toggle {
    margin-right: 0;
}

.profile-mobile-login.profile-login .profile-menu {
    width: 140px;
    right: 0;
}

.profile-mobile-login.profile-login .dropdown-toggle img {
    margin-right: 0;
}

.profile-mobile-login.profile-login .profile-menu ul li a {
    padding: 8px 12px;
}

/* profile login */
header.fixed {
    background-color: #153b7a;
}

body:has(.ai-inner-section) footer {
    position: relative;
}

.ai-inner-section {
    padding: 105px 0;
}

.chat-selectionmodal .modal-content {
    border: none !important;
}

/* plan section */
.subscription_plans_section {
    margin: 50px 0;
}

h2.heading {
    font-size: 50px;
    font-weight: 600;
    color: #fff;

}

.subscription_plans_section .section-head {
    margin-bottom: 30px;
}

.subscription_plans_section .section-head h2 {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.subscription_plans_section .section-head p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.subscription_plans_section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -12px;
}

.subscription_plans_section ul li {
    width: 33.33%;
    padding: 10px 12px;
}

.plans_box {
    background-color: #fff;
    box-shadow: 0px 0px 30px #4252611C;
    border-radius: 30px;
    position: relative;
    height: 100%;
}

.subscription_detail {
    padding: 40px 28px;
    position: relative;
    height: 100%;
}

.plans_name strong {
    display: block;
    font-size: 30px;
    color: #425261;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 0 5px;
}

.plans_name span {
    color: #425261;
    font-size: 16px;
    line-height: 22px;
    display: block;
}

.plans_name {
    padding: 0 0 25px;
}

.plans_price strong {
    display: block;
    color: #425261;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 8px;
}

.plans_price span {
    color: #425261;
    font-size: 18px;
    display: block;
    line-height: 23px;
    margin-bottom: 0;
}

.plans_price {
    padding: 0 0 25px;
}

.plan_features strong {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2px;
}

.plan_features span {
    display: block;
    padding: 2px 0 7px 28px;
    color: #425261;
    font-size: 17px;
    position: relative;
}

.plan_features span img {
    position: absolute;
    left: 0;
    top: 10px;
}

.individual_tag {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #153b7a;
    border-radius: 0 26px 0px 30px;
    font-size: 17px;
    padding: 12px 24px 12px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.subscription_plans_section ul li .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    height: 65px;
}

.gold_plan .btn.btn-fill {
    background-color: #fff;
    border-color: #fff;
    color: #153b7a;
}

.gold_plan .btn.btn-fill:hover {
    color: #fff !important;
    background-color: #153b7a;
    border-color: #153b7a;
}

.plans_box.gold_plan {
    background: rgb(0, 168, 149);
    background: linear-gradient(315deg, rgba(0, 168, 149, 1) 30%, rgba(21, 59, 122, 1) 94%);
}

.gold_plan .plans_name span {
    color: #fff;
}

.gold_plan .plans_name strong {
    color: #fff;
}

.gold_plan .plans_price strong {
    color: #fff;
}

.gold_plan .plans_price span {
    color: #fff;
}

.gold_plan .plan_features strong {
    color: #fff;
}

.gold_plan .plan_features span {
    color: #fff;
}

.gold_plan .plan_features span img {
    filter: invert(1) brightness(5);
}

.gold_plan .individual_tag {
    background-color: #fff;
    color: #153b7a;
}

.plan_features {
    margin-top: auto;
    /* border-top: 1px solid #ddd; */
    padding-top: 30px;
}

.plans_price {
    padding: 0 0 20px;
}

/* plan section */

body {
    background: radial-gradient(#153B7A, transparent);
}


.wireframe-chat-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* padding-bottom: 70px; */
}

.wireframe-chat-main .chat-box-section {
    width: 50%;
}

.wireframe-chat-main .text-chat-section {
    width: 50%;
    padding-left: 50px;
}

.wireframe-chat-main .text-chat-section .chat-start-box {
    height: calc(100vh - 337px);
    overflow: auto;
}

.suggestion-product::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.suggestion-product::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.suggestion-product::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #0053E5;
}

.bottom-typetext {
    /* position: absolute;
        bottom: 0;
        left: 0; */
    width: 100%;
    z-index: 99;
    margin-top: 15px;

}

.bottom-typetext .attachment-btn {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 75px;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1; */
}

.bottom-typetext .attachment-btn.mic-icon {
    right: 120px;
}

.bottom-typetext .attachment-btn img {
    width: 27px;
}

.bottom-typetext .group>div {
    width: 100%;
    height: 72px;
    background-color: #fff;
    padding: 10px 20px 10px 65px;
    box-shadow: 0px 10px 30px #0053E5;
    border: 1px solid #153B7A;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.bottom-typetext .group {
    opacity: 1;
    pointer-events: visible;
}

.bottom-typetext .group>div {
    pointer-events: visible;
}

.bottom-typetext .group[data-focus=true]>div {
    background-color: #fff !important;
    color: #000;

}

.bottom-typetext .group>div label {
    display: none;
}

.bottom-typetext .group>div input {
    height: 100%;
    color: #000;
    padding-right: 100px;
}

.bottom-typetext .group[data-has-value=true] input {
    color: #000;
}

.bottom-typetext .group>div input::placeholder {
    color: #242424;
}

.bottom-typetext .inline-flex.relative div>button {
    width: 47px;
    height: 47px;
    background: #153b7a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.bottom-typetext .inline-flex div>button svg {
    color: #fff;
    fill: currentColor;
}

.avatar-bg-section {
    height: calc(100vh - 250px) !important;
}

.avatar-main-wrap {
    flex-direction: column;
    height: 100%;
}

.avatar-main-wrap .avatar-task-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 0 20px;
}

.avatar-main-wrap .avatar-task-btn button {
    font-size: 16px;
    background: #153b7a;
    height: 50px;
    font-weight: 500;
}

.sound-wave-box {
    position: absolute;
    left: 0;
    top: 1px;
    width: calc(100% - 160px);
    background: #fff;
    border-radius: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    border-right: 1px solid #ddd;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.sound-wave-box figure {
    max-width: 175px;
    background-image: url(../images/streaming-listening-dark.gif);
    width: 175px;
    height: 35px;
    background-repeat: repeat-x;
    background-size: 47%;
    background-position: top center;
}

.sound-wave-box figure img {
    display: none;
}

.subscription_detail .top-head {
    display: flex;
    flex-direction: column;
}
/* Upgrade Message */
.upgrade-message p{
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.upgrade-message{
    padding: 15px;
}
.upgrade-message p a{  
    text-decoration: underline;
    color: #fff;
} 
@media(max-width:1199px) {
    .subscription_plans_section ul li {
        width: 50%;
    }
}
@media(max-width:991px) {
    .chat-selectionmodal .modal-dialog {
        max-width: 100%;
        margin-left: 12px;
        margin-right: 12px;
    }

    .wireframe-chat-main .chat-box-section {
        width: 100%;
        height: calc(40svh - 32px);
    }
    .wireframe-chat-main .text-chat-section {
        width: 100%;
        padding-left: 0;
        height: calc(60svh - 127px);
        padding-top: 30px;
    }
    .wireframe-chat-main:not(.chat-box-section) .text-chat-section {
        width: 100%;
        padding-left: 0;
        height: calc(60svh - 147px);
        padding-top: 30px;
    }

    .wireframe-chat-main .text-chat-section .chat-start-box {
        height: calc(60svh - 230px); 
    }

    footer {
        display: none;
    }

    .bottom-typetext .attachment-btn {
        width: 30px;
        height: 30px;
    }

    .bottom-typetext .attachment-btn.mic-icon {
        right: 115px;
    }

    .bottom-typetext .group>div {
        height: 60px;
        padding: 10px 8px !important;
    }

    .bottom-typetext .group>div input {
        text-overflow: ellipsis;
        padding-right: 90px;
    }

    .sound-wave-box {
        height: 58px;
    }
    .upgrade-message p{
        font-size: 14px;
        line-height: 1.3;
    }
}

@media(max-width:767px) {
    .chat-selectionmodal .modal-title {
        font-size: 18px;
    }

    .chat-selectionmodal .modal-body {
        padding: 15px 10px 30px;
    }

    .chat-selectionmodal .modal-header {
        padding: 15px 10px;
    }

    .gender-selection-list {
        flex-wrap: wrap;
    }

    .gender-selection-list li {
        width: 100%;
    }

    .gender-selection-list li:not(:last-child) {
        padding-bottom: 25px;
    }

    .gender-selection-list li .form-check .form-check-label {
        padding: 20px 10px 40px;
        font-size: 15px;
    }

    .chat-selectionmodal .modal-body p {
        font-size: 15px;
    }

    .gender-selection-list li .form-check .form-check-label::after {
        width: 30px;
        height: 30px;
    }

    .subscription_plans_section ul li {
        width: 100%;
        padding: 10px 12px 20px;
    }

    .subscription_detail {
        padding: 40px 20px;
    }

    .plans_price strong {
        font-size: 35px;
        line-height: 40px;
    }

    .plans_price span {
        font-size: 16px;
        line-height: normal;
    }

    .subscription_plans_section ul li .btn {
        font-size: 17px;
        height: 55px;
    }

    .plan_features span {
        font-size: 15px;
    }

    .plan_features strong {
        font-size: 22px;
    }

    .subscription_plans_section .section-head h2 {
        font-size: 26px;
    }

    .subscription_plans_section .section-head p {
        font-size: 15px;
    }

    .sound-wave-box {
        width: calc(100% - 148px);
    }

    .sound-wave-box figure {
        max-width: 125px;
        width: 125px;
        height: 29px;
        background-size: 51%;
    }
    .upgrade-message p{
        max-width: 450px;
        margin: 0 auto;
    }
    .wireframe-chat-main .text-chat-section .chat-start-box {
        height: calc(60svh - 245px);
    }
}

@media(max-width:576px) {
    .gender-selection-list {
        margin: 0 -5px;
    }

    .gender-selection-list li {
        padding: 0 5px;
    }
}

.expand-links {
    color: #007AB2 !important;
}


/* 10-02-2025 */
.active-planpage{
    padding: 200px 0 100px 0;
}
.planHeader h2{
    font-size: 30px;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.planHeader h2 span{
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 7px 30px;
    border: solid 1px #31a996;
    background-color: #ddfffa;
    color: #31a996;
    border-radius: 50px;
    margin-left: 40px;
}
.planHeader h2 span::before{
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 10px;
    height: 10px;
    background-color: #31a996;
    border-radius: 10px;
}
.planBox{
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.planBox .plans_price strong {
display: block;
color: #425261;
font-size: 45px;
line-height: 50px;
margin-bottom: 8px;
}
.planBox .plans_price span {
color: #425261;
font-size: 18px;
display: block;
line-height: 23px;
margin-bottom: 0;
}


.expiry-date strong, .payment-wrap strong{
font-size: 14px;
display: block;
font-weight: normal;
color: #000;
opacity: 0.6;
margin-bottom: 5px;
}
.expiry-date span, .payment-wrap span{
font-size: 18px;
display: block;
font-weight: normal;
color: #000;
}
.date-payment{
display: flex;
justify-content: space-between;
padding-top: 20px;
margin-top: 20px;
border-top: solid 1px #f5f5f5;
}
.planBox .plan_features{
padding-left: 35px;
border-left: solid 1px #f5f5f5;

}

.planBox .plan_features span {
display: block;
padding: 2px 0 7px 28px;
color: #425261;
font-size: 17px;
position: relative;
}
.planBox .plan_features span img {
position: absolute;
left: 0;
top: 10px;
}
.planBox .plan_features strong {
display: block;
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
}
.planBody-left{
padding-right: 11px;
}
.innerDashboard-body .dashboard-section{
    margin-top: 101px;
}
.innerDashboard-body .dashboard-section{
    background-color: #fff;
    min-height: calc(100vh - 140px);
}
.innerDashboard-body .dashboard-wrap{
    align-items: stretch;
    
}
.innerDashboard-body .plans_price{
    padding-bottom: 0;
}
@media(max-width:991px){
    .planHeader h2{
        font-size: 24px;
    }
    .planBox .plan_features strong{
        font-size: 20px;
    }
    .planBox .plan_features span{
        font-size: 15px;
    }
}
@media(max-width:767px){
    .planBody-left{
        padding-right: 0;
    }
    .planBox .plan_features{
        padding-left: 0;
        border-left: 0;
        border-top: solid 1px #f5f5f5;
        padding-top: 15px;
        margin-top: 15px;
    }
    .planHeader h2 span{
        font-size: 14px;
        padding: 7px 15px;
    }
    .planHeader h2 {
        font-size: 20px;
    }
}
/* 10-02-2025 */




.dashboard-section {
    padding: 50px 0;
  }
  
  .dashboard-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .dashboard-wrap .dashboard-wrap-left {
    width: 21.8%;
  }
  
  
  .dashboard-wrap .collapsesidebar {
    border-radius: 10px;
    background-color: #02352D;
    padding: 20px;
    height: 100%;
    width: 100%;
  }
  
  .dashboard-wrap-right {
    width: calc(100% - 21.8% - 30px);
    margin-left: 30px;
    box-shadow: 0px 2px 8px #0000000F;
    border: 1px solid #5B5B5B26;
    border-radius: 10px;
    background-color: #fff;
    padding: 30px 30px 30px;
  }
  
  .collapsesidebar .accordion {
    background-color: transparent;
  }
  
  .collapsesidebar .accordion .accordion-item {
    background-color: transparent;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button {
    color: #fff;
    padding-left: 0px;
    padding-right: 0;
    border-radius: 0px;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button:hover {
    background-color: #49B9AA;
    color: #fff;
    border-radius: 5px;
    padding-left: 14px;
    font-weight: 500;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button:hover:after {
    filter: brightness(0) invert(0);
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button.linkbtn:after {
    display: none;
  }
  
  .collapsesidebar .accordion .accordion-item:last-child {
    border: none;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button:after {
    filter: brightness(1) invert(1);
    background-size: 16px;
    height: 16px;
    transition: all 0.3s ease-in-out;
  }
  
  .collapsesidebar .accordion .accordion-body {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .collapsesidebar .accordion .subcategry {
    margin: 0;
    padding: 0;
  }
  
  .collapsesidebar .accordion .subcategry li {
    list-style: none;
    display: block;
    margin-bottom: 14px;
  }
  
  .collapsesidebar .accordion .subcategry li a {
    color: #fff;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button img {
    margin-right: 12px;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button.active {
    background-color: #49B9AA;
    color: #fff;
    border-radius: 5px;
    padding-left: 14px;
    font-weight: 500;
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button.active img {
    filter: brightness(0) invert(1);
  }
  
  .collapsesidebar .accordion .accordion-item .accordion-button.active:after {
    filter: brightness(0) invert(0);
    margin-right: 10px;
  }
  
  .collapsesidebar .profile-img-box {
    margin-bottom: 22px;
    text-align: center;
  }
  
  .collapsesidebar .profile-img-box figure {
    height: 150px;
    overflow: hidden;
    margin: auto;
    width: 150px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .collapsesidebar .profile-img-box h3 {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0px 0px;
    padding-bottom: 0px;
  }
  
  .collapsesidebar .profile-img-box p {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
  }
  
  .topHeading h3 {
    margin: 0px;
    font-size: 22px;
    font-weight: 600;
  }
  
  .topHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .personal-info-form .form-group label {
    color: #000;
    font-weight: 500;
    display: block;
    padding-bottom: 5px;
  }
  
  .personal-info-form .form-group label span {
    color: red;
  }
  
  .personal-info-form .submitBtn a {
    min-width: 160px;
  }
  
  .personal-info-form .form-group .form-control {
    border: 1px solid #D5D5D5;
    border-radius: 5px;
    height: 60px;
    box-shadow: none;
    width: 100%;
  }


  .card {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 30px;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.btn-primary, .btn-danger {
    width: 48%;
    padding: 12px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.btn-danger:hover {
    background-color: #c82333;
}
.plan-title {
    color: #343a40;
    font-size: 2em;
    font-weight: bold;
    /* text-align: center; */
    margin-bottom: 20px;
}
.feature-list li {
    font-size: 1.1em;
    padding: 8px 0;
    /* border-bottom: 1px solid #ddd; */
}
.feature-list li:last-child {
    border-bottom: none;
}
.highlight {
    font-weight: bold;
    color: #007bff;
}
  



.payment-success{width: 700px; max-width: 100%; margin: 50px auto; padding: 40px 32px; -webkit-box-shadow: 0px 2px 8px #0000000F; box-shadow: 0px 2px 8px #0000000F; border-radius: 32px; text-align: center;}
.payment-success figure{margin:0 0 25px;}
.payment-success figure img{max-width:60px; margin:  0 auto;}
.payment-success h2{font-size: 24px; line-height: 24px; font-weight: 700; color: #fff; margin:0 0 20px; text-transform:capitalize;}



/* 20-03-2025 */

/* .plan-purchase-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
} */

.plan-purchase-box .left-section{
    /* width: 900px; */
    /* border: 1px solid #ddd; */
    /* padding: 30px 20px; */
    border-radius: 15px;
}
.plan-purchase-box .left-section .plan-title{
    margin-bottom: 10px;
}
.plan-purchase-box .plan_features{
    padding-top: 0;
}
/* .plan-purchase-box .right-section{
    width: calc(100% - 900px - 30px);
    margin-left: 30px;
    border: 1px solid #ddd;
    padding: 30px 20px;
    border-radius: 15px;
} */
 .plan_features ul li{
    display: block;
    padding: 2px 0 7px 28px;
    color: #425261;
    font-size: 17px;
    position: relative;
 }
 .plan_features ul li::before{
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/right-tick.svg);
    background-repeat: no-repeat;
    background-position: top center;
}
.plan-summary-box{
    margin-top: 25px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.plan-summary-box .plan-title{
    font-size: 24px;
    font-weight: 600;
}
.header-inner .left-section .chat-history{
    margin-top: 17px;
}
.planHeader h2{
    margin-bottom: 10px;
    font-size: 28px;
}
.planHeader p{
    margin-bottom: 5px;
}

@media(max-width:991px){
    .dashboard-wrap .dashboard-wrap-left{width: 100%; margin-bottom: 20px;}
.dashboard-wrap-left .btn-primary.mobiledashboard{text-align: left; border-radius: 5px; background-color: #fff; color: #02352D; border-color: #02352D; padding: 10px 15px; width: 100%;}
.dashboard-wrap-left .btn-primary.mobiledashboard .dashboard-icon{
    margin-left: auto;
}
.dashboard-wrap .collapsesidebar{position: fixed; left: -100%; top: 0px; overflow-y: auto; height: 100%; width: 100%; z-index: 99; transition: all 0.4s ease-in-out; padding: 50px 20px 20px; border-radius: 0;}
.dashboard-wrap .collapsesidebar.show{left: 0px; visibility: visible;}
.dashboard-wrap-right{width: 100%; margin-left: 0; padding: 20px 15px;}
.dashboard-close{position: absolute; top: 20px; right: 20px; color: #fff; filter: grayscale(1) brightness(5);}
.planBox .plan_features{
    padding: 25px;
    background: #f5f5f5;
    border-radius: 15px;
    margin-top: 25px;
}
}

@media(max-width:767px){
    .planHeader h2{
        font-size: 24px;
    }
    .planBox .plans_price strong{
        font-size: 35px;
        line-height: 40px;
    }
    .planBox .plans_price span{
        font-size: 16px;
        line-height: 21px;
    }
    .innerDashboard-body .dashboard-section{
        min-height: calc(100vh - 100px);
        margin-top: 70px;
    }
    .planBox .plans_price span{
        font-size: 16px;
        line-height: 21px;
    }
}
@media(max-width:576px){
    .innerDashboard-body .dashboard-section{
        min-height: calc(100vh - 100px);
        margin-top: 70px;
    }
    .planBox .plan_features{
        padding: 25px 15px;
    }
}

.personal-info-form .table tbody tr td .planamount{display: flex; align-items: flex-end; gap: 10px;}
.personal-info-form .table tbody tr td .planamount img{max-width: 18px;}
.planBox .plans_price strong img{max-width: 25px; display: inline-block; margin: -5px 0px 0px 0px;}
.plans_price strong img{max-width: 25px; display: inline-block; margin: -5px 0px 0px 0px;}
.plans_box.gold_plan .plans_price strong img{filter: brightness(10);}
.plan-summary-box div.d-flex > span{display: flex; align-items: center; gap: 10px;}
.plan-summary-box div.d-flex > span img, .plan-summary-box div.d-flex > strong img{max-width:18px;}


body:has(.payment-success){
    height: 100vh;
}
body:has(.payment-success) footer{
    position: fixed;
    bottom: 0;
}
.payment-success {
    border: 1px solid #ddd;
    margin: 200px auto !important;
    background: #fff;
}
.payment-success h2{
    color: #000;
    font-size: 31px;
    line-height: 42px;
}





.file-container {
    display: flex;
    align-items: center;
    background: #2a2a2a;
    padding: 12px;
    border-radius: 8px;
    width: 300px;
    color: white;
    margin-bottom: 5px;
}
.file-icon {
    background: #153b7a;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.file-icon img {
    width: 24px;
    height: 24px;
}
.file-info {
    display: flex;
    flex-direction: column;
}
.file-name {
    font-weight: bold;
}
.file-type {
    font-size: 12px;
    color: #bbbbbb;
}

/* 02-04-2025 */
.attached-folder-box{

    position: absolute;
    left: 15px;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    border: 1px solid #ddd;
    padding: 2px;
}
.attached-folder-box>img{
    max-width: 45px;
    height: 100%;
    object-fit: cover;
}
.attched-remove{
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 1px solid #ddd;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}
.attched-remove:hover{
    background-color: #b00000;
    border-color: #b00000;
}
.attched-remove:hover img{
    filter: invert(1) brightness(5);
}
.bottom-typetext:has(.attched-remove) .group>div input{
    padding-left: 60px;
}
.bottom-typetext:has(.attched-remove) .group>div{
    height: 92px;
}

/* 02-04-2025 */






header.fixed {
  background-color: rgb(21 59 122 / 80%);
  backdrop-filter: blur(40px);
}

.landing-banner-section {
  min-height: 600px;
  background: radial-gradient(100% 100% at 55% 50%, #153b7a -12%, transparent),
    radial-gradient(100% 100% at 0% 99%, #00a895 3%, transparent), #1b253b;
  background-size: cover;
  padding-top: 120px;
  /* padding-bottom: 60px; */
  display: flex;
  flex-wrap: wrap;
}
/* @property --10-x-position { syntax: '<percentage>'; inherits: false; initial-value: 0%; }

@property --10-y-position { syntax: '<percentage>'; inherits: false; initial-value: 99.0234375%; }

@property --11-x-position { syntax: '<percentage>'; inherits: false; initial-value: 99.0234375%; }

@property --11-y-position { syntax: '<percentage>'; inherits: false; initial-value: 0%; }


:root {

--4-x-position: 20%

--4-y-position: 80%

--5-x-position: 20%

--5-y-position: 80%

--6-x-position: 11.796875000000002%

--6-y-position: 81.3671875%

--7-x-position: 99.0234375%

--7-y-position: 14.335937500000002%

--8-x-position: 0%

--8-y-position: 99.0234375%

--9-x-position: 99.0234375%

--9-y-position: 14.335937500000002%

--10-x-position: 0%

--10-y-position: 99.0234375%

--11-x-position: 99.0234375%

--11-y-position: 0%

}


@keyframes main { 25% {--11-x-position: 85%;--11-y-position: 80%;}32% {--10-x-position: 15%;--10-y-position: 15%;}50% {--10-x-position: 80%;--10-y-position: 15%;--11-x-position: 15%;--11-y-position: 85%;} } */

.landing-banner-section .banner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
}
.landing-banner-section .left-section {
  width: 50%;
  padding-right: 60px;
  padding-bottom: 60px;
}
.landing-banner-section .left-section h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.landing-banner-section .left-section p {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}
.landing-banner-section .left-section span {
  font-size: 19px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.landing-banner-section .left-section ul {
  margin-top: 20px;
}
.landing-banner-section .left-section ul li {
  color: #fff;
  font-size: 17px;
  line-height: 25px;
  color: rgb(255, 255, 255, 0.98);
  margin-bottom: 0;
  position: relative;
  padding-left: 50px;
}
.landing-banner-section .left-section ul li strong {
  padding-right: 8px;
}
.landing-banner-section .left-section ul li:not(:last-child) {
  margin-bottom: 35px;
}
.landing-banner-section .left-section ul li figure {
  max-width: 35px;
  filter: invert(1) brightness(5);
  flex: 0 0 auto;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
}

.landing-banner-section .left-section .btn-fill {
  margin-top: 50px;
  min-width: 200px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 18px;
}
.landing-banner-section .right-section {
  width: 50%;
}
.landing-banner-section .right-section figure {
  border-radius: 15px;
  overflow: hidden;
}
.landing-banner-section .right-section figure img {
  mix-blend-mode: lighten;
}
.ascipus-about-section {
  padding: 60px 0;
}
.ascipus-about-section .img-area {
  width: 40%;
}
.ascipus-about-section .img-area figure {
  border-radius: 15px;
  overflow: hidden;
}
.ascipus-about-section .img-area figure img {
  width: 100%;
}
.ascipus-about-section .box-content {
  width: calc(60% - 40px);
  padding-left: 40px;
  padding-top: 10px;
}
.section-head span {
  font-size: 20px;
  font-weight: 500;
  color: #153b7a;
  display: block;
  margin-bottom: 5px;
}
.section-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.ascipus-about-section .box-content p {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-top: 20px;
  margin-bottom: 5px;
}
.comman-accordion {
  margin: 20px 0 40px;
}
.comman-accordion .accordion {
  border: none;
  border-radius: 0 !important;
}
.comman-accordion .accordion-item {
  border: none;
  border-radius: 0 !important;
}
.comman-accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.comman-accordion .accordion-item .accordion-button {
  padding: 20px 0;
  background-color: transparent;
  font-size: 21px;
  font-weight: 600;
  color: #153b7a;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}
.comman-accordion .accordion-item .accordion-button.collapsed {
  color: #000000;
  font-weight: 400;
  font-size: 19px;
}
.comman-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.comman-accordion .accordion-item .accordion-body {
  padding: 0px 0 20px;
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.comman-accordion .accordion-item .accordion-body p {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 500;
  color: #000000 !important;
}
.comman-accordion .accordion-item .accordion-body ul {
  padding-left: 20px;
}
.comman-accordion .accordion-item .accordion-body ul li {
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 10px;
  color: #000000 !important;
  list-style: circle;
}
.key-features-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}
.key-features-section ul {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.key-features-section ul li {
  text-align: center;
  border: 1px solid #153b7a;
  background-color: #153b7a;
  border-radius: 20px;
  padding: 60px 20px;
  transition: all 0.3s ease-in-out;
}
.key-features-section ul li:hover {
  background-color: #fff;
}
.key-features-section ul li figure {
  transition: all 0.3s ease-in-out;
  filter: invert(1) brightness(5);
  margin-bottom: 20px;
}
.key-features-section ul li figure img {
  width: 70px;
  margin: 0 auto;
}
.key-features-section ul li:hover figure {
  filter: none;
}
.key-features-section ul li h3 {
  font-size: 23px;
  line-height: 33px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.key-features-section ul li p {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.key-features-section ul li:hover :where(h3, p) {
  color: #153b7a;
}
.howit_works-section {
  padding: 60px 0;
}

ul.stepslisting {
  margin: 30px 0px 0px;
  padding: 30px 0px;
  display: flex;
}
ul.stepslisting li {
  width: 33.33%;
  padding: 0px 20px;
  list-style: none;
  text-align: center;
  position: relative;
}
ul.stepslisting li .questionCard figure {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
  box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
  margin: 0 auto 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
ul.stepslisting li .questionCard figure img {
  width: 90px;
}
ul.stepslisting li .questionCard figure:after {
  position: absolute;
  left: 0px;
  height: 150px;
  width: 150px;
  top: 0px;
  margin: auto;
  bottom: 0px;
  right: 0px;
  content: "";
  border: 1px dashed #153b7a;
  border-radius: 50%;
  z-index: -1;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
ul.stepslisting li .questionCard strong {
  display: block;
  color: #000;
  font-size: 18px;
  padding: 0px 0px 10px;
  max-width: 295px;
  margin: auto;
}
ul.stepslisting li .questionCard p {
  font-size: 18px;
  line-height: 22px;
  color: #3d3d3d;
  padding: 0px 5px;
  max-width: 320px;
  margin: auto;
}
ul.stepslisting li::after {
  content: "";
  position: absolute;
  width: 287px;
  height: 110px;
  background: url(../images/process-arrow-1.svg);
  background-repeat: repeat;
  background-size: auto;
  right: -143px;
  top: -30px;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: rotate(5deg);
}
ul.stepslisting li.middleCard::after {
  width: 287px;
  height: 110px;
  right: -153px;
  top: 100px;
  background: url(../images/process-arrow-2.svg);
  transform: rotate(0deg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center right;
}
ul.stepslisting :last-child::after {
  display: none;
}
.call-to-action-banner {
  background-color: #000000;
  padding: 60px 0;
}
.call-to-action-banner .section-head h2 {
  color: #fff;
  margin-bottom: 30px;
}
.call-to-action-banner .btn {
  min-width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 17px;
}
body:not(.ai-landing-section) footer p{
    display: none;
}
body:not(.ai-landing-section) footer {
  position: relative;
  bottom: 0;
  padding: 25px 0;
  background-color: #fff;
}
/* body:not(.ai-landing-section) footer{
    display: none;
} */
body.ai-landing-section footer .copyright{
    display: none;
}
body:not(.ai-landing-section) footer .copyright {
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  display: block !important;
}
body:not(.ai-landing-section) footer .copyright a {
  color: #153B7A;
  font-weight: 700;
  text-decoration: none;
}
body.ai-landing-section footer .social-icon{
    display: none;
}
body:not(.ai-landing-section) footer .footerlink-column .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
body:not(.ai-landing-section) footer .footerlink-column .social-icon li a img {
  position: relative;
  top: 0;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
body:not(.ai-landing-section) footer .footerlink-column .social-icon li a:hover img {
  top: -5px;
}
 body{
    background: #fff !important;
 }
.ai-landing-section{
    background: radial-gradient(#153B7A, transparent) !important;
}
.ai-inner-section{
    background: radial-gradient(#153B7A, transparent);
}
body:has(.ai-inner-section){
    background-color: transparent !important;
}
.subscription_plans_section.landing-plans-section{
    margin: 40px 0 60px;
    background: radial-gradient(100% 100% at 55% 50%, #153b7a -12%, transparent), radial-gradient(100% 100% at 0% 99%, #00a895 3%, transparent), #1b253b;
    padding: 50px 0;
    border-radius: 20px;
}

@media (max-width: 1544px) {
  ul.stepslisting li::after {
    width: 227px;
    height: 80px;
    right: -113px;
  }
  ul.stepslisting li.middleCard::after {
    width: 227px;
    height: 80px;
    right: -113px;
  }
  .landing-banner-section .left-section h1 {
    font-size: 47px;
    line-height: 57px;
  }
}
@media (max-width: 1399px) {
  .ascipus-about-section .box-content p {
    font-size: 17px;
  }
  ul.stepslisting li::after {
    width: 187px;
    height: 70px;
    right: -93px;
  }
  ul.stepslisting li.middleCard::after {
    width: 187px;
    height: 70px;
    right: -93px;
  }
  .key-features-section ul li h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .landing-banner-section .left-section h1 {
    font-size: 42px;
    line-height: 54px;
  }
  .landing-banner-section .left-section p {
    font-size: 19px;
    line-height: 29px;
  }
}
@media (max-width: 1199px) {
  .key-features-section ul {
    gap: 15px;
  }
  .key-features-section ul li {
    padding: 40px 20px;
  }
  .key-features-section ul li p {
    font-size: 15px;
  }
  ul.stepslisting li .questionCard figure {
    width: 160px;
    height: 160px;
  }
  ul.stepslisting li .questionCard figure:after {
    width: 130px;
    height: 130px;
  }
  ul.stepslisting li::after {
    width: 145px;
    height: 60px;
    right: -73px;
  }
  ul.stepslisting li.middleCard::after {
    width: 145px;
    height: 60px;
    right: -73px;
  }
  ul.stepslisting li .questionCard p {
    font-size: 16px;
  }
    .subscription_plans_section.landing-plans-section{
        padding: 40px 12px;   
    }
}
@media (max-width: 991px) {
  .landing-banner-section .left-section {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
    /* text-align: center; */
  }
  .landing-banner-section .right-section {
    width: 100%;
  }
  .landing-banner-section {
    height: auto;
    padding-bottom: 0;
    padding-top: 100px;
  }
  .landing-banner-section .right-section figure {
    text-align: center;
  }
  .ascipus-about-section {
    padding: 40px 0 60px;
  }
  .ascipus-about-section .img-area {
    width: 100%;
    order: 2;
  }
  .ascipus-about-section .box-content {
    width: 100%;
    padding-left: 0;
    order: 1;
  }
  .key-features-section ul {
    grid-template-columns: repeat(2, 1fr);
  }
  ul.stepslisting li::after {
    display: none;
  }
  ul.stepslisting li.middleCard::after {
    display: none;
  }
  .section-head h2 {
    font-size: 35px;
  }
  .howit_works-section {
    padding: 40px 0;
  }
  ul.stepslisting li {
    padding: 0px 10px;
  }
  ul.stepslisting li .questionCard p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .key-features-section ul {
    grid-template-columns: repeat(1, 1fr);
  }
  ul.stepslisting {
    flex-wrap: wrap;
    padding: 0;
  }
  ul.stepslisting li {
    width: 100%;
    padding-bottom: 20px;
  }
  ul.stepslisting li .questionCard p {
    font-size: 16px;
  }
  .section-head span {
    font-size: 17px;
  }
  .ascipus-about-section .box-content p {
    font-size: 16px;
  }
  .comman-accordion .accordion-item .accordion-button.collapsed {
    font-size: 17px;
  }
  .comman-accordion .accordion-item .accordion-button {
    font-size: 19px;
  }
  .comman-accordion .accordion-item .accordion-body p {
    font-size: 16px;
  }
  .comman-accordion .accordion-item .accordion-body ul li {
    font-size: 15px;
  }
  .section-head h2 {
    font-size: 27px;
  }
  .landing-banner-section .left-section h1 {
    font-size: 33px;
    line-height: 43px;
  }
  .landing-banner-section .left-section p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 25px;
  }
  .landing-banner-section .left-section span {
    font-size: 16px;
  }
  .landing-banner-section .left-section ul li {
    font-size: 16px;
  }
  .landing-banner-section .left-section ul li figure {
    max-width: 30px;
  }
  .landing-banner-section .left-section .btn-fill {
    width: 100%;
    font-size: 17px;
  }
  ul.stepslisting li .questionCard figure {
    padding-bottom: 20px;
  }
  .call-to-action-banner {
    padding: 40px 0;
  }
  .call-to-action-banner .btn {
    min-width: 170px;
    font-size: 16px;
    height: 55px;
  }
  .footer-inner .copyright {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .footerlink-column .social-icon {
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    order: 1;
  }
  .individual_tag{
    font-size: 15px;
  }
}


/* 10-06-2025 */
.header-inner .right-section .profile-menu ul li a{
    font-size: 14px !important;
    min-width: auto;
    width: 100%;
    height: auto;
    padding: 7px 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    /* font-weight: 500; */
}
@media(max-width:991px){
    .wireframe-chat-main .text-chat-section .chat-start-box {
       height: calc(100svh - 205px) !important; 
    }
    .wireframe-chat-main .text-chat-section{
        height: calc(100svh - 100px) !important;
    }
    .wireframe-chat-main:has(.chat-box-section) .text-chat-section {
        height: calc(60svh - 147px) !important;

    }
    .wireframe-chat-main:has(.chat-box-section) .text-chat-section .chat-start-box {
        height: calc(60svh - 185px) !important;
    }
}

.fixed-typetext-action{

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 75px;
    width: auto;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media(max-width:576px){
    .dropdown.profile-login .dropdown-toggle:has(.profile-mobile){
        font-size: 0 !important;
        min-width: auto;
        width: 40px;
        height: 40px;
        padding: 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        margin-right: 0;
    } 
    .dropdown.profile-login .dropdown-toggle:has(.profile-mobile) .profile-mobile{
        margin-right: 0 !important;
        width: 18px;
    } 
}