:root {
    /* Body */
    --body-bg: #f8fafc;

    /* Typography */
    --font-family-sans-serif: "Nunito Sans", sans-serif;
    --font-size-base: 0.9rem;
    --line-height-base: 1.6;
    --primary: #6c70dc;
    --primary-dark: #6063c0;
}

/* Body */
body {
    background-color: var(--body-bg);
    font-family: var(--font-family-sans-serif);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.fa-eye,
.fa-eye-slash {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary) !important;
    color: white !important;
}
button:hover,
button:active,
button:focus {
    background-color: var(--primary-dark) !important;
}

/* Links */
a:hover,
a:active,
a:focus {
    color: var(--primary-dark) !important;
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-family: "Poppins", serif;
}
.subtitle {
    font-size: 1.125rem;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

.fw-900 {
    font-weight: 900 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.form-label {
    font-size: 1.1rem !important;
    font-weight: 500;
    text-transform: none !important;
}

.form-label-small {
    font-size: 1rem !important;
    font-weight: 500;
    text-transform: none !important;
}

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

.mt-10 {
    margin-top: 10rem !important;
}

.w-90 {
    width: 90% !important;
}

.light-style .bs-stepper {
    background-color: #f8fafc;
}

.light-style .bs-stepper .bs-stepper-header {
    border-bottom: none;
}

.input-group-text {
    background-color: #f8fafc;
}

.bs-stepper .bs-stepper-header .step .bs-stepper-circle i.icon-base {
    font-size: 1.5rem;
    inline-size: 1.5rem;
    block-size: 1.5rem;
}

.bs-stepper .bs-stepper-header .step .bs-stepper-circle {
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
}

.bs-stepper .bs-stepper-header .step .step-trigger:hover,
.bs-stepper .bs-stepper-header .step .step-trigger:active,
.bs-stepper .bs-stepper-header .step .step-trigger:focus {
    background-color: transparent !important;
}

/* Form Controls */
.form-control {
    padding: calc(0.8555rem - 1px) calc(1rem - 1px);
    display: block !important;
    font-size: 0.9375rem !important;
    font-weight: 400 !important;
    line-height: 1.375 !important;
    color: #433c50 !important;
    appearance: none !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #d1cfd4 !important;
    border-radius: 0.375rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.form-control:focus {
    color: #433c50 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-width: 2px !important;
    padding: calc(0.8555rem - 2px) calc(1rem - 2px) !important;
}

.custom-option.disabled:hover {
    border: 1px solid #d9dee3;
}

/* Input Group */
.input-group-text {
    border: 1px solid #d1cfd4;
}
.input-group:not(.input-group-floating):focus-within .form-control,
.input-group:not(.input-group-floating):focus-within .input-group-text {
    border-width: 2px !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.input-group-merge input {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group-merge .input-group-text {
    border-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Background */
.bg-right {
    background: rgb(107, 108, 252);
    background: linear-gradient(82deg, rgba(107, 108, 252,1) 14%, rgba(140, 251, 249, 0.6) 94%);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #434343a9;
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    height: 100%; /* Ensure it takes full height */
}

.image-content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    height: 100%; /* Ensure it takes full height */
}

/* Mobile view: shrink the wrapper div to 50% height */
@media (max-width: 767px) {
    .image-content{
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text vertically */
        height: auto !important; /* Ensure it takes full height */
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}


.position-absolute {
    position: absolute; /* Make the image position absolute */
    top: 20px; /* Adjust this value as needed */
    left: 10px; /* Adjust this value as needed */
}

/* Misc */
.mw-25 {
    max-width: 16% !important;
}

.logo-light {
    max-height: 12%;
    width: auto;
}
.mw-50 {
    max-width: 50% !important;
}
.book-form {
    display: flex;
    flex-direction: column;
}

.book-form button {
    margin-top: 1rem; /* Optional: Adds space above the button */
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .register-form {
        max-width: 70% !important;
    }
    .main-row-height {
        height: 100vh !important;
    }
    .top-height {
        height: 100vh !important;
    }
}
@media screen and (max-width: 768px) {
    .register-form {
        max-width: 85% !important;
    }
    .title {
        font-size: 8vw !important;
    }
    .subtitle {
        font-size: 4vw !important;
    }
    .main-row-height {
        height: 100% !important;
    }
    .top-height {
        min-height: 500px !important;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 10vw !important;
    }
    .subtitle {
        font-size: 5vw !important;
    }
    .main-row-height {
        height: 100% !important;
    }
    .top-height {
        min-height: 450px !important;
    }
    .logo-light {
        max-height: 16%;
        width: auto;
    }
}

/* Custom Classes */

.custom-option-icon .custom-option-body .custom-option-title {
    font-size: 1rem;
    font-weight: 600;
}

span.badge.badge-center.rounded-pill.bg-label-primary.p-0.me-3 {
    block-size: 1rem;
    inline-size: 1rem;
}

.input-group.input-group-merge.has-validation.position-relative {
    box-shadow: none;
}

#billing-tab .card-number-input-group div#card-number-element,
#billing-tab .card-expiry-input-group div#card-expiry-element,
#billing-tab .card-cvv-input-group div#card-cvv-element {
    padding: 15px 15px;
    width: 100%;
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.375;
    color: #433c50;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #d1cfd4;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#billing-tab .card-number-input-group div#card-number-element.StripeElement--focus,
#billing-tab .card-expiry-input-group div#card-expiry-element.StripeElement--focus,
#billing-tab .card-cvv-input-group div#card-cvv-element.StripeElement--focus {
    color: #433c50 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-width: 2px !important;
    border-color: #696cff !important;
    padding: 15px 15px !important;
}

#billing-tab .card-number-input-group div#card-number-element.StripeElement--invalid,
#billing-tab .card-expiry-input-group div#card-expiry-element.StripeElement--invalid,
#billing-tab .card-cvv-input-group div#card-cvv-element.StripeElement--invalid,
#billing-tab .card-number-input-group div#card-number-element.StripeElement--empty.is-invalid,
#billing-tab .card-expiry-input-group div#card-expiry-element.StripeElement--empty.is-invalid,
#billing-tab .card-cvv-input-group div#card-cvv-element.StripeElement--empty.is-invalid {
    border-color: #ff3e1d !important;
}

#billing-tab .card-number-input-group img#payment-logo,
#billing-tab .card-cvv-input-group img#card-cvv-logo{
    top: 41px;
    right: 17px;
}

#billing-tab .plan-details ul i.icon-base.bx.bx-check.icon-xs {
    position: relative;
    top: -8px;
    left: -8px;
}

#billing-tab .form-check.custom-option.custom-option-basic span.badge {
    font-size: 1.25rem;
    font-weight: 500;
}

#billing-tab .form-check.custom-option.custom-option-basic span.badge small {
    font-size: 0.6rem;
    font-weight: 500;
}

#billing-tab .form-check.custom-option.custom-option-basic span.text-heading {
    font-size: 0.938rem;
    font-weight: 500;
}

#billing-tab .form-check.custom-option.custom-option-basic .form-check-input {
    margin-top: 0.5rem;
}

#billing-tab .form-check.custom-option.custom-option-basic span.custom-option-body small {
    font-size: 0.813rem;
    font-weight: 400;
}

#billing-tab .plan-details h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

#billing-tab .plan-details ul.list-group li span {
    font-size: 0.938rem;
    font-weight: 400;
}

#billing-tab .plan-details ul.list-group li:last-child {
    margin-bottom: 0px !important;
}

#billing-tab .form-check.custom-option.custom-option-basic span.badge.bg-label-success {
    background-color: #CCFBC0 !important;
    color: #2FA358 !important;
}

#billing-tab .form-check.custom-option.custom-option-basic span.badge.bg-label-warning {
    color: #E59900 !important;
    background-color: #FFAB0029 !important;
}

#summary-tab .text-success {
    color: #2FA358 !important;
}

#summary-tab .text-warning {
    color: #E59900 !important;
}

#summary-tab .summary-wrapper .selected_plan_value span.badge {
    font-size: 0.8rem;
    padding: 8px 10px 5px 10px;
    font-weight: 500;
}

#summary-tab .summary-wrapper span.w-70 {
    font-weight: 500 !important;
}

.w-30 {
    width: 30% !important;
}

.w-70 {
    width: 70% !important;
}

#billing-tab .plan-details-wrapper .list-group {
    height: 310px;
    overflow-x: auto;
}

#billing-tab #plan_2_details .plan-details .plan-feature-2,
#billing-tab #plan_2_details .plan-details .plan-feature-3,
#billing-tab #plan_2_details .plan-details .plan-feature-4,
#billing-tab #plan_2_details .plan-details .plan-feature-5,
#billing-tab #plan_2_details .plan-details .plan-feature-6,
#billing-tab #plan_2_details .plan-details .plan-feature-7 {
    display: none !important;
}

#billing-tab #plan_3_details .plan-details .plan-feature-2,
#billing-tab #plan_3_details .plan-details .plan-feature-3,
#billing-tab #plan_3_details .plan-details .plan-feature-4,
#billing-tab #plan_3_details .plan-details .plan-feature-5,
#billing-tab #plan_3_details .plan-details .plan-feature-6,
#billing-tab #plan_3_details .plan-details .plan-feature-7,
#billing-tab #plan_3_details .plan-details .plan-feature-10,
#billing-tab #plan_3_details .plan-details .plan-feature-11,
#billing-tab #plan_3_details .plan-details .plan-feature-12,
#billing-tab #plan_3_details .plan-details .plan-feature-13,
#billing-tab #plan_3_details .plan-details .plan-feature-14,
#billing-tab #plan_3_details .plan-details .plan-feature-16,
#billing-tab #plan_3_details .plan-details .plan-feature-17,
#billing-tab #plan_3_details .plan-details .plan-feature-18,
#billing-tab #plan_3_details .plan-details .plan-feature-19,
#billing-tab #plan_3_details .plan-details .plan-feature-20,
#billing-tab #plan_3_details .plan-details .plan-feature-21 {
    display: none !important;
}

/* custom css styles */
.landing-green-bg{
    background-color: #47d90c !important;
    color: white !important;
    transition: background-color 0.3s ease;
    border: 1px solid #47d90c !important;
}

.btn.landing-green-bg:hover {
    background-color: #3ebf0a !important; /* Slightly darker green */
    border: 1px solid #3ebf0a !important;
}






/* Ensure flex items ini summary tab wrap on small screens */
.summary-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.summary-wrapper > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.summary-wrapper span {
    flex: 1 1 auto;
}

.summary-wrapper span.label {
    font-weight: 600;
    min-width: 120px; /* optional for desktop alignment */
}

.summary-wrapper span.value {
    text-align: right;
    word-break: break-word;
}

/* Checkbox spacing */
.is-confirmed-wrapper {
    margin-top: 1rem;
}

@media (max-width: 576px) {
    /* Stack label/value vertically on very small screens */
    .summary-wrapper > div {
        flex-direction: column;
        align-items: flex-start;
    }
    .summary-wrapper span.value {
        text-align: left;
        margin-top: 0.25rem;
    }
    #summary-tab .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.signup-image{
    position:relative;
}

@media (max-width: 991.98px) {
    /* .signup-image {
        display: none !important;
    } */
}


/* .bs-stepper .bs-stepper-content {
    padding: 0 !important;
} */