@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');

:root {
    --primary-color: #C10BD2;
    --primary-color-gradient: rgba(193, 11, 210, 0.8);
    --secondary-color: #010E8F;
    --secondary-color-gradient: rgba(0, 16, 147, 0.8);
    --white-color: #ffffff;
    --gray-color: #626262;
    --blue-color: #000538;
    --black-color: #000000;
    --footer-background: #1A011E;
    --slider-background: #2A053C;

}

.badge {
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 12px;
}
.bg-primary {
    background-color: #FAECFD !important;
    color:#B015CD !important;
}
body {
    padding-top: 131px;
    font-family: "Baloo Bhaijaan 2", sans-serif;
}

section {
    padding: 100px 0px;
    position: relative;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

.breadcrumb .breadcrumb-item a {
    color: #000538;
    font-weight: 500;
    font-size: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    top: 53%;
    position: absolute;
    transform: translateY(-50%);
    font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item {
    position: relative;
}

.breadcrumb .breadcrumb-item:last-child a {
    padding-right: 15px;
}

.sub-page-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    color: black;
    font-weight: 600;
}

.sub-page-header svg {
    width: 30px;
    height: auto;
}

.sub-page-content p,
.sub-page-content ul li {
    color: #606060
}

.sub-page-content ul li {
    list-style: disc;
}

.sub-page-section img {
    max-width: 350px;
}

.navbar-toggler {
    display: flex;
    border-color: white;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.navbar-toggler i {
    color: white;
}

.navbar-toggler:active, .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.text-blue-color {
    color: var(--blue-color) !important;
}

.text-gray-color {
    color: var(--gray-color) !important;
}

.text-black-color {
    color: var(--black-color) !important;
}

.text-white-color {
    color: var(--white-color) !important;
}

img {
    max-width: 100%;
}


.custom-form-label {
    color: var(--blue-color);
    font-weight: 500;
    font-size: 18px;
}

.custom-form-control {
    background-color: var(--white-color);
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 10px 20px;
    box-shadow: 0px 4px 22px 0px #4E3FD312;
    color: var(--gray-color);
    text-align: right;
}

.custom-form-control.is-invalid {
    background-color: #FA10241A;
    box-shadow: none !important;
}

.custom-form-control.input-icon {
    padding-right: 50px;
}

.custom-form-control:focus {
    background-color: #fff;
    border: 1px solid var(--secondary-color) !important;
    box-shadow: none;
    color: var(--gray-color);
    background-image: none;
}

.custom-input-icon-box svg {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
}

.custom-input-icon-box.password-input input {
    padding-inline: 50px !important;
}

.custom-input-icon-box.password-input a {
    display: block;
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
}

.custom-input-icon-box.password-input a svg {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
}

.form-check .form-check-input {
    width: 20px;
    height: 20px;
    border: 1.25px solid var(--gray-color);
    color: var(--gray-color);
    margin-top: 0;
    box-shadow: none;
}

.form-check .form-check-input:checked {
    background-color: var(--primary-color);
    border: 1.25px solid var(--primary-color);
}

.form-check .form-check-label {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    vertical-align: middle;
    color: var(--gray-color);
}

.text-gradient {
    background: -webkit-linear-gradient(270deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    text-align: center;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid var(--primary-color) !important;
    background: var(--primary-color) !important;
    color: #ffffff !important;
}


.auth-section {
    min-height: 100vh;
    background: -webkit-linear-gradient(174.71deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
}

.auth-section .right {
    background-color: var(--white-color);
    min-height: 100vh;
}


.auth-section .right .auth-card {
    border-radius: 0;
    background-color: var(--white-color);
    border: none;
}

.auth-section .auth-card .card-header {
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.auth-section .auth-card .card-header .dropdown .dropdown-toggle {
    color: var(--gray-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 0;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu {
    background-color: var(--white-color);
    border-color: var(--gray-color);
    text-align: center;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu .dropdown-item {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
}

.auth-section .auth-card .card-header .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--gray-color);
    color: var(--white-color);
}

.auth-section .auth-card .card-header .logo {
    max-height: 55px;
}

.auth-section .auth-card .card-body .card-title {
    background: -webkit-linear-gradient(174.71deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 152.53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

.auth-section .left {
    padding: 50px;
}

.auth-section .left .title,
.auth-section .left .subtitle {
    color: var(--white-color);
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.auth-section .left .subtitle {
    margin-bottom: 40px;
}

.auth-section .left .left-image {
    margin-inline: auto;
    display: block;
    max-width: 500px;
}

.custom-gradient-button {
    background: linear-gradient(179deg, var(--primary-color-gradient) -8.01%, var(--secondary-color-gradient) 154.53%);
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgb(165 157 157 / 45%);
    box-shadow: 0px 9px 1px 0px #543192d1;
    min-width: 160px;
    line-height: 1;
    padding: 10px 20px;
    border:none;
}

.custom-gradient-button:hover, .custom-gradient-button:focus {
    color: var(--white-color) !important;
}

.custom-gradient-button-secondary {
    background: linear-gradient(179deg, #ffffff -8.01%, #ffffff 154.53%);
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgb(165 157 157 / 45%);
    border:none;
    box-shadow: 0px 9px 1px 0px #543192d1;
    min-width: 160px;
    line-height: 1;
    padding: 10px 20px;
}
.custom-gradient-button-secondary:hover {
    color: var(--primary-color) !important;
}
.auth-section .auth-link-box {
    margin-top: 30px;
}

.auth-section .auth-link-box span {
    font-weight: 400;
    font-size: 18px;
    color: var(--gray-color);
}

.auth-section .auth-link-box a {
    font-weight: 700;
    font-size: 18px;
}

.auth-section.login .reset-password-link {
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
}

.auth-section.reset .option-card {
    box-shadow: 0 4px 22px 0 #4E3FD312;
    border: none;
    border-radius: 20px;
    min-height: 230px;
}

.auth-section.reset .option-card img {
    width: 200px;
    margin-inline: auto;
}

.auth-section.verify .otp-box {
    direction: ltr;
}

.auth-section.verify .otp-box .otp-input {
    height: 50px;
    width: 70px;
    font-size: 1.5rem;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    direction: ltr;
    font-weight: bold;
}

.auth-section.verify .otp-box .otp-input:focus {
    border-color: var(--primary-color);
    outline: none;
}


.auth-section.verify .otp-box .otp-input::-webkit-inner-spin-button,
.auth-section.verify .otp-box .otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .auth-section .left {
        padding: 20px;
    }

    .auth-section .left .title,
    .auth-section .left .subtitle {
        font-size: 24px;
    }

    .auth-section .left .left-image {
        max-width: 100%;
    }

    .auth-section .right {
        padding: 20px;
    }

    .auth-section .right .auth-card {
        border-radius: 12px;
    }
}

/*////////////////////////////  CHAT  ///////////////////////////////////*/

.chat-card {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 4px 22px 0px #4E3FD312;
    padding: 30px;
    /* height: 100%; */
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.title {
    font-size: 18px;
}

.robot-icon {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: -64px;
}

.robot-icon img {
    width: 35px;
    height: 35px;
}

.card-content-right {
    max-width: 70%;
    margin-right: 50px;
    background-color: #f7f7f7;
    border-radius:40px 40px 0 40px;
    padding: 15px;

}

.card-content-right .action-buttons {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.card-content-right .action-buttons button {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s;
    border: none;
    background: none;
    outline: none;
}

.card-content-right .action-buttons button:hover {
    background-color: #d0d0d0;
}

.card-content-right .action-buttons button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.card-content-right .action-buttons button img {
    width: 16px;
    height: 16px;
}


.card-content-left {
    align-self: flex-end;
    max-width: 70%;
    background-color: #E0F7FA;
    border-radius: 40px 40px 40px 0;
    padding: 15px;
    direction: rtl;
    background-color: #faecfd;

}

 .chat-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.chat-input {
    flex: 1;
    background-color: var(--white-color, white);
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.chat-input::placeholder {
    color: #999;
    font-size: 14px;
}

.send-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

.send-btn img {
    width: auto;
    height: auto;

}
.header__login {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__login a {
    font-size: 18px;
    min-width: 130px;
}

/*helper icon*/

/* Base Helper Icon & Contact Bubble Styles for Sub Pages */
:root {
    --bubble-bg: rgba(255, 255, 255, 0.95);
    --bubble-color: #6B46C1;
    --bubble-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Helper icon styles for sub pages */
.sub-page-section .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 15px;
    right: 15px;
}

.sub-page-section .helper-icon svg {
    width: 35px;
    height: 35px;
}

.sub-page-section .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 65px;
    right: 5px;
}

.sub-page-section .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.sub-page-section .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 85%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}

.sub-page-section .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sub-page-section .helper-icon,
.sub-page-section .contact-bubble {
    display: block !important;
}

.sub-page-header {
    position: relative;
}



/* Helper icon styles for blog page */
.blogList .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 15px;
    right: 15px;
}

.blogList .helper-icon svg {
    width: 35px;
    height: 35px;
}

/* Contact bubble styles for blogList page */
.blogList .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 65px;
    right: 5px;
}

.blogList .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Arrow pointer for blogList bubbles */
.blogList .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 85%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}

/* Show bubble on hover for blogList */
.blogList .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Force visibility for blogList */
.blogList .helper-icon,
.blogList .contact-bubble {
    display: block !important;
}

/* Make sure the container has relative positioning */
.container.blogList {
    position: relative;
}
.single-service-img__holder img {
    max-width: 100%;
}
.single-service-img__holder {
    background: url(../images/single_service_bg.png);
    background-size: auto 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex
;
    align-items: center;
    justify-content: center;
}

/*helper service*/


/* Helper icon styles for service page - sub-page-header */
.sub-page-header .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: -10px;
    right: -50px;
}

.sub-page-header .helper-icon svg {
    width: 35px;
    height: 35px;
}

.sub-page-header .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 40px;
    right: -70px;
}

.sub-page-header .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}


.sub-page-header .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 85%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}


.sub-page-header .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.sub-page-header .helper-icon,
.sub-page-header .contact-bubble {
    display: block !important;
}


.service_helper_icon .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.service_helper_icon .helper-icon svg {
    width: 40px;
    height: 40px;
}

.service_helper_icon .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.service_helper_icon .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}


.service_helper_icon .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}


.service_helper_icon .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service_helper_icon .helper-icon,
.service_helper_icon .contact-bubble {
    display: block !important;
}

.service_helper_icon {
    position: relative;
}

/* Helper icon styles for package page - sub-page-header */
/* Helper icon styles for packages page - main section */
.helpers_icons .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 15px;
    right: 15px;
}

.helpers_icons .helper-icon svg {
    width: 35px;
    height: 35px;
}

/* Contact bubble styles for packages main section */
.helpers_icons .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 20px 25px;
    position: absolute;
    min-width: 250px;
    max-width: 350px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 65px;
    right: 5px;
}

.helpers_icons .contact-bubble p {
    color: var(--bubble-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Arrow pointer for packages bubbles */
.helpers_icons .contact-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 85%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bubble-bg);
}

/* Show bubble on hover for packages main section */
.helpers_icons .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Force visibility for packages main section */
.helpers_icons .helper-icon,
.helpers_icons .contact-bubble {
    display: block !important;
}

/* Helper icon styles for individual package items in the row */
.helpers_icons .row .helper-icon {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
    top: 10px;
    right: 10px;
}

.helpers_icons .row .helper-icon svg {
    width: 30px;
    height: 30px;
}

/* Contact bubble styles for individual package items */
.helpers_icons .row .contact-bubble {
    background: var(--bubble-bg);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 15px 20px;
    position: absolute;
    min-width: 200px;
    max-width: 280px;
    width: auto;
    box-shadow: var(--bubble-shadow);
    text-align: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    word-wrap: break-word;
    white-space: normal;
    top: 50px;
    right: 0px;
}

.helpers_icons .row .contact-bubble p {
    color: var(--bubble-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Arrow pointer for individual package items */
.helpers_icons .row .contact-bubble::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 80%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--bubble-bg);
}

/* Show bubble on hover for individual package items */
.helpers_icons .row .helper-icon:hover + .contact-bubble {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Force visibility for individual package items */
.helpers_icons .row .helper-icon,
.helpers_icons .row .contact-bubble {
    display: block !important;
}

/* Make sure the packages section and columns have relative positioning */
.helpers_icons {
    position: relative;
}

.helpers_icons .row .col-lg-3 {
    position: relative;
}
