

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}
:-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}
body{
    font-family: 'Open Sans', sans-serif;
    padding-right: 0 !important;
    color: #29303b;
    font-size: 15px;
}
body.white-bg{
    background: #fff;
}
body.gray-bg{
    background: #f7f8fa;
}
body.modal-open {
    overflow: auto;
}
p{
    margin: 0 0 10.5px;
}
a,
button,
input[type="button"]{
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-webkit-transition: all 0.3s;
}
a{
    color: #007791;
}
a:hover{
    text-decoration: none;
    color: #003845;
}

*[data-toggle="modal"],
button{
    cursor: pointer;
}

a:focus,
.btn:focus,
.form-control:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{
    outline: none;
    box-shadow: 0 0 0 0 !important;
}
fieldset,
label {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    color: #b2b4b9;
}
.tooltip{
    pointer-events: none;
}
.btn {
    color: #fff;
    background-color: #ec5252;
    border-color: #ec5252;
    padding: 11px 12px;
    font-size: 15px;
    border-radius: 2px;
    line-height: 1.35135;
    font-weight: 600;
}
.btn:hover,
.btn:focus {
    background-color: #992337;
    border-color: #992337;
    color: #fff;
}
textarea:focus,
.form-control:focus,
input:focus {
    border-color: #76c5d6;
}
select + .select2-container{
    width: 100%!important;
}



.rating i{
    color: #dedfe0;
}
.rating i.filled{
    color: #f4c150;
}
.rating i.half-filled{
    position: relative;
}
.rating i.half-filled:after{
    position: absolute;
    content: "\f089";
    top: 0;
    left: 0;
    font-size: inherit;
    color: #f4c150;
    z-index: 1;
}



/*lesson css*/
.lesson_duration{
        background-color: #7c96ab;
    border-radius: 5px;
    padding: 3px 5px;
    color: #fff;
}





/*
    bootstrap overwrite css
*/
.container-xl,
.container-lg{
    width:100%;
    padding-right:20px;
    padding-left:20px;
    margin-right:auto;
    margin-left:auto
}





/*
    menu
*/



.corner-triangle.top-left:after{
    top: -12px;
    left: 14px;
}
.corner-triangle.top-left:before{
    top: -14px;
    left: 14px;
}
.corner-triangle.top-right:after{
    top: -12px;
    right: 14px;
}
.corner-triangle.top-right:before{
    top: -14px;
    right: 14px;
}
.corner-triangle:after{
    border-color: transparent transparent #fff;
}
.corner-triangle:before{
    border-color: transparent transparent #e8e9eb;
}
.corner-triangle:before,
.corner-triangle:after{
    border-style: solid;
    border-width: 0 10px 13px;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
}




.menu-area{
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    position: relative;
    z-index: 99;
}
.menu-area .navbar{
    padding: 0;
}
.signin-box-move-mobile-helper,
.signin-box-move-desktop-helper{
    display: none;
}
/*

    menu code was here

*/




/* Professional Search Box Design
 * Using a yellow & jaune abricot color palette
 * Enhanced for modern interfaces
 */

.search-box {
    margin-right: 60px;
    padding: 12px 0;
    position: relative;
    box-shadow: 0 3px 8px rgba(248, 186, 55, 0.12);
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 5px 15px rgba(248, 186, 55, 0.18);
}

.search-box input {
    background-color: #fffdf7;
    border: 2px solid #ffd34e;
    height: 52px;
    padding: 0 20px;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #444;
    width: 280px;
    transition: all 0.25s ease-in-out;
}

.search-box input::placeholder {
    color: #bbb;
    font-weight: 400;
}

.search-box input:focus {
    background-color: #fff;
    border-color: #ffbc1f;
    box-shadow: inset 0 1px 3px rgba(248, 186, 55, 0.1);
    outline: none;
    width: 320px;
}

.search-box input:focus + .input-group-append button {
    background: linear-gradient(135deg, #ffbc1f 0%, #ffa41b 100%);
    border-color: #ffbc1f;
    color: #fff;
}

.search-box .input-group-append {
    display: inline-block;
}

.search-box button {
    border: 2px solid #ffd34e;
    border-left: none;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    padding: 14px 22px;
    height: 52px;
    background: #ffd34e;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.4s ease;
}

.search-box button:hover,
.search-box button:focus {
    background: linear-gradient(135deg, #ffb302 0%, #ff8c00 100%) !important;
    border-color: #ffb302;
    color: #fff;
    transform: translateY(-1px);
}

.search-box button:hover:before {
    left: 100%;
}

.search-box button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(248, 186, 55, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .search-box {
        margin-right: 20px;
    }
    
    .search-box input {
        width: 220px;
    }
    
    .search-box input:focus {
        width: 240px;
    }
}

/* Animation effects */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 211, 78, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 211, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 211, 78, 0); }
}

.search-box.active input {
    animation: pulse 1.5s infinite;
}








.menu-icon-box .empty-box{
    padding: 20px;
}
.menu-icon-box .empty-box p{
    margin-bottom: 0px;
}
.menu-icon-box .empty-box a{
    display: inline-block;
    font-weight: 600;
    margin-top: 15px;
}


.menu-icon-box{
    position: relative;
    margin: 0 5px;
}
.menu-icon-box .icon{
    position: relative;
}
.menu-icon-box .icon .number{
    position: absolute;
    top: 14px;
    right: 2px;
    background-color: yellow;
    border-radius: 15px;
    color: #fff;
    font-size: 10px;
    line-height: 1.43;
    min-width: 19px;
    padding: 2px 6px;
    text-align: center;
    pointer-events: none;
}
.menu-icon-box .icon a{
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    border-radius: 50%;
    color: #686f7a;
    border: 1px solid transparent;
    margin: 10px 0;
    font-size: 18px;
}
.menu-icon-box .icon a:hover{
    background: rgba(20,23,28,.05);
    border-color: rgba(20,23,28,.05);
}
.menu-icon-box:hover > .dropdown{
    opacity: 1;
    visibility: visible;
}
.menu-icon-box .dropdown{
    position: absolute;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    border-top: 1px solid #e8e9eb;
    box-shadow: 0 4px 16px rgba(20,23,28,.25);
    color: #505763;
    font-size: 13px;
    left: inherit;
    list-style: none;
    margin: 0;
    right: -1px;
    text-align: left;
    top: 100%;
    width: 330px;
}



.course-list-dropdown .item-list{
    max-height: 230px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.course-list-dropdown .item-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.course-list-dropdown .item-list ul li {
    padding: 23px 23px 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-webkit-transition: all 0.3s;
}
.course-list-dropdown .item-list ul li:hover {
    background: #f2f3f5;
}
.course-list-dropdown .item-list ul a {
    display: block;
}
.course-list-dropdown .item-list .item .item-image {
    width: 60px;
    float: left;
}
.course-list-dropdown .item-list .item .item-details {
    padding-left: 70px;
}
.course-list-dropdown .item-list .item .item-details .course-name {
    color: #505763;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -ms-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
}
.course-list-dropdown .item-list .item .item-details .instructor-name {
    color: #686f7a;
    font-size: 13px;
}
.course-list-dropdown .item-list .item .item-details .current-price {
    color: #ec5252;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}
.course-list-dropdown .item-list .item .item-details .original-price {
    text-decoration: line-through;
    color: #686f7a;
}
.course-list-dropdown .item-list .item .item-details .instructor-name {
    color: #686f7a;
    font-size: 13px;
}
.course-list-dropdown .item-list .item .item-details .current-price {
    color: #ec5252;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}
.course-list-dropdown .item-list .item .item-details .original-price {
    text-decoration: line-through;
    color: #686f7a;
}
.course-list-dropdown .item-list .item .item-details button {
    padding: 2px 8px;
    font-size: 13px;
    line-height: 1.35135;
    border-radius: 2px;
    width: 100%;
    color: #007791;
    background-color: #fff;
    border: 1px solid #007791;
}
.course-list-dropdown .item-list .item .item-details button:hover,
.course-list-dropdown .item-list .item .item-details button:focus {
    background: #e6f2f5;
}
.course-list-dropdown .dropdown-footer {
    background: #f2f3f5;
    padding: 5px 20px 25px;
}
.course-list-dropdown .dropdown-footer a {
    width: 100%;
    border: 0;
    color: #fff;
    background-color: #007791;
    padding: 11px 12px;
    font-size: 15px;
    line-height: 1.43;
    border-radius: 2px;
    font-weight: 600;
    margin-top: 20px;
    display: block;
    text-align: center;
}
.course-list-dropdown .dropdown-footer a:hover,
.course-list-dropdown .dropdown-footer a:focus {
    background: #003440;
}
.course-list-dropdown .dropdown-footer .cart-total-price {
    color: #686f7a;
    font-size: 15px;
    margin-top: 8px;
}
.course-list-dropdown .dropdown-footer .cart-total-price .current-price {
    color: #ec5252;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}
.course-list-dropdown .dropdown-footer .cart-total-price .original-price {
    text-decoration: line-through;
    color: #686f7a;
    font-size: 14px;
}





.notifications-list-dropdown .notifications-head {
    padding: 12px;
    font-size: 15px;
    border-bottom: 1px solid hsla(210,3%,87%,.45);
    color: #29303b;
}
.notifications-list-dropdown .notifications-footer {
    background: #f7f8fa;
    height: 58px;
    box-shadow: 0 -3px 5px rgba(0,0,0,.05);
}
.notifications-list-dropdown .notifications-footer a,
.notifications-list-dropdown .notifications-footer button {
    color: #007791;
    font-size: 13px;
    font-weight: 600;
    padding: 20px 15px;
}
.notifications-list-dropdown .notifications-footer button {
    border: 0;
    background: transparent;
}
.notifications-list-dropdown .notifications-footer a:hover,
.notifications-list-dropdown .notifications-footer button:hover,
.notifications-list-dropdown .notifications-footer a:focus,
.notifications-list-dropdown .notifications-footer button:focus {
    color: #004d5e;
    background: #f2f3f5;
}
.notifications-list-dropdown .notifications-footer a i {
    margin-left: 5px;
    margin-right: 5px;
    transition: inherit;
    -webkit-transition: inherit;
    -ms-webkit-transition: inherit;
}
.notifications-list-dropdown .notifications-footer a:hover i {
    transform: translateX(5px);
}
.notification-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.notification-list ul li {
    padding: 10px 15px;
    border-bottom: 1px solid hsla(210,3%,87%,.45);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-webkit-transition: all 0.3s;
}
.notification-list ul li:hover {
    background: #f7f8fa;
}
.notification-list ul li a {
    display: block;
}
.notification-list .notification .notification-image {
    float: left;
    height: 64px;
    width: 64px;
}
.notification-list .notification .notification-details {
    padding-left: 74px;
}
.notification-list .notification .notification-details .notification-text {
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    width: 210px;
    height: 40px;
    color: #505763;
    margin-bottom: 0;
    line-height: 1.5;
}
.notification-list .notification .notification-details .notification-time {
    color: #686f7a;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 0;
}
.notification-list .notification .notification-image img {
    border-radius: 50%;
}
.notification-list .notification{
    position: relative;
}
.notifications-list-dropdown .notification-list {
    max-height: 415px;
    overflow-y: auto;
}
.notification-list .notification .mark-as-read {
    position: absolute;
    height: 10px;
    width: 10px;
    border: 1px solid #007791;
    border-radius: 50%;
    top: 2px;
    right: -3px;
    background: #007791;
}
.notification-list .notification .mark-as-read.marked {
    border-color: rgba(41,48,59,.25);
    background-color: transparent;
}






.user-box.menu-icon-box .icon a img {
    border-radius: 50%;
    height: 45px;
    width: 45px;
    margin-top: -5px;
}
.user-dropdown-menu {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    list-style: none;
}
.user-dropdown-menu li a {
    display: block;
    color: #29303b;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 22px;
}
.user-dropdown-menu li a:hover {
    color: #007791;
    background: #f2f3f5;
}
.user-dropdown-menu li a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin: 0 19px 0 10px;
    color: #a1a7b3;
}
.dropdown-user-info .user-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #f2f3f5;
}
.dropdown-user-info .user-details {
    padding-left: 50px;
}
.dropdown-user-info .user-details .user-name {
    color: #29303b;
}
.dropdown-user-info .user-details .user-email {
    color: #686f7a;
    font-size: 13px;
}
.dropdown-user-info .user-details .user-name .hi,
.dropdown-user-info .user-details .user-email .welcome{
    display:none;
}
.user-dropdown-menu .dropdown-user-logout {
    padding: 10px 0;
    background: #f7f8fa;
}


















/* Professional Sign-in Box & Modal Design
 * Enhanced for modern interfaces with refined aesthetics
 */

/* Sign-in Box Main Buttons */
.sign-in-box > .btn {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 4px;
    line-height: 1.4;
    font-weight: 600;
    margin-left: 10px !important;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Sign-in Button Styling */
.sign-in-box .btn-sign-in {
    color: #505763;
    background-color: #fff;
    border: 1.5px solid #e0e3e8;
}

.sign-in-box .btn-sign-in:hover,
.sign-in-box .btn-sign-in:focus {
    background-color: #f8f9fa;
    color: #2d3b45;
    border-color: #d0d4d9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Sign-up Button Styling */
.sign-in-box .btn-sign-up {
    color: #fff;
    background: linear-gradient(135deg, #4a89dc 0%, #3a6fc5 100%);
    border: 1px solid #3a6fc5;
    position: relative;
}

.sign-in-box .btn-sign-up:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.5s ease;
}

.sign-in-box .btn-sign-up:hover,
.sign-in-box .btn-sign-up:focus {
    background: linear-gradient(135deg, #3a6fc5 0%, #2c5aa7 100%);
    border-color: #2c5aa7;
    box-shadow: 0 3px 8px rgba(58, 111, 197, 0.3);
    transform: translateY(-1px);
}

.sign-in-box .btn-sign-up:hover:before {
    left: 100%;
}

.sign-in-box .btn-sign-up:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(58, 111, 197, 0.2);
}

/* Modal Dialog */
.sign-in-box .modal-dialog {
    max-width: 420px;
    margin-top: 6vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.sign-in-modal .modal-content {
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

/* Modal Header */
.sign-in-modal .modal-title {
    color: #2d3b45;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.sign-in-modal .close {
    font-size: 1.8rem;
    padding: 0.75rem 1.25rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.sign-in-modal .close:hover {
    opacity: 1;
}

.sign-in-modal .modal-header {
    border-bottom: 1px solid rgba(41, 48, 59, 0.08);
    background-color: #f8f9fa;
    padding: 18px 24px;
}

/* Modal Body */
.sign-in-modal .modal-body {
    padding: 24px 30px;
    background: linear-gradient(to bottom, #fff, #fafbfc);
}

/* Social Sign-in Buttons */
.sign-in-modal .social-btn {
    box-shadow: 0 2px 4px 0 rgba(41, 48, 59, 0.12), 0 0 2px 0 rgba(41, 48, 59, 0.08);
    border-radius: 4px;
    margin-bottom: 14px;
    padding: 0 24px 0 0;
    font-size: 15px;
    font-weight: 600;
    background-color: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

.sign-in-modal .social-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.sign-in-modal .social-btn a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #505763;
}

.sign-in-modal .social-btn.facebook {
    border-color: #3b5998;
}

.sign-in-modal .social-btn.facebook .icon {
    background-color: #3b5998;
    color: #fff;
}

.sign-in-modal .social-btn.google {
    border-color: #f5f5f5;
}

.sign-in-modal .social-btn.google .icon {
    background-color: #fff;
    color: #dd4b39;
    border-right: 1px solid #f5f5f5;
}

.sign-in-modal .social-btn.linkedin {
    border-color: #0077b5;
}

.sign-in-modal .social-btn.linkedin .icon {
    background-color: #0077b5;
    color: #fff;
}

.sign-in-modal .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 16px;
    height: 48px;
    width: 48px;
    text-align: center;
}

/* Form Elements Within Modal */
.sign-in-modal .form-group {
    margin-bottom: 20px;
}

.sign-in-modal .form-control {
    height: 48px;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1.5px solid #e0e3e8;
    transition: all 0.2s ease;
    font-size: 14px;
}

.sign-in-modal .form-control:focus {
    border-color: #4a89dc;
    box-shadow: 0 0 0 2px rgba(74, 137, 220, 0.15);
}

/* Separator Between Social and Email */
.sign-in-modal .separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.sign-in-modal .separator::before,
.sign-in-modal .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e3e8;
}

.sign-in-modal .separator span {
    padding: 0 16px;
    color: #68727d;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .sign-in-box .modal-dialog {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .sign-in-modal .modal-body,
    .sign-in-modal .modal-header {
        padding: 20px;
    }
    
    .sign-in-box > .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.sign-in-modal .icon.google-icon{
    background: url(../img/icons/google_icon.svg) no-repeat 50%;
    background-size: 24px;
    color: #fff;
    color: rgba(0, 0, 0, 0);
}

/* Professional Sign-in Modal Design
 * Using yellow and jaune abricot (apricot yellow) color palette
 * Enhanced for modern interfaces with refined aesthetics
 */

/* Social Button Styling */
.sign-in-modal .social-btn.fb-sign-up {
    background: linear-gradient(135deg, #3b5998 0%, #1a538a 100%);
    border: none;
    box-shadow: 0 2px 6px rgba(26, 83, 138, 0.3);
    transition: all 0.25s ease;
}

.sign-in-modal .social-btn.fb-sign-up:hover {
    box-shadow: 0 4px 8px rgba(26, 83, 138, 0.4);
    transform: translateY(-1px);
}

.sign-in-modal .social-btn.fb-sign-up a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sign-in-modal .social-btn.google-sign-up {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sign-in-modal .social-btn.google-sign-up:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    background-color: #f9f9f9;
}

.sign-in-modal .social-btn.google-sign-up a {
    color: #555;
    font-weight: 600;
}

/* Separator Styling */
.sign-in-modal .sign-in-separator {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
    padding-top: 3px;
    position: relative;
    color: #777;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sign-in-modal .sign-in-separator:after,
.sign-in-modal .sign-in-separator:before {
    position: absolute;
    height: 1px;
    background-color: #eaeaea;
    content: "";
    top: 10px;
    width: calc(50% - 25px);
}

.sign-in-modal .sign-in-separator:before {
    left: 0;
}

.sign-in-modal .sign-in-separator:after {
    right: 0;
}

/* Input Groups */
.sign-in-modal .input-group {
    margin-bottom: 16px;
    position: relative;
}

.sign-in-modal .input-group .input-field-icon {
    position: absolute;
    top: 16px;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    z-index: 10;
    left: 14px;
    color: #ffc107;
    font-size: 18px;
    transition: all 0.2s ease;
}

.sign-in-modal .input-group .form-control:focus + .input-field-icon {
    color: #ffab00;
}

.sign-in-modal .input-group .form-control {
    border-radius: 6px;
    color: #333;
    font-size: 16px;
    height: auto;
    padding: 14px 16px 14px 44px;
    background-color: #fff;
    border: 1.5px solid #e8e8e8;
    transition: all 0.25s ease;
}

.sign-in-modal .input-group .form-control:focus {
    border-color: #ffab00;
    box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.12);
    outline: none;
}

/* Checkbox Styling */
.sign-in-modal .deal-checkbox {
    margin-bottom: 16px;
    font-size: 14px;
    cursor: pointer;
    color: #555;
}

.sign-in-modal .custom-checkbox .custom-control-label::before {
    border-radius: 3px;
    border: 1.5px solid #e0e0e0;
    background-color: transparent;
    width: 18px;
    height: 18px;
}

.sign-in-modal .custom-control-input:hover ~ .custom-control-label::before,
.sign-in-modal .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.12);
    border-color: #ffab00;
}

.sign-in-modal .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #ffab00;
    border-color: #ffab00;
}

.sign-in-modal .custom-control-label::after {
    width: 18px;
    height: 18px;
}

/* Submit Button */
.sign-in-modal form button[type="submit"] {
    color: #fff;
    background: linear-gradient(135deg, #ffba00 0%, #ff9000 100%);
    border: none;
    font-size: 16px;
    font-weight: 600;
    height: 54px;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 186, 0, 0.25);
}

.sign-in-modal form button[type="submit"]:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.4s ease;
}

.sign-in-modal form button[type="submit"]:hover,
.sign-in-modal form button[type="submit"]:focus {
    background: linear-gradient(135deg, #ff9000 0%, #ff7d00 100%) !important;
    box-shadow: 0 6px 15px rgba(255, 144, 0, 0.35) !important;
    transform: translateY(-2px);
}

.sign-in-modal form button[type="submit"]:hover:before {
    left: 100%;
}

.sign-in-modal form button[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(255, 144, 0, 0.25);
}

/* Forgot Password Link */
.sign-in-modal .forgot-pass {
    text-align: center;
    font-size: 14px;
    margin: 16px 0;
}

.sign-in-modal .forgot-pass a {
    color: #ffab00;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sign-in-modal .forgot-pass a:hover {
    color: #ff9000;
    text-decoration: none;
}

/* Agreement Text */
.sign-in-modal .agreement-text {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    margin: 16px 0;
    color: #888;
}

.sign-in-modal .agreement-text a {
    color: #ffab00;
    font-weight: 600;
}

.sign-in-modal .agreement-text a:hover {
    color: #ff9000;
    text-decoration: none;
}

/* Account Creation Link */
.sign-in-modal .account-have {
    text-align: center;
    font-size: 15px;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid #eaeaea;
    color: #555;
}

.sign-in-modal .account-have a {
    font-weight: 700;
    color: #ffab00;
    transition: color 0.2s ease;
}

.sign-in-modal .account-have a:hover {
    color: #ff9000;
    text-decoration: none;
}

/* Forgot Password Email Field */
.sign-in-modal .forgot-email.form-control {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1.5px solid #e8e8e8;
}

.sign-in-modal .forgot-email.form-control:focus {
    border-color: #ffab00;
    box-shadow: 0 0 0 3px rgba(255, 171, 0, 0.12);
}

/* Forgot Password Button Group */
.sign-in-modal .forgot-pass-btn {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.sign-in-modal .forgot-pass-btn .btn {
    width: auto;
    height: auto;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.sign-in-modal .forgot-pass-btn .btn-primary {
    background: linear-gradient(135deg, #ffba00 0%, #ff9000 100%);
    border: none;
    box-shadow: 0 3px 8px rgba(255, 171, 0, 0.2);
}

.sign-in-modal .forgot-pass-btn .btn-primary:hover {
    background: linear-gradient(135deg, #ff9000 0%, #ff7d00 100%);
    box-shadow: 0 4px 10px rgba(255, 144, 0, 0.3);
    transform: translateY(-1px);
}

.sign-in-modal .forgot-pass-btn .btn-secondary {
    background-color: #f2f2f2;
    color: #666;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.sign-in-modal .forgot-pass-btn .btn-secondary:hover {
    background-color: #e6e6e6;
    color: #444;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.sign-in-modal .forgot-pass-btn span {
    margin: 0 8px;
    color: #999;
}

/* reCAPTCHA Container */
.sign-in-modal .forgot-recaptcha {
    margin: 30px 0 20px;
    display: flex;
    justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .sign-in-modal .input-group .form-control {
        font-size: 15px;
        padding: 12px 14px 12px 40px;
    }
    
    .sign-in-modal form button[type="submit"] {
        height: 50px;
    }
    
    .sign-in-modal .forgot-pass-btn .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}










/* Course Preview Modal - Professional Yellow & Apricot Theme */

/* Modal base styling */
.course-preview-modal {
    background-color: #fff8e6; /* Light cream background */
    color: #333;
    border: 1px solid #f9c846; /* Golden yellow border */
    box-shadow: 0 4px 12px rgba(249, 200, 70, 0.2);
}

/* Modal header */
.course-preview-modal .modal-header {
    border-color: #ffb347; /* Apricot border */
    background-color: #ffcc33; /* Bright yellow */
    padding: 15px 20px;
}

/* Modal title styling */
.course-preview-modal .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #4a3800; /* Dark brown - professional contrast */
}

.course-preview-modal .modal-title span {
    color: #f08700; /* Darker apricot */
    margin-right: 8px;
}

/* Close button styling */
.course-preview-modal .close {
    color: #4a3800; /* Dark brown */
    text-shadow: 0 0 0 #fff;
    opacity: 0.85;
    font-size: 28px;
    transition: all 0.2s ease;
}

.course-preview-modal .close:hover {
    opacity: 1;
    color: #e67300; /* Darker shade on hover */
}

/* Modal body styling */
.course-preview-modal .modal-body {
    padding: 20px;
    background-color: #ffffff; /* White for content area */
}

/* Video list title */
.course-preview-modal .course-preview-video-list .title {
    font-size: 19px;
    color: #cc8400; /* Golden brown */
    padding: 10px 18px;
    border-bottom: 2px solid #ffda79; /* Light apricot border */
    margin-bottom: 15px;
}

/* Video list container */
.course-preview-modal .course-preview-video-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.15);
}

/* Video list items */
.course-preview-modal .course-preview-video-list li {
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
}

.course-preview-modal .course-preview-video-list li:hover {
    background-color: #fff3d4; /* Light yellow on hover */
}

/* Active video item */
.course-preview-modal .course-preview-video-list li.active {
    background-color: #ffd166; /* Muted yellow */
    border-left-color: #ff9933; /* Bright apricot */
}

/* Video free preview container */
.course-preview-modal .course-preview-video-list .course-preview-free-video {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

/* Course image styling */
.course-preview-modal .course-preview-video-list .course-preview-free-video .course-image {
    flex: 0 0 18%;
    max-width: 18%;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #ffcc33; /* Yellow border */
}

/* Course name styling */
.course-preview-modal .course-preview-video-list .course-preview-free-video .course-name {
    flex: 0 0 82%;
    max-width: 82%;
    padding-left: 16px;
    font-size: 14px;
    color: #4a3800; /* Dark brown */
    font-weight: 500;
}

/* Course name italics */
.course-preview-modal .course-preview-video-list .course-preview-free-video .course-name i {
    font-size: 12px;
    margin-right: 7px;
    color: #f08700; /* Darker apricot */
}





































/*
    homepage styles
*/

.home-banner-area{
    background-image: url('../../../../uploads/system/home-banner.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    
    color: #fff;


      
    padding: 100px 0;
    position: relative;
    min-height: 500px;
}
.home-banner-wrap{
    max-width: 500px;
}
.home-banner-wrap h2{
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(41,48,59,.55);
}
.home-banner-wrap p{
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(41,48,59,.55);
}
.home-banner-wrap input[type="text"]{
    font-size: 20px;
    height: 50px;
    padding: 11px 17px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-weight: 300
}
.home-banner-wrap .btn{
    padding: 10px 14px;
    font-size: 20px;
    background: #fff;
    border: 0;
    border-radius: 0 3px 3px 0;
    color: #ec5252;
}
.home-banner-wrap .btn:hover{
    background: #ec5252;
    color: #fff;
}






/* Enhanced Professional Design with Yellow & Apricot Color Scheme */
.home-fact-area {
    background-color: #FFD700; /* Base yellow */
    background: -webkit-linear-gradient(135deg, #FFD700, #FFBF5E, #FF9642); /* Multi-stop gradient */
    background: -moz-linear-gradient(135deg, #FFD700 0%, #FFBF5E 65%, #FF9642 100%);
    background: -ms-linear-gradient(135deg, #FFD700 0%, #FFBF5E 65%, #FF9642 100%);
    background: -o-linear-gradient(135deg, #FFD700 0%, #FFBF5E 65%, #FF9642 100%);
    background: linear-gradient(135deg, #FFD700 0%, #FFBF5E 65%, #FF9642 100%);
    color: #2A2A2A;
    padding: 25px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 191, 94, 0.2);
    border-radius: 12px;
}

/* Modern pattern overlay */
.home-fact-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 12%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 14%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 10%);
    z-index: 1;
}

.home-fact-box {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin: 0 10px;
    border-left: 4px solid #FFD700;
    border-right: 1px solid rgba(255, 215, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.home-fact-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 150, 66, 0.25);
    border-left: 4px solid #FF9642;
}

.home-fact-box .text-box {
    padding: 16px 20px 16px 65px;
    position: relative;
    overflow: hidden;
}

.home-fact-box .text-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #FFD700, #FFBF5E, transparent);
}

.home-fact-box i {
    font-size: 42px;
    margin-top: 10px;
    color: #FF9642; /* Deeper apricot for icons */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.home-fact-box:hover i {
    color: #FFD700;
    transform: rotate(5deg) scale(1.1);
}

.home-fact-box .text-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FF8C00; /* Darker orange/apricot */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Additional interactive elements */
.home-fact-box .counter {
    font-size: 32px;
    font-weight: 800;
    color: #2A2A2A;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #FFD700, #FF9642);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.home-fact-box .text-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Animation for the entire section */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.home-fact-area {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}










/* Style amélioré pour la bannière avec éléments colorés en français */


/* Grand ballon jaune */
.home-banner-area::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 15%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: flotter 6s ease-in-out infinite;
}



/* Ballon rose */
.home-banner-area .banner-decoration {
  position: absolute;
  top: 40%;
  right: 30%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FF69B4, #FF1493);
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.28);
  z-index: 1;
  animation: flotter 5s ease-in-out infinite 1s alternate;
}

/* Animation de flottement */
@keyframes flotter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Texte en français */
.home-banner-wrap h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(41,48,59,.65);
  font-family: 'Playfair Display', serif;
}

.home-banner-wrap p {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(41,48,59,.65);
  font-family: 'Raleway', sans-serif;
}

.contact-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #333;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #FFA500, #FFD700);
}













.home-banner-wrap {
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.home-banner-wrap h2 {
    color: #5c4afe;
    margin-bottom: 15px;
}

.home-banner-wrap p {
    color: #5c4afe;
    margin-bottom: 25px;
}

.home-banner-wrap .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




.home-banner-wrap .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.home-banner-wrap .form-control {
    border: none;
    padding: 15px 20px;
    height: auto;
}

.home-banner-wrap .btn {
    background-color: #5c4afe; /* You can change this to match your site's theme */
    color: white;
    border: none;
    padding: 0 25px;
}

/* Alternative: If you want the text directly on the image with just text shadow */
.transparent-option .home-banner-wrap {
    background-color: transparent;
    box-shadow: none;
}

.transparent-option .home-banner-wrap h2,
.transparent-option .home-banner-wrap p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
















.course-carousel-area{
    margin-bottom: 20px;
    overflow-x: hidden;
}
.course-carousel-area .course-carousel-title{
    font-size: 20px;
    color: black;
    margin: 0 0 10px;
}
.course-carousel-area .slick-slider{
    width: calc( 100% + 16px );
    margin-left: -8px;
}
.course-carousel-area .slick-list:before,
.course-carousel-area .slick-list:after{
    position: absolute;
    content: "";
    top:0;
    right: 0;
    height: 100%;
    width: 8px;
    background: #f7f8fa;
    z-index: 1;
}
.course-carousel-area .slick-list:after{
    right: auto;
    left: 0
}

.course-carousel .slick-prev:hover,
.course-carousel .slick-next:hover{
    box-shadow: 0 2px 8px 2px rgba(20,23,28,.15);
}
.course-carousel .slick-prev:focus,
.course-carousel .slick-next:focus{
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1) !important;
}

.course-carousel .slick-prev,
.course-carousel .slick-next{
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    z-index: 1;
    top: calc( 50% - 25px);
}
.course-carousel .slick-prev{
    left: -28px;
}
.course-carousel .slick-prev.slick-disabled,
.course-carousel .slick-next.slick-disabled{
    opacity: 0;
}
.course-carousel .slick-prev:before{
    content: url(../img/icons/prev_arrow.png);
    line-height: 0;
    opacity: 1
}
.course-carousel .slick-next{
    right: -15px
}
.course-carousel .slick-next:before{
    content: url(../img/icons/next_arrow.png);
    line-height: 0;
    opacity: 1;
}
.course-box-wrap:focus{
    outline: none;
}
.course-box-wrap{
    padding:0 8px;
    margin-bottom: 20px;
}
.course-box-wrap a{
    color: #fff;
}
.course-box-wrap a:hover{
    text-decoration: none;
}
.course-box{
    position: relative;
    background: #fff;
}
.course-box:before,
.course-box:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -ms-webkit-transition: .2s ease;
    z-index: -1;
}
.course-box:before{
    opacity: 1;
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    -webkit-box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    -ms-webkit-box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
}
.course-box:after{
    opacity: 0;
    box-shadow: 0 2px 8px 2px rgba(20,23,28,.15);
    -webkit-box-shadow: 0 2px 8px 2px rgba(20,23,28,.15);
    -ms-webkit-box-shadow: 0 2px 8px 2px rgba(20,23,28,.15);
}
.course-box:hover:before{
    opacity: 0;
}
.course-box:hover:after{
    opacity: 1;
}
.course-box .play-btn {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/icons/icon-play.svg) no-repeat;
    background-size: auto 40%;
    background-position: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    z-index: 1
}
.course-box .course-image:hover > .play-btn {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    visibility: visible;
    opacity: 1;
}
.course-box .course-details{
    padding: 15px 10px 0px 15px;
    position: relative;
}
.course-box .course-details .title{
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-weight: 600;
    height: 36px;
    min-height: 42px;
    font-size: 15px;
    color: #29303b;
    margin-bottom: 10px;
    line-height: 20px;
}
.course-box .course-details .instructors{
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -ms-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    min-height: 21px;
    height: 21px;
    font-size: 12px;
    color: #686f7a;
    margin-bottom: 5px;
}
.course-box .course-details .rating{
    margin-bottom: 10px;
}
.course-box .course-details .rating i{
    font-size: 11px;
}
.course-box .course-details .rating .rating-number{
    color: #29303b;
    margin-bottom: 0;
    font-size: 12px;
}
.course-box .course-details .rating .rating-number span{
    font-weight: 600;
    color: #a1a7b3;
    margin-left: 5px;
}
.course-box .course-details .price{
    padding-bottom: 15px;
    color: #29303b;
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}
.course-box .course-details .price small{
    color: #686f7a;
    font-weight: 400;
    font-size: 13px;
    margin-right: 5px;
    text-decoration: line-through;
}

.course-box .course-details .completed-percent .progress-bar{
    background: #007791;
}
.course-box .course-details .completed-percent .progress {
    border-radius: 0;
    height: 2px;
    background-color: rgba(41,48,59,.25);
}
.course-box .course-details .completed-percent {
    margin-top: 10px;
    padding-bottom: 30px;
}
.course-box .course-details .completed-percent .text {
    width: 50%;
    color: #686f7a;
    font-size: 13px;
}
.course-box .course-details .your-rating-box {
    position: absolute;
    right: 10px;
    bottom: 3px;
    margin-bottom: 0;
    z-index: 1;
    text-align: right;
}
.course-box .course-details .your-rating-box .your-rating-text {
    margin-bottom: 0;
    font-size: 13px;
    color: #29303b;
    margin-top: 2px;
}
.course-box .course-details .your-rating-box:hover .your-rating-text {
    color: #ec5252;
}
.course-box .course-details .your-rating-box .your-rating-text .edit {
    display: none;
}
.course-box .course-details .your-rating-box:hover .your-rating-text .edit {
    display: unset;
}
.course-box .course-details .your-rating-box:hover .your-rating-text .your {
    display: none;
}
.course-box .course-details .your-rating-box i {
    color: transparent;
    text-stroke: 1px #eaeaea;
    -webkit-text-stroke: 1px #eaeaea;
    font-size: 17px;
    letter-spacing: -0.1em;
}
.course-box .course-details .your-rating-box i.filled {
    color: #f4c150;
}




.course-badge{
    color: #29303b;
    box-shadow: 0 0 1px 1px rgba(20,23,28,.1), 0 3px 1px 0 rgba(20,23,28,.1);
    pointer-events: none;
    border-radius: 3px;
    font-size: 9px;
    padding: 1px 8px;
    font-weight: 700;
    position: relative;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}
.course-badge:after{
    border-radius: 3px;
    right: -4px;
    background: inherit;
    content: "";
    height: 11px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 11px;
    z-index: 0;
    display: block;
}
.course-badge.best-seller{
    background: #f4c150
}
.course-badge.hot-new{
    background: #ec5252;
    color: #fff;
}
.course-badge.position{
    position: absolute;
    top: 12px;
    left: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.course-box .course-image{
    position: relative;
}
.course-box .course-image:before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -ms-webkit-transition: 0.2s;
}
.course-box .wishlist-add,
.course-box .favorite-add{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
.course-box .wishlist-add button,
.course-box .favorite-add button{
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}
.course-box .wishlist-add button:hover i,
.course-box .wishlist-add.wishlisted button i,
.course-box .favorite-add button:hover i,
.course-box .favorite-add.added button i{
    color:#ec5252;
}
.course-box .wishlist-add button i,
.course-box .favorite-add button i{
    text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
    font-size: 16px;
    color:#686f7a;
}
.course-box .instructor-img-hover{
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: left;
    top: 10px;
    left: 10px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -ms-webkit-transition: 0.2s;
}
.course-box .instructor-img-hover img{
    border: 3px solid #fff;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}
.course-box .instructor-img-hover span{
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-stroke: .4px #fff;
    -webkit-text-stroke: .4px #fff
}
.course-box:hover .instructor-img-hover,
.course-box:hover .course-image:before{
    opacity: 1;
    visibility: visible;
}








.webui-popover{
    box-shadow: 0 4px 16px rgba(20,23,28,.25);
    border-color: transparent;
    border-radius: 2px;
}
.course-popover-content .last-updated {
    margin: 10px 0;
    font-size: 13px;
}

.course-popover-content .course-title a {
    visibility: visible;
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -.3px;
    color: #505763;
}
.course-popover-content .course-title a:hover {
    text-decoration: underline;
}

.course-popover-content .course-category {
    color: #686f7a;
    font-size: 11px;
    margin-top: 7px;
}

.course-popover-content .course-category .course-badge {
    margin-right: 10px;
    box-shadow: 0 0 0;
}

.course-popover-content .course-meta span {
    margin-right: 10px;
    font-size: 13px;
    color: #7a7d82;
}

.course-popover-content .course-meta span i {
    font-size: 12px;
    margin-right: 5px;
}

.course-popover-content .course-meta {
    padding: 5px 0;
}

.course-popover-content .course-subtitle {
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    visibility: visible;
    font-size: 15px;
    line-height: 1.53;
    letter-spacing: -.2px;
    color: #686f7a;
    padding-top: 10px;
}
.course-popover-content .what-will-learn {
    margin-top: 15px;
}

.course-popover-content .what-will-learn ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-popover-content .what-will-learn ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    max-height: 54px;
    visibility: visible;
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 13px;
    letter-spacing: -.2px;
    color: #686f7a;
}
.course-popover-content .what-will-learn ul li:before {
    content: ".";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 30px;
    line-height: 0;
    color: #dedfe0;
}

.course-popover-content .popover-btns {
    margin-top: 50px;
    padding-right: 65px;
    position: relative;
    margin-bottom: 15px;
}

.course-popover-content .popover-btns .add-to-cart-btn {
    width: 100%;
    padding: 16px 12px;
}

 .addedToCart {
  color: #ec5252;
  background-color: #ffffff;
  border-color: #ec5252;
}
 .addedToCart:hover {
  color: #ec5252;
  background-color: #ffffff;
  border-color: #ec5252;
}

.course-popover-content .popover-btns .wishlist-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    border: none;
    background: none;
    font-size: 24px;
}
.course-popover-content .popover-btns .wishlist-btn i {
    color: transparent;
    text-stroke: 1px #ec5252;
    -webkit-text-stroke: 1px #ec5252;
}

.course-popover-content .popover-btns .wishlist-btn.active i,
.course-popover-content .popover-btns .wishlist-btn:hover i{
    color: #ec5252;
}
.webui-popover.left>.webui-arrow,
.webui-popover.left-top>.webui-arrow,
.webui-popover.left-bottom>.webui-arrow {
    border-left-color: rgba(20,23,28,.1);
}
.webui-popover.right>.webui-arrow,
.webui-popover.right-top>.webui-arrow,
.webui-popover.right-bottom>.webui-arrow {
    border-right-color: #999;
    border-right-color: rgba(20,23,28,.1);
}















/*
 * Course Page - Professional Redesign
 * Color Palette:
 * - Primary Yellow: #FFC107
 * - Jaune Abricot: #FFCA7A
 * - Black: #212121
 * - Light Gray: #F5F5F5
 * - White: #FFFFFF
 * - Accent: #FF9800
 */

/* ========== COURSE HEADER ========== */
section.course-header-area {
    background: linear-gradient(135deg, #212121 0%, #000000 100%);
    color: #FFFFFF;
    padding: 70px 0 60px;
    position: relative;
    
}


section.course-header-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFCA7A 100%);
}

section.course-header-area.duplicated {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(33, 33, 33, 0.95);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

section.course-header-area.duplicated .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    
}

section.course-header-area.duplicated .subtitle,
section.course-header-area.duplicated .course-badge,
section.course-header-area.duplicated .created-row {
    display: none;
}

.course-header-wrap .title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.course-header-wrap .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #FFC107;
}

.course-header-wrap .subtitle {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.course-header-wrap > div > span {
    margin-right: 18px;
    margin-bottom: 10px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.course-header-wrap .rating p {
    margin-bottom: 0;
}

.course-header-wrap .rating i {
    font-size: 16px;
    color: #FFC107;
    margin-right: 2px;
}

.course-header-wrap a {
    color: #FFCA7A;
    transition: color 0.2s ease;
}

.course-header-wrap a:hover {
    color: #FFC107;
    text-decoration: none;
}

.course-header-wrap .course-badge {
    font-size: 10px !important;
    text-transform: uppercase;
    background: #FFC107;
    color: #212121;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.course-header-wrap .comment i {
    margin-right: 7px;
    font-size: 15px;
    color: #FFCA7A;
}

/* ========== COURSE SIDEBAR ========== */
.course-sidebar {
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: #212121;
    padding: 0;
    position: relative;
    margin-top: -250px;
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-sidebar.fixed {
    position: fixed;
    margin-top: 0;
    width: 350px;
    transition: all 0.3s ease;
}

.course-sidebar.fixed .preview-video-box,
.course-sidebar.bottom .preview-video-box {
    display: none;
}

.course-sidebar.bottom {
    margin-top: 0;
}

.preview-video-box a {
    display: block;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.preview-video-box img {
    transition: transform 0.5s ease;
}

.preview-video-box a:hover img {
    transform: scale(1.05);
}

.preview-video-box .preview-text {
    position: absolute;
    width: 100%;
    bottom: 15px;
    left: 0;
    text-align: center;
    height: auto;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.preview-video-box .play-btn {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('../img/icons/icon-play.svg') no-repeat;
    background-size: auto 50%;
    background-position: 50%;
    visibility: visible;
    transition: transform 0.2s ease-in-out;
    z-index: 1;
}

.preview-video-box a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.preview-video-box a:hover > .play-btn {
    transform: scale(1.2);
}

.course-sidebar-text-box {
    padding: 25px 30px;
}

.course-sidebar-text-box .price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.course-sidebar-text-box .price .current-price {
    color: #212121;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin-right: 15px;
}

.course-sidebar-text-box .price span {
    vertical-align: middle;
    color: #757575;
    margin-right: 10px;
}

.course-sidebar-text-box .price .original-price {
    text-decoration: line-through;
    font-size: 20px;
}

.course-sidebar-text-box .offer-time {
    color: #FF9800;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.course-sidebar-text-box .offer-time i {
    margin-right: 8px;
    font-size: 16px;
}

.course-sidebar-text-box .buy-btns .btn {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 6px;
    margin-top: 15px;
    padding: 15px 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-sidebar-text-box .buy-btns .btn-buy-now {
    color: #212121;
    background-color: #FFC107;
    border-color: #FFC107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.course-sidebar-text-box .buy-btns .btn-buy-now:hover,
.course-sidebar-text-box .buy-btns .btn-buy-now:focus {
    background-color: #FFCA7A;
    border-color: #FFCA7A;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.course-sidebar-text-box .buy-btns .btn-add-cart {
    background: transparent;
    border: 2px solid #212121;
    color: #212121;
    font-weight: 600;
}

.course-sidebar-text-box .buy-btns .btn-add-cart:hover,
.course-sidebar-text-box .buy-btns .btn-add-cart:focus {
    background-color: #212121;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.course-sidebar-text-box .money-back {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 10px;
    color: #757575;
    text-align: center;
}

.course-sidebar-text-box .includes {
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.course-sidebar-text-box .includes h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #212121;
}

.course-sidebar-text-box .includes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-sidebar-text-box .includes ul li {
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    color: #424242;
}

.course-sidebar-text-box .includes ul li i {
    width: 20px;
    font-size: 14px;
    color: #FFCA7A;
    margin-right: 8px;
}

/* ========== COURSE CONTENT ========== */
.view-more-parent {
    position: relative;
    overflow: hidden;
}

.view-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.95), #FFFFFF);
    display: block;
    padding: 40px 3px 3px 3px;
    color: #FFC107;
    cursor: pointer;
    z-index: 5;
    text-align: center;
    font-weight: 600;
}

.view-less {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 10px 3px;
    color: #FFC107;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    background: #F5F5F5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.view-more-parent.expanded {
    max-height: none;
    overflow: visible;
}

.view-more-parent.has-hide {
    padding-bottom: 40px;
}

.description-box {
    max-height: 260px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.description-box ul {
    list-style: disc;
    padding-left: 20px;
}

.description-box .description-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.description-box .description-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.description-box .audience {
    margin-top: 25px;
}

.description-box .audience .audience-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #212121;
}

.description-box .audience ul {
    margin-bottom: 0;
}

.description-box p,
.description-box li {
    color: #424242;
    line-height: 1.6;
    font-size: 15px;
}

/* ========== WHAT YOU GET BOX ========== */
.what-you-get-box {
    background-color: #FFF8E1;
    border: 1px solid #FFECB3;
    border-left: 4px solid #FFC107;
    padding: 25px 30px;
    margin-top: 50px;
    border-radius: 6px;
}

.what-you-get-box .what-you-get-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #212121;
    position: relative;
}

.what-you-get-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.what-you-get-box ul li {
    display: flex;
    margin-bottom: 15px;
    width: 45%;
    padding-left: 28px;
    font-size: 15px;
    position: relative;
    color: #424242;
}

.what-you-get-box ul li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f00c";
    color: #FFC107;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 4px;
}

/* ========== REQUIREMENTS BOX ========== */
.requirements-box {
    margin-top: 50px;
}

.requirements-box .requirements-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.requirements-box .requirements-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.requirements-box .requirements__list {
    list-style: disc;
    margin-left: 10px;
    padding-left: 15px;
    margin-bottom: 0;
}

.requirements-box .requirements__list li {
    color: #424242;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.requirements-box .requirements__list li:not(:last-child) {
    margin-bottom: 15px;
}

/* ========== COMPARE BOX ========== */
.compare-box {
    max-height: 580px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.compare-box .compare-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.compare-box .compare-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.course-comparism-item-container {
    border-top: 1px solid #EEEEEE;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-comparism-item-container:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.course-comparism-item-container a {
    display: block;
    transition: 0.2s;
}

.course-comparism-item-container a:hover {
    background-color: #FFF8E1;
}

.course-comparism-item-container.this-course {
    border-bottom: 3px solid #FFC107;
    background-color: #FFF8E1;
}

.course-comparism-item-container.this-course .course-comparism-item-this-text {
    font-size: 11px;
    margin-left: 15px;
    text-transform: uppercase;
    margin-bottom: -5px;
    margin-top: 5px;
    font-weight: 600;
    color: #FFC107;
    letter-spacing: 0.5px;
}

.course-comparism-item {
    color: #212121;
    padding: 18px 15px;
    display: flex;
    align-items: center;
}

.course-comparism-item .item-image {
    height: auto;
    width: 18%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.course-comparism-item .item-image .item-duration {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3px 0;
    font-size: 12px;
    font-weight: 600;
    color: #212121;
}

.course-comparism-item .item-title {
    padding-left: 20px;
    width: 39%;
}

.course-comparism-item .item-title .title {
    font-size: 16px;
    font-weight: 600;
    word-break: break-word;
    color: #212121;
    line-height: 1.4;
}

.course-comparism-item .item-title .updated-time {
    color: #757575;
    font-size: 13px;
    margin-top: 5px;
}

.course-comparism-item .item-details {
    position: relative;
    width: 43%;
    padding-left: 20px;
}

.course-comparism-item .item-details .wishlist-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.course-comparism-item .item-details .item-rating i {
    color: #FFC107;
    margin-right: 2px;
    font-size: 14px;
}

.course-comparism-item .item-details .wishlist-btn button {
    padding: 0;
    margin: 0;
    border: 0;
    background: 0;
    font-size: 18px;
    color: #FFC107;
    cursor: pointer;
    transition: all 0.2s ease;
}

.course-comparism-item .item-details .wishlist-btn button:hover > i:before {
    font-weight: 900;
}

.course-comparism-item .item-details .item-price {
    position: absolute;
    top: 0;
    right: 38px;
    display: flex;
    flex-direction: column-reverse;
    text-align: right;
}

.course-comparism-item .item-details .item-price .current-price {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
}

.course-comparism-item .item-details .item-price .original-price {
    color: #757575;
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
}

.course-comparism-item .item-details .enrolled-student {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.course-comparism-item .item-details .enrolled-student i {
    margin-right: 5px;
    color: #FFCA7A;
    font-size: 14px;
}

/* ========== MORE BY INSTRUCTOR BOX ========== */
.more-by-instructor-box {
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-left: 4px solid #FFC107;
    margin-bottom: 60px;
    padding: 25px;
    border-radius: 6px;
}

.more-by-instructor-box .more-by-instructor-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #212121;
}

/* ========== ABOUT INSTRUCTOR BOX ========== */
.about-instructor-box {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.about-instructor-box .about-instructor-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.about-instructor-box .about-instructor-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.about-instructor-box .about-instructor-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #FFCA7A;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-instructor-box .about-instructor-image ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 20px;
}

.about-instructor-box .about-instructor-image ul b {
    font-weight: 600;
    color: #212121;
}

.about-instructor-box .about-instructor-image ul i {
    width: 26px;
    font-size: 14px;
    color: #FFCA7A;
}

.about-instructor-box .about-instructor-image ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #424242;
}

.about-instructor-details {
    max-height: 380px;
}

.about-instructor-details .instructor-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #212121;
}

.about-instructor-details .instructor-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #757575;
}

.about-instructor-details p {
    font-size: 15px;
    line-height: 1.6;
    color: #424242;
}

/* ========== STUDENT FEEDBACK BOX ========== */
.student-feedback-box {
    margin: 60px 0;
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.student-feedback-box .student-feedback-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.student-feedback-box .student-feedback-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.student-feedback-box .average-rating {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.student-feedback-box .average-rating .num {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #212121;
}

.student-feedback-box .average-rating .rating i {
    font-size: 22px;
    color: #FFC107;
    margin-bottom: 10px;
}

.student-feedback-box .average-rating .text {
    color: #757575;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
}

.student-feedback-box .individual-rating ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.student-feedback-box .individual-rating ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student-feedback-box .individual-rating ul li .progress {
    width: 70%;
    height: 12px;
    border-radius: 20px;
    background-color: #E0E0E0;
    margin: 0 10px;
}

.student-feedback-box .individual-rating ul li .progress-bar {
    border-radius: 20px;
    background-color: #FFC107;
}

.student-feedback-box .individual-rating .rating i {
    font-size: 14px;
    color: #E0E0E0;
}

.student-feedback-box .individual-rating .rating i.filled {
    color: #FFC107;
}

.student-feedback-box .individual-rating li > div:not(.progress) {
    min-width: 60px;
}

.student-feedback-box .individual-rating li > div:not(.progress) span:not(.rating) {
    text-align: center;
    padding-left: 10px;
    color: #FF9800;
    font-weight: 600;
}

.student-feedback-box .reviews .reviews-title {
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 20px;
    color: #212121;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
}

.student-feedback-box .reviews ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 30px;
}

.student-feedback-box .reviews .reviewer-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student-feedback-box .reviews .reviewer-details img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #FFCA7A;
}

.student-feedback-box .reviews .reviewer-details .name {
    font-weight: 600;
    font-size: 16px;
    color: #212121;
}

.student-feedback-box .reviews .reviewer-details .review-time .time {
    color: #757575;
    font-size: 13px;
}

.student-feedback-box .reviews ul li {
    padding: 25px 0;
    border-bottom: 1px solid #E0E0E0;
}

.student-feedback-box .reviews ul li:last-child {
    border-bottom: none;
}

.student-feedback-box .reviews .review-details .rating i {
    color: #E0E0E0;
    margin-bottom: 15px;
    font-size: 14px;
}

.student-feedback-box .reviews .review-details .rating i.filled {
    color: #FFC107;
}

.student-feedback-box .reviews .review-details .review-text {
    color: #424242;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.student-feedback-box .reviews {
    margin-top: 40px;
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.reviews .more-reviews-btn {
    text-align: center;
    margin-top: 30px;
}

.reviews .more-reviews-btn button {
    border-radius: 6px;
    border: 2px solid #FFC107;
    color: #212121;
    background: #fff;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.reviews .more-reviews-btn button:hover,
.reviews .more-reviews-btn button:focus {
    background-color: #FFC107;
    color: #212121;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.3);
}









/* ========== COURSE CURRICULUM BOX ========== */
.course-curriculum-box {
    margin-bottom: 50px;
    margin-top: 50px;
}

.course-curriculum-box .course-curriculum-title .title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #212121;
    position: relative;
    padding-bottom: 10px;
}

.course-curriculum-box .course-curriculum-title .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FFC107;
}

.course-curriculum-box .course-curriculum-title .total-time {
    width: 130px;
    display: inline-block;
    text-align: right;
    font-weight: 600;
    color: #757575;
}

.course-curriculum-accordion .lecture-group-title .total-time {
    width: 130px;
    display: inline-block;
    text-align: right;
    font-weight: 500;
    color: #757575;
}

.course-curriculum-accordion .lecture-group-title .title {
    max-width: 60%;
    font-weight: 600;
    color: #212121;
}

.course-curriculum-accordion .lecture-group-title {
    position: relative;
    padding: 15px 30px 15px 50px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    height: auto;
    margin-top: 8px;
    color: #212121;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.course-curriculum-accordion .lecture-group-title:hover {
    background: #EEEEEE;
}

.course-curriculum-box .course-curriculum-title {
    padding-right: 31px;
    margin-bottom: 15px;
}

.course-curriculum-accordion .lecture-group-title:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 22px;
    font-size: 12px;
    top: 18px;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="false"]:before {
    content: "\f067";
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="true"]:before {
    content: "\f068";
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="true"] {
    background: #FFF8E1;
    border-color: #FFECB3;
    border-radius: 6px 6px 0 0;
}

.course-curriculum-accordion .lecture-group-title[aria-expanded="true"] .total-lectures {
    display: none;
}

.course-curriculum-accordion .lecture-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #E0E0E0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.course-curriculum-accordion .lecture-list .lecture {
    padding: 15px 30px 15px 75px;
    position: relative;
    border-bottom: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    color: #424242;
    transition: background-color 0.2s ease;
}

.course-curriculum-accordion .lecture-list .lecture:last-child {
    border-bottom: none;
}

.course-curriculum-accordion .lecture-list .lecture .lecture-title {
    width: 50%;
    display: inline-block;
    transition: 0.3s;
    font-size: 15px;
}

.course-curriculum-accordion .lecture-list .lecture .lecture-time {
    width: 100px;
    text-align: right;
    color: #757575;
    font-weight: 500;
}

.course-curriculum-accordion .lecture-list .lecture:before {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f144";
    position: absolute;
    left: 45px;
    opacity: 0.7;
    font-weight: 400;
    font-size: 14px;
    top: 18px;
    color: #757575;
}

.course-curriculum-accordion .lecture-list .lecture.has-preview {
    color: #FFC107;
}

.course-curriculum-accordion .lecture-list .lecture.has-preview:before {
    color: #FFC107;
    opacity: 1;
}

.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-title,
.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-preview {
    cursor: pointer;
    color: #212121;
    font-weight: 500;
}

.course-curriculum-accordion .lecture-list .lecture.has-preview:hover {
    background-color: #FFF8E1;
}

.course-curriculum-accordion .lecture-list .lecture.has-preview .lecture-title:hover {
    color: #FF9800;
}






















/*
 * Category Page - Professional Redesign
 * Color Palette:
 * - Primary Yellow: #FFC107
 * - Jaune Abricot: #FFCA7A
 * - Black: #212121
 * - Light Gray: #F5F5F5
 * - White: #FFFFFF
 * - Accent: #FF9800
 */

/* ========== HEADER AREA ========== */
section.category-header-area {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #212121 0%, #000000 100%);
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section.category-header-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107 0%, #FFCA7A 100%);
}

section.category-header-area .category-name {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

section.category-header-area .category-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFC107;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 0;
    margin: 0 0 10px;
    background: none;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
    color: #FFCA7A;
    transition: color 0.2s ease;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #FFC107;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item a i {
    color: #FFCA7A;
    font-size: 12px;
    margin-right: 5px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "•";
    padding: 0 8px;
}

/* ========== CATEGORY COURSE LIST AREA ========== */
section.category-course-list-area {
    padding: 60px 0;
    background-color: #F5F5F5;
}

/* ========== FILTER BOX ========== */
.category-filter-box {
    padding: 30px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #FFCA7A;
    background-color: #FFFFFF;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-box .btn {
    border-radius: 4px;
    border: 2px solid #FFC107;
    color: #212121;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    min-width: 100px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-box .btn:not(.all-btn) {
    margin-left: 12px;
}

.filter-box .btn:hover,
.filter-box .btn:focus {
    background: #FFC107 !important;
    color: #212121 !important;
    border-color: #FFC107 !important;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.filter-box .btn[aria-expanded="true"] {
    background-color: #FFC107 !important;
    color: #212121 !important;
}

.filter-box .dropdown-menu {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 4px;
    max-height: 365px;
    overflow-y: auto;
    margin-top: 8px;
    padding: 10px 0;
}

.filter-box .dropdown-menu .dropdown-item {
    color: #212121;
    padding: 8px 16px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-box .dropdown-menu .dropdown-item:hover,
.filter-box .dropdown-menu .dropdown-item:focus {
    background-color: rgba(255, 202, 122, 0.15);
    color: #212121;
}

.filter-box .reset-btn {
    background-color: transparent;
    border-color: transparent;
    color: #FF9800;
    font-weight: 600;
}

.filter-box .reset-btn:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #FFC107 !important;
}

.filter-box .reset-btn:disabled {
    color: #BDBDBD !important;
    cursor: not-allowed;
}

/* ========== COURSE LIST ========== */
.category-course-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-course-list ul li {
    margin-bottom: 30px;
}

.course-box-2 {
    display: flex;
    border: none;
    border-radius: 8px;
    min-height: 160px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.course-box-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-box-2 .course-image {
    width: 28%;
    position: relative;
    overflow: hidden;
}

.course-box-2 .course-image img {
    transition: transform 0.5s ease;
}

.course-box-2:hover .course-image img {
    transform: scale(1.05);
}

.course-box-2 .course-details {
    width: 48%;
    padding: 20px 25px;
}

.course-box-2 .course-price-rating {
    width: 24%;
    text-align: right;
    align-self: center;
    padding: 20px 25px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.course-box-2 .course-details .course-title {
    color: #212121;
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.course-box-2 .course-details a:hover {
    text-decoration: none;
}

.course-box-2 .course-details a:hover .course-title {
    color: #FFC107;
}

.course-box-2 .course-details .course-instructor {
    display: block;
    color: #757575;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
}

.course-box-2 .course-details .course-subtitle {
    color: #424242;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.course-box-2 .course-details .course-meta {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-box-2 .course-details .course-meta span {
    font-size: 13px;
    margin-right: 15px;
    color: #757575;
    display: inline-flex;
    align-items: center;
}

.course-box-2 .course-details .course-meta span i {
    opacity: 0.7;
    font-size: 16px;
    margin-right: 6px;
    color: #FFCA7A;
}

.course-box-2 .course-price-rating .current-price {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 5px;
    display: block;
}

.course-box-2 .course-price-rating .original-price {
    color: #757575;
    font-size: 15px;
    font-weight: 500;
    text-decoration: line-through;
    display: block;
    margin-bottom: 12px;
}

.course-box-2 .course-price-rating .rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.course-box-2 .course-price-rating .rating i {
    color: #FFC107;
    font-size: 14px;
    margin-left: 1px;
}

.course-box-2 .course-price-rating .rating .average-rating {
    font-size: 14px;
    color: #212121;
    font-weight: 600;
    margin-left: 5px;
}

.course-box-2 .course-price-rating .rating-number {
    font-size: 13px;
    color: #757575;
    margin-top: 4px;
}

/* Add a subtle yellow indicator for bestsellers or featured courses */
.course-box-2.featured::before {
    content: 'Featured';
    position: absolute;
    top: 12px;
    left: 0;
    background: #FFC107;
    color: #212121;
    padding: 4px 12px 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 20px 20px 0;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}



















/*
    Professional Instructor & Notifications Pages
    Color Palette:
    - Primary Yellow: #FFD700
    - Jaune Abricot: #FFCB85
    - Black: #222222
    - Light Gray: #f8f9fa
    - White: #ffffff
    - Text Gray: #555555
*/

/* ====== INSTRUCTOR PAGE ====== */
section.instructor-header-area {
    background: linear-gradient(120deg, #222222 0%, #333333 100%);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

section.instructor-header-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFCB85);
}

section.instructor-header-area .container {
    position: relative;
    z-index: 2;
}

section.instructor-header-area .instructor-name {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
    display: inline-block;
    position: relative;
}

section.instructor-header-area .instructor-name::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #FFCB85;
    margin-top: 10px;
}

section.instructor-header-area .instructor-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 12px 0 0;
    opacity: 0.9;
}

section.instructor-details-area {
    padding: 50px 0;
    background-color: #ffffff;
}

/* Instructor Left Box (Profile Image & Social) */
.instructor-left-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-left-box .instructor-image {
    position: relative;
    margin-bottom: 25px;
}

.instructor-left-box .instructor-image::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid #FFCB85;
    opacity: 0.7;
}

.instructor-left-box .instructor-image img {
    border-radius: 50%;
    height: 140px;
    width: 140px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instructor-left-box .instructor-image:hover img {
    transform: scale(1.03);
}

.instructor-left-box .instructor-social ul {
    margin: 0;
    padding: 0;
    margin-top: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
}

.instructor-left-box .instructor-social ul li {
    display: inline-block;
    margin: 0 8px;
}

.instructor-left-box .instructor-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #222222;
    font-size: 18px;
    transition: all 0.3s ease;
}

.instructor-left-box .instructor-social ul li a:hover {
    background-color: #FFD700;
    color: #222222;
    transform: translateY(-3px);
}

/* Biography Section */
.biography-content-box {
    max-height: 400px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFCB85;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.biography-content-box::-webkit-scrollbar {
    width: 6px;
}

.biography-content-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.biography-content-box::-webkit-scrollbar-thumb {
    background: #FFCB85;
    border-radius: 10px;
}

.biography-content-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.biography-content-box p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Instructor Stats Box */
.instructor-right-box .instructor-stat-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #FFD700;
}

.instructor-right-box .instructor-stat-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
}

.instructor-right-box .instructor-stat-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.instructor-right-box .instructor-stat-box ul li {
    display: inline-block;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    padding: 0 20px;
    text-align: center;
    margin: 5px 0;
}

.instructor-right-box .instructor-stat-box ul li:first-child {
    border-left: none;
    padding-left: 0;
}

.instructor-right-box .instructor-stat-box ul li .stat-title {
    font-size: 14px;
    color: #777777;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instructor-right-box .instructor-stat-box ul li .num {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    line-height: 1;
}

.instructor-right-box .instructor-stat-box ul li .small {
    font-size: 14px;
    color: #888888;
    display: block;
    margin-top: 5px;
}

/* Instructor Course List Section */
section.instructor-course-list-area {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

section.instructor-course-list-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

section.instructor-course-list-area .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222222;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

section.instructor-course-list-area .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: #FFD700;
    border-radius: 3px;
}

section.instructor-course-list-area .container {
    max-width: 1140px;
}

/* Course Cards */
.course-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.course-box .course-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.course-box .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-box:hover .course-image img {
    transform: scale(1.05);
}

.course-box .course-details {
    padding: 20px;
}

.course-box .course-title {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222222;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.course-box .course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.course-box .course-instructor-name {
    font-size: 14px;
    color: #777777;
}

.course-box .course-rating {
    color: #FFD700;
    font-size: 14px;
}

.course-box .course-price {
    font-weight: 700;
    font-size: 18px;
    color: #222222;
    margin-top: 10px;
}

.course-box .course-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: normal;
    font-size: 14px;
    margin-right: 8px;
}

/* Pagination */
ul.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

ul.pagination .page-item.disabled .page-link {
    color: #a1a7b3;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

ul.pagination .page-item.active a,
ul.pagination .page-item.active .page-link {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #222222;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

ul.pagination .page-item a,
ul.pagination .page-item .page-link {
    color: #222222;
    padding: 12px 18px;
    font-size: 16px;
    position: relative;
    display: block;
    margin-left: -1px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

ul.pagination .page-item:first-child .page-link {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

ul.pagination .page-item:last-child .page-link {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

ul.pagination .page-item a:hover,
ul.pagination .page-item .page-link:hover {
    background-color: #FFCB85;
    border-color: #FFCB85;
    color: #222222;
    position: relative;
    z-index: 1;
}

/* ====== NOTIFICATIONS PAGE ====== */
section.page-header-area {
    padding: 50px 0;
    background: linear-gradient(120deg, #222222 0%, #2c2c2c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

section.page-header-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFCB85);
}

section.page-header-area .page-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    position: relative;
    display: inline-block;
}

section.page-header-area .page-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #FFCB85;
    margin-top: 10px;
}

section.page-header-area .page-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 15px 0 5px;
    opacity: 0.9;
}

/* Notifications Content Area */
.notifications-content-area {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.notifications-list-area {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.notifications-list-area .notifications-header {
    padding: 20px 25px;
    background-color: #222222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notifications-list-area .notifications-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.notifications-list-area .notifications-header .notification-count {
    background: #FFD700;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 30px;
}

.notifications-list-area .notification-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.notifications-list-area .notification-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list-area .notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notifications-list-area .notification-list::-webkit-scrollbar-thumb {
    background: #FFCB85;
    border-radius: 10px;
}

.notifications-list-area .notification-list li {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.notifications-list-area .notification-list li:hover {
    background-color: rgba(255, 203, 133, 0.08);
}

.notifications-list-area .notification-list li.unread {
    position: relative;
}

.notifications-list-area .notification-list li.unread::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
}

.notifications-list-area .notification-list .notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notifications-list-area .notification-list .notification-icon i {
    color: #FFD700;
    font-size: 18px;
}

.notifications-list-area .notification-list .notification-details {
    flex: 1;
}

.notifications-list-area .notification-list .notification-details .notification-text {
    width: 100%;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.notifications-list-area .notification-list .notification-details .notification-text strong {
    color: #222222;
    font-weight: 600;
}

.notifications-list-area .notification-list .notification-details .notification-time {
    margin-top: 8px;
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.notifications-list-area .notification-list .notification-details .notification-time i {
    font-size: 12px;
    margin-right: 5px;
}

.notifications-list-area .notifications-footer {
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
}

.notifications-list-area .notifications-footer .mark-all-read {
    border: 0;
    background: none;
    color: #222222;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.notifications-list-area .notifications-footer .mark-all-read i {
    margin-right: 5px;
    font-size: 16px;
}

.notifications-list-area .notifications-footer .mark-all-read:hover {
    background-color: #FFD700;
    color: #222222;
}

.notifications-list-area .notifications-footer .view-all {
    color: #222222;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.notifications-list-area .notifications-footer .view-all i {
    margin-left: 5px;
    font-size: 14px;
}

.notifications-list-area .notifications-footer .view-all:hover {
    background-color: #FFCB85;
    color: #222222;
}

/* No Notifications State */
.notifications-list-area .no-notifications {
    padding: 40px 20px;
    text-align: center;
}

.notifications-list-area .no-notifications i {
    font-size: 60px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.notifications-list-area .no-notifications h5 {
    font-size: 18px;
    color: #222222;
    margin-bottom: 10px;
}

.notifications-list-area .no-notifications p {
    color: #777;
    font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .instructor-left-box {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .instructor-right-box .instructor-stat-box ul {
        justify-content: center;
    }
    
    .instructor-right-box .instructor-stat-box ul li {
        padding: 0 15px;
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    section.instructor-header-area {
        padding: 35px 0;
    }
    
    section.instructor-header-area .instructor-name {
        font-size: 26px;
    }
    
    section.instructor-header-area .instructor-title {
        font-size: 16px;
    }
    
    section.instructor-details-area,
    section.instructor-course-list-area {
        padding: 40px 0;
    }
    
    .instructor-left-box .instructor-image img {
        height: 120px;
        width: 120px;
    }
    
    .instructor-right-box .instructor-stat-box ul li {
        flex: 0 0 50%;
        border-left: none;
        padding: 10px;
    }
    
    .instructor-right-box .instructor-stat-box ul li:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    section.page-header-area {
        padding: 35px 0;
    }
    
    section.page-header-area .page-title {
        font-size: 26px;
    }
    
    .notifications-list-area .notification-list li {
        padding: 15px;
    }
}






/*
    My Courses - Wishlist Page (Redesigned)
    Color Palette:
    - Primary Yellow: #FFD700
    - Jaune Abricot: #FFCB85
    - Black: #222222
    - Light Gray: #f8f9fa
    - White: #ffffff
    - Accent: #FF8C42
*/

/* Header Area Styling */
section.page-header-area.my-course-area {
    padding: 45px 0 25px;
    background: linear-gradient(135deg, #222222 0%, #333333 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

section.page-header-area.my-course-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFCB85);
}

section.page-header-area.my-course-area h1 {
    color: #ffffff;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

section.page-header-area.my-course-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

section.page-header-area.my-course-area ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

section.page-header-area.my-course-area ul li a {
    padding: 8px 0;
    border-bottom: 4px solid transparent;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 16px;
}

section.page-header-area.my-course-area ul li.active a,
section.page-header-area.my-course-area ul li a:hover {
    color: #ffffff;
    border-bottom-color: #FFCB85;
    transform: translateY(-2px);
}

/* Main Content Area */
section.my-courses-area {
    padding: 50px 0;
    background-color: #f8f9fa;
}

/* Search Bar Styling */
section.my-courses-area .my-course-search-bar {
    margin-bottom: 30px;
}

section.my-courses-area .my-course-search-bar .input-group {
    width: 280px;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.my-courses-area .my-course-search-bar input {
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    border-right: none;
}

.my-courses-area .my-course-search-bar input:focus {
    box-shadow: none;
    border-color: #FFCB85;
}

.my-courses-area .my-course-search-bar .input-group-append button {
    background: #FFD700;
    border-color: #FFD700;
    color: #222222;
    font-weight: 500;
    padding: 0 18px;
    transition: all 0.3s ease;
}

.my-courses-area .my-course-search-bar .input-group-append button:hover,
.my-courses-area .my-course-search-bar .input-group-append button:focus,
.my-courses-area .my-course-search-bar input:focus + .input-group-append button {
    background: #FFCB85;
    color: #222222;
    border-color: #FFCB85;
}

/* Course Grid Layout */
.my-courses-area .row.no-gutters {
    margin-top: 40px;
    margin-left: -15px;
    margin-right: -15px;
}

.my-courses-area .course-box-wrap {
    padding: 0 15px;
    margin-bottom: 30px;
}

.my-courses-area .course-box {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.my-courses-area .course-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.my-courses-area .course-box .course-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.my-courses-area .course-box .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.my-courses-area .course-box:hover .course-image img {
    transform: scale(1.05);
}

.my-courses-area .course-box .course-details {
    padding: 20px;
}

.my-courses-area .course-box .course-title {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222222;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.my-courses-area .course-box .course-instructor {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.my-courses-area .course-box .course-price {
    font-weight: 700;
    font-size: 18px;
    color: #222222;
}

.my-courses-area .course-box .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.my-courses-area .course-box .wishlist-btn i {
    color: #FF8C42;
    font-size: 18px;
}

.my-courses-area .course-box .wishlist-btn:hover {
    background: #FFD700;
}

/* Filter Section */
.my-course-filter-bar.filter-box {
    position: relative;
    padding-top: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.my-course-filter-bar.filter-box > span {
    color: #222222;
    font-size: 14px;
    font-weight: 500;
}

.my-course-filter-bar.filter-box .filter-button {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 8px 15px;
    border-radius: 4px;
    color: #222222;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-course-filter-bar.filter-box .filter-button i {
    margin-right: 6px;
}

.my-course-filter-bar.filter-box .filter-button:hover {
    background: #FFCB85;
    border-color: #FFCB85;
}

/* Rating Modal Styling */
.edit-rating-modal .modal-content {
    border-radius: 6px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.edit-rating-modal .modal-header {
    background: #222222;
    color: #ffffff;
    padding: 15px 20px;
    border-bottom: 3px solid #FFD700;
}

.edit-rating-modal .modal-header .close {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.edit-rating-modal .modal-header .close:hover {
    opacity: 1;
}

.edit-rating-modal .m-progress-bar-wrapper {
    background: #f0f0f0;
    height: 6px;
    margin-bottom: 30px;
}

.edit-rating-modal .m-progress-bar {
    height: 6px;
    background: linear-gradient(90deg, #FFD700, #FFCB85);
    border-radius: 0;
}

.edit-rating-modal .rating-title {
    font-weight: 500;
    font-size: 24px;
    color: #222222;
    margin-bottom: 20px;
}

.edit-rating-modal .modal-body {
    padding: 30px 40px;
}

.modal-course-preview-box {
    padding-left: 20px;
    border-left: 3px solid #FFCB85;
    margin-bottom: 25px;
}

.modal-course-preview-box .card-title {
    line-height: 1.4;
    height: auto;
    max-height: 50px;
    color: #222222;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-course-preview-box .card-text {
    line-height: 1.5;
    height: auto;
    max-height: 48px;
    color: #666666;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 14px;
}

/* Rating Stars */
.your-rating {
    border: none;
    float: left;
    margin-bottom: 30px;
    margin-top: 20px;
}

.your-rating > input {
    display: none;
}

.your-rating > label:before {
    margin: 5px;
    font-size: 36px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    content: "\f005";
    font-weight: 900;
    cursor: pointer;
}

.your-rating > .half:before {
    content: "\f089";
    position: absolute;
}

.your-rating > label {
    color: #e0e0e0;
    float: right;
    transition: color 0.2s ease;
}

.your-rating > input:checked ~ label,
.your-rating:not(:checked) > label:hover,
.your-rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
}

.your-rating > input:checked + label:hover,
.your-rating > input:checked ~ label:hover,
.your-rating > label:hover ~ input:checked ~ label,
.your-rating > input:checked ~ label:hover ~ label {
    color: #FFCB85;
}

.edit-rating-modal .modal-rating-comment-box textarea {
    width: 100%;
    height: 180px;
    resize: none;
    border-radius: 4px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 15px;
}

.edit-rating-modal .modal-rating-comment-box textarea:focus {
    border-color: #FFCB85;
    box-shadow: 0 0 0 3px rgba(255, 203, 133, 0.2);
    outline: none;
}

.edit-rating-modal .modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.edit-rating-modal .modal-footer button {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.4;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.edit-rating-modal .modal-footer button.submit {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #222222;
}

.edit-rating-modal .modal-footer button.submit:hover,
.edit-rating-modal .modal-footer button.submit:focus {
    background-color: #FFCB85 !important;
    border-color: #FFCB85 !important;
}

.edit-rating-modal .modal-footer button.previous {
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.edit-rating-modal .modal-footer button.previous:hover,
.edit-rating-modal .modal-footer button.previous:focus {
    background-color: #f8f9fa !important;
    border-color: #e0e0e0 !important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    section.page-header-area.my-course-area {
        padding: 30px 0 15px;
    }
    
    section.page-header-area.my-course-area ul li {
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    section.page-header-area.my-course-area ul li a {
        font-size: 14px;
        padding: 5px 0;
    }
    
    section.my-courses-area .my-course-search-bar .input-group {
        width: 100%;
    }
    
    .my-course-filter-bar.filter-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .my-course-filter-bar.filter-box > span {
        margin-bottom: 10px;
    }
    
    .modal-course-preview-box {
        padding-left: 15px;
    }
    
    .edit-rating-modal .modal-body {
        padding: 20px;
    }
}


















/*
    Modern Shopping Cart - Professional Redesign
    Color Palette:
    - Primary Yellow: #FFD100
    - Jaune Abricot (Apricot Yellow): #FFBE76
    - Black: #202020
    - Dark Gray: #3D3D3D
    - Light Gray: #F7F7F7
    - White: #FFFFFF
*/

/* Cart Page Section */
section.cart-list-area {
    margin-top: 70px;
    margin-bottom: 90px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* Section Titles */
.in-cart-box > .title,
.wishlisted-box > .title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #202020;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.in-cart-box > .title:after,
.wishlisted-box > .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFD100;
}

/* Cart Course List Container */
.in-cart-box .cart-course-list,
.wishlisted-box .cart-course-list {
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.in-cart-box .cart-course-list li:not(:first-child),
.wishlisted-box .cart-course-list li:not(:first-child) {
    border-top: 1px solid #f1f1f1;
}

/* Cart Course Item */
.cart-course-wrapper {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    transition: all 0.3s ease;
}

.cart-course-wrapper:hover {
    background-color: #F7F7F7;
}

/* Course Image */
.cart-course-wrapper .image {
    flex: 0 0 15%;
    max-width: 15%;
}

.cart-course-wrapper .image img {
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

/* Course Details */
.cart-course-wrapper .details {
    flex: 0 0 55%;
    max-width: 55%;
    padding-left: 20px;
}

.cart-course-wrapper .details .name {
    display: block !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 8px;
    max-height: 48px;
    color: #202020;
    line-height: 1.4;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.cart-course-wrapper .details .name:hover {
    color: #FFD100;
}

.cart-course-wrapper .details .instructor {
    display: block !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 20px;
    font-size: 14px;
    color: #3D3D3D;
}

/* Price Section */
.cart-course-wrapper .price {
    flex: 0 0 15%;
    max-width: 15%;
    text-align: right;
    padding-right: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-course-wrapper .price .current-price {
    color: #202020;
    font-weight: 700;
    font-size: 18px;
}

.cart-course-wrapper .price .original-price {
    text-decoration: line-through;
    color: #8A8A8A;
    font-size: 14px;
    margin-top: 4px;
}

.cart-course-wrapper .price .coupon-tag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: #FFBE76;
    font-size: 13px;
    font-weight: 600;
    background-color: #FFF8E7;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Move/Remove Actions */
.cart-course-wrapper .move-remove {
    text-align: right;
    padding-left: 10px;
    flex: 0 0 15%;
    max-width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-course-wrapper .move-remove div {
    color: #202020;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 5px;
}

.cart-course-wrapper .move-remove div:hover {
    color: #FFD100;
}

/* Cart Sidebar */
.cart-sidebar {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cart-sidebar .total {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-sidebar .total-price {
    font-size: 36px;
    line-height: 1.2;
    color: #202020;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-sidebar .total-original-price {
    color: #8A8A8A;
    margin-bottom: 20px;
    font-size: 14px;
}

.cart-sidebar .total-original-price .original-price {
    text-decoration: line-through;
    margin-right: 10px;
}

.cart-sidebar .total-original-price .discount-percentage {
    color: #FFBE76;
    font-weight: 600;
    background-color: #FFF8E7;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 13px;
}

/* Checkout Button */
.cart-sidebar .checkout-btn {
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    color: #202020;
    background-color: #FFD100;
    border: none;
    font-weight: 600;
    padding: 16px 12px;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(255, 209, 0, 0.25);
}

.cart-sidebar .checkout-btn:hover, 
.cart-sidebar .checkout-btn:focus {
    background-color: #FFBE76 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 190, 118, 0.3) !important;
}

/* Coupon Field */
.cart-sidebar .coupon-field {
    margin-top: 20px;
    position: relative;
}

.cart-sidebar .coupon-field input {
    padding: 14px 110px 14px 15px;
    font-size: 14px;
    border-radius: 6px;
    width: 100%;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

.cart-sidebar .coupon-field input:focus {
    border-color: #FFD100;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.15);
    outline: none;
}

.cart-sidebar .coupon-field button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 4px;
    background-color: #202020;
    border: none;
    color: #FFD100;
    font-weight: 600;
    font-size: 14px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-sidebar .coupon-field button:hover,
.cart-sidebar .coupon-field button:focus {
    background-color: #3D3D3D !important;
}

/* Coupon List */
.cart-sidebar .coupon-list {
    margin-top: 20px;
}

.cart-sidebar .coupon-list h4 {
    font-size: 14px;
    color: #3D3D3D;
    margin-bottom: 10px;
    font-weight: 600;
}

.cart-sidebar .coupon-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-sidebar .coupon-list ul li {
    font-size: 13px;
    cursor: pointer;
    color: #3D3D3D;
    padding: 8px 0;
    border-bottom: 1px dashed #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.cart-sidebar .coupon-list ul li:last-child {
    border-bottom: none;
}

.cart-sidebar .coupon-list ul li:hover {
    color: #FFBE76;
}

.cart-sidebar .coupon-list ul li i {
    font-size: 12px;
    color: #FFD100;
}

/* Order Summary Section */
.cart-sidebar .order-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.cart-sidebar .order-summary h4 {
    font-size: 16px;
    color: #202020;
    margin-bottom: 15px;
    font-weight: 600;
}

.cart-sidebar .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #3D3D3D;
}

.cart-sidebar .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
    font-weight: 600;
    font-size: 16px;
    color: #202020;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 60px 0;
}

.empty-cart-message i {
    font-size: 60px;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.empty-cart-message h3 {
    font-size: 24px;
    color: #202020;
    margin-bottom: 15px;
}

.empty-cart-message p {
    font-size: 16px;
    color: #3D3D3D;
    margin-bottom: 25px;
}

.empty-cart-message .browse-courses-btn {
    font-size: 16px;
    border-radius: 6px;
    color: #202020;
    background-color: #FFD100;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.empty-cart-message .browse-courses-btn:hover {
    background-color: #FFBE76;
}

















/*
    User Dashboard - Professional Redesign
    Color palette: Yellow (#FFD54F) and Jaune Abricot (#FFBF69)
*/

/* Main Dashboard Area */
section.user-dashboard-area {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.user-dashboard-box {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    background-color: #fff;
    overflow: hidden;
}

/* Sidebar Styling */
.user-dashboard-sidebar {
    width: 20%;
    background-color: #FFBF69; /* Jaune Abricot */
    position: relative;
}

.user-dashboard-content {
    width: 80%;
    background-color: #fff;
}

.user-dashboard-sidebar .user-box {
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(to bottom, #FFD54F, #FFBF69); /* Yellow to Jaune Abricot gradient */
}

.user-dashboard-sidebar .user-box img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.user-dashboard-sidebar .user-box img:hover {
    transform: scale(1.05);
}

.user-dashboard-sidebar .user-box .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.user-dashboard-sidebar .user-dashboard-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-dashboard-sidebar .user-dashboard-menu ul a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.user-dashboard-sidebar .user-dashboard-menu ul a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-left: 4px solid #FFD54F;
}

.user-dashboard-sidebar .user-dashboard-menu ul .active a {
    background-color: #fff;
    color: #333;
    border-left: 4px solid #FFD54F;
    font-weight: 600;
}

/* Content Area */
.user-dashboard-content .content-title-box {
    text-align: left;
    border-bottom: 1px solid #eee;
    padding: 25px 30px;
    background-color: #fff;
}

.user-dashboard-content .content-title-box .title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.user-dashboard-content .content-title-box .subtitle {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    color: #777;
}

.user-dashboard-content .content-update-box {
    border-top: 1px solid #eee;
    padding: 25px 30px;
    text-align: right;
    background-color: #fafafa;
}

.user-dashboard-content .content-update-box button {
    color: #333;
    background-color: #FFD54F; /* Yellow */
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-dashboard-content .content-update-box button:hover {
    background-color: #FFBF69; /* Jaune Abricot */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Form Elements */
.user-dashboard-content .content-box .form-group {
    padding: 15px 30px;
    margin-bottom: 0;
}

.user-dashboard-content .content-box .form-group .input-group-text {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.user-dashboard-content .content-box .form-group .custom-select {
    padding: 12px 15px;
    border-radius: 4px;
    height: auto;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.user-dashboard-content .content-box .form-group .form-control {
    font-size: 15px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.user-dashboard-content .content-box .input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.user-dashboard-content .content-box .form-group .custom-select:focus,
.user-dashboard-content .content-box .form-group input:focus {
    border: 1px solid #FFD54F;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

.user-dashboard-content .content-box .form-group small.form-text {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #777;
    font-size: 13px;
}

/* TinyMCE Editor */
.user-dashboard-content .content-box .mce-tinymce,
.user-dashboard-content .content-box .mce-panel,
.user-dashboard-content .content-box .mce-top-part::before {
    box-shadow: none;
    border-color: #e0e0e0;
}

.user-dashboard-content .content-box .mce-edit-area.mce-container {
    border-right: 1px solid #e0e0e0 !important;
    cursor: text;
}

/* Form Groups */
.user-dashboard-content .content-box .basic-group,
.user-dashboard-content .content-box .link-group,
.user-dashboard-content .content-box .email-group,
.user-dashboard-content .content-box .password-group {
    padding: 15px 0;
    margin-bottom: 10px;
}

.user-dashboard-content .content-box .password-group {
    padding-bottom: 30px;
    border-top: 1px solid #eee;
}

/* Message Page */
.message-sender-list-box {
    padding-top: 15px;
}

.message-sender-list-box .compose-btn {
    color: #333;
    background-color: #FFD54F;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 4px;
    line-height: 1.35135;
    transition: all 0.3s ease;
    font-weight: 600;
}

.message-sender-list-box .compose-btn:hover,
.message-sender-list-box .compose-btn:focus {
    background-color: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.message-sender-list-box .message-sender-list {
    margin: 0;
    padding: 15px 15px 15px 0;
    list-style: none;
    position: relative;
    min-height: 280px;
    height: calc(100vh - 380px);
    overflow: auto;
}

.message-sender-list-box .message-sender-list .sender-image img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message-sender-list-box .message-sender-list li {
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.message-sender-list-box .message-sender-list li.active,
.message-sender-list-box .message-sender-list li:hover {
    border-color: #eee;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.message-sender-list-box .message-sender-list .sender-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-left: 15px;
}

.message-sender-list-box .message-sender-list .message-time {
    font-size: 13px;
    color: #777;
}

.message-sender-list-box .message-sender-list .message-sender-head {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-sender-list-box .message-sender-list .message-sender-body {
    padding: 0 43px;
    font-size: 14px;
    color: #777;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Message Details */
.message-details-box {
    height: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.message-details-box .empty-box {
    padding-top: 55px;
    text-align: center;
}

.message-details-box .message-details .message-header a {
    display: flex;
    align-items: center;
}

.message-details-box .message-details .message-header img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message-details-box .message-details .message-header {
    min-height: 70px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.message-details-box .message-details .message-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.message-details-box .message-details .message-content {
    background: #f9f9f9;
    padding: 20px;
    overflow: auto;
    min-height: 200px;
    height: calc(100vh - 460px);
}

.message-details-box .message-details .message-content .message-box {
    max-width: 70%;
    min-width: 190px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f2f3f5;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.message-details-box .message-details .message-content .message-box .message {
    white-space: pre-wrap;
    color: #333;
    font-size: 15px;
    overflow-x: auto;
}

.message-details-box .message-details .message-content .message-box .time {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.message-details-box .message-details .message-content .me .message-box {
    background: #FFF5E6; /* Light variation of Jaune Abricot */
    border-left: 3px solid #FFBF69;
}

.message-details-box .message-details .message-content .me {
    display: flex;
    justify-content: flex-end;
}

.message-details-box .message-details .message-footer textarea {
    border-radius: 4px;
    min-height: 100px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.message-details-box .message-details .message-footer textarea:focus {
    border-color: #FFD54F;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

.message-details-box .message-details .message-footer .send-btn {
    color: #333;
    background-color: #FFD54F;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 4px;
    line-height: 1.35135;
    margin-top: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.message-details-box .message-details .message-footer .send-btn:hover,
.message-details-box .message-details .message-footer .send-btn:focus {
    background-color: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Sender Icon */
.message-sender-list-box .message-sender-list .sender-image i {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    background-color: #FFD54F;
    color: #333;
}

/* New Message */
.new-message-details .message-header {
    min-height: 70px;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.new-message-details .message-header span {
    font-weight: 600;
    color: #333;
    vertical-align: middle;
}

.new-message-details .message-header i {
    font-size: 18px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #FFD54F;
    border-radius: 50%;
    color: #333;
    margin-right: 15px;
    margin-left: 10px;
}

.new-message-details .message-body {
    padding: 20px;
}

.new-message-details .message-body .cancel-btn {
    border: none;
    background: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.new-message-details .message-body .cancel-btn:hover {
    color: #FFBF69;
}

.new-message-details .message-body textarea {
    min-height: 120px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.new-message-details .message-body textarea:focus {
    border-color: #FFD54F;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

/* Select2 Styling */
span.select2-selection.select2-selection--single {
    background-color: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    height: auto;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 12px;
    color: #333;
}

.select2-container .select2-selection--single .select2-selection__rendered:focus {
    outline: none;
}

span.select2-selection.select2-selection--single:focus {
    outline: none;
}

span.select2-selection.select2-selection--single[aria-expanded="true"] {
    background-color: #ffffff;
    border-color: #FFD54F;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 10px;
}

span.select2-dropdown, .daterangepicker.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

span.select2-search.select2-search--dropdown {
    padding: 13px 15px;
}

span.select2-results ul li {
    padding: 8px 15px;
    color: #333;
    transition: all 0.2s ease;
}

span.select2-results ul li.select2-results__option--highlighted,
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #FFF5E6;
    color: #333;
}

.select2-container--default .select2-results__option {
    padding: 12px 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #FFD54F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FFD54F;
    color: #333;
}

/* Purchase History */
section.purchase-history-list-area {
    padding: 40px 0 60px;
}

.purchase-history-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.purchase-history-list li {
    border-bottom: 1px solid #f2f3f5;
    padding: 15px 0;
    font-size: 14px;
}

.purchase-history-list .purchase-history-list-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.purchase-history-list .purchase-history-course-img {
    float: left;
}

.purchase-history-list .purchase-history-course-img img {
    width: 135px;
    margin-right: 20px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.purchase-history-list .purchase-history-course-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.purchase-history-list .purchase-history-course-title:hover {
    color: #FFBF69;
}

.purchase-history-list .purchase-history-detail .btn-receipt {
    color: #333;
    background-color: #FFD54F;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.35135;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.purchase-history-list .purchase-history-detail .btn-receipt:hover,
.purchase-history-list .purchase-history-detail .btn-receipt:focus {
    background-color: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.purchase-history-list .purchase-history-items {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.purchase-history-list .purchase-history-items:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Footer */
.footer-top-widget-area {
    border-top: 1px solid #eee;
    padding: 50px 0;
    background-color: #fff;
}

.footer-widget.link-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget.link-widget ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widget.link-widget ul a {
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.footer-widget.link-widget ul a:hover {
    color: #FFBF69;
}

.language-widget button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    min-width: 160px;
    text-align: left;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-widget button:hover,
.language-widget button:focus {
    color: #333 !important;
    background-color: #FFF5E6 !important;
    border-color: #FFBF69;
}

.language-widget button i {
    font-size: 12px;
    margin-right: 10px;
    color: #FFBF69;
}

.language-widget .dropdown-menu {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    margin-bottom: 2px;
    width: 160px;
}

.language-widget .dropdown-menu a {
    padding: 8px 14px;
    color: #333;
    font-weight: 400;
    line-height: 1.43;
    font-size: 14px;
    transition: all 0.2s ease;
}

.language-widget .dropdown-menu a:hover,
.language-widget .dropdown-menu a:focus {
    background-color: #FFF5E6;
    color: #333;
}

.language-widget .dropdown-toggle {
    position: relative;
}

.language-widget .dropdown-toggle::after {
    position: absolute;
    top: 17px;
    right: 14px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-webkit-transform: rotate(180deg);
}

.footer-area {
    background-color: #FFF5E6;
    padding: 30px 0;
    border-bottom: 6px solid #FFBF69;
}

.copyright-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 0;
}

.copyright-text img {
    margin-right: 20px;
    height: 30px;
}

.footer-menu .nav-item:not(:last-child) {
    margin-right: 20px;
}

.footer-menu .nav-link {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.footer-menu .nav-link:hover {
    color: #FFBF69;
}

/* Payment Modals */
.payment-in-modal form .stripe,
.payment-in-modal form .paypal {
    color: #333;
    background-color: #FFD54F;
    border: none;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-in-modal form .stripe:hover,
.payment-in-modal form .paypal:hover {
    background-color: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.purchased a,
.already_purchased a {
    width: 100%;
    border: 0;
    color: #333;
    background-color: #FFD54F;
    padding: 12px;
    font-size: 16px;
    line-height: 1.43;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.purchased a:hover,
.purchased a:focus,
.already_purchased a:hover,
.already_purchased a:focus {
    background: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tags Input */
div.tagsinput span.tag {
    background-color: #FFD54F;
    border-color: #FFD54F;
    color: #333;
    border-radius: 30px;
    padding: 3px 10px;
}

div.tagsinput span.tag a {
    color: #333;
    opacity: 0.5;
}

div.tagsinput span.tag a:hover {
    opacity: 1;
}

/* Utilities and Responsiveness */
.hidden {
    display: none;
}

@media (max-width: 992px) {
    .user-dashboard-sidebar {
        width: 25%;
    }
    
    .user-dashboard-content {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .user-dashboard-box {
        flex-direction: column;
    }
    
    .user-dashboard-sidebar {
        width: 100%;
    }
    
    .user-dashboard-content {
        width: 100%;
    }
    
    .user-dashboard-content .content-box .form-group {
        padding: 10px 15px;
    }
    
    .message-details-box .message-details .message-content .message-box {
        max-width: 85%;
    }
}

@media (max-width: 576px) {
    .user-dashboard-sidebar .user-box img {
        height: 90px;
        width: 90px;
    }
    
    .purchase-history-list .purchase-history-course-img img {
        width: 100px;
    }
    
    .message-details-box .message-details .message-content .message-box {
        max-width: 95%;
    }
}

/* Custom Radio Button Redesign */
.custom-radio:checked,
.custom-radio:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio:checked + label,
.custom-radio:not(:checked) + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #333;
    font-weight: 500;
}

.custom-radio:checked + label:before,
.custom-radio:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 100%;
    background: #fff;
    transition: all 0.3s ease;
}

.custom-radio:checked + label:before {
    border-color: #FFBF69;
}

.custom-radio:checked + label:after,
.custom-radio:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFBF69;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.custom-radio:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

.custom-radio:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

/* Filter */
.filter_type h6 {
    margin: 15px 0;
    padding: 15px 0 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.filter_type ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.filter_type ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.filter_type ul .parent-category {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.filter_type .filter-title {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Card Styles */
.bg-quiz-result-info {
    background-color: #FFD54F;
    padding: 15px;
    border-radius: 6px;
    color: #333;
}

.login-form, .register-form, .forgot-password-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.mobile-main-nav .all-category-devided {
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-top: 5px;
}

/* Quiz Options */
.quiz-options label {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.quiz-options label:hover {
    background-color: #FFF5E6;
    border-color: #FFBF69;
}

.quiz-options input[type="radio"]:checked + label {
    background-color: #FFF5E6;
    border-color: #FFBF69;
    color: #333;
}

/* Button Styles */
.btn-primary {
    color: #333;
    background-color: #FFD54F;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: #FFBF69;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover, 
.btn-secondary:focus {
    background-color: #f0f0f0;
    border-color: #d5d5d5;
}

/* Table Styles */
table.table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

table.table th {
    background-color: #f9f9f9;
    color: #333;
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

table.table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

table.table tr:last-child td {
    border-bottom: none;
}

table.table tr:hover {
    background-color: #FFF5E6;
}

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: none;
}

.alert-success {
    background-color: #e3f7e8;
    color: #0d6832;
}

.alert-danger {
    background-color: #f8e7e7;
    color: #9e0b0f;
}

.alert-warning {
    background-color: #FFF5E6;
    color: #856404;
}

.alert-info {
    background-color: #e3f4fa;
    color: #0c5460;
}

/* Badges */
.badge {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
}

.badge-primary {
    background-color: #FFD54F;
    color: #333;
}

.badge-secondary {
    background-color: #f0f0f0;
    color: #555;
}

.badge-success {
    background-color: #28a745;
    color: #fff;
}

/* Progress Bar */
.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    background-color: #FFD54F;
}

/* Card-Based Layout */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card .card-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card .card-body {
    padding: 20px;
}

.card .card-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 15px 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .user-dashboard-content .content-title-box .title {
        font-size: 20px;
    }
    
    .user-dashboard-content .content-box .form-group {
        padding: 10px;
    }
    
    .message-sender-list-box .message-sender-list .message-sender-body {
        padding: 0 20px;
    }
    
    .purchase-history-list .purchase-history-course-img {
        float: none;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .purchase-history-list .purchase-history-course-img img {
        width: 80%;
        margin-right: 0;
    }
}









.language-switcher {
  margin-right: 10px;
  display: inline-block;
}

.language-switcher .btn {
  padding: 5px 12px;
  font-size: 14px;
}