@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

body {
    font-family: "Bricolage Grotesque", serif;
    font-size: 15px;
}

.btn-outline-primary {
    color: rgb(49 12 126);
    border: 2px solid rgb(49 12 126);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.btn-outline-primary:hover {
    background-color: #f15a25;
    color: rgb(255, 255, 255);
    border: 2px solid #f15a25;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

a.td-none.primary-products-links.active {
    color: #d6654b !important;
    font-weight: 600;
}

.primary-products-links {
    color: rgb(49 12 126) !important;
    text-decoration: none;
    /* border-bottom: 1px dashed rgb(49 12 126); */
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

.primary-links {
    color: rgb(49 12 126) !important;
    text-decoration: none;
    border-bottom: 1px dashed rgb(49 12 126);
}

.primary-links.active {
    color: rgb(45 65 85) !important;
    border-bottom: 1px dashed rgb(45 65 85);
}

.primary-color {
    color: rgb(49 12 126) !important;
}

.breadcrumb-item a {
    color: rgb(49 12 126) !important;
}

.navbar {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #f15a25 !important;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    background-color: #2c3e50;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f15a25;
    color: white !important;
}

.btn-outline-light {
    border: 2px solid;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #f15a25;
    border-color: #f15a25;
}

.kb-header {
    background: linear-gradient(135deg, #310c7e, #d2542ff7);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.innerpage-kb-header {
    background: linear-gradient(135deg, #310c7e, #d2542ff7);
    color: white;
    padding: 20px 0;
    margin-bottom: 40px;
}

.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    /* border: none; */
    border-radius: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgb(48, 48, 48);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chapter-list .feature-list {
    list-style: none;
    padding-left: 0px;
}

.feature-list {
    list-style: none;
    padding-left: 0px;
}

li::marker {
    color: rgb(122 122 122);
    font-size: 18px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section-title {
    color: #272727;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #f15a25;
}

.custom-marker {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgb(122 122 122);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    /* Aligns the marker with the middle of the text */
}

/* New Footer Styles */
.kb-footer {
    background: #31117c;
    color: white;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f15a25;
}

.copyright {
    background: #180643;
    padding: 20px 0;
    margin-top: 40px;
}

/* Search Bar Styles */

.search-bar {
    max-width: 800px;
    margin: 30px auto 0;
    position: relative;
}

.innerpage-search-bar {
    max-width: 800px;
    margin: 0px auto 0;
    position: relative;
}

.search-input {
    height: 50px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 30px !important;
    padding-right: 50px;
    /* Ensures text doesn't overlap with button */
}

.search-btn {
    position: absolute !important;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    cursor: pointer;
}

.search-suggestions {
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    display: none;
    z-index: 2;
}

.search-suggestion-item {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.search-suggestion-item:hover {
    background: #f8f9fa;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.fw-600 {
    font-weight: 600;
}

.w-25 {
    width: 50px !important;
}

.font10 {
    font-size: 10px;
}


.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}


/* New */

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    box-shadow: none;
}

.article-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-content.active {
    display: block;
    opacity: 1;
}

.nav-link {
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #f8f9fa;
}

.nav-link.active {
    color: #f15a25;
    font-weight: 600;
}

/* Feedback band */

.feedback-band {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
}

.feedback-buttons {
    margin-top: 1rem;
}

.feedback-buttons .btn {
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
}

.feedback-buttons .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.feedback-buttons .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.feedback-thankyou {
    margin-top: 1rem;
    color: #28a745;
    font-weight: 500;
    display: none;
}

.feedback-apology {
    margin-top: 1rem;
    color: #dc3545;
    font-weight: 500;
    display: none;
}

.support-band {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #fffbee;
    border-radius: 0.5rem;
    /* border: 1px solid #ffc107; */
    text-align: center;
    display: none;
    /* Hidden by default */
}

.support-band .btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
}

/* Tip band */

.tip-band {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff2ee;
    border-radius: 0.5rem;
    /* border: 1px solid #f15a25; */
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tip-band .icon {
    font-size: 1.5rem;
    color: #f15a25;
}

.tip-band a {
    color: #f15a25;
    text-decoration: none;
    font-weight: 500;
}

.tip-band a:hover {
    text-decoration: underline;
}

/* Add this CSS for the offcanvas toggle button */

.offcanvas-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #f15a25;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.offcanvas-toggle-btn:hover {
    background-color: #2c3e50;
}

.offcanvas-start {
    width: 300px;
    /* Adjust width as needed */
}

/* Chatbot Code */

.chat-container {
    max-width: 500px;
    min-width: 425px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    position: fixed;
    bottom: 110px;
    right: 20px;
    z-index: 1000;
}

.chat-header {
    background: linear-gradient(135deg, #310c7e, #d2542ff7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.chat-body {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
}

.user-message {
    background: #c3e7ff;
    align-self: flex-end;
}

.bot-message {
    background: #e9ecef;
    align-self: flex-start;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.chat-footer input {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 20px;
    outline: none;
    background: #f1f1f1;
}

.chat-footer button {
    background: none;
    border: none;
    margin-left: 10px;
    font-size: 20px;
    color: #f15a25;
}

.chat-footer input[type="file"] {
    display: none;
}

.chat-footer label {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #f15a25;
}

.floating-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f15a25;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

@media (max-width: 600px) {
    .d-mobile-none {
        display: none;
    }

    .chat-container {
        max-width: 90%;
        min-width: 90%;
        margin: auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: none;
        position: fixed;
        bottom: 110px;
        right: 20px;
        z-index: 1000;
    }

    .floating-chat-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

.logoRow img {
    max-width: 120px;
    height: 40px;
}

.btn-primary {
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    background-color: #3a1593 !important;
    border-color: #3a1593 !important;
    height: 45px;
}

.primaryColor {
    color: #3a1593;
}

.form-control {
    padding: 10px 10px !important;
    border-radius: 8px !important;
    font-size: clamp(13px, 0.9vw, 14px) !important;
}

.borderRadiusStart10 {
    border-radius: 10px 0px 0px 10px !important;
}

.input-group-text {
    border-radius: 8px;
    border-right: 0px !important;
}

.formField input.form-control {
    border-left: 1px solid #cfd4da !important;
    border-radius: 0px 10px 10px 0px !important;
}

.logoRow {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
}

.logoRow h1 {
    font-size: 26px;
    margin-left: 20px;
}

.center-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar ul {
    padding: 0;
    margin: 0;
}

.topbar ul li {
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}

.dropdown.userProfileDropdown .btn.dropdown-toggle {
    background: transparent;
    border: 0;
    padding: 0px;
    margin: 0px;
}

.topbar img {
    width: 40px;
    height: 40px;
}

.topbar ul li .dropdown-menu {
    border-color: #e9e9e9;
    padding: 5px;
}

.comingSoonPage h1 {
    font-size: 30px;
}

.comingSoonPage img.img-fluid {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.comingSoonPage h1 {
    font-size: 30px;
    text-align: center;
}

#grad1 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    background: url(https://dkzxkcjlbnjui.cloudfront.net/uploads/media/images/register-background.png) no-repeat center center / cover;
}

@media(max-width:767px) {
    .btn-outline-light {
        padding: 4px 12px !important;
    }

    .navbar-collapse .d-flex {
        justify-content: center;
    }
}

.comingSoonImg img {
    width: 100%;
}

ul.feature-list.productLink a {
    font-size: 18px;
}

ul.feature-list.productLink li p {
    color: #505050;
    font-size: 15px;
}