@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6D4DFF;
    --primary-hover: #5233da;
    --theme-bg: #f1effc;
    --dark-link: #b4a4ff;
    --white: #ffffff;
    --black: #000000;
    --grey: #3d3d3d;
    --light-grey: #f1f1f1;
    --border-color: #e3e3e3;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 3px;
    --dark-bg: #0c0042;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p,
li {
    line-height: 1.5em;
}

/* ========= Responsive CSS ============ */

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container {
        max-width: 1000px;
    }
}

@media (min-width: 1400px) {

    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.ml-auto {
    margin-left: auto !important
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2
    }
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: .0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 14%;
}



/* ============== Responsive End ============ */

/* ========== Main Header & Navbar ========== */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-left {
    flex-shrink: 0;
}

.nav-center {
    flex-grow: 1;
}

.nav-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 150px;
    display: block;
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

.nav-links li a {
    color: var(--black);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a:hover {
    background-color: var(--white);
}

.has-mega-menu>a {
    cursor: pointer;
}

/* Arrow Icon */
.arrow {
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s;
}

.arrow.down {
    transform: rotate(45deg);
    margin-top: -1px;
}

.arrow.up {
    transform: rotate(-135deg);
}

.has-mega-menu.active>a>.arrow,
.profile-container.active .arrow {
    transform: rotate(-135deg);
    margin-top: 5px;
}

/* --- Full-Width Mega Menu (Desktop) --- */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border-color);
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* NEW: Inner container for content alignment */
.mega-menu-inner {
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    gap: 20px;
}

.has-mega-menu.active>.mega-menu {
    display: block;
}

.mega-menu-tabs {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.mega-tab-link {
    background: none;
    border: none;
    padding: 12px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--border-radius);
    width: 100%;
    transition: background-color 0.2s, color 0.2s;
    color: var(--black);
}

.mega-tab-link:hover {
    background-color: var(--white);
}

.mega-tab-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.mega-menu-content {
    flex-grow: 1;
}

.mega-tab-content {
    display: none;
}

.mega-tab-content.active {
    display: block;
}

.mega-tab-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.mega-content-list {
    list-style: none;
}

.mega-content-list li a {
    color: var(--black);
    display: block;
    padding: 8px 0;
    border-radius: 4px;
    transition: color 0.2s;
    font-weight: 400;
}

.mega-content-list li a:hover {
    color: var(--primary-color);
}

/* --- User Actions & Profile Dropdown --- */
.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-container {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}

.profile-btn:hover {
    background-color: var(--white);
}

.profile-btn img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-btn .profile-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 0;
    margin-bottom: -4px;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 200px;
    padding: 10px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.profile-container.active>.profile-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--black);
    border-radius: 4px;
    transition: background-color 0.2s;
}

.profile-dropdown a:hover {
    background-color: var(--white);
}

.profile-dropdown hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 8px 0;
}

.login-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--primary-hover);
}

/* --- Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--black);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.has-mega-menu.active>a>.arrow {
    border-right: 2px solid var(--primary-hover);
    border-bottom: 2px solid var(--primary-hover);
}

.has-mega-menu.active>a,
.nav-links li a:hover,
.profile-dropdown a:hover {
    color: var(--primary-hover);
}

/* --- Responsive Design (Mobile View) --- */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .profile-btn .profile-name {
        display: none;
    }

    .nav-center {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding-top 0.4s, padding-bottom 0.4s;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-center.active {
        max-height: 100vh;
        padding-top: 20px;
        padding-bottom: 20px;
        overflow-y: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .nav-links li a {
        justify-content: space-between;
    }

    /* Accordion Style for Mega Menu */
    .mega-menu {
        position: static;
        width: auto;
        box-shadow: none;
        border-top: none;
        padding: 10px 0 10px 20px;
        display: none;
        background-color: transparent;
    }

    .mega-menu-inner {
        display: block;
        padding: 0;
    }

    .mega-menu-tabs {
        display: none;
    }

    .mega-menu-content {
        padding: 0;
    }

    .mega-tab-content {
        display: block !important;
        padding-bottom: 20px;
    }

    .mega-tab-content:last-child {
        padding-bottom: 0;
    }
}

/* ========== Navbar CSS End ===========  */

/* ======== Course Page CSS ====== */
.sectionPadding {
    padding: 60px 0;
}

.coursePage {
    background-color: var(--black);
    background-image: url('/img/site/line-bg.png');
    background-size: 1000px;
    background-position: top center;
    background-repeat: no-repeat;
}

.breadCrums {
    display: flex;
    align-items: center;
}

.breadCrums a,
.breadCrums span {
    color: var(--light-grey);
    font-size: 14px;
}

.breadCrums span {
    font-weight: 600;
    color: var(--dark-link);
}

.breadCrums i {
    color: var(--white);
    font-size: 18px;
    line-height: 0;
}

.courseStars {
    color: #e99700;
    font-size: 14px;
}

.courseStars i {
    font-size: 16px;
}

.courseRating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.courseMeta>h1 {
    color: var(--white);
    font-size: 2rem;
    margin-top: 30px;
}

.courseMeta>p {
    font-size: 17px;
    color: var(--border-color);
    margin: 10px 0 30px;
}

.courseCreator {
    color: var(--border-color);
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.5em;
}

.courseCreator span,
.courseCreator span a {
    font-weight: 500;
    text-decoration: underline;
    color: var(--dark-link);
}

.courseOutlines {
    border: 1px solid var(--border-color);
    padding: 30px;
}

.courseOutlines h3 {
    font-size: 1.25rem;
}

.courseOutlines ul li {
    margin-top: 15px;
    color: var(--grey);
    font-size: 14px;
    padding-left: 25px;
    position: relative;
    list-style: none;
    display: inline-flex;
    width: 49%;
}

.courseOutlines li::before {
    content: "\ea41";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    position: absolute;
    left: 0;
    font-size: 18px;
    top: 2px;
    color: var(--primary-color);
}

.courseSidebar {
    border: 1px solid var(--border-color);
    margin-top: -400px;
    background-color: var(--white);
    position: sticky;
    top: 110px;
}

.courseSidebar img {
    width: 100%;
    aspect-ratio: 16/9;
}

.sidebarDetails {
    padding: 20px;
}

.coursePrice {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.coursePrice>span {
    font-size: 1.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.coursePrice>span i {
    margin-bottom: 2px;
    font-weight: 600;
    margin-right: -7px;
}

.coursePrice>p {
    margin-bottom: 4px;
    color: var(--grey);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.strikePrice {
    text-decoration: line-through;
    font-size: 18px;
}

.strikePrice i {
    transform: translateY(3px);
    font-size: 20px;
}

.offer {
    font-weight: 500;
    color: var(--primary-color);
    margin-left: 7px;
    transform: translateY(1px);
}

.enrollBtn {
    width: 100%;
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 10px;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.enrollBtn:hover {
    background-color: var(--primary-hover);
}

.sidebarDetails>p {
    font-size: 12px;
    text-align: center;
    margin: 10px 0 20px;
    color: var(--grey);
}

.coursefeatures h3 {
    font-size: 1.1rem;
}

.coursefeatures ul li {
    font-size: 14px;
    list-style: none;
    color: var(--grey);
    margin-top: 15px;
    position: relative;
    padding-left: 22px;
}

.coursefeatures ul li i {
    position: absolute;
    left: 0;
    top: 2px;
}

.shareCourse {
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.shareCourse h3 {
    font-size: 1.1rem;
}

.shareCourse p {
    font-size: 14px;
    color: var(--grey);
    margin: 5px 0 10px;
}

.shareCourse i {
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: var(--white);
    font-weight: 500;
    margin: 0 5px;
}

.shareCourse .bxl-linkedin {
    background-color: #0077b5;
}

.shareCourse .bxl-facebook {
    background-color: #1877F2;
}

.shareCourse .bxl-whatsapp {
    background-color: #28b35b;
}

.courseModule h3 {
    font-size: 1.35rem;
    margin: 30px 0 20px;
}

.moduleContent h4 {
    cursor: pointer;
    padding: 15px 30px 15px 50px;
    font-weight: 500;
    font-size: 1rem;
    background-color: var(--light-grey);
    margin: 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    position: relative;
}

.moduleContent h4:last-of-type {
    border-bottom: 1px solid var(--border-color);
}

.moduleContent h4::before {
    content: "\ea4a";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    position: absolute;
    left: 20px;
    top: 13px;
    font-size: 20px;
}

.moduleContent h4:hover {
    background-color: var(--border-color);
}

.moduleContent ul {
    margin: 0;
    padding: 10px 20px 10px 40px;
    list-style-type: disc;
    display: none;
    background-color: var(--white);
}

.moduleContent ul li {
    font-size: 14px;
    color: var(--grey);
    margin: 10px 0;
}

.moduleContent ul.active {
    display: block;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.moduleContent ul.active:last-of-type {
    border-bottom: 1px solid var(--border-color);
}

.courseUniqueness ul {
    padding-left: 18px;
}

.courseUniqueness ul li {
    margin-top: 5px;
    color: var(--grey);
}



.careerOpp {
    padding: 25px;
    margin: 45px 0 25px 0;
    background-color: var(--white);
    position: relative;
    border: 2px solid var(--dark-link);
    border-radius: 10px;
}

.careerOpp h3 {
    position: absolute;
    left: 25px;
    top: -12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 7px 20px;
    border-radius: 25px;
    text-transform: capitalize;
}

.careerOpp ul {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
}

.careerOpp ul li {
    list-style: none;
    margin-top: 20px;
    padding-left: 12px;
    position: relative;
    font-weight: 500;
}

.careerOpp ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 10px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border: 1px solid var(--dark-link);
    overflow: hidden;
    transition: all 0.3s ease;
}

.courseFaqs {
    margin-top: 30px;
}

.courseFaqs h3 {
    font-size: 1.35rem;
    margin: 30px 0 20px;
}

.faq-question {
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    transition: all 0.4s ease;
    padding: 0 20px;
    line-height: 1.6;
    color: var(--grey);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 25px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.certificateSample h3 {
    font-size: 1.35rem;
    margin: 30px 0 10px;
}

.certificateSample img {
    width: 100%;
    border: 1px solid var(--border-color);
    margin-top: 10px;
}

.instructor {
    padding: 30px;
    margin-top: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
}

.instructor img {
    border-radius: 100px;
    width: 125px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

.instructor h4 {
    font-size: 1.25rem;
}

.instructor h4 a {
    color: var(--black);
}

.instructor span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.instructor p {
    font-size: 14px;
    color: var(--grey);
    margin-top: 15px;
}

.courseReviews {
    margin-top: 30px;
}

.courseReviews h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.singleRating {
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.singleRating img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
    object-position: top;
}

.singleRating h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.singleRating .courseRating span {
    color: var(--grey);
    margin-top: -2px;
}

.singleRating p {
    color: var(--grey);
    margin-top: 15px;
}

.smallHeading {
    margin-top: -20px;
}

.smallHeading h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* ======= Blog CSS ======= */

.blogCard {
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    transition: .3s ease-in-out;
    background-color: var(--white);
}

.card-banner img {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.card-body {
    padding: 20px;
}

.blog-hashtag {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-hashtag a {
    color: var(--primary-color);
    font-weight: 500;
    transition: .3s ease-in-out;
    position: relative;
    z-index: 1;
}

.blog-title {
    line-height: 1em;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-title a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    transition: .3s ease-in-out;
}

.blog-title a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.blogCard:hover {
    transform: translateY(-10px);
}

.blogCard:hover .blog-title a {
    color: var(--primary-color);
}

.blogCard:hover .blog-hashtag a {
    color: var(--black);
}

.paginator nav {
    position: static;
    text-align: left;
}

.paginator ul.pagination li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    background-color: var(--border-color);
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 25px;
    position: relative;
    font-weight: 600;
    font-size: 12px;
}

.paginator ul.pagination a {
    color: var(--black);
}

.paginator li.page-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.paginator ul.pagination a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.authorCard {
    text-align: center;
    color: var(--border-color);
}

.authorCard img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-bottom: 15px;
}

.authorDetails h3 {
    font-size: 1.5rem;
}

.authorDetails span {
    font-size: 14px;
    color: var(--border-color);
}

.authorDetails p {
    margin: 10px 0 20px;
    line-height: 1.35em;
}

.authorSocial a {
    color: var(--primary-color);
    font-size: 20px;
}

.blog_cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

.blog_content {
    padding-bottom: 30px;
}

.blog_content img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
    height: auto;
    border: 1px solid var(--border-color);
}

.blog_content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.75em;
    color: var(--grey);
}

.blog_content h2 {
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.blog_content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog_content h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog_content h5 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog_content h6 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog_content ul {
    margin-bottom: 15px;
    padding-left: 18px;
}

.blog_content ul li {
    line-height: 1.75em;
    list-style: square;
    color: var(--grey);
    font-size: 16px;
}

.blog_content ol {
    margin-bottom: 15px;
    padding-left: 18px;
}

.blog_content ol li {
    line-height: 1.75em;
    list-style: auto;
    color: var(--grey);
    font-size: 16px;
}

/* .blog_content td,
.blog_content th {
    border: 1px solid var(--border-color);
    padding: 10px;
    color: var(--grey);
}

.blog_content table {
    border-collapse: collapse;
    margin-bottom: 20px;
} */

.blog_content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-spacing: 0;
    border-radius: 5px;
    overflow: hidden;
}

.blog_content table tr:first-child td {
    background: var(--primary-color);
    color: var(--white);
}

.blog_content table tr:first-child td strong {
    color: var(--white);
}

.blog_content table td {
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    color: var(--grey);
    font-size: 16px;
    line-height: 1.5em;
}

/* striped rows */
.blog_content table tr:nth-child(odd):not(:first-child) {
    background: #f1f1f1;
}

.blog_content table tr:nth-child(even):not(:first-child) {
    background: #ffffff;
}

.blog_content iframe {
    max-width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: inherit;
}

.blog_content a {
    text-decoration: underline;
    font-weight: 500 !important;
    color: var(--primary-color);
}

.blog_content a strong {
    color: var(--primary-color);
}

.blog_content strong {
    font-weight: 600;
    color: var(--black);
}

.blog_content th {
    color: var(--black);
}

.blog_content .table {
    width: 100%;
    overflow: auto;
}


.blog_sidebar {
    padding: 0 0 30px;
    position: sticky;
    top: 100px;
}

.blog_sidebar h3 {
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
    font-size: 1.5rem;
}

.blog_sidebar ul {
    margin-top: 20px;
    padding-left: 15px;
}

.blog_sidebar ul li {
    list-style: disc;
    margin: 17px 0;
}

.blog_sidebar ul li a {
    color: var(--black);
    font-weight: 500;
}

.blog_sidebar ul li a:hover {
    color: var(--primary-color);
}


.tableofContent {
    position: sticky;
    top: 100px;
}

.tableofContent h3 {
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
    font-size: 1.5rem;
}

.tableofContent ul {
    padding-left: 17px;
}

.tableofContent ul li {
    list-style: disc;
    margin: 10px 0;
    font-size: 14px;
}

.tableofContent ul li a {
    color: var(--black);
}

.tableofContent ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.tableofContent a.active {
    color: var(--primary-color);
    text-decoration: underline;
}

.commentSection h3 {
    font-size: 1.5rem;
}

.commentBox {
    padding: 20px;
    background-color: var(--light-grey);
    border: 1px solid var(--border-color);
    margin: 10px 0 20px;
}

.commentBox textarea {
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    min-height: 200px;
    resize: none;
}

.commentBox button {
    padding: 10px 15px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 15px;
    border: none;
    margin-top: 10px;
}

.commentsList {
    padding: 20px;
    border: 1px solid var(--border-color);
}

.commentsList:not(:last-of-type) {
    margin-bottom: 24px;
}

.commentsList p {
    margin-bottom: 10px;
    line-height: 26px;
    white-space: pre-wrap;
}

.replyBox textarea {
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    min-height: 100px;
    resize: none;
    margin-top: 10px;
    font-size: 1rem;
}

.replyBox button {
    padding: 5px 10px;
    border-radius: var(--border-radius);
    background-color: var(--black);
    color: var(--white);
    font-size: 12px;
    border: 1px solid var(--black);
    margin-top: 5px;
}

.commentUser {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.commentUser img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100px;
}

.commentUser h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1;
}

.commentUser span {
    font-size: 12px;
    color: var(--grey);
}

.replyUser img {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.replyUser h5 {
    font-size: 18px;
}

.repliesList {
    padding-left: 20px;
    margin-top: 15px;
    border-radius: 0 0 0 40px;
    border-left: 1px solid var(--border-color);
}

.singleReply {
    padding: 20px 0;
}

.singleReply p {
    font-size: 14px;
}

.replyBtn {
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.logReplyBtn {
    color: var(--primary-color);
    font-weight: 500;
}

.homeHero {
    padding: 80px 0;
    background: var(--theme-bg);
}

.bgPattern {
    background-image: url('/img/site/img-bg-line.png');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

.heroBanner img {
    width: 100%;
}

.heroText h1 {
    font-size: 2.5rem;
    line-height: 1.25em;
    margin-bottom: 1rem;
}

.heroText p {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 25px;
}

.heroText ul {
    margin-bottom: 10px;
}

.heroText ul li {
    display: inline-block;
    width: 49%;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.heroText ul li::before {
    content: "\e9c1";
    position: absolute;
    font-weight: 400;
    left: 0;
    top: 1px;
    color: var(--primary-color);
    font-size: 24px;
    font-family: boxicons !important;
}

.sectionBtn {
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 15px 25px;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sectionBtn:hover {
    background-color: var(--primary-hover);
}

.sectionHeading {
    margin-bottom: 25px;
    text-align: center;
}

.sectionHeading h3 {
    font-size: 2.25rem;
    line-height: 1em;
}

.categoryCard {
    position: relative;
    transition: .3s ease-in-out;
}

.categoryCard img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.categoryDetails {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.categoryDetails h3 a {
    display: inline-block;
    color: var(--black);
    font-size: 1.25rem;
    margin-top: 10px;
}

.categoryDetails p {
    color: var(--grey);
    font-size: 14px;
    margin-top: 5px;
}

.categoryDetails h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.categoryCard:hover {
    transform: translateY(-10px);
}

.categoryCard:hover h3 a {
    color: var(--primary-color);
}

.homeBlog {
    background-color: var(--theme-bg);
}

.darkBg {
    background-color: var(--dark-bg);
    background-image: url('/img/site/line-bg.png');
    background-size: 1000px;
    background-position: top center;
    background-repeat: no-repeat;
}

.darkBg .sectionHeading {
    color: var(--white);
}

.courseCard {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    position: relative;
    transition: .3s ease-in-out;
}

.courseCard img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.courseCardMeta {
    padding: 20px;
}

.courseCardMeta span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.courseCardMeta h3 {
    font-size: 18px;
    line-height: 1.25em;
    margin: 10px 0 5px;
}

.courseCardMeta p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 15px;
}

.courseCardMeta h3 a {
    color: var(--black);
}

.courseCardMeta h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.courseTutor {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey);
}

.courseTutor span {
    text-decoration: underline;
    font-weight: 500;
    color: var(--primary-color);
}

.courseButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courseButton button {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.courseCard:hover {
    transform: translateY(-10px);
}

.reviewCard img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 80px;
}

.reviewCard {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    height: 100% !important;
}

.reviewCard p {
    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--grey);
}

.reviewCard span {
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
}

.reviewCard .reviewLogo img {
    width: 80px !important;
    border-radius: 0 !important;
    height: auto !important;
    margin-top: 20px;
}

.footer {
    padding-top: 80px;
    color: var(--white);
}

.footerCompany img {
    width: 150px;
}

.footerCompany p {
    color: var(--border-color);
    margin-top: 5px;
}

.footerSocial {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footerSocial li {
    list-style: none;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #160952;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 0;
}

.footerSocial li a {
    color: var(--white);
}

.footerCredit {
    padding: 10px 0;
    margin-top: 80px;
    background-color: #160952;
    font-size: 14px;
    color: var(--border-color);
}

.creditText {
    text-align: right;
}

.creditLinks a {
    color: var(--border-color);
    text-align: right;
    margin-right: 10px;
}

.creditLinks a:hover,
.footerLinks ul li a:hover {
    text-decoration: underline;
    color: var(--white);
}

.footerLinks h3 {
    font-size: 1.1rem;
    color: var(--dark-link);
}

.footerLinks ul li {
    list-style: none;
    margin-top: 15px;
    font-size: 14px;
}

.footerLinks ul li a {
    color: var(--border-color);
}

.courseList p {
    margin-bottom: 0;
}

.authForm {
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.authForm h2 {
    font-size: 1.5rem;
}

.authForm h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    font-weight: 500;
    margin-bottom: .35rem;
}

.authForm p {
    margin-top: .5rem;
}

.authForm p a {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.authForm button {
    margin-top: 1.25rem;
}

.authForm input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    outline: none;
    border-radius: var(--border-radius);
}

.authForm textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    resize: none;
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    outline: none;
    border-radius: var(--border-radius);
}

.authForm input:focus,
.authForm textarea:focus {
    border: 1px solid var(--primary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.aboutStats li {
    width: 100% !important;
}

.statSection {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    align-items: center;
}

.statNumbers {
    font-size: 4rem;
    font-weight: 700;
}

.errorMessage {
    margin-bottom: 20px;
    padding: 15px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.errorMessage p {
    margin-top: 0;
    line-height: 2em;
}

.successMessage {
    margin-bottom: 20px;
    padding: 15px;
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.formOuter {
    border-radius: 3px;
    background-color: var(--white);
}

.formHead {
    padding: 15px 20px;
    background-color: var(--border-color);
    border-radius: 3px 3px 0 0;
    border: 1px solid var(--border-color);
}

.formHead h3 {
    font-size: 1.25rem;
}

.formBody {
    border: 1px solid var(--border-color);
    border-radius: 0 0 3px 3px;
    padding: 20px;
}

.formBody input,
.formBody textarea {
    width: 100%;
    border-radius: 3px;
    padding: 12px;
    width: 100%;
    border: 2px solid var(--border-color);
    margin-bottom: 15px;
    outline: none;
    font-size: 15px;
}

.formBody textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 150px;
}

.formBody input::placeholder,
.formBody textarea::placeholder {
    color: #aaaaaa;
}

.formBody input:focus,
.formBody textarea:focus {
    border: 2px solid var(--dark-link);
}

.formBody h4 {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 15px;
}

.profilePicture img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-bottom: 15px;
}

.userTable {
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 0.9em;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.userTable thead tr {
    background-color: var(--primary-color);
    background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.userTable th,
.userTable td {
    padding: 12px 15px;
}

.userTable tbody tr {
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.userTable tbody tr:nth-of-type(odd) {
    background-color: var(--white);
}

.userTable tbody tr:nth-of-type(even) {
    background-color: var(--border-color);
}

.userTable tbody tr:last-of-type {
    border-radius: 0 0 3px 3px;
}

.userTable a {
    color: red;
}

.experienceList {
    overflow: auto;
}

.editProfile {
    padding: 30px 0 50px;
    background-color: #f1f1f1;
}

.tutorProfile {
    padding: 60px 0;
    background-color: var(--black);
    background-image: url(/img/site/line-bg.png);
    background-size: 1000px;
    background-position: top center;
    background-repeat: no-repeat;
}

.tutorProfile span {
    color: var(--light-grey);
}

.tutorPicture {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    margin-top: -225px;
    background-color: var(--white);
    /* position: sticky;
    top: 100px;
    z-index: 1; */
}

.tutorPicture img {
    width: 150px;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
}

.tutorSocial {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 7px;
}

.tutorSocial a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
}

.tutorCourses {
    background-color: #f1f1f1;
    padding: 50px 0;
}

.tutorIntro h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tutorIntro p {
    color: var(--grey);
    line-height: 1.5em;
}

.tutorExpertise {
    padding: 40px 20px 30px 20px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--white);
    position: relative;
    margin-top: 40px;
}

.tutorExpertise h3 {
    position: absolute;
    left: 20px;
    top: -15px;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 25px;
    background-color: var(--primary-color);
    color: var(--white);
}

.expList {
    display: flex;
    gap: 10px;
}

.expList:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.expList img {
    padding: 5px;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 3px;
    width: 50px;
    height: 50px;
    background-color: #e2dcff;
}

.expList h4 {
    font-size: 15px;
    font-weight: 500;
}

.expList span {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey);
    font-style: italic;
}

.expList p {
    color: var(--grey);
    font-size: 13px;
    margin-bottom: -5px;
}

.aboutBanner img {
    width: 100%;
}

.aboutContent h3 {
    font-size: 1.75rem;
}

.aboutContent p {
    margin-top: 15px;
}

.siteFeature {
    padding: 25px;
    background-color: var(--white);
    border-radius: 3px;
    text-align: center;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.siteFeature img {
    width: 60px;
    filter: drop-shadow(0px 100px 0 var(--primary-color));
    transform: translateY(-100px);
}

.siteFeature h3 {
    font-size: 1.3rem;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
}

.popup-box {
    background: #fff;
    width: 500px;
    max-width: 100%;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 3px;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.popup-title {
    text-align: center;
    margin-bottom: 20px;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.popup-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 14px;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 991px) {
    .courseSidebar {
        margin-top: -470px;
    }

    .courseOutlines ul li {
        width: 100%;
    }

    .instructor {
        flex-direction: column;
    }

    .heroText h1 {
        font-size: 2rem;
    }

    .heroBanner img {
        width: 90%;
        display: block;
        margin: 10px auto 0;
    }

    .sectionHeading h3 {
        font-size: 2rem;
    }

    .footerCompany {
        text-align: center;
        margin-bottom: 20px;
    }

    .footerSocial {
        justify-content: center;
    }

    .footerLinks h3 {
        font-size: 1.1rem;
        color: var(--dark-link);
        margin-top: 30px;
    }

    .ourStats {
        text-align: center;
    }

    .statNumbers {
        font-size: 3rem;
    }

    .careerOpp h3 {
        position: inherit;
        border-radius: 5px;
        width: 100%;
        left: inherit;
        top: inherit;
        padding: 10px 15px;
    }

    .popup-box {
        width: 450px;
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .courseSidebar {
        margin-top: 0;
    }

    .courseOutlines {
        margin-top: 30px;
    }

    .creditLinks {
        text-align: center;
        margin-bottom: 20px;
    }

    .creditText {
        text-align: center;
    }

    .footerCredit {
        padding: 20px 0;
    }

    .statSection {
        flex-wrap: wrap;
    }

    .ourStats {
        width: 47.5%;
        text-align: center;
    }

    .aboutBanner img {
        margin-bottom: 20px;
    }

    .heroText p {
        font-size: 16px;
    }

    .logo img {
        width: 120px;
    }

    .popup-box {
        width: 400px;
        padding: 20px;
    }

    .tutorProfile {
        padding: 60px 0 130px;
    }

    .tutorPicture {
        margin-top: -140px;
    }

    .tutorIntro h3 {
        margin-top: 25px;
    }
}

@media(max-width: 575px) {
    .login-btn {
        padding: 10px 15px;
    }

    .popup-box {
        width: 100%;
        padding: 20px;
    }
}
