/* Global Classes */
:root {
    --bs-blue: #0014dc;
    --bs-link-color: #0014dc;
    --bs-link-hover-color: #051464;
    --bs-white: #fff;
    --bs-deep-blue: #051464;
    --bs-black: #000;
    --bs-grey-1: #696969;
    --bs-grey-2: #f0f0f0;
    --bs-grey-3: #DCE1E1;
    --bs-grey-4: #aaa;
    --bs-border-radius: 0;
}

/* Global Body Styles */

body {
    font-family: SLBsans;
    font-size: 16px;
    font-weight: 200;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.text-normal-color {
    color: var(--bs-black);
}

/* Custom Font Faces */
@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-Regular.otf) format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-Bold.otf) format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-Book.otf) format("opentype");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-Light.otf) format("opentype");
    font-style: normal;
    font-weight: 50;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-Medium.otf) format("opentype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-BoldItalic.otf) format("opentype");
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-LightItalic.otf) format("opentype");
    font-style: italic;
    font-weight: 50;
}

@font-face {
    font-family: "SLBSans";
    src: url(../fonts/SLBSans/SLBSans-MediumItalic.otf) format("opentype");
    font-style: italic;
    font-weight: 300;
}

/* Global Classes */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: SLBSans;
    font-weight: 200;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 3rem;
}


a {
    color: var(--bs-blue);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.text-primary {
    color: var(--bs-blue) !important;
}



/* Gloab Navbar Styles */
/*
.navbar {
    --bs-navbar-active-color: var(--bs-white);
}*/

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-white);
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--bs-blue);
}

.fw-bold {
    font-weight: 500 !important;
}

.bg-gray-2 {
    background: var(--bs-grey-2);
}
/* button Styles */

.btn {
    --bs-btn-padding-x: 1.6rem;
    --bs-btn-padding-y: 0.5rem;
}

    .btn.btn-primary {
        background: var(--bs-blue);
        border: none;
    }

.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-blue);
    --bs-btn-border-color: var(--bs-blue);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-deep-blue);
    --bs-btn-hover-border-color: var(-bs-deep-blue);
    --bs-btn-active-bg: var(--bs-deep-blue);
    --bs-btn-active-border-color: var(--bs-deep-blue);
}

    .btn-primary:hover {
        color: var(--bs-white);
        background-color: var(--bs-btn-hover-bg);
        border-color: var(--bs-btn-hover-border-color);
        text-decoration: none;
    }


.btn-secondary {
    --bs-btn-color: var(--bs-blue);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-blue);
    --bs-btn-hover-border-color: var(--bs-blue);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--bs-blue);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);
    --bs-text-decoration: none;
    --bs-btn-hover-text-decoration: none;
}

.btn-outline-secondary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-white);
    --bs-btn-hover-color: var(--bs-blue);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-blue);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: var(--bs-white);
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}

.btn.btn-secondary:hover {
    text-decoration: var(--bs-btn-hover-text-decoration);
}

.global-navbar {
    background: var(--bs-blue);
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid var(--bs-white);
}

.global-navbar-container {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0;
}

.global-navbar-logo {
    background: var(--bs-white);
    height: 58px;
    padding: 0 15px;
    border-right: 1px solid #6E8CC8;
    display: flex;
    align-items: center;
}

    .global-navbar-logo:hover {
        text-decoration: none;
        background: var(--bs-blue);
    }

        .global-navbar-logo:hover .global-navbar-logo-img {
            filter: brightness(0) invert(1);
        }


.global-navbar-menu-item {
    height: 58px;
    display: flex;
    align-items: center;
    border-right: 1px solid #6E8CC8;
    position: static;
}

.global-navbar-menu .border-left {
    border-left: 1px solid #6E8CC8;
}

.wishlist-badges {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    color: blue;
    padding: 4px;
    position: relative;
    top: -16px;
    left: -7px;
    margin-right: -7px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.shoppingcart .badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    color: blue;
    padding: 4px;
    position: relative;
    top: -16px;
    left: -7px;
    margin-right: -7px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.global-navbar-menu-item.active {
    background: var(--bs-white);
    color: var(--bs-blue);
}

    .global-navbar-menu-item.active a {
        color: var(--bs-blue);
    }

        .global-navbar-menu-item.active a:hover {
            color: var(--bs-white);
        }




.navbar-expand-xl .navbar-nav .global-navbar-link {
    height: 58px;
    display: flex;
    align-items: center;
    color: var(--bs-white);
    font-size: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.global-navbar-link:hover {
    text-decoration: none;
    background: var(--bs-link-hover-color);
    color: var(--bs-white);
}

.global-navbar-menu-item .dropdown-toggle::after {
    display: none;
}

.signout a {
    padding: 10px 15px 10px;
}

.signout .dropdown-menu .dropdown-item:hover {
    background: var(--bs-blue);
    color: var(--bs-white);
    text-decoration: none;
}

.signout .dropdown-toggle::after {
    border: 0;
}


.signout .dropdown-toggle.show {
    background: transparent;
    color: white;
}

.global-navbar .navbar-nav .signout .global-navbar-link.dropdown-toggle.show {
    background: var(--bs-white);
    color: var(--bs-blue);
}

.signout .dropdown-menu .dropdown-item {
    color: var(--bs-blue);
}

.signout ul.dropdown-menu.p-0.show {
    min-width: 102px;
}

.signout .global-navbar-link[aria-expanded="true"] .material-icons {
    color: #0014dc;
}

/*.global-navbar-menu-right .global-navbar-menu-item {
    min-width: 58px;
    justify-content: center;
} */

.global-navbar-menu-right .global-navbar-link {
    padding: 0;
    justify-content: center;
}

.search-icon-li .global-navbar-link[aria-expanded="true"] {
    background-color: #fff;
    color: var(--bs-blue);
}

    .search-icon-li .global-navbar-link[aria-expanded="true"] .material-icons {
        color: var(--bs-blue);
    }

.global-navbar-icon {
    font-size: 1.7rem;
    color: var(--bs-white);
}

.global-navbar-logo-right {
    background: var(--bs-white);
    height: 58px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    border-left: 1px solid #6E8CC8;
}

    .global-navbar-logo-right:hover {
        background: var(--bs-blue);
    }

        .global-navbar-logo-right:hover .global-navbar-slb-logo-img {
            filter: brightness(0) invert(1);
        }


.global-navbar-logo-img {
    height: 25px;
}

.global-navbar-slb-logo-img {
    height: 35px;
}

.global-navbar-searchbox-wrapper {
    width: 100%;
    background: var(--bs-white);
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.global-navbar-searchbox {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 5.5rem;
    border-bottom: 1px solid var(--bs-grey-3);
    height: 80px;
}

.global-navbar-searchbox-icon {
    color: var(--bs-blue);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

.global-navbar-searchbox-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    padding: 0.5rem 0;
}

.global-navbar-searchbox-close {
    color: var(--bs-blue);
    font-size: 1.5rem;
    margin-left: 1rem;
    cursor: pointer;
}

.global-navbar-searchbox-input::placeholder {
    color: #aaa;
    font-weight: 200;
}


.global-navbar .navbar-nav .nav-link.active,
.global-navbar .navbar-nav .nav-link.show {
    color: var(--bs-blue);
    background: var(--bs-white);
}




/* Submenu overlay styles */
.submenu-wrap.dropdown-menu {
    background: var(--bs-white);
    width: 100%;
    padding: 0;
    margin-top: 1px;
}

.submenu-img-wrap {
    height: 185px;
    overflow: hidden;
}

.submenu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.submenu-heading {
    color: var(--bs-white);
    font-size: 1.1rem;
    font-weight: 500;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: .75rem 1.5rem;
}

.submenu-list li a {
    font-size: 1rem;
    font-weight: 500;
    padding: .75rem 1.5rem;
    /* background: red; */
    display: block;
    border-bottom: 1px solid var(--bs-grey-3);
}

    .submenu-list li a:hover {
        color: var(--bs-white);
        background-color: var(--bs-blue);
        text-decoration: none;
    }

.abt-exp-btn {
    margin-bottom: 30px
}

.at-glance-wrapper {
    background: var(--bs-grey-2);
    padding: 35px 30px 30px;
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column;
}

    .at-glance-wrapper .hd {
        font-size: 1.6rem;
        color: var(--bs-blue);
        font-weight: 500;
    }

.at-glance-card {
    background: var(--bs-white);
    border: 1px solid var(--bs-grey-3);
    padding: 15px;
    height: 100%;
}

.at-glance-card-hd {
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--bs-blue);
    margin-bottom: 0.5rem;
}

.at-glance-card .text-normal-color {
    line-height: 1.1;
    font-size: 1rem;
    color: var(--bs-black);
}


/* Hero Banner Styles */

.hero-container .hero-img-txt-btn {
    margin-top: 155px;
}

.hero-container h1 {
    font-size: 3.5rem;
    font-weight: 50;
}

.hero-image-container::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0) 50%)
}

.hero-image-container img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 600px;
}

/* Footer Componenet */

.footer-global-wrapper {
    background-color: var(--bs-blue);
    color: var(--bs-white);
}

    .footer-global-wrapper a {
        color: var(--bs-white);
        line-height: 2;
    }

.footer-copyright-menu-wrapper {
    background-color: var(--bs-white);
    color: var(--bs-black);
    padding: 20px 0;
}

    .footer-copyright-menu-wrapper a {
        color: var(--bs-black);
    }

    .footer-copyright-menu-wrapper .list-inline-item:not(:last-child) {
        margin-right: 1.5rem;
    }

/* Top Rated Section */
/* .top-rated-section {
    background: var(--bs-grey-2);
} */

.top-rated-carousel .carousel-control-prev,
.top-rated-carousel .carousel-control-next {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    /* background: var(--bs-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    opacity: 1;
    z-index: 2;
}

.trending-courses {
    background-color: var(--bs-white);
}

.top-rated-carousel .carousel-control-prev {
    left: -4rem;
}

.top-rated-carousel .carousel-control-next {
    right: -4rem;
}

.course-card {
    background: var(--bs-white);
    cursor: pointer;
    min-height: 350px;
    height: 100%;
    /* padding: 2.2rem 1.5rem 1.5rem 1.5rem !important; */
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-grey-3);
}

    .course-card .course-main {
        z-index: 1;
        position: relative;
        transition: opacity 0.25s cubic-bezier(.4, 0, .2, 1);
    }

    .course-card .hd {
        font-size: 1.3rem;
        font-weight: 300;
        line-height: 1.25;
    }

    .course-card .small {
        color: var(--bs-grey-1);
        font-size: 0.9rem;
    }

    .course-card .btn-link {
        font-weight: 300;
        text-decoration: none;
        color: var(--bs-blue);
        display: flex;
        align-items: center;
        gap: 0.2em;
        transition: color 0.2s;
    }

    .course-card .course-overlay {
        pointer-events: none;
        opacity: 0;
        transform: translateY(100%);
        transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1);
        z-index: 2;
        box-shadow: none;
        display: block;
        background: var(--bs-blue);
        color: var(--bs-white);
    }

.top-rated-section .course-overlay img {
    filter: grayscale(100%) brightness(0%) invert(100%);
}

.course-card:hover .course-overlay {
    opacity: 1;
    transform: translateY(0);
}

.course-card:hover .course-main {
    opacity: 0;
}

.course-card:hover .course-overlay .hd {
    font-size: 1rem;
}

.course-card:hover .course-overlay .desc {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="%23696969" d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6l6 6l1.41-1.41z"/%3E%3C/svg%3E');
}

    .carousel-control-prev-icon:hover {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%230014dc'%3E%3Cpath d='M560-240 320-480l240-240 56 56-184 184 184 184-56 56Z'/%3E%3C/svg%3E");
    }

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="%23696969" d="M8.59 16.59L13.17 12l-4.58-4.59L10 6l6 6l-6 6l-1.41-1.41z"/%3E%3C/svg%3E');
}

    .carousel-control-next-icon:hover {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%230014dc'%3E%3Cpath d='M504-480 320-664l56-56 240 240-240 240-56-56 184-184Z'/%3E%3C/svg%3E");
    }



/* Upcoming confirmed classes custom styles */
/* .upcoming-classes-section {
    background: var(--bs-grey-2);

} */
.custom-class-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    background: var(--bs-white);
    border: 1px solid var(--bs-grey-3);
}

    .custom-class-card .card-body {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

.register-link {
    font-weight: 300;
    text-decoration: none;
    color: var(--bs-blue);
    display: flex;
    align-items: center;
    gap: 0.2em;
    transition: color 0.2s;
}

    .register-link:hover {
        text-decoration: none;
    }

.date-block {
    font-size: 1rem;
    line-height: 1.1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.25;
}

/* Card overlay for upcoming classes */
.custom-class-card {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1);
    z-index: 2;
    box-shadow: none;
    display: block;
    background: var(--bs-blue);
    color: var(--bs-white)
}

.custom-class-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-overlay .overlay-title {
    font-weight: 300;
    line-height: 1.25;
}

.card-overlay .overlay-location {
    font-weight: 500;
}


/* Navigation and submenu */
/* Courses submenu custom styles */

.courses-left-menu .nav .nav-link, .courses-middle-list .nav .nav-link,
.courses-right-list .nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--bs-grey-3);
    color: var(--bs-blue);
}

.courses-left-menu .nav .nav-item .nav-link {
    font-weight: 500;
}

.courses-left-menu .nav-link:hover {
    background: var(--bs-blue);
    color: var(--bs-white);
    text-decoration: none;
}

.courses-left-menu .nav .nav-item .nav-link.active {
    background: var(--bs-blue);
    color: var(--bs-white);
}


.courses-middle-list .nav .nav-link,
.courses-right-list .nav .nav-link {
    background: transparent;
}

.courses-middle-list .navbar-nav .nav-link.active {
    color: var(--bs-blue);
}

.courses-middle-list .nav .nav-link:hover, .courses-right-list .nav .nav-link:hover,
.courses-middle-list.nav-link.active, .courses-middle-list.nav-link.active:hover, .courses-right-list .nav-link.active {
    background: var(--bs-grey-2);
    color: var(--bs-blue);
    text-decoration: none;
}

.courses-left-menu, .courses-right-list, .courses-middle-list {
    max-height: 500px;
    overflow-y: auto;
}


    .courses-right-list .learning-journey .border-end {
        border-right: 2px solid var(--bs-white) !important;
    }

    .courses-right-list .learning-journey .card-body {
        border-color: var(--bs-grey-3);
    }

.courses-left-menu, .courses-middle-list, .courses-right-list {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-grey-4) var(--b-gs-grey-2);
}

    .courses-left-menu::-webkit-scrollbar, .courses-middle-list::-webkit-scrollbar, .courses-right-list::-webkit-scrollbar {
        width: 6px;
        background: var(--b-gs-grey-2);
    }

    .courses-left-menu::-webkit-scrollbar-thumb, .courses-middle-list::-webkit-scrollbar-thumb, .courses-right-list::-webkit-scrollbar-thumb {
        background: var(--b-gs-grey-4);
        border-radius: 3px;
    }

/* featured widgets */
.featured-widgets {
    border: 1px solid var(--bs-grey-3);
    background: var(--bs-white);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    /* Ensures card has enough height for overlay */
}

    .featured-widgets .card-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

.ft-wd-card-body {
    background: var(--bs-grey-2);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

    .ft-wd-card-body .hd {
        color: var(--bs-blue);
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }


.featured-widgets .card-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-blue);
    color: var(--bs-white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1), transform 0.35s cubic-bezier(.4, 0, .2, 1);
    padding: 2rem;
    pointer-events: none;
}

.featured-widgets:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.featured-widgets .card-overlay .btn,
.featured-widgets .ft-wd-card-body .btn {
    border-color: var(--bs-white);
    color: var(--bs-blue);
    background: var(--bs-white);
    text-decoration: none;
    padding: 10px 20px;
}



.find-training-button {
    font-weight: 300;
}


@media screen and (min-width: 1194px) {
    .sign-up-button {
        max-width: 140px;
        margin-bottom: 50px;
    }
}

/* minicart css */
#shoppingCartWrapper {
    .custom-thead th

{
    background-color: #dce1e1 !important;
}

thead th {
    border-right: 1px solid #c8cdcd;
    border-bottom: none;
}

    thead th:last-child {
        border: none !important;
    }

.table {
    border-bottom: 1px solid #dee2e6;
}

tbody td {
    border: none;
    border-right: 1px solid #c8cdcd;
}

.extra-small-text {
    font-size: 0.65rem;
}

tbody td:last-child {
    border-right: none;
}

}

/* Courses submenu custom styles */

.courses-left-menu .nav .nav-link,
.courses-middle-list .nav .nav-link,
.courses-right-list .nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--bs-grey-3);
    color: var(--bs-blue);
}

.courses-left-menu .nav-link:hover {
    background: var(--bs-blue);
    color: var(--bs-white);
    text-decoration: none;
}

.courses-left-menu .nav-link.active {
    background: var(--bs-blue);
    color: var(--bs-white);
}

.courses-middle-list .nav .nav-link,
.courses-right-list .nav .nav-link {
    background: transparent;
}

.courses-middle-list .navbar-nav .nav-link.active {
    color: var(--bs-blue);
}

.courses-middle-list .nav-link:hover,
.courses-right-list .nav-link:hover,
.courses-middle-list.nav-link.active,
.courses-right-list .nav-link.active {
    background: var(--bs-grey-2);
    color: var(--bs-blue);
    text-decoration: none;
}

.courses-left-menu,
.courses-right-list,
.courses-middle-list {
    max-height: 500px;
    overflow-y: auto;
}

    .courses-right-list .learning-journey .mb-2 {
        margin-bottom: 10px !important;
    }

    .courses-right-list .learning-journey .border-end {
        border-right: 5px solid var(--bs-white) !important;
    }

    .courses-right-list .learning-journey .card-body {
        border-color: var(--bs-grey-3);
    }



.courses-left-menu,
.courses-middle-list,
.courses-right-list {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-grey-4) var(--b-gs-grey-2);
}

    .courses-right-list .learning-journey {
        margin-bottom: 20px;
    }

    .courses-left-menu::-webkit-scrollbar,
    .courses-middle-list::-webkit-scrollbar,
    .courses-right-list::-webkit-scrollbar {
        width: 6px;
        background: var(--b-gs-grey-2);
    }

    .courses-left-menu::-webkit-scrollbar-thumb,
    .courses-middle-list::-webkit-scrollbar-thumb,
    .courses-right-list::-webkit-scrollbar-thumb {
        background: var(--b-gs-grey-4);
        border-radius: 3px;
    }

/*Breadcrumb*/
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.breadcrumb-main {
    display: flex;
    background-color: var(--bs-white);
}

/* Course page css */
.banner-section {
    background-color: var(--slb-grey-1);
    padding-top: 12rem !important;
    color: var(--slb-blue);
    padding-bottom: 5rem;
}

    .banner-section .tagline {
        color: #696969;
        font-size: 20px;
    }

        .banner-section .tagline p {
            margin-bottom: 0;
            font-size: 20px;
        }

.contact-text a {
    color: #fff;
}

.reg-btns a:hover {
    text-decoration: none;
    background-color: #fff;
}


.course-wrapper {
    .custom-tabs .nav-link

{
    background-color: #ffffff;
    color: #0013dc;
    border-bottom: 1px solid var(--bs-grey-2);
    font-weight: 500;
    border-radius: 0;
    padding: 1rem;
}

.custom-flex {
    background-color: #f7f7f7;
}

.classsection-border {
    border: none;
}

.custom-flex .badge {
    line-height: 20px;
    font-size: 16px;
}

.custom-tabs .nav-link.active {
    color: #0013dc;
    border-bottom: 6px solid #0013dc;
    background-color: #f0f0f0;
    font-weight: 500;
    padding: 1rem;
}

.tab-content-area {
    background-color: #f0f0f0;
    padding: 10px 0 20px 20px;
    min-height: 500px;
    border-left: none;
    border-radius: 0;
}

.badge.border-start {
    border-left: 1px solid #051464 !important;
}

.bg-custom-header {
    background-color: #ccc !important;
    color: #0013dc;
}

.text-confirmed {
    color: #0013dc !important;
}

.bg-body-blue {
    background-color: #0013dc !important;
}

.bg-custom-body {
    background-color: #0013dc !important;
}

.alert-custom {
    background-color: #051464 !important;
    border: none;
}

.start-end-box {
    background-color: #ffffff;
    padding: 0.4rem;
    text-align: left;
    width: 30%;
    line-height: 1.2rem;
}

.bg-custom-alert {
    background-color: #051464 !important;
}

.custom-mobile-bg {
    background-color: #051464 !important;
    color: white;
    margin-right: 16px;
}

.confirmed-class-badge.course-page {
    right: 20px;
    width: 61px;
    position: absolute;
    height: 41px;
    top: 60px;
    opacity: 1 !important;
}

.reg-btns a:hover {
    text-decoration: none;
    background-color: var(--bs-white);
}

}

.star-wrapper {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}
    /* stars and learner journey in course page */
    .star-wrapper .material-icons {
        font-size: 24px;
        display: block;
    }

.star-base {
    color: #ccc; /* gray */
}

.star-overlay {
    color: #0013dc; /* Bootstrap primary */
}

.stars small.text-muted {
    margin-bottom: 3px;
}

.card.shadow-sm.course-upcoming-class {
    border: none;
}

a.learner-journey {
    background-color: white;
    color: #0013dc;
    border: 1px solid #0013dc;
    width: 130px;
}

    a.learner-journey:hover {
        background-color: #051464;
        text-decoration: none;
    }

        a.learner-journey:hover span .material-icons {
            margin-left: 5px;
        }




/* Mobile, Tablet (sm, ≥576px and <992px) */
@media (max-width: 767px) {

    .global-navbar-menu-item span.material-icons {
        line-height: inherit;
    }


    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding-right: calc(var(--bs-gutter-x) * 1);
        padding-left: calc(var(--bs-gutter-x) * 1);
    }

    .navbar-expand-xl .navbar-nav .global-navbar-link {
        display: block;
    }

    .course-wrapper {
        padding-top: 16px !important;
    }

    .custom-mobile-bg {
        margin-right: 0px !important;
    }

    .shoppingcart {
        display: block !important;
    }

    .banner-section {
        padding-top: 4.0rem !important;
    }

    .profile-text-mobile span {
        color: var(--bs-white);
        vertical-align: middle;
    }

    .hero-image-container img {
        height: 450px;
    }

    /* Sign in full width */
    .sign-up-button {
        width: 100%;
        display: none !important;
    }

    .dropdown-menu {
        width: 100% !important;
        padding-top: 2rem !important;
        left: 0 !important;
        padding-bottom: 2rem !important;
        right: 0 !important;
        margin: 0 auto;
    }

    .footer-global-wrapper .container {
        padding-top: 2rem !important;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .footer-social h5.hide-mobile {
        display: none !important;
    }

    /* Accordion header */
    .footer-accordion .accordion-button {
        background-color: var(--bs-blue);
        color: var(--bs-white);
        font-weight: 500;
        min-height: 60px;
        box-shadow: none;
    }

    .accordion-item .mb-4 {
        margin-bottom: 0 !important;
    }
    /* Remove default caret */
    .footer-accordion .accordion-button::after {
        display: none;
    }

    /* Add material icons */
    .footer-accordion .accordion-button .material-icons {
        margin-left: auto;
        font-size: 1.3rem;
    }

    /* Accordion body */
    .footer-accordion .accordion-body {
        background-color: #fff;
        padding: 0;
    }

    .footer-accordion ul li {
        border-bottom: 1px solid #ddd;
        padding: 0.75rem 1rem;
    }

        .footer-accordion ul li:last-child {
            border-bottom: none;
        }

        .footer-accordion ul li a {
            color: var(--bs-blue);
            text-decoration: none;
            display: block;
            font-weight: bold;
        }

    /* Center social icons */
    .footer-social {
        text-align: center !important;
        margin-top: 2rem;
    }

    .footer-global-wrapper .col-12.col-md-3 {
        display: flex;
        flex-direction: column; /* normal column order */
    }

        /* Force logo above button */
        .footer-global-wrapper .col-12.col-md-3 img {
            order: -1; /* push logo to top */
            margin-bottom: 1rem; /* space below logo */
            max-width: 80px; /* optional: control logo size */
            margin-left: 6px;
        }

    .footer-copyright-menu-wrapper {
        padding: 0;
    }
    /* Default icon: plus */
    .accordion-button .toggle-icon::before {
        content: 'add';
        font-family: 'Material Icons';
        font-size: 1.6rem;
        display: inline-block;
    }

 .jobProfileTP .accordion-item {
        background-color: var(--bs-white) !important;
    }

    .jobProfileTP .d-sm-block {
        display: none !important;
    }
    /* When accordion is expanded: minus */
    .accordion-button:not(.collapsed) .toggle-icon::before {
        content: 'remove';
    }

    .accordion-item {
        border: 1px solid transparent !important;
        background-color: #4a65ce !important;
    }

    .footer-copyright-mobile {
        margin-bottom: 1rem;
        border-top: 1px solid #dee2e6;
        padding-top: 1rem;
    }

    .footer-links {
        margin-bottom: 2rem !important;
    }
    /* Top Rated Mobile view css */
    .mt-mobile {
        margin-top: 5rem !important;
    }

    .floating-social-icons {
        display: none !important;
    }
    /* minicart css */
    .dropdown-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
    }


    #shoppingCartWrapper {
        margin-top: 3.4rem !important;
        top: 0;
        z-index: 1050;
        background: white;
        width: 93vw;
        right: -120% !important;
        margin: 0 10px 0 10px;
    }

    #shoppingCartWrapper {
        th .fs-6, td

{
    font-size: 0.8rem !important;
    padding: 0.25rem;
    font-weight: normal;
}

}

.hero-container .hero-img-txt-btn {
    margin-top: 70px;
}
/* course details page*/
.custom-flex {
    flex-wrap: wrap;
}

    .custom-flex .hyphen {
        font-size: 13px;
    }

/* search mobile css start here */
.container.container-mobile {
    display: flex !important;
    flex-direction: column;
    gap: .5rem;
    padding-top: 0 !important;
}

    .container.container-mobile > .mobile-filters-row {
        order: 0;
    }
    /* toggle button row */
    .container.container-mobile > aside {
        order: 1;
        width: 100%;
    }
    /* filters content */
    .container.container-mobile > .search-row {
        order: 2;
    }
    /* search + date row */
    .container.container-mobile > main {
        order: 3;
        width: 100%;
    }
/* cards */
.main-content-row {
    display: contents;
}

.cards-grid.grid-2 {
    grid-template-columns: repeat(1, 1fr) !important;
}

.filters {
    min-height: auto;
    max-height: 320px;
}
/* Collapse (filters) styling on mobile */
#filtersCollapse {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: .5rem;
    background: #fff;
    border-radius: .25rem;
}

    /* Make sure filters sections look okay */
    #filtersCollapse .seach-filter-section {
        width: 100%;
    }

    #filtersCollapse .filters {
        padding: .5rem;
    }

/* ensure rows behave full width inside the flex container */
.container.container-mobile > .row {
    /*width: 100%;*/
}

.grid-list-group {
    display: none !important;
}

.collapse {
    transition: height 0.3s ease;
}

.mobile-filters-row {
    display: block;
    width: 100%;
}

/* Filters toggle button */
.filters-toggle {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    color: var(--bs-blue); /* Blue label and arrow */
    font-weight: 500;
    font-size: 1rem;
}

    .filters-toggle:focus {
        outline: none;
        box-shadow: none;
    }

.filters-chevron.material-icons {
    vertical-align: middle;
    font-size: 22px;
    color: var(--bs-blue);
}

/* Full-width divider line */
.filters-divider {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 0 0.75rem 0;
}

/* Collapse hides filters by default on mobile */
#filtersCollapse.collapse:not(.show) {
    display: none !important;
}

.search-row {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

main {
    order: 3;
}

#pagination .pagination .page-item {
    margin: 0 !important;
}

.pagination .page-item:not(:first-child):not(:last-child) {
}

.pagination .material-icons {
    font-size: 3.5rem;
    vertical-align: middle;
}


.pagination .arrow-mobile {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

    .pagination .arrow-mobile .material-icons {
        color: var(--bs-blue);
        line-height: 0;
        vertical-align: middle;
    }

/* Small gap between items */
.pagination {
    display: flex;
    align-items: center;
    gap: 2px;
}


/*.pagination .disabled {
        display: none !important;
    }*/

#searchScheduledDisabled ul li.disabled {
    display: none !important;
}

/* search mobile css end here */
}

@media (min-width: 1025px) {
    /* Header fixed position in desktop */
    section.header.nextCommon {
        position: fixed;
        width: 100%;
        z-index: 99;
    }

    section.hero-container {
        padding-top: 3.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .jobProfileTP .accordion-item {
        background-color: var(--bs-white) !important;
    }

    .jobProfileTP .d-sm-block {
        display: none !important;
    }

    .JobProfileTp .objective-wrapper h5 {
        font-weight: 500;
    }

    .JP-proficiencyLevl-section {
        margin-left: 0;
        margin-right: 0;
    }

    .order-md-2 {
        order: 0 !important;
    }
    
    .themeBasedTP .accordion-item {
        background-color: var(--bs-white) !important;
    }

    .custom-mobile-bg {
        margin-right: 0px !important;
    }
    
    .custom-flex {
        flex-wrap: wrap;
    }
}
 

@media (min-width: 768px) and (max-width: 1024px) {
    /* Sign-in button full width */

    .global-navbar .global-navbar-container {
        padding-right: calc(var(--bs-gutter-x) * 1.5);
        padding-left: calc(var(--bs-gutter-x) * 1.5);
    }

    .hero-container .hero-img-txt-btn {
        margin-top: 175px;
    }

    .banner-section {
        padding-top: 6.0rem !important;
    }

    .carousel-control-prev, .carousel-control-next {
        display: none !important;
    }



    .footer-accordion {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem; /* optional spacing between accordions */
    }

    .dropdown-menu {
        min-width: 400px;
    }

    .footer-social h5.hide-mobile {
        display: none !important;
    }

    .sign-up-button {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }

    /* Accordion styling */
    .footer-accordion .accordion-button {
        background-color: var(--bs-blue);
        color: var(--bs-white);
        font-weight: 600;
        padding: 1rem;
        min-height: 60px;
        font-size: 1.1rem;
        pointer-events: auto;
        box-shadow: none;
    }

        .footer-accordion .accordion-button::after {
            display: none;
        }

        .footer-accordion .accordion-button .material-icons {
            margin-left: auto;
            font-size: 1.3rem;
        }

    .footer-accordion .accordion-body {
        background-color: #fff;
        padding: 0;
    }

    .footer-accordion ul li {
        border-bottom: 1px solid #ddd;
        padding: 0.75rem 1rem;
    }

        .footer-accordion ul li:last-child {
            border-bottom: none;
        }

        .footer-accordion ul li a {
            color: var(--bs-blue);
            text-decoration: none;
            display: block;
            font-weight: bold;
        }

    /* Social links left aligned */
    .footer-social {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 2rem;
    }



    /* FAQ section spacing */
    .footer-copyright-menu-wrapper {
        padding: 1rem 0;
    }

    /* Accordion visuals */
    .footer-global-wrapper .container {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .footer-global-wrapper .accordion-item {
        border-right: 0 !important;
        border-left: 0 !important;
    }

    .accordion-item {
        border: 1px solid transparent !important;
        background-color: #4a65ce !important;
    }

    .accordion-button .toggle-icon::before {
        content: 'add';
        font-family: 'Material Icons';
        font-size: 1.6rem;
        display: inline-block;
    }

    .accordion-button:not(.collapsed) .toggle-icon::before {
        content: 'remove';
    }

    /* Ensure accordion works */


    .footer-accordion .accordion-button:not(.collapsed) + .accordion-collapse {
        display: block !important;
    }

    .footer-links .list-inline-item {
        display: block !important;
        margin-bottom: 0.5rem;
    }

    .footer-copyright-menu-wrapper .col-md-9 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        order: 1 !important;
    }

    .footer-copyright-menu-wrapper .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        order: 2 !important;
    }

    .floating-social-icons {
        display: none !important;
    }

    /* minicart css */
    .dropdown-menu {
        min-width: 400px;
    }

    .mt-md-7 {
        margin-top: 16rem !important;
    }

    #shoppingCartWrapper {
        width: 400px !important;
        right: 0;
        left: auto;
        background: var(--bs-white);
        z-index: 1050;
        margin-top: 0 !important;
    }

    li.global-navbar-menu-item {
        display: block;
    }

    .find-training-button {
        width: auto !important;
    }

    #topRatedCarousel .row {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-copyright-mobile {
        border-top: 1px solid #dee2e6;
        padding-top: 1rem;
    }

    .featured-widgets .card-overlay .btn,
    .featured-widgets .ft-wd-card-body .btn {
        padding: 10px 15px;
    }
}

@media (max-width: 991.98px) {
    .contentSection h2 {
        font-size: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .banner-section h1 {
        font-size: 2rem;
    }

    .hero-container h1 {
        font-size: 2rem;
        font-weight: 50;
    }

    /* .hero-container .hero-img-txt-btn {
        margin-top: 90px;
    }*/

    .find-training-button {
        width: 100%;
    }

    .top-rated-carousel .carousel-inner {
        padding: 0;
    }

    .back-btn-course {
        color: var(--bs-blue);
        display: flex;
        align-items: unset;
        text-decoration: none;
        width: 100%;
        padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
        border: 0;
        margin-bottom: 16px;
        margin-left: -4px;
    }

        .back-btn-course:hover {
            color: var(--bs-link-hover-color);
        }
}

@media (min-width: 1200px) {
    .global-navbar-container {
        padding: 0;
    }

    .margin-bottom {
        margin-bottom: 2.5rem !important;
    }
    /* Align accordion headers to top */
    .footer-accordion .accordion-button {
        align-items: flex-start;
        padding-top: 0rem;
        padding-bottom: 0.5rem;
        min-height: auto;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .sign-up-button {
        max-width: 140px;
        margin-bottom: 50px;
    }
    /* Disable accordion toggle on desktop */

    .footer-accordion .accordion-button {
        pointer-events: none;
        background-color: var(--bs-blue);
        font-size: 1.25rem;
        font-weight: 200;
        box-shadow: none;
        color: #ffffff;
    }

        .footer-accordion .accordion-button::after,
        .footer-accordion .toggle-icon {
            display: none;
        }

    .footer-accordion .accordion-collapse {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }

    .accordion-item {
        background-color: transparent !important;
        border: none !important;
    }

    .footer-links {
        text-align: right !important;
    }

    #shoppingCartWrapper {
        width: 400px !important;
        right: 0;
        left: auto;
    }

    .global-navbar-kartbox-wrapper {
        position: absolute;
        top: 60px;
        right: 13%;
        z-index: 1050;
        background: var(--bs-white);
        max-width: 400px;
        width: auto;
        padding: 0;
    }

    .global-navbar-kartbox {
        width: 100%;
    }
}



/*@media (max-width: 991.98px) {
    .global-navbar-container {
        flex-direction: column;
        min-height: auto;
    }

    .global-navbar-logo,
    .global-navbar-logo-right {
        height: 48px;
        padding: 0 10px;
    }

    .global-navbar-menu {
        height: 48px;
    }

    .global-navbar-menu-item {
        height: 48px;
    }
}*/

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 99;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--bs-blue);
}

    .social-icon-link:hover {
        background: var(--bs-white);
    }

        .social-icon-link:hover .social-icon-img {
            filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(7472%) hue-rotate(237deg) brightness(97%) contrast(101%);
        }

        .social-icon-link:hover .social-icon-material {
            color: var(--bs-blue);
        }

.social-icon-img {
    width: 16px;
    height: 16px;
    transition: filter 0.2s;
}

@media (max-width: 991.98px) {
    .floating-social-icons {
        top: 80px;
        left: 0;
    }

    .global-navbar {
        border-bottom: 1px solid #6E8CC8;
    }

    .global-navbar-searchbox-wrapper {
        margin-top: -1px;
    }
}

/* venu added styles start here*/
.star-filled {
    background-image: url(/content/next/images/trendingCourses/star-bg.png);
    width: 28px;
    height: 28px;
}


/* venu added styles end here*/

/*Sudharma added CSS for Mobile Menu*/

@media (min-width: 1200px) {
    .global-navbar-container {
        padding: 0;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .sign-up-button {
        max-width: 140px;
        margin-bottom: 50px;
    }
}


@media (max-width: 1199.98px) {

    .global-navbar-container {
        padding-right: calc(var(--bs-gutter-x) * 1);
        padding-left: calc(var(--bs-gutter-x) * 1);
    }

    /*.global-navbar {
        border-bottom: 1px solid #6E8CC8;*/
    /* flex-direction: column; 
        min-height: auto;*/
    /*}*/

    .global-navbar-logo,
    .global-navbar-logo-right {
        background: var(--bs-blue);
    }

    .global-navbar-menu {
        height: 58px;
    }

    .global-navbar-menu-item {
        /*height: 58px;*/
        border-right: none;
    }

    .global-navbar-menu-right.navbar-nav .global-navbar-link {
        padding: .5rem;
    }

    .global-navbar-logo {
        border: 0;
        padding: 0;
    }

    .global-navbar-logo-img {
        height: 25px;
        filter: grayscale(100%) brightness(0%) invert(100%);
    }

    .global-navbar-searchbox {
        padding: 1rem 1.5rem;
        height: 50px;
    }

    .global-navbar-searchbox-icon {
        margin-right: .5rem;
        margin-left: 0;
    }

    /* mobile-menu */

    .hamburger-menu .navbar-toggler {
        padding-right: 0;
        box-shadow: none;
        height: 100%;
    }

        .hamburger-menu .navbar-toggler .hmbr {
            font-size: 2rem;
            vertical-align: middle;
            color: var(--bs-white);
            padding: 0;
            margin-top: 0;
        }

        .hamburger-menu .navbar-toggler[aria-expanded="true"] .menu-icon {
            display: none;
        }

        .hamburger-menu .navbar-toggler[aria-expanded="true"] .close-icon {
            display: inline-block !important;
        }

        .hamburger-menu .navbar-toggler[aria-expanded="false"] .menu-icon {
            display: inline-block !important;
        }

        .hamburger-menu .navbar-toggler[aria-expanded="false"] .close-icon {
            display: none !important;
        }

    .mobile-menu-list {
        background: var(--bs-blue);
    }

    .mobile-menu-link {
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 1px solid #6E8CC8;
        width: 100%;
        text-align: left;
        transition: background 0.2s;
        font-weight: 500;
        color: var(--bs-white);
        padding: 1rem 1.5rem;
        text-decoration: none;
        display: block;
    }

        .mobile-menu-link:hover {
            text-decoration: none;
            color: var(--bs-white);
        }

    .mobile-submenu {
        background: var(--bs-white);
    }

    .mobile-submenu-link {
        color: var(--bs-blue);
        font-weight: 500;
        border-bottom: 1px solid var(--bs-grey-2);
        transition: background 0.2s;
        padding: 1rem 1.5rem;
        display: flex;
        gap: 1rem;
    }

        .mobile-submenu-link:hover {
            background: #f5f7fa;
            text-decoration: none;
        }

    .mobile-menu-section {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .mobile-submenu-items .offcanvas.offcanvas-end {
        top: 60px;
        width: 100%;
    }

    .mobile-submenu-items .offcanvas-header {
        color: var(--bs-white);
        padding: 0;
    }

    .back-btn-menu {
        color: var(--bs-white);
        display: flex;
        align-items: unset;
        text-decoration: none;
        background: var(--bs-blue);
        width: 100%;
        padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
        border: 0;
    }

    .mobile-submenu-hd {
        color: var(--bs-blue);
        font-weight: 500;
        border-bottom: 1px solid var(--bs-grey-2);
        background: var(--bs-grey-2);
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .floating-social-icons {
        top: 80px;
        left: 0;
    }
}
/*Sudharma added CSS end for Mobile Menu*/

/* accordion code start here  */
.custom-accordion .accordion-header {
    background: var(--slb-blue);
    padding: 10px 15px;
}

.custom-accordion .accordion-item + .accordion-item {
    margin-top: 2px;
}

.custom-accordion .accordion-header h2 {
    padding: 4px 0 0 0;
    margin-bottom: 4px;
}

    .custom-accordion .accordion-header h2 button {
        color: rgb(255, 255, 255) !important;
        font-weight: 500;
        text-decoration: none;
        font-size: 14px;
    }

/* Hide Bootstrap default arrow */
.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .accordion-button .fa-chevron-down {
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg);
}

.custom-accordion #TabList li {
    width: 100%;
    display: grid;
    padding-left: 7px;
}

    .custom-accordion #TabList li a:hover {
        color: var(--slb-black);
        background: var(--slb-grey-2);
        text-decoration: none;
    }

@media (min-width: 768px) {
    /*.custom-accordion {
        display: block !important;
    }*/

    /*.hero-container .hero-img-txt-btn {
        margin-top: 165px;
    }*/
}

.TrainingCalenderBox .contentArea .readMore {
    right: 0 !important;
}
/* accordion code end here  */

/* Search code start here */
.grid-list-group button.btn {
    --bs-btn-padding-x: 0.2rem;
    --bs-btn-padding-y: 0.2rem;
    --bs-btn-font-size: 0.2rem;
}

.grid-list-group .btn.active, .grid-list-group .btn.show, .grid-list-group .btn:first-child:active, .grid-list-group :not(.btn-check) + .btn:active {
    color: var(--bs-white);
    background-color: var(--bs-btn-active-color);
}

.grid-list-group .btn-outline-secondary {
    --bs-btn-color: #6c757d;
    --bs-btn-border-color: none;
    --bs-btn-bg: rgb(240 240 240);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-blue);
    --bs-btn-active-color: var(--bs-blue);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: var(--bs-white);
    --bs-btn-disabled-border-color: none;
    --bs-gradient: none;
}

.card-course {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.list-view .card-course {
    width: 100%;
}

.list-view .card-course {
    width: 100%;
    float: none;
}

#searchResultBody::after {
    content: "";
    display: table;
    clear: both;
}

.card-course:hover {
    border-color: var(--bs-blue);
    background-color: #f0f0f0;
}

    .card-course:hover .start-end-box {
        background-color: var(--bs-blue);
        color: #fff;
    }

        .card-course:hover .start-end-box .text-primary {
            color: #fff !important;
        }

    .card-course:hover .btn.btn-primary {
        background-color: #051464;
    }

.card-course .register-btn {
    display: none;
    margin-top: 8px;
}


.card-course:hover .register-btn {
    display: inline-block;
}

.card-course:hover .price {
    display: none;
}

.price-register-wrapper {
    min-height: 50px;
}


.course-meta.mb-1 {
    color: inherit;
}

    .course-meta.mb-1::before {
        content: '';
    }

span.hyphen {
    margin: 0 10px 0 10px;
}


.course-title {
    font-weight: 500;
    margin-bottom: .35rem;
}

.course-sub {
    margin-bottom: 1.5rem;
}

.course-meta {
    font-weight: 500;
    margin-top: .3rem;
}

.location-text {
    font-weight: normal;
}

.price {
    color: var(--bs-blue);
    font-weight: 700;
    font-size: 1.05rem;
}

.search-row .form-control {
    border-radius: inherit;
}
/* Input with icon on right */
.input-icon-right {
    position: relative;
}

    .input-icon-right .material-icons {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--bs-blue);
        pointer-events: none;
    }

    .input-icon-right input {
        padding-right: 36px;
    }
/* Filter boxes */

.seach-filter-section {
    padding: 30px 15px;
    border: 1px solid #dbdede;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    h6

{
    color: #0f21dd;
    font-weight: 500;
}

}

.filters {
    max-height: 450px;
    overflow-y: auto;
}

    .filters label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 8px;
        margin-right: 10px;
        transition: color 0.3s ease;
    }

    .filters input[type="checkbox"] {
        margin-right: 10px;
        width: 16px;
        height: 16px;
        appearance: none;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        position: relative;
        transition: all 0.2s ease;
    }

        .filters input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 5px;
            width: 4px;
            height: 8px;
            border: solid var(--bs-blue);
            border-width: 0 1px 1px 0;
            transform: rotate(45deg);
        }

    .filters label:hover {
        color: var(--bs-blue);
    }


        .filters label:hover input[type="checkbox"] {
            border-color: var(--bs-blue);
        }



        .filters label:hover span {
            color: var(--bs-blue); /* number */
        }



    .filters input[type="checkbox"]:checked ~ .label-text,
    .filters input[type="checkbox"]:checked ~ .ms-auto {
        color: var(--bs-blue);
    }


    .filters input[type="checkbox"]:checked {
        border-color: var(--bs-blue);
    }


.filter-section {
    margin-bottom: 18px;
}

    .filter-section h6 {
        font-weight: 700;
        color: #0b5cab;
        font-size: .95rem;
        margin-bottom: 12px;
    }

.count-badge {
    color: #0b5cab;
    font-weight: 600;
    min-width: 28px;
    text-align: right;
}
/* tile grid/list handling */

.cards-grid {
    display: grid;
    gap: 18px;
}

    .cards-grid.grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid.grid-1 {
        grid-template-columns: repeat(1, 1fr);
    }

.start-end-box {
    background: #f5f5f5;
    padding: 6px 10px;
    width: auto;
    tex-align: center;
}

.course-layout.grid-view .meta-box,
.course-layout.grid-view .location-box {
    display: block;
    width: 100%;
    clear: both;
}

.grid-meta-location {
    width: 100%;
    margin-top: auto;
}


.list-view .card-course {
    width: 100%;
}


.pagination .page-link {
    text-decoration: none !important;
}

    .pagination .page-link:hover {
        text-decoration: none !important;
    }

.pagination li.page-item a {
    background-color: #f2f3f3;
    color: #000;
    border: 1px solid #939393;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

    .pagination li.page-item a:hover {
        background-color: #cfd1d1;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        text-decoration: none;
    }

.active > .page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color) !important;
    background-color: var(--bs-blue) !important;
    border-color: var(--bs-pagination-active-border-color) !important;
}

.disabled > .page-link, .page-link.disabled {
    background-color: var(--bs-white) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: rgba(0, 0, 0, 0.5) !important;
}

.card-dates {
    color: #0b5cab;
    font-weight: 500;
    margin-top: .6rem;
}

.section-scroll {
    max-height: 180px;
    overflow: auto;
    padding-right: 6px;
}

#spnSearchBox {
    cursor: pointer;
    z-index: 10;
    right: 10px !important;
    color: var(--bs-blue);
}

.checkbox-text {
    max-width: 68%;
    display: inline-block;
    vertical-align: middle;
}

.filters label:has(input:disabled):hover {
    color: inherit;
    cursor: default;
}

.filters label input:disabled ~ span {
    color: gray;
}

.filters label input:disabled:hover {
    background-color: transparent !important;
    border-color: gray !important;
    box-shadow: none !important;
}

a.page-link.disabled {
    background-color: #f2f3f3 !important;
    border: 1px solid #939393 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

#dvStartDate {
    width: 18.85% !important;
}

#dvEndDate {
    width: 18.85% !important;
}

@media (max-width: 767px) {
    #dvStartDate, #dvEndDate {
        width: 50% !important;
    }
}

@media (min-width: 768px) and (max-width: 1024.98px) {
    #dvStartDate, #dvEndDate {
        width: 20% !important;
    }
}

#searchResultBody.grid-1 .price-register-wrapper {
    margin-top: -55px;
}
/* Search code end here */

/* News letter code start here */
.newsletterModal .subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
    max-width: 680px;
}

    .newsletterModal .subscribe-form .form-control {
        height: 37px;
        padding: 0 20px;
        border: 1px solid var(--bs-blue);
        background: #fff;
        color: #000;
        flex: 1;
        min-width: 0;
    }

    .newsletterModal .subscribe-form .btn-sub {
        height: 37px;
        padding: 0 15px;
        background-color: var(--bs-blue);
        border-color: var(--bs-blue);
        color: var(--bs-white);
    }

.newsletter-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--bs-blue);
    color: var(--bs-white);
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .newsletter-btn:hover {
        background-color: var(--bs-blue);
        color: var(--bs-white);
        cursor: pointer
    }

.newsletterModal .modal-content {
    position: relative;
    background-color: var(--bs-grey-3);
    border-radius: 0;
    max-width: 600px;
}

@media (min-width: 992px) {
    .newsletterModal .modal-content {
        width: 65%;
        max-width: 900px;
        margin: auto;
    }
}

.newsletterModal .modal-body {
    position: static;
    padding: 50px 20px 20px 20px;
}

.newsletterModal .btn-close {
    background-image: none !important;
    font-size: 2rem;
    color: var(--bs-blue);
    opacity: 1 !important;
    width: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    top: -7px;
    right: 3px;
    cursor: pointer;
    border: none;
}

.NewsLettersubscriptionpopup .btn-close {
    background-image: none !important;
    font-size: 2rem;
    color: var(--bs-blue);
    opacity: 1 !important;
    width: 30px;
    height: 30px;
    padding: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    border: none;
    box-shadow: none;
}

    .newsletterModal .btn-close::before, .NewsLettersubscriptionpopup .btn-close::before {
        content: "×";
        font-size: 2rem;
        color: var(--bs-blue);
        pointer-events: none;
    }

.newsletterModal .btn-close:hover,
.newsletterModal .btn-close:focus,
.newsletterModal .btn-close:active {
    color: var(--bs-blue) !important;
    opacity: 1 !important;
    outline: none !important;
    box-shadow: none !important;
}

.newsletterModal .subscribe-form .error-msg {
    flex-basis: 100%;
    margin-top: 0.5rem;
    color: var(--bs-danger);
    font-size: 0.875rem;
}

.NewsLettersubscriptionpopup button.close.btn-close {
    --bs-btn-close-bg: auto;
    margin-top: -28px;
}

.reg-btns .wishlist-alert {
    line-height: 20px;
    color: var(--slb-white) !important;
    text-align: left;
}
/* News letter code end here */
