/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    /*============= Colors =============*/
    --text-color: #212B36;
    --text-color-light: #919EAB;
    --text-sec-color: #637381;
    --body-color: #F6F6F6;
    --border-color: #ececec;
    --primary-color: #23CF5F;
    --dark-color: #001830;
    --error-color: #FF0000;

    /*=============== Font and typography ===============*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 1.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;

    /*============= Font weight =============*/
    --font-medium: 500;
    --font-semibold: 600;

    /*============= z index =============*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Responsive tyopography */
@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .4s;
}

h1,
h2,
h3 {
    color: var(--text-color);
    font-weight: var(--font-semibold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

section.section {
    padding: 60px 0;
}

section.section .section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

section.section .section-title-wrap .title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semibold);
}

section.section .section-title-wrap .second-title {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

.custom-card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.20);
}

.product-card {
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.20);
    overflow: hidden;
}

.custom-btn {
    color: #fff;
    background-color: var(--primary-color);
}

.custom-btn:hover,
.custom-btn:focus-visible,
.custom-btn:active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
}

.btn-text {
    color: var(--primary-color);
    background-color: transparent;
}

.btn-text:hover {
    color: var(--primary-color) !important;
    background-color: transparent !important;
}

.btn-black {
    color: #fff;
    background-color: var(--dark-color);
    padding: 8px 16px;
}

.btn-black:hover,
.btn-black:focus-visible,
.btn-black:active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
}

.btn-black-outline {
    color: var(--dark-color);
    background-color: #fff;
    border: 1px solid var(--dark-color);
    padding: 8px 16px;
}

.btn-black-outline:hover,
.btn-black-outline:focus-visible,
.btn-black-outline:active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
}

.card {
    border: none;
    box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.20);
}

.card-header {
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-color: #919EAB20;
}

.card-header .card-title {
    margin-bottom: 0;
}

.card-dashed {
    border-radius: 16px;
    border: 1px dashed var(--border-color);
}

.card-dashed .card-header {
    padding: 0;
    margin-bottom: 40px;
}

.form-label {
    font-weight: 500;
}

.small-text {
    color: var(--text-sec-color);
    font-size: 16px;
}

.medium-text {
    color: var(--text-sec-color);
    font-size: 18px;
    font-weight: 500;
}

.big-text {
    color: var(--text-color);
    font-size: 42px;
    font-weight: 700;
}

input[type=radio].with-font,
input[type=checkbox].with-font {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

input[type=radio].with-font ~ span:before,
input[type=checkbox].with-font ~ span:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f1db";
    letter-spacing: 10px;
    font-size: 1.2em;
    color: #535353;
    width: 1.4em;
    position: absolute;
    left: 20px;
}

input[type=radio].with-font:checked ~ span:before,
input[type=checkbox].with-font:checked ~ span:before {
    content: "\f00c";
    font-size: 1.2em;
    color: darkgreen;
    letter-spacing: 5px;
}

input[type=checkbox].with-font ~ span:before {
    content: "\f096";
}

input[type=checkbox].with-font:checked ~ span:before {
    content: "\f046";
    color: darkgreen;
}

input[type=radio].with-font:focus ~ span:before,
input[type=checkbox].with-font:focus ~ span:before,
input[type=radio].with-font:focus ~ span,
input[type=checkbox].with-font:focus ~ span {
    color: green;
}

.selectgroup-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.selectgroup-button {
    display: block;
    border: 1px solid #d8dde4;
    text-align: center;
    padding: 0.375rem 1rem;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    color: #9aa0ac;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.875rem;
    line-height: 1.5rem;
    min-width: 2.375rem;
}

.selectgroup-input:checked ~ .selectgroup-button {
    background-color: #EFEEFA;
    color: #557aad;
    border-color: #557aad;
}

.custom-nav-tabs,
.custom-nav-tabs .nav-link:hover,
.custom-nav-tabs .nav-link.active {
    border: 0;
}

.custom-radio-sec {
    position: relative;
}

.custom-radio-sec .selectgroup-input {
    opacity: 1;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.custom-radio-sec .input-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #23CF5F;
}

@media screen and (max-width: 800px) {
    .custom-radio-sec .input-icons {
        display: none;
    }
}

.custom-radio-sec .selectgroup-button {
    display: block;
    border: 1px solid #d8dde4;
    text-align: start;
    padding: 1rem 1rem;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    color: #9aa0ac;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.875rem;
    line-height: 1.5rem;
    min-width: 2.375rem;
    padding-left: 50px;
}

.custom-radio-sec .selectgroup-input:checked ~ .selectgroup-button {
    background-color: #fff;
    color: var(--text-color);
    border-color: var(--dark-color) !important;
}

.row.form-check {
    display: flex;
    padding-left: 0;
}

.row.form-check .form-check-input {
    float: none;
    margin-left: 0;
}

.custom-nav-tabs .nav-link {
    padding: 0;
}

.success-card {
    padding: 40px;
    border-radius: 16px;
    background: rgb(220 255 232);
}

.success-card .card-header {
    background-color: transparent;
}

.tab-content {
    padding: 40px 0px 0px 0px;
}

.information-card {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.20);
}

.information-card.error {
    background: rgba(255, 0, 0, 0.12);
}

.information-card.error i {
    color: var(--error-color);
}

.information-card .info-text {
    font-size: 16px;
    font-weight: 500;
}

.custom-accordion {
    background-color: transparent;
}

.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
}

.custom-accordion .accordion-item:not(:last-child) {
    border-bottom: 2px solid var(--border-color);
}

.custom-accordion .accordion-item .accordion-body .accordion-text {
    font-size: 18px;
    color: var(--text-sec-color);
}

.custom-accordion .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 22px;
    color: var(--primary-color);
}

.custom-accordion .accordion-button.collapsed {
    color: var(--text-color);
}

.custom-accordion .accordion-button img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.divider {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

.divider-sm {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

.custom-form-group {
    position: relative;
}

.custom-form-group .form-label {
    position: absolute;
    left: 20px;
    top: -8px;
    font-size: 12px;
    font-weight: 600;
    background-color: #fff;
}

.custom-form-group input,
.custom-form-group .form-select {
    background-color: transparent;
    padding: 0.75rem 2.25rem 0.75rem 1.25rem;
}

.custom-form-group.success .form-label {
    background-color: rgb(220 255 232);
}

.custom-form-switch {
    padding-left: 0;
}

.text-dark {
    color: var(--text-color) !important;
}

/*=============== HEADER AREA ===============*/
header.header-area {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0px 12px 24px -4px rgba(145, 158, 171, 0.12), 0px 0px 2px 0px rgba(145, 158, 171, 0.20);
    text-align: center;
}

/*=============== PROGRAMS AREA ===============*/
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 600px;
}

.progress-container::before {
    content: '';
    background-color: var(--border-color);
    position: absolute;
    top: 18px;
    left: 20px;
    transform: translateY(-50%);
    height: 4px;
    width: 80%;
    z-index: -1;
}

.progress {
    background-color: var(--border-color);
    position: absolute;
    top: 25px;
    left: 70px;
    transform: translateY(-50%);
    height: 1px;
    max-width: 80%;
    width: 80%;
    z-index: 0;
    transition: 400ms ease;
}

.text-wrap {
    display: inline-block;
    text-align: center;
    width: 150px;
}

.text-wrap p {
    font-weight: var(--font-semibold);
    font-size: var(--font-medium);
    color: var(--text-color-light);
    padding-top: 16px;
}

.text-wrap.active p {
    font-weight: 400;
    color: var(--text-color);
    transition: 400ms ease;
}

.circle {
    background-color: #fff;
    border: 1px solid var(--border-color);
    background-color: var(--border-color);
    color: var(--text-color);
    font-weight: 700;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: relative;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms ease;
}

.text-wrap.active div.circle {
    border-color: var(--primary-color);
    color: #fff;
    background-color: var(--primary-color);
}

.product-card img {
    width: 100%;
    height: 220px;
}

.product-card::before {
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.product-card .product-content-wrap {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.product-card .product-content-wrap .play-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 400ms ease;
    margin-bottom: 16px;
    opacity: 0;
    transition: 400ms ease;
}

.product-card:hover .product-content-wrap .play-btn {
    opacity: 1;
}

.product-card .product-content-wrap .product-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.product-card .product-content-wrap .btn {
    width: max-content;
}


/*=============== COMPLATED AREA ===============*/
.status-image {
    text-align: center;
    margin-bottom: 20px;
}

.status-image img {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.status-text {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.status-text.status-head-title {
    color: #23cf5f;
    font-size: 26px;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

/*=============== FOOTEr AREA ===============*/

.card-footer.completed-text-wrapper {
    border-radius: 10px;
    background: #fff;
    border: solid 8px #f6f6f6;
}

/* custom ui-datepicker styles */
.ui-datepicker .ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #473b52;
    padding: 0 0 5px;
    letter-spacing: 1px;
    border: 0;
    background-color: transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next, .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    text-indent: -99999px;
    color: #6c757d;
    top: 1px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    order: 3;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
    left: 5px;
    content: "\f104";
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
    right: 5px;
    content: "\f105";
}

.ui-datepicker .ui-datepicker-calendar {
    margin: 0;
    background-color: transparent;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.ui-datepicker .ui-datepicker-calendar th {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 6px 10px;
    color: #a3a7b7;
}

calendar td {
    border: 1px solid #eceef9;
    padding: 0;
    background-color: #eceef9;
    text-align: right;
}

.ui-datepicker .ui-datepicker-calendar td a {
    transition: all 0.2s ease-in-out;
    padding: 5px;
    color: #473b52;
    padding: 6px 10px;
    display: block;
    font-weight: 400;
    font-size: 12px;
    border: 0;
    border-radius: 1px;
}

.ui-datepicker .ui-datepicker-title {
    color: #6259ca;
}

.ui-datepicker .ui-datepicker-calendar {
    margin: 0;
    background-color: transparent;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.ui-datepicker .ui-datepicker-calendar td {
    border: 1px solid #eceef9;
    padding: 0;
    background-color: #eceef9;
    text-align: right;
}


.ui-datepicker .ui-datepicker-calendar td:last-child {
    border-right: 0;
}

.identity-wrapper .default-identity {
    font-size: 12px;
    padding: 0;
}

.eq-height-custom-card {
    height: calc(100% - 1rem);
}

.color-box-available-calendar {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.bg-white-available-calendar {
    border: 1px solid #eceef9;
    background-color: #eceef9;
}

.bg-red-available-calendar {
    background-color: red;
}

.bg-green-available-calendar {
    background-color: green;
}

.ui-datepicker select.ui-datepicker-year,
.ui-datepicker select.ui-datepicker-month {
    width: auto;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
}

.ui-datepicker select.ui-datepicker-year {
    max-height: 200px;
    overflow-y: auto;
}

.ui-datepicker select.ui-datepicker-year {
    max-height: 200px;
    overflow-y: auto;
}

.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 #003eff;
    background: limegreen;
    font-weight: normal;
    color: #ffffff;
}

/*step1 - programlist*/

section .programlist-wrapper .programlist-item .package-title {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

section .programlist-wrapper .programlist-item .package-price {
    font-weight: 700;
    color: #198754;
    font-size: 20px;
}

/*step3 - payment*/

section .payment-header {
    padding-bottom: 1rem !important;
}

section .payment-header .card-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

section .payment-details-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    background-color: #f6f6f6;
}

section .payment-details-wrapper .payment-infos-wrapper .payment-program-title {
    padding: 0 5px 0 0;
    font-size: 18px;
    color: #000;
}

section .payment-details-wrapper .payment-infos-wrapper .payment-package-name {
    font-weight: 500;
}

section .payment-details-wrapper .payment-price-wrapper .big-price span {
    color: #20ab50;
    font-size: 34px;
}

section .progress-container .text-wrap.active .text {
    font-weight: 600 !important;
    color: #20ab50;
}

section .payment-card-body .custom-nav-tabs button:hover {
    border: 1px solid transparent !important;
}

@media screen and (max-width: 360px) {
    header.header-area {
        z-index: 888;
        position: relative;
    }

    section.section {
        z-index: 999;
        position: relative;
    }

    section.section .section-title-wrap {
        margin-bottom: 60px;
    }

    footer.footer {
        z-index: 777;
        position: relative !important;
    }
}

@media only screen and (min-height: 740px) and (orientation: portrait) {
    header.header-area {
        z-index: 888;
        position: relative;
    }

    section.section {
        z-index: 999;
        position: relative;
    }

    section.section .section-title-wrap {
        margin-bottom: 60px;
    }

    footer.footer {
        z-index: 777;
        position: relative !important;
    }
}

@media screen and (max-width: 767.98px) {

    body {
        margin: 0;
    }

    header.header-area {
        z-index: 888;
        position: relative;
    }

    section.section {
        margin: 0 !important;
        z-index: 999;
        position: relative;
    }

    section.section .section-title-wrap {
        margin-bottom: 60px;
    }

    footer.footer {
        z-index: 777;
        position: relative !important;
    }

    footer.footer .container span.small-text {
        font-size: 12px;
        white-space: normal;
        max-width: 100%;
    }

    footer.footer .container a.small-text {
        font-weight: 600;
        font-size: 12px;
    }

    section .progress-container {
        max-width: 100%;
        width: 100%;
    }

    section .progress-container .progress {
        left: 0;
        right: 0;
        top: 20px;
        max-width: 100%;
        width: 100%;
    }

    section .progress-container .text-wrap {
        width: 75px;
    }

    section .progress-container .text-wrap .circle {
        height: 40px;
        width: 40px;
        left: 15px;
    }

    section .progress-container .text-wrap .text {
        font-weight: 500;
        font-size: 10px;
    }

    section .card-group.home-cards .card {
        margin: 0 0 40px 0;
        background: #fff;
    }

    /*step1 - programlist*/
    section .programlist-wrapper .payment-infos-wrapper .package-title {
        font-weight: 600;
        font-size: 18px;
        margin: 0;
    }

    section .programlist-wrapper .payment-infos-wrapper .package-price {
        font-weight: 600;
        font-size: 16px;
    }

    /*step2 - form infos*/
    section .availability-title {
        text-align: center;
    }

    section .datapicker-col {
        text-align: center;
    }

    body > .ui-datepicker {
        width: fit-content !important;
    }

    /*step3 - payment*/
    section .payment-details-wrapper .payment-infos-wrapper {
        flex-direction: column;
    }

    section .payment-details-wrapper .payment-infos-wrapper .payment-program-title {
        padding: 0 5px 0 0;
        font-size: 16px;
        color: #000;
    }

    section .payment-details-wrapper .payment-infos-wrapper .payment-package-name {
        font-weight: 500;
        font-size: 14px;
    }

    section .payment-details-wrapper .payment-price-wrapper .big-price span {
        color: #20ab50;
        font-size: 24px;
    }

    section .payment-card-body .tab-content .payment-header {
        margin: 0;
    }

    section .payment-card-body .tab-content .payment-tab-card {
        padding: 0;
    }

    section .payment-card-body .tab-content .payment-tab-card .success-card {
        padding: 5px;
    }

    section .payment-card-body .tab-content .payment-tab-card .success-card .accordion-body .accordion-text {
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 10px 0;
        display: inline-block;
    }

    section .payment-card-body .tab-content .payment-tab-card .success-card .accordion-body .accordion-text > span {
        font-size: 13px;
        margin: 0 0 10px 0;
        font-weight: 500;
        display: inline-block;
    }

    section .payment-card-body .payment-options label {
        margin: 0 0 10px 0;
    }

    section .payment-card-body .tab-content .iframe-card-body {
        padding: 0;
    }
}

/*iPad Air > portrait*/
@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .container, .container-sm {
        max-width: 90%;
    }

    section .payment-card-body .payment-options label {
        margin: 0 0 10px 0;
    }

    footer.footer .container span.small-text {
        font-size: 12px;
        white-space: normal;
        max-width: 100%;
    }

}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #343a40;
    padding: 60px 0 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #e9ecef;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-heading {
    font-weight: 600;
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    width: 50px;
    height: 3px;
    background-color: #B0C036;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #007bff;
}

.small-text {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
}

.bank-logo {
    max-width: 320px;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
    margin-top: 20px;
}

.bank-logo:hover {
    opacity: 1;
}

.powered-by-logo {
    max-width: 140px;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
    margin-top: 10px;
}

.powered-by-logo:hover {
    opacity: 1;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: #6c757d;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer hr {
    border-top: 1px solid #e9ecef;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 40px 20px;
    }

    .footer-logo,
    .bank-logo,
    .powered-by-logo {
        margin: 0 auto 20px;
    }

    .powered-by-logo {
        margin-top: 10px;
        max-width: 100px
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .footer-heading,
    .footer-social {
        margin-top: .5rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Course Pages */

.public-course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
}

.public-course-header-left,
.public-course-header-right {
    flex: 0 0 auto;
}

.public-course-header-center {
    flex: 1;
    text-align: center;
}

.public-course-logo {
    width: 140px;
    max-width: 100%;
}

.public-course-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-left: 15px;
}

.public-course-nav {
    display: inline-block;
    margin-right: 20px;
}

.public-course-nav-link {
    text-decoration: none;
    color: #6259ca;
    font-weight: bold;
    margin-right: 15px;
    transition: color 0.3s;
}

.public-course-nav-link:hover,
.public-course-nav-link.active {
    color: #4e44a5;
}

.public-course-index-page {
    width: 100%;
    text-align: center;
}

.public-course-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 0;
}

.public-course-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.public-course-grid.few-courses .public-course-card {
    flex: 1 1 320px;
    max-width: 320px;
}

.public-course-grid.many-courses .public-course-card {
    flex: 1 1 280px;
    max-width: 280px;
}

.public-course-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.public-course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.public-course-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.public-course-card-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.public-course-card-content {
    padding: 15px;
}

.public-course-card-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.public-course-card-shortdesc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.public-course-card-teachers {
    font-size: 0.9rem;
    color: #999;
}

.public-course-detail-page {
    width: 100%;
}

.public-course-detail-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

.public-course-sidebar {
    width: 320px;
    background: #fff;
    border-right: 1px solid #ddd;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.public-course-sidebar-header {
    text-align: center;
    margin-bottom: 25px;
}

.public-course-sidebar-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.public-course-sidebar-title {
    font-size: 1.6rem;
    color: #333;
    margin: 0;
}

.public-course-sidebar-nav {
    margin-top: 20px;
}

.public-course-sections-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.public-course-section-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.public-course-section-header {
    background: linear-gradient(90deg, #6259ca, #6259ca);
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, color 0.3s;
    padding-left: 40px;
}

.public-course-section-header.active {
    background: linear-gradient(90deg, #563eaa, #563eaa);
}

.public-course-section-header .section-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.public-course-section-header.active .section-icon {
    transform: translateY(-50%) rotate(-180deg);
}

.public-course-section-header:hover {
    background: linear-gradient(90deg, #4d38a0, #4d38a0);
}

.public-course-section-toggle {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.public-course-lessons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    background: #f8f8f8;
    border-left: 3px solid #6259ca;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-height: none;
}

.public-course-lesson-item {
    border-bottom: 1px solid #e0e0e0;
}

.public-course-lesson-item a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #6259ca;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

.public-course-lesson-item a:hover,
.public-course-lesson-item a.active {
    background: #e0eef9;
    color: #4c3a8a;
}

.public-course-no-sections {
    font-style: italic;
    color: #aaa;
    padding: 10px 15px;
}

.public-course-video-section {
    flex: 1;
    padding: 25px;
}

.public-course-video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 45%;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.public-course-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.public-course-video-controls {
    text-align: center;
    margin-bottom: 20px;
}

.public-course-continue-btn {
    background: #6259ca;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.public-course-continue-btn:hover {
    background: #4d3e9d;
}

.public-course-lesson-details-panel {
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lesson-info-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.lesson-info-icon {
    display: inline-flex;
    margin-right: 10px;
}

.lesson-info-icon svg {
    width: 24px;
    height: 24px;
}

.lesson-shortdesc {
    margin: 0;
    font-size: 1rem;
    color: #444;
}

.public-course-continue-btn {
    margin-left: 20px;
}

.public-course-video-controls {
    text-align: center;
    margin-bottom: 20px;
}

.public-course-continue-btn {
    background: #6259ca;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.public-course-continue-btn:hover {
    background: #4d3e9d;
}

.public-course-lesson-details-panel {
    background: #fff;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lesson-info-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.lesson-info-icon {
    display: inline-flex;
    margin-right: 10px;
}

.lesson-info-icon svg {
    width: 24px;
    height: 24px;
}

.lesson-shortdesc {
    margin: 0;
    font-size: 1rem;
    color: #444;
}

.public-course-continue-btn {
    margin-left: 20px;
}

/* Online Payment Page Start */
#paymentPage .payment-tab-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#paymentPage .payment-tab-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#paymentPage .form-control {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

#paymentPage .form-control:focus {
    background-color: #ffffff;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    outline: none;
}

#paymentPage label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 0.5rem;
}

#paymentPage .btn-private {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
}

#paymentPage .btn-private:hover {
    background: linear-gradient(45deg, #0056b3, #003f7f);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#paymentPage .booking-credit-card {
    width: 320px;
    height: 200px;
    position: relative;
    perspective: 1000px;
}

#paymentPage .booking-credit-card:hover {
    transform: scale(1.05);
}

#paymentPage .credit-card-img-wrapper {
    position: relative;
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out;
}

#paymentPage .credit-card-img-wrapper.rotated {
    transform: scaleX(-1);
    transition: transform 0.3s ease-in-out;
}

#paymentPage .credit-card-img-wrapper .credit-card-back-filter {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #4032df;
    border-radius: 20px;
    opacity: 0;
}

#paymentPage .credit-card-img-wrapper .credit-card-back-filter.active {
    opacity: 1;
}

#paymentPage .credit-card-img-wrapper .credit-card-back-filter:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    background-color: #000;
    width: 100%;
    height: 50px;
}

#paymentPage .credit-card-img-wrapper .credit-card-back-filter:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 80px;
    background-color: #fff;
    width: 80%;
    height: 40px;
    transform: translateX(-50%);
}

#paymentPage .credit-card-img-wrapper .card-numbers {
    opacity: 0;
}

#paymentPage .credit-card-img-wrapper .card-numbers.active {
    opacity: 1;
}

#paymentPage .credit-card-img-wrapper .card-numbers.back {
    display: none;
}

#paymentPage .credit-card-img-wrapper .card-numbers.back.active {
    display: block;
}

#paymentPage .credit-card-img-wrapper .card-numbers .card-cvc-number {
    position: absolute;
    left: 40px;
    padding: 0 10px;
    bottom: 90px;
    background: transparent;
    color: #000;
    font-size: 16px;
    word-spacing: 2px;
    transform: scaleX(-1);
}

#paymentPage .booking-credit-card .position-relative {
    width: 100%;
    height: 100%;
}

#paymentPage .booking-credit-card .card-base-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

#paymentPage .card-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 10px;
    backface-visibility: hidden;
    padding: 20px;
    box-sizing: border-box;
}

#paymentPage .card-numbers.front {
    z-index: 2;
    transform: rotateY(0deg);
}

#paymentPage .booking-credit-card.rotated .credit-card-img-wrapper {
    transform: rotateY(180deg);
}

#paymentPage .credit-card-back-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

#paymentPage .card-numbers .card-type {
    position: absolute;
    top: 10px;
    right: 15px;
}

#paymentPage .card-numbers .card-type img {
    width: 50px;
    height: auto;
    margin-left: 5px;
}

#paymentPage .card-number {
    display: block;
    font-size: 1.2rem;
    margin-top: 55px;
    letter-spacing: 2px;
    background: #4031DF;
}

#paymentPage .card-holder-name {
    display: block;
    margin-top: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#paymentPage .card-expiry-date {
    position: absolute;
    bottom: 24px;
    right: 28px;
    font-size: 0.9rem;
}

#paymentPage .card-expiry-date span {
    letter-spacing: 1px;
}

#paymentPage .card-cvc-number {
    font-size: 1.2rem;
    text-align: right;
}

#paymentPage .form-select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease-in-out;
}

#paymentPage .form-select:focus {
    background-color: #ffffff;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    outline: none;
}

@media (max-width: 768px) {
    #paymentPage .payment-tab-card {
        padding: 1.5rem;
    }

    #paymentPage .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    #paymentPage .booking-credit-card {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .custom-nav-tabs .nav-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .custom-nav-tabs .nav-link {
        text-align: center;
    }

    #paymentPage .card-number {
        margin-top: 50px;
    }
    #paymentPage .booking-credit-card{
        margin-top: 20px;
    }
    
    .row {
        display: flex;
        flex-direction: column;
    }

    #paymentPage .booking-credit-card:hover {
        transform: none;
    }
    
    #paymentPage .credit-card-img-wrapper .card-numbers .card-cvc-number {
        bottom: 70px;
    }
}
/* Online Payment Page End */
.resource-item {
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid #eaeef5;
}

.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 85, 225, 0.08);
}

.text-line-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.selected-lesson {
    color: #FF5722;
    font-weight: bold;
    border-radius: 4px;
}

.course-list__item a {
    transition: background-color 0.3s, color 0.3s;
}