:root {
    --primary-color: #6D42F3;
    --secondary-color: #0A0A0A;
    --white: #fff;
    --black: #000;
    --border-color: #F2F2F2;
    --text-color: #6C7383;
    --heading-color: #0A0A0A;
}

body {
    position: relative;
}

header .navbar .navbar-nav li {
    padding: 0 20px !important;
}

body:has(.hero-sec) header {
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: transparent;
}
header{
    background-color: var(--primary-color);
}

header .navbar .navbar-nav li a {
    color: var(--white);
    padding: 0 !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
}

header .navbar .navbar-nav li a::before {
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: .6s;
    display: block;
}

header .navbar .navbar-nav li a:hover::before {
    width: 100%;
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--white);
    border-radius: 50px;
    transition: .6s cubic-bezier(.25, .1, .25, 1);
}

.navbar-toggler[aria-expanded=true] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded=true] span:last-of-type {
    transform: rotate(-45deg) translate(6px, -5px);
}

.navbar-toggler[aria-expanded=true] span:nth-of-type(2) {
    opacity: 0;
}

.user-pro-dropdown .nav-link>img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 45px;
}

.user-pro-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 30px 0 0;
}

.user-pro-dropdown .nav-link>p {
    color: var(--white);
}

.user-pro-dropdown .nav-link::after {
    position: absolute;
    right: 0;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.00112 0.179495C1.19403 -0.0334646 1.50679 -0.0334646 1.6997 0.179495L4.95286 3.77084C5.14577 3.9838 5.45853 3.9838 5.65143 3.77084L8.9046 0.179496C9.0975 -0.0334635 9.41026 -0.0334635 9.60317 0.179496C9.79608 0.392456 9.79608 0.737732 9.60317 0.950691L6.35001 4.54203C5.77129 5.18091 4.833 5.18091 4.25429 4.54203L1.00112 0.95069C0.808219 0.73773 0.808219 0.392455 1.00112 0.179495Z' fill='white'/%3E%3C/svg%3E%0A");
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 13px;
    border: 0 !important;
    top: 20px;
}

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

.dashboard-btn {
    padding: 10px 20px !important;
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 16px !important;
    min-height: 45px !important;
    &:hover{
        color: var(--white);
    }
}

.user-pro-dropdown .dropdown-menu {
    padding: 0;
    border-radius: 13px;
    min-width: 300px;
}

.user-pro-dropdown .dropdown-menu li a {
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.drop-img-box {
    width: 45px;
    height: 45px;
    background-color: #A164FF;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    border: 1px solid #0A0A0A;
}

.user-pro-dropdown .dropdown-menu li a>p {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.user-pro-dropdown .dropdown-menu li+li {
    border-top: 1px solid #CFCFCF;
}

.pro-dropdown-list {
    overflow: hidden;
    border-radius: 13px;
}

.user-pro-dropdown .dropdown-menu li a:hover {
    background-color: #6d42f340;
}

.user-pro-dropdown .dropdown-menu[data-bs-popper] {
    margin-top: 20px !important;
    top: 100%;
    left: -50%;
    margin-top: .125rem;
    transform: translateX(-11%);
}

.navbar-brand {
    padding: 0;
}

.navbar {
    padding: 40px 0 20px;
}

/* ================= hero-sec =================== */
.hero-content>span {
    font-size: 16px;
    padding: 7px 50px;
    background-color: #0000002e;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    margin: 0 0 20px;
}

.hero-content>h1 {
    max-width: 665px;
    line-height: 60px;
    margin: 0 0 26px;
}

.hero-content>h1 .text-highlighted {
    color: #0A0A0A;
}

.hero-content>p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #fff;
    opacity: 0.7;
    max-width: 605px;
    text-transform: capitalize;
}

.hero-sec-inner {
    padding: 140px 0 190px;
    background-color: #6D42F3;
    border-radius: 0 0 100px 100px;
}

.hero-sec {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    right: 0;
}

.hero-img {
    position: relative;
    width: 100%;
    max-width: 930px;
}

.hero-bg {
    position: absolute;
    right: -18px;
    max-width: 1106px;
    width: 100%;
    top: 0px;
}

.hero-content {
    margin-top: 135px;
}

.hero-img-box {
    display: flex;
    justify-content: flex-end;
}

/* ================= hero-sec =================== */

/* =========== Find tutor sec ================  */

.find-tutor-sec {
    padding: 0px 0 40px;
    margin-top: -430px;
    position: relative;
}
.find-tutor-sec.home-tutor-sec{
    margin-top: -230px;
}
.find-tutor-wrapper {
    background-color: var(--secondary-color);
    border-radius: 50px;
    padding: 50px 55px 55px;
}

.find-tutor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1561px;
    margin: 0 auto 24px;
}

.find-tutor-head>h2 {
    color: var(--white);
    line-height: 57px;
    max-width: 571px;
    text-transform: capitalize;
}

.find-tutor-search {
    display: flex;
    align-items: center;
    gap: 17px;
}

.find-tutor-search .formfield .form-control {
    min-width: 391px;
    padding-left: 65px;
}

.find-tutor-search .formfield .form-control::placeholder {
    color: #5C5C5C;
}

.find-tutor-search .formfield .search-icon {
    position: absolute;
    top: 12px;
    left: 24px;
    display: flex;
}

.find-tutor-search .primary-btn {
    white-space: nowrap;
    border: 1px solid var(--white);
    min-width: 140px;
}

.home-filter {
    max-width: 1561px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px; 
}

.home-filter .form-group {
    width: 100%;
}

.form-control.dark {
    background: #1c1d20;
    border-color: transparent;
    color: var(--white);
    border-radius: 15px;
    min-height: 72px;
    cursor: pointer;
    background-image: url("data:image/svg+xml, %3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.21461 0.762662C1.48505 0.479772 1.78922 0.373622 2.12711 0.373622C2.465 0.373622 2.8032 0.515064 3.0396 0.762662L12.2673 10.3802L21.4608 0.762662C21.7312 0.480063 22.0691 0.338623 22.4073 0.338623C22.7453 0.338623 23.0834 0.480065 23.3198 0.727664C23.827 1.25815 23.827 2.14178 23.3198 2.6723L13.2135 13.2791C12.7064 13.8096 11.8617 13.8096 11.3545 13.2791L1.21461 2.70739C0.707758 2.1769 0.707758 1.29298 1.21461 0.762453V0.762662Z' fill='%236D42F3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 30px;
}

.home-filter .form-group label {
    color: var(--white);
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 10px;
}

.home-filter .form-group:has(.form-control.dark) .input-icon {
    top: 30px;
}





.course-card {
    padding: 13px 10px 10px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
}
.course-card-video {
    position: relative;
}
.course-card-video img,
.course-card-video video {
    max-height: 330px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}
.card-badge-wrapper {
    display: flex;
    position: absolute;
    right: 10px;
    bottom: 10px;
    gap: 10px;
}
.course-card-badge {
    /* position: absolute;
    right: 11px;
    bottom: 6px; */
    padding: 5px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    border: 1px solid var(--white);
    font-size: 14px;
    line-height: 16px;
}
.course-card-badge:empty{
    display: none;
}
.course-card-top {
    position: relative;
    margin-bottom: 15px;
}
.course-card-top img {
    max-height: 232px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 328px;
}
.course-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 00 0 10px;
}
.course-card-title h3 {
    color: var(--white);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    display: inline-block;
    max-width: 14em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.course-card-title strong {
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}
.course-card-bottom h5 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 15px;

}
.course-card-bottom > p {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
    max-height: 32px;
    opacity: 0.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    min-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow : hidden;
    max-width: 100%;
}
.course-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 10px;
}
.card-stats-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f2f2f229;
    border-radius: 6px;
}
.course-view-btn {
    height: 39px;
    min-height: 39px;
    border: 0.5px solid #fff;
    font-size: 16px;
    border-radius: 3px;
}
.home-course-card-box .course-card{
    border: 1px solid #474747;
}
.home-course-card-box .course-card .course-view-btn {
    height: 45px;
    border-radius: 5px;
}

/* =========== Find tutor sec ================  */

/* ============= Course Offering Sec ============= */

.course-offering-sec {
    padding: 40px 0 80px;
}
.course-offering-warapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.course-offering-left {
    max-width: 532px;
    width: 100%;
}
.course-offering-left h2 {
    margin: 0 0 22px;
    max-width: 400px;
    text-transform: capitalize;
}
.course-offering-left > p {
    font-size: 16px;
    font-weight: 500;
    color: #6C7383;
    line-height: 28px;
    margin: 0 0 38px;
    text-transform: capitalize;
}
.course-offering-box {
    max-width: 237px;
    min-height: 109px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #E1E3FA;
    border-radius: 22px;
}
.course-offering-right {
    width: 100%;
}
.course-offering-list {
    width: 100%;
    display: flex;
    grid-template-columns: repeat(4, auto);
    gap: 24px 22px;
    justify-content: end;
    justify-items: end;
    flex-wrap: wrap;
}
.course-offering-box:nth-of-type(n+5):nth-of-type(-n+10){
    max-width: 255px;
}
.course-offering-box:nth-child(2){
    background-color: #F5D7D7;
}
.course-offering-box:nth-child(3){
    background-color: #DCE4ED;
}
.course-offering-box:nth-child(4){
    background-color: #E8DCCF;
}
.course-offering-box:nth-child(5){
    background-color: #EFDAE5;
}
.course-offering-box:nth-child(6){
    background-color: #CCE3EA;
}
.course-offering-box:nth-child(7){
    background-color: #D8D6D5;
}
.course-offering-box:nth-child(8){
    background-color: #F5D7D7;
}

/* ============= Course Offering Sec ============= */

/* ============= Upcoming Event Sec ================ */

.upcoming-event-sec {
    padding: 80px 0 190px;
    background-image: url(../img/upcoming-event-img.png);
    background-position: 0px -79px;
    background-repeat: no-repeat;
    background-size: cover;
}
.upcoming-events {
    max-width: 572px;
    width: 100%;
    background-color: #fff;
    padding: 80px 40px;
    border-radius: 42px;
    border: 5px solid #A164FF;
    /* margin-right: -38px; */
    position: relative;
}
.upcoming-events h2 {
    font-size: 45px;
    line-height: 57px;
    margin: 0 0 60px;
    text-transform: capitalize;
}
.upcoming-events h2 span{
    color: var(--primary-color);
}
.upcoming-events p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text-color);
    max-width: 470px;
}
.upcoming-event-wrapper {
    display: flex;
    align-items: center;
}
.upcoming-event-right {
    width: 100%;
}
.upcoming-event-left {
    max-width: 572px;
    width: 100%;
    margin-right: -20px;
}
.top-event-details {
    background-color: #fff;
    padding: 30px;
    border-radius: 55px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.top-event-cards {
    padding: 20px;
    background-color: #DDF4E6;
    border-radius: 20px;
    border: 1px solid #4FAC73;
    height: 100%;
}
.top-event-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 20px;
}
.top-event-head h3 {
    font-size: 28px;
    line-height: 34px;
}
.top-event-badge {
    padding: 3px 17px;
    background-color: #FF7F40;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    outline: 3px solid #FF576D;
    min-width: 83px;
    text-align: center;
}
.top-event-cards > p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--text-color);
    text-transform: capitalize;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow : hidden;
    max-width: 100%;
    line-height: 1.5;
}
.top-event-cards h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 8px;
    text-transform: capitalize;
}
.meeting-platforms {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}
.top-event-date {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-event-date > p{
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    text-transform: capitalize;
    opacity: 0.7;
    white-space: nowrap;
}
.event-date-box {
    background-color: var(--white);
    padding: 10px 35px 10px 18px;
    border-radius: 28px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #0A0A0A;
    font-weight: 500;
    flex-direction: column;
    width: 100%;
}
.event-date-box > p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}
.event-date-box span{
    display: flex;
}
.top-event-cards:nth-child(2){
    background-color: #F8F2DF;
    border-color: #E1AA00;
}
.top-event-cards:nth-child(3){
    background-color: #F5EBEB;
    border-color: #FF7F40;
}
.top-event-cards:nth-child(4){
    background-color: #F2F5FA;
    border-color: #2D8CFF;
}

/* ============= Upcoming Event Sec ================ */

/* ================= Footer ======================== */

.footer-inner {
    background-color: var(--black);
    padding: 35px 0;
    border-radius: 73px 73px 0 0;
    margin-top: -95px;
    position: relative;
    background-image: url(../assets/img/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
}
.footer-wrapper {
	max-width: 825px;
	margin: 0 auto;
}
.footer-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 38px;
}
.footer-menu-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 24px;
}
.footer-menu-list a{
    color: var(--white);
    text-transform: capitalize;
    font-size: 20px;
    line-height: 30px;
    transition: all 0.3s ease;
    position: relative;
    &:hover{
        color: #fff;
    }
}
.footer-menu-list a::before{
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: .6s;
    display: block;
}
.footer-menu-list a:hover::before {
    width: 100%;
}
.social-media-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-media-links{
    margin: 0 0 30px;
}
.reserved-txt, .reserved-txt a{
    color: var(--white);
    text-align: center;
    font-weight: 500;
}
.planet {
    position: absolute;
    top: 70px;
    right: 85px;
}
.footer-formul1 {
    position: absolute;
    right: 90px;
    bottom: 40px;
    width: 150px;
}
.footer-formul2 {
    position: absolute;
    left: 177px;
    bottom: 200px;
    width: 150px;
}
.white-outline-btn {
    border-color: #fff;
    color: #fff;
    min-width: 155px;
    &:hover{
        color: var(--white);
    }
}
.top-event-details .flex-end-box{
    grid-column: span 2;
}
.flex-end-box{
    display: flex;
    justify-content: end;
    align-items: center;
}
/* ================= Footer ======================== */

.event-sec {
    padding: 60px 0;
}
h2.event-head-txt {
    text-align: center;
    margin: 0 0 40px;
}
.event-list-container .row > div:nth-child(even) .top-event-cards{
    border-color: #E1AA00;
    background-color: #F8F2DF;
}
body:has(.event-sec) .footer-inner{
    margin-top: 0;
}



/* ============ without-login Course Detail CSS ============= */


.course-banner-inner{
    min-height: 500px;
    padding: 40px 0;
    background-color: var(--primary-color);
    border-radius:   0 0 20px 20px;
}
.course-banner-inner h1 {
    display: none;
}
.course-banner-inner h1 span{
    color: var(--secondary-color);
}
.course-detail-login {
    background-color: black;
    padding: 50px;
    border-radius: 50px;
}
main:has(.course-detail-login) .footer-inner{
    margin-top: 0;
}
.course-details-banner {
    display: flex;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 0 20px;
}
.course-banner-thumbnail {
    position: relative;
    width: fit-content;
    width: 100%;
    max-width: 414px;
}
.course-banner-thumbnail img {
    max-width: 414px;
    width: 414px;
    object-fit: cover;
    border-radius: 10px;
    max-height: 292px;
}
.card-badge-wrapper {
    display: flex;
    position: absolute;
    right: 10px;
    bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.course-card-badge {
    padding: 5px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    border: 1px solid var(--white);
    font-size: 14px;
    line-height: 16px;
}
.course-banner-details {
    color: var(--white);
    width: 100%;
    position: relative;
}

.course-banner-details .card-badge-wrapper {
    position: static;
    margin-top: 10px;
    justify-content: flex-start;
}

.course-banner-head {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 15px;
}
.course-banner-head h3 {
    color: #fff;
    font-size: 30px;
    line-height: 34px;
}
.course-banner-head h3 {
    color: #fff;
    font-size: 30px;
    line-height: 34px;
}
.course-banner-details > h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    opacity: 0.7;
    margin: 0 0 12px;
}
.course-banner-details > p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.4;
    margin: 0 0 17px;
    max-height: 120px;
    overflow: auto;
}
.banner-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.module-and-feedback-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}
.module-and-feedback-head > .button {
    min-width: 140px;
    border-radius: 6px;
    min-height: 45px;
    padding: 5px 20px;
    font-size: 16px;
}
.white-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}
.white-btn {
    background-color: var(--white);
    color: var(--secondary-color);
}
.module-and-feedback-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px;
}
.multi-module-tab-flex {
    gap: 30px;
}
.multi-module-tab-flex .nav-link {
    min-width: 204px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--heading-color);
}
.multi-module-tab-flex .nav-link.active {
    background-color: var(--primary-color);
}
.module-and-feedback-body {
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
}
.module-tab-content h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 20px;
}
.module-tab-content > p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
    opacity: 0.7;
    margin: 0 0 30px;
}
.module-dtail-card {
    background-color: var(--border-color);
    padding: 45px 30px;
    border-radius: 13px;
}

.nav-right-box .button.white-outline-btn{
    border-color: #fff;
    color: #fff;
}
.multi-module-accordian {
    background-color: #F2F2F2;
    padding: 13px 0;
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
}
.multi-module-accordian .accordion-item {
    background-color: #F2F2F2;
    border: 0;
}
.multi-module-accordian .accordion-header {
    margin-bottom: 0;
    padding: 0 6px 6px;
}
.multi-module-accordian .accordion-button {
    border-radius: 10px !important;
    background-color: var(--white);
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
}
.multi-module-accordian .accordion-button::after{
    margin-left: 0;
}
.multi-module-accordian .accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--primary-color);
    box-shadow: unset;
}
.multi-module-accordian .multi-sec-list {
    display: flex;
    flex-direction: column;
}
.multi-module-accordian .accordion-body{
    padding: 0;
    background-color: #fff;
    margin-bottom: 10px;
}
.multi-module-accordian .multi-sec-list a{
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    background-color: #E5E5E7;
    position: relative;
    &:hover{
        background-color: #D7CFF2;
    }
}
.multi-module-accordian .multi-sec-list a .dot-sec{
    width: 13px;
    height: 13px;
    border-radius: 50px;
    background-color: #6C7383;
}
.multi-module-accordian .multi-sec-list a.active .dot-sec{
    background-color: var(--primary-color);
}
.multi-module-accordian .multi-sec-list a.active::after{
    content: "";
    height: 100%;
    width: 6px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}
.multi-module-accordian .multi-sec-list a.active{
    background-color: #D7CFF2;
}
.multi-module-accordian .multi-sec-list a + a{
    margin-top: 1px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.multi-task-detail h4 {
    font-size: 22px;
}

/* ============ without-login Course Detail CSS ============= */
.accordion-button-intro::after {
        background-image: none !important;
}
.accordion-button-intro.active{
    background-color: var(--primary-color);
    color: var(--white);
}
.video-js {
    width: 100%;
    height: 400px;
}

.video-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.2s ease-in-out;
}

.rewind-overlay {
    left: 10%;
}

.forward-overlay {
    right: 10%;
}


.video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border: 2px solid #ddd !important;
    border-radius: 10px;
    overflow: hidden;
}
.video-js {
    height: 297px;
}
.popscale {
    animation: popscale 0.3s ease-out;
}
.course-detail-login > h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 60px;
}

.offcanvas {
    width: 668px;
}
.offcanvas-header, .offcanvas-body {
    padding: 20px 70px 20px 45px;
}
.offcanvas-header .btn-close{
    width: 30px;
    height: 30px;
    border: 2px solid #0a0a0a;
    opacity: 1;
    border-radius: 50%;
    background-color: #F2F2F2;
    background-size: 18px;
}
.card-details-box .form-group label{
    margin-bottom: 15px;
    color: var(--heading-color);
    opacity: 0.7;
    font-weight: 500;
}
.card-details-box .form-group{
    margin-bottom: 14px;
}
.multi-sec-detail {
    padding: 20px;
    background-color: #F2F2F2;
    border-radius: 13px;
}



@keyframes popscale {
    0% {
        transform: scale(1.5) translateY(-50%);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) translateY(-50%);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(-50%);
        opacity: 1;
    }
}
#course-component{
    width: 100%;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.take-quiz {
    width: 203px;
    min-width: 203px;
    height: 190px;
    background-color: #A164FF;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 21px 18px 6px;
    cursor: pointer;
}
.take-quiz p {
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}
.task-media-inner {
    display: flex;
    grid-template-columns: auto auto auto;
    gap: 20px;
    flex-wrap: wrap;
}
.task-media-box h4 {
    margin: 0 0 23px;
    font-size: 25px;
    font-weight: 700;
}
.task-media-box {
    margin: 20px 0;
}
.pdf-box {
    background-color: #fff;
    width: 203px;
    height: 190px;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
}
.pdf-box > img {
    width: 44px;
    height: 60px;
}
.pdf-box > p {
    text-align: center;
}
.upcoming-event-sec .top-event-cards h5{
    font-weight: 700;
}
.module-and-feedback-body:has(.feedback-listing){
    padding: 60px 45px;
}
.feedback-listing-box {
    border: 1px solid #BABFCF;
    border-radius: 10px;
    padding: 25px 25px 25px 45px;
    box-shadow: 0px 6px 11px 0px  #0000001f;
}
.feedback-listing-profile > img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 30px;
    object-fit: cover;
}
.feedback-listing-profile{
    display: flex;
    align-items: center;
    gap: 8px;
}
.feedback-listing-profile > p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}
.feedback-listing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
}
.feedback-msg {
    margin-bottom: 30px;
}
.feedback-msg p{
    font-size: 18px;
    line-height: 24px;
}
.reply-acc  img{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 30px;
    object-fit: cover;
}
.reply-img{
    box-shadow: 0px 2px 4px 0 #0000001c;
    padding: 5px;
    background-color: #fff;
    border-radius: 50px;
}
.reply-acc {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}
.feedback-reply-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-left: 50px;
}
.reply-acc .formfield , .reply-acc .formfield .form-control {
    width: 100%;
    background-color: #fff;
}
.reply-acc ~ .primary-btn{
    white-space: nowrap;
    min-width: 224px;
}
.feedback-listing-box + .feedback-listing-box{
    margin-top: 20px;
}
.task-media-box > p {
    margin-top: 15px;
}
.revie-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}


/* =============== feedback modal css 30-09-2025 ================ */

.feedback-modal .modal-dialog {
    max-width: 659px;
}
.feedback-modal .modal-content {
    border-radius: 20px;
}
.feedback-modal-design {
    margin: 0 auto 20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #0A0A0A;
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feedback-modal-box h2 {
    text-align: center;
    text-transform: capitalize;
    font-size: 45px;
    margin: 0 00 40px;
    line-height: 50px;
}
.feedback-modal .modal-body{
    padding: 50px;
}

.feedback-modal-form select{
    cursor: pointer;
}


/* =============== feedback modal css 30-09-2025 ================ */


.course-offering-box img {
    height: 77px;
    border-radius: 10px;
    object-fit: contain;
}

/* =========== Event Details Page CSS 10-102025 ====================== */

.event-detail-sec {
    padding: 30px 0;
    background-color: #F2F2F2;
}
body:has(.event-detail-sec) .footer-inner {
    margin-top: 0;
}
body:has(.event-detail-sec) footer{
    background-color: #F2F2F2;
}
.event-details-card {
    padding: 35px 30px 75px;
    background-color: var(--white);
    border-radius: 15px;
}
.event-details-img {
    margin: 0 0 33px;
}
.event-details-img img {
    width: 100%;
    max-height: 285px;
    height: 285px;
    border-radius: 15px;
    overflow: hidden;
}
.event-details-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 5px;
    gap: 15px;
    flex-wrap: wrap;
}
.event-details-card > p {
    color: #6C7383;
    margin: 0 0 17px;
}
.event-details-heading h3 {
    font-size: 28px;
    line-height: 40px;
}
.event-details-heading .paid-badge {
    padding: 4px 17px;
    background-color: #FF7F40;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    outline: 3px solid #FF576D;
}
.event-platform {
    display: flex;
    gap: 45px;
    margin: 0 0 30px;
}
.event-platform-name h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 5px;
    white-space: nowrap;
}
.event-platform-link {
    padding: 20px 20px 25px;
    border-radius: 10px;
    background-color: var(--border-color);
    width: 100%;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 700;
    word-break: break-all;
}
.db-comman-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 25px;
    gap: 10px;
    flex-wrap: wrap;
}
.db-comman-head>h2 {
    font-size: 35px;
    line-height: 42px;
}
.event-date-time {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.event-date-time .event-date {
    display: flex;
    gap: 20px;
    align-items: center;
}
.event-date-time .event-date h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    background-color: #f2f2f2;
    font-size: 16px;
    line-height: 32px;
}
.event-details-buys {
    margin-top: 20px;
}
.event-details-buys .button {
    max-width: 250px;
    margin: 0 auto;
}
.event-platform-link a {
    color: #A164FF;
}








/* =========== Event Details Page CSS 10-102025 ====================== */
span.select-icon {
    position: absolute;
    right: 20px;
    top: 25px;
}

.youtube-wrapper, .video-wrapper {
	/* height: 300px; */
    padding-bottom: 400px !important;
}






/* Marker for TIMESTAMP */
.progress-marker {
  width: 8px;
  height: 10px;
  background: #ffd600;
  border-radius: 2px;
  cursor: pointer;
  top: 6px; /* adjust to align inside the progress bar area */
  z-index: 60;
  transition: background .12s, height .12s, top .12s;
  position: absolute;
}

/* active/highlighted marker */
.progress-marker.active {
  background: #ff7a00;
  height: 14px;
  top: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
