:root {
    --light-purple: #F6F4FE;
    --purple: #012F6B;
    --bg-purple: #012F6B;
    --dark-purple: #32236F;
    --body-text-purple: #3E3F66;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --slider-dots-color: #D4D2DD;
    --light-bg: #DFDAF3;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    color: var(--body-text-purple);
    background-color: var(--light-purple);
}
.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--body-text-purple);
}

a:hover {
    text-decoration: none;
    color: var(--body-text-purple);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

.section_title {
    text-align: center;
}

.section_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-purple);
}

.section_title h2 span {
    color: var(--purple);
}

.row_am {
    padding: 50px 0;
}

.puprple_btn {
    background-color: var(--purple);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--purple);
    --bs-btn-hover-bg: var(--purple);
    --bs-btn-hover-border-color: var(--purple);
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--slider-dots-color);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: var(--purple);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-purple);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text-purple);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-purple);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    backdrop-filter: blur(5px);
    background-color: rgba(1, 47, 107, 0.9);
    pointer-events: all;
    transition: .4s all;
}


header.fixed {
    pointer-events: all;
    position: fixed;
    top: 0;
    transition: .4s all;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18px;
    width: 24px;
    margin-right: 15px;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    background-color: var(--text-white);
    height: 2px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 9999999;
    transition: left 0.3s ease;
    box-shadow: 5px 0 25px rgba(1, 47, 107, 0.15);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(1, 47, 107, 0.6);
    backdrop-filter: blur(3px);
    z-index: 9999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background-color: var(--purple);
    border-bottom: 1px solid var(--light-bg);
}

.sidebar-header img {
    width: 130px;
}

.close-sidebar {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--light-purple);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s;
}

.close-sidebar:hover {
    color: var(--purple);
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu li a {
    display: block;
    padding: 14px 25px;
    color: var(--dark-purple);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover {
    background-color: var(--light-purple);
    color: var(--purple);
    border-left: 3px solid var(--purple);
    padding-left: 30px;
}
.navbar {
    padding: 0;
    margin-right: 0;
    padding: 8px 0;
}

.navbar-brand {
    margin: 0;
    padding: 10px 0 15px;
}

.navbar-brand img {
    width: 150px;
}

.navbar-brand span {
    color: white;
    vertical-align: bottom;
    line-height: 20px;
    margin-left: 20px;
}

.banner_section {
    margin-top: 70px;
    position: relative;
}

.banner_section .container {
    position: relative;
}


.banner_section .row {
    align-items: center;
}

.banner_section .banner_text {
    margin-top: -50px;
}

.banner_section .banner_text h1 {
    font-size: 55px;
    color: var(--dark-purple);
    letter-spacing: -1.5px;
    font-weight: 700;
}

.banner_section .banner_text h1 span {
    color: var(--purple);
}

.banner_text .banner_list {
    margin-top: 25px;
    text-align: left;
}

.banner_text .banner_list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}

.banner_text .banner_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url(../images/right_icon.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.banner_text .banner_list li h4 {
    font-size: 18px;
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 0;
}

.banner_text .banner_list li p {
    margin-bottom: 0;
}

.banner_section .banner_slider {
    display: flex;
    position: relative;
}

.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 315px;
}

.banner_section .banner_slider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 475px;
    height: 475px;
    border-radius: 100%;
    background-color: var(--purple);
    z-index: -5;
}

.banner_section .banner_slider #frame_slider {
    width: 305px;
    margin: 0 auto;
}

.banner_section .banner_slider .slider_img img {
    width: 100%;
}

.banner_section .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}

.follow_section .section_title {
    text-align: center; 
    margin-bottom: 45px;
}

.follow_section .follow_list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 25px;
}

.follow_section .follow_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../images/right_icon.png);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.follow_section .follow_list li h4 {
    font-size: 20px;
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 8px;
}

.follow_section .follow_list li p {
    margin-bottom: 10px;
}

footer {
    position: relative;
}

footer h2,
footer h3,
footer p,
footer a {
    color: var(--text-white);
}

footer a:hover {
    color: var(--text-white);
}

footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
    padding-top: 10px;
}

footer .bottom_footer {
    padding: 20px 0;
    background-color: var(--bg-purple);
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 15px;
}

.go_top {
    position: fixed;
    right: 30px;
    bottom: 75px;
    cursor: pointer;
    transition: .4s all;
    opacity: 0;
}

.go_top:hover {
    bottom: 80px;
}

.contact_page_section {
    padding: 50px 0;
}

.contact_page_section .contact_inner {
    background-color: var(--bg-white);
    padding: 70px 0;
    border-radius: 30px;
    box-shadow: 0px 4px 30px #EDE9FE;
}

.contact_page_section .contact_inner .section_title h2 {
    font-weight: 600;
}

.contact_page_section .contact_inner .contact_form {
    width: 570px;
    margin: 0 auto;
}

.contact_page_section .contact_inner .contact_form h2 {
    margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_form form {
    margin-top: 30px;
}

.contact_page_section .contact_inner .contact_form form .form-floating {
    margin-bottom: 20px;
}

.contact_page_section .contact_inner .contact_form form .form-floating .form-control {
    height: 60px;
    color: var(--body-text-purple);
    border: 2px solid #E1DBF4;
    border-radius: 12px;
    font-weight: 500;
}

.contact_page_section .contact_inner .contact_form form .form-floating .form-control:focus {
    box-shadow: none;
    border-color: var(--purple);
    color: var(--purple);
}

.contact_page_section .contact_inner .contact_form form .form-floating textarea.form-control {
    height: 140px;
}

.contact_page_section .contact_inner .contact_form form .form-check {
    display: flex;
    align-items: center;
}

.contact_page_section .contact_inner .contact_form form .form-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--purple);
}

.contact_page_section .contact_inner .contact_form form .form-check label {
    font-size: 13px;
    margin-bottom: 0;
    margin-left: 7px;
}

.contact_page_section .contact_inner .contact_form form button {
    width: 240px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
}

.pricing_section {
    padding: 30px 0;
}

.pricing_section .pricing_inner {
    background: var(--bg-purple);
    border-radius: 30px;
    padding: 70px 100px 50px 100px;
    position: relative;
}

.pricing_section .section_title h2 {
    color: var(--text-white);
}

.pricing_section .section_title p {
    color: var(--text-white);
}

.pricing_section .pricing_pannel .pricing_block {
    text-align: center;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 40px 30px;
    margin-top: 30px;
    box-shadow: 0px 4px 30px #1d1445;
}

.pricing_section .pricing_pannel .pricing_block p {
    margin-bottom: 10px;
}

.pricing_section .pricing_pannel .pricing_block .puprple_btn {
    margin-bottom: 16px;
    display: block;
}

.pricing_section .pricing_pannel .pricing_block .benifits {
    margin-bottom: 40px;
}

.pricing_section .pricing_pannel .pricing_block .benifits li {
    padding-left: 40px;
    position: relative;
    text-align: left;
}

.pricing_section .pricing_pannel .pricing_block .benifits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url(../images/right_icon.png);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pricing_section .pricing_pannel .pricing_block .benifits li h4 {
    font-size: 20px;
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing_section .pricing_pannel .pricing_block .benifits li p {
    margin-bottom: 5px;
}

.full_bg {
    background-size: cover;
    background: var(--purple);
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 50px;
}

.signup_section {
    position: relative;
}

.signup_section .back_btn {
    position: absolute;
    left: 0;
    top: 92px;
    color: #fff;
    font-weight: 500;
}

.signup_section .top_part {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

.signup_form {
    width: 570px;
    margin: 0 auto;
    padding: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px #00000054;
    background-color: var(--bg-white);
}

.signup_form form {
    padding: 0 60px;
}

.signup_form .section_title {
    padding: 0 15px;
}

.signup_form .section_title h2 {
    font-weight: 600;
}

.signup_form form .form-control {
    color: var(--body-text-purple);
    border: 2px solid #E1DBF4;
    border-radius: 12px;
    font-weight: 500;
}

.signup_form form .form-control:focus {
    box-shadow: none;
    border-color: var(--purple);
    color: var(--purple);
}

.signup_form form .puprple_btn {
    min-width: 240px;
    display: block;
    margin: 40px auto;
    margin-bottom: 30px;
    font-weight: 600;
}

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    color: var(--dark-purple);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0;
}

.section-header span {
    color: var(--purple);
}


.movie-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 12px;
    display: block;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(1, 47, 107, 0.15);
}

.thumb-media {
    height: 240px;
    margin-bottom: 15px;
    background-color: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-weight: 600;
    width: 100%;
}

.movie-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 4px;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card:hover .movie-title {
    color: var(--purple);
}

.movie-meta {
    font-size: 13px;
    color: var(--body-text-purple);
    padding: 0 5px;
    display: block;
}

.meta-tags span {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.learn-hero-section {
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    padding: 80px 0;
    border-radius: 0 0 40px 40px;
    color: var(--text-white);
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(1, 47, 107, 0.15);
}

.search-wrapper {
    background: var(--bg-white);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.search-input {
    border: none;
    padding: 15px 30px;
    width: 100%;
    border-radius: 50px;
    outline: none;
    color: var(--body-text-purple);
    font-size: 16px;
    background: transparent;
}

.search-input::placeholder {
    color: #a0a4b8;
}

.search-btn {
    padding: 15px 40px;
    margin-bottom: 0;
    white-space: nowrap;
}

.cat-pill {
    background: var(--bg-white);
    color: var(--dark-purple);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    margin: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.cat-pill:hover {
    background: var(--purple);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 47, 107, 0.2);
}

.course-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--purple);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(1, 47, 107, 0.12);
}

.course-img {
    height: 180px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-weight: 600;
}

.course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title {
    color: var(--dark-purple);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.course-card:hover .course-title {
    color: var(--purple);
}

.course-author {
    color: var(--body-text-purple);
    font-size: 14px;
    margin-bottom: 15px;
}

.course-price {
    color: var(--purple);
    font-weight: 700;
    font-size: 22px;
    margin-top: auto;
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-bg);
}

.original-price {
    color: #a0a4b8;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
    font-weight: 400;
}

.rating-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.rating-star {
    color: #f5c518;
    margin: 0 4px;
    font-size: 16px;
}


.wireframe-box {
    background-color: #f8f9fa;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}
.wf-horizontal {
    height: 120px;
    width: 100%;
}
.wf-vertical {
    height: 450px;
    width: 100%;
}
.content-row {
    margin-bottom: 40px;
}
.app-download-section {
    background-color: var(--light-purple);
    padding: 40px 0;
    border-radius: 20px;
    border: 1px solid var(--light-bg);
}
.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--purple);
    color: var(--text-white) !important;
    padding: 12px 28px;
    border-radius: 12px;
    margin: 10px;
    text-align: left;
    text-decoration: none;
    min-width: 190px;
    box-shadow: 0 4px 15px rgba(1, 47, 107, 0.15);
    transition: all 0.3s ease;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 47, 107, 0.25);
    background-color: var(--dark-purple);
}
.download-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    margin-right: 12px;
}
.download-btn span {
    display: block;
}
.download-btn .btn-subtitle {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}
.download-btn .btn-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

/* Carousel Navigation Arrows Styling */
.trending-carousel-container {
    position: relative;
}
.trending-carousel .item {
    padding: 10px 5px; /* padding prevents shadow clipping on hover */
}
.trending-carousel .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.trending-carousel .owl-nav button.owl-prev,
.trending-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    background-color: var(--purple) !important;
    color: #ffffff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
    line-height: 1 !important;
    box-shadow: 0 5px 15px rgba(1, 47, 107, 0.3);
    transition: all 0.3s ease;
}
.trending-carousel .owl-nav button.owl-prev {
    margin-left: -15px !important;
}
.trending-carousel .owl-nav button.owl-next {
    margin-right: -15px !important;
}
.trending-carousel .owl-nav button:hover {
    background-color: var(--dark-purple) !important;
    transform: scale(1.1);
}

.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.custom-modal {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(1, 47, 107, 0.2);
}
.custom-input {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #E1DBF4;
    color: var(--body-text-purple);
    font-weight: 500;
    font-size: 14px;
}
.custom-input:focus {
    border-color: var(--purple);
    box-shadow: none;
}
.custom-modal-close {
    width: 32px;
    height: 32px;
    padding: 0;
    margin-left: auto;
    border-radius: 50%;
    background-color: #F3F0FB;
    background-size: 12px;
    opacity: 1;
    transition: background-color 0.2s ease;
}
.custom-modal-close:hover {
    background-color: #E1DBF4;
}
.custom-modal .iti {
    display: block;
    width: 100%;
}
.custom-modal .form-group .text-danger.small {
    display: block;
    margin-top: 6px;
}
.header-right-actions .bootstrap-select {
    width: 110px !important;
}
.header-right-actions .btn-light {
    background-color: var(--bg-white);
    border: 2px solid #E1DBF4;
    color: var(--dark-purple);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
}
.header-right-actions .btn-light:focus {
    outline: none !important;
    box-shadow: none !important;
}
.sign-in-link {
    color: #ffffff !important;
    font-size: 16px;
    white-space: nowrap;
    text-decoration: none !important;
    transition: opacity 0.3s;
}
.sign-in-link:hover {
    opacity: 0.8;
    color: #ffffff !important;
}
@media screen and (max-width: 991px) {
    .navbar-brand span {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .navbar-brand span { display: none !important; }
}
@media screen and (max-width: 767px) {
    .trending-carousel .owl-nav {
        display: none !important;
    }
    .section-header h2 { font-size: 26px; }
}
.pagination .page-link {
    color: var(--purple);
    border-color: #E1DBF4;
    margin: 0 4px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
        
.pagination .page-item.active .page-link {
    background-color: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.pagination .page-link:hover {
    background-color: var(--light-purple);
    border-color: var(--purple);
    color: var(--dark-purple);
}
.page-header {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    border-radius: 0 0 30px 30px;
    padding: 40px 0;
    margin-bottom: 50px;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(1, 47, 107, 0.2);
    text-align: center;
}

.ott-hero-section {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    border-radius: 0 0 30px 30px;
    padding: 60px 0;
    margin-bottom: 50px;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(1, 47, 107, 0.2);
}
.ott-hero-media {
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.movie-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(1, 47, 107, 0.15);
}
.thumb-media {
    height: 240px;
    margin-bottom: 15px;
    background-color: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-weight: 600;
    width: 100%;
}
.movie-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 4px;
    padding: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-card:hover .movie-title {
    color: var(--purple);
}
.movie-meta {
    font-size: 13px;
    color: var(--body-text-purple);
    padding: 0 5px;
    display: block;
}
.meta-tags span {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.section-header {
    margin-bottom: 35px;
}
.section-header h2 {
    color: var(--dark-purple);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0;
}
.section-header span {
    color: var(--purple);
}

/* Carousel Navigation Arrows Styling */
.trending-carousel-container {
    position: relative;
}
.trending-carousel .item {
    padding: 10px 5px; /* padding prevents shadow clipping on hover */
}
.trending-carousel .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.trending-carousel .owl-nav button.owl-prev,
.trending-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    background-color: var(--purple) !important;
    color: #ffffff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
    line-height: 1 !important;
    box-shadow: 0 5px 15px rgba(1, 47, 107, 0.3);
    transition: all 0.3s ease;
}
.trending-carousel .owl-nav button.owl-prev {
    margin-left: -15px !important;
}
.trending-carousel .owl-nav button.owl-next {
    margin-right: -15px !important;
}
.trending-carousel .owl-nav button:hover {
    background-color: var(--dark-purple) !important;
    transform: scale(1.1);
}


/* Mobile Action Bar Styling */
.mobile-action-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 5px;
}
.btn-mobile-lang {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 15px;
}
.btn-mobile-lang:focus {
    outline: none !important;
    box-shadow: none !important;
}
.lang-selector-mobile .bootstrap-select {
    width: 130px !important;
}
.lang-selector-mobile .dropdown-toggle .filter-option-inner-inner {
    color: #ffffff;
}

.header-right-actions a.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 6px 16px;
    text-decoration: none;
}
.header-right-actions a.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--purple);
}
a.btn-mobile-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    text-decoration: none;
}
a.btn-mobile-lang:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.course-player-wrapper {
    background-color: var(--bg-white);
    padding: 0;
    min-height: calc(100vh - 80px);
}
.video-container {
    background-color: #000;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #222);
}
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding-top: 30px;
}
.progress-bar-container {
    height: 4px;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
    transition: height 0.1s;
}
.progress-bar-container:hover {
    height: 6px;
}
.progress-bar-fill {
    height: 100%;
    background-color: var(--purple);
    width: 25%;
    position: relative;
}
.progress-bar-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--purple);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.1s;
}
.progress-bar-container:hover .progress-bar-fill::after {
    opacity: 1;
}
.control-btn {
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
}
.control-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}
.control-btn:focus {
    outline: none;
}
.time-display {
    color: white;
    font-size: 13px;
    font-weight: 500;
}
.player-menu-popup {
    position: absolute;
    bottom: 45px;
    right: 0;
    background-color: rgba(28, 29, 31, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.player-menu-popup.show {
    display: block;
}
.player-menu-popup h6 {
    color: #a0a4b8;
    padding: 0 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.player-menu-popup a {
    color: #fff;
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.player-menu-popup a:hover {
    background-color: rgba(255,255,255,0.1);
}
.player-menu-popup a.active {
    border-left: 3px solid var(--purple);
    background-color: rgba(255,255,255,0.05);
}
.curriculum-sidebar {
    border: 1px solid #E1DBF4;
    border-top: none;
    background-color: var(--bg-white);
    height: 100%;
    min-height: calc(100vh - 80px);
}
.curriculum-header {
    background-color: var(--dark-purple);
    padding: 15px 20px;
}
.curriculum-card {
    border: none;
    border-bottom: 1px solid #E1DBF4;
    border-radius: 0 !important;
}
.curriculum-card .card-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 0;
}
.curriculum-card .btn-link {
    color: var(--dark-purple);
    text-decoration: none;
    padding: 15px 20px;
    font-size: 15px;
}
.curriculum-card .btn-link:hover, 
.curriculum-card .btn-link:focus {
    text-decoration: none;
    color: var(--purple);
}
.lecture-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lecture-list li {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
    transition: background 0.2s;
}
.lecture-list li:last-child {
    border-bottom: none;
}
.lecture-list li:hover {
    background-color: var(--light-purple);
}
.lecture-list li.active {
    background-color: var(--light-bg);
    border-left: 4px solid var(--purple);
    padding-left: 16px;
    font-weight: 600;
}
.custom-course-tabs {
    border-bottom: 2px solid #E1DBF4;
}
.custom-course-tabs .nav-link {
    border: none;
    color: var(--body-text-purple);
    font-weight: 600;
    padding: 12px 20px;
    background: transparent;
    border-bottom: 3px solid transparent;
}
.custom-course-tabs .nav-link:hover {
    color: var(--purple);
    border-color: transparent;
}
.custom-course-tabs .nav-link.active {
    color: var(--purple);
    border-color: transparent transparent var(--purple) transparent;
    background: transparent;
}

.curriculum-card .btn-link .chevron-icon {
    transition: transform 0.3s ease;
}
.curriculum-card .btn-link.collapsed .chevron-icon {
    transform: rotate(0deg);
}
.curriculum-card .btn-link:not(.collapsed) .chevron-icon {
    transform: rotate(180deg);
}
.lecture-list li .text-purple {
    color: var(--purple);
}
.lecture-list li:hover .text-muted {
    color: var(--purple) !important;
}

.curriculum-card {
    border: none;
    border-bottom: 1px solid #E1DBF4;
    border-radius: 0;
}
.curriculum-card .card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 0;
}
.course-accordion-btn {
    background-color: #fcfcfc;
    border: none;
    padding: 18px 20px;
    text-align: left;
    transition: background-color 0.3s ease;
}
.course-accordion-btn:hover {
    background-color: #f0ebf8;
}
.course-accordion-btn:focus {
    outline: none;
}
.chevron-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #E1DBF4;
    color: var(--purple);
    transition: all 0.3s ease;
    margin-right: 5px;
}
.course-accordion-btn:not(.collapsed) .chevron-wrapper {
    background-color: var(--purple);
    color: #ffffff;
    transform: rotate(180deg);
}
.course-accordion-btn.collapsed .chevron-wrapper {
    transform: rotate(0deg);
}
.lecture-list li {
    padding: 15px 20px 15px 64px; 
}