/* RUHS LMS Custom Styles */

:root {
    --ruhs-primary: #F4B382;
    --ruhs-secondary: #475569;
    --ruhs-accent: #3b82f6;
    --ruhs-success: #059669;
    --ruhs-warning: #d97706;
    --ruhs-danger: #dc2626;
    --ruhs-light: #f8fafc;
    --ruhs-dark: #1e293b;
    /* --ruhs-orange: linear-gradient(90deg, #f67f00 35%, #f5a74e); */
    --ruhs-orange: #F4B382;
}

/* Global Styles */
body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */

    color: var(--ruhs-dark);
    font-family: "Outfit", sans-serif;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-dark.bg-primary {
    background-color: var(--ruhs-primary) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* .card-header {
    background: linear-gradient(135deg, var(--ruhs-primary), var(--ruhs-accent));
    color: white;
    border-radius: 12px 12px 0 0 !important;
    border: none;
} */

/* Buttons */
.btn-primary {
    background-color: var(--ruhs-primary);
    border-color: var(--ruhs-primary);
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}

.btn-outline-primary {
    color: var(--ruhs-primary);
    border-color: var(--ruhs-primary);
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--ruhs-primary);
    border-color: var(--ruhs-primary);
}

/* Form Controls */
.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 11px 1.125rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #141724;
    appearance: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid #ebebeb;
    border-radius: 0.3125rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ruhs-accent);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.input-group-text {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
}

/* Progress Bars */
.progress {
    border-radius: 10px;
    background-color: #e2e8f0;
}

.progress-bar {
    background: linear-gradient(90deg, var(--ruhs-accent), var(--ruhs-primary));
    border-radius: 10px;
}

/* Stats Cards */
.card.bg-primary {
    background: linear-gradient(135deg, var(--ruhs-primary), var(--ruhs-accent)) !important;
}

.card.bg-success {
    background: linear-gradient(135deg, var(--ruhs-success), #10b981) !important;
}

.card.bg-info {
    background: linear-gradient(135deg, var(--ruhs-accent), #60a5fa) !important;
}

.card.bg-warning {
    background: linear-gradient(135deg, var(--ruhs-warning), #f59e0b) !important;
}

/* Tables */
/* .table {
    border-radius: 8px;
    overflow: hidden;
} */

.table thead th {
    background-color: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: var(--ruhs-dark);
}

.table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges */
.badge {
    border-radius: 6px;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Dashboard Specific */
.dashboard-stats .card {
    min-height: 120px;
}

.dashboard-stats .card-body {
    padding: 1.5rem;
}

/* Course Cards */
.course-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
} */


.course-thumbnail {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--ruhs-dark), #334155) !important;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }

    .table-responsive {
        border-radius: 8px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--ruhs-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ruhs-primary);
}

/* Utility Classes */
.text-ruhs-primary {
    color: var(--ruhs-primary) !important;
}

.bg-ruhs-light {
    background-color: var(--ruhs-light) !important;
}

.border-ruhs {
    border-color: var(--ruhs-primary) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}


/* .headertop nav {
    background: linear-gradient(93.46deg, #ff7f00 -.47%, #fba959 100.92%);
} */

.headertop nav a.navbar-brand img {
    width: 75px;
    height: auto;
}

.headertop ul.navbar-nav li a {
    color: #FFF;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
}

.topbanner {
    background: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    position: relative;
}


.topbanner h1 {
    color: #04000b !important;
    font-family: "Outfit", sans-serif;
}


.topbanner h1 span {
    background: linear-gradient(90deg, #f67f00 35%, #f5a74e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Outfit", sans-serif;
}

.topbanner .lead {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
}

.bannertwo a.btn.btn-primary {
    background: var(--ruhs-orange) !important;
    border: 1px transparent;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
}

.bannertwo a.btn.btn-outline-primary.btn-lg {
    border: 1px solid #f67f00;
    color: #f67f00;
    display: flex;
    align-items: center;
}


.choosehomenmain h2 {
    font-size: 34px;
    font-weight: 600;
}

.choosehomenmain h2 span {
    position: relative;
    background: linear-gradient(90deg, #f67f00 35%, #f5a74e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Outfit", sans-serif;
}


.choosehomenmain h2 span svg {
    position: absolute;
    bottom: -8px;
    width: 120px !important;
    z-index: -1;
    left:80%;
    transform: translate(-50%, 0);
}

.choosehomenmain p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.cardchoose .card-body {
    border-radius: 20px;
    border: 1px solid rgba(3, 31, 66, 0.1);
    padding: 23px 23px 23px 23px;
    text-align: left;height: 100%;
}

.cardchoose .card-body .card-title {
    margin: 0 0 10px 0;
    font-family: "Outfit", sans-serif;
}

.cardchoose .card-body p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.choosehomenmain {
    background: #FFF;
    z-index: 0;
    position: relative;
    padding: 20px 0;
}

.iconcompre {
    background: linear-gradient(270deg, rgb(47 112 255 / 26%) 0%, rgba(157, 97, 237, 0.01) 100%);
    padding: 10px;
    border-radius: 10px;
}


.iconprogress {
    background: linear-gradient(270deg, rgb(48 135 82 / 26%) 0%, rgba(157, 97, 237, 0.01) 100%);
    padding: 10px;
    border-radius: 10px;

}

.iconcerti {
    background: linear-gradient(270deg, rgb(249 192 0 / 26%) 0%, rgba(157, 97, 237, 0.01) 100%);
    padding: 10px;
    border-radius: 10px;
}


.platformmain h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 30px 0;
    font-family: "Outfit", sans-serif;

}


.platformmain {
    background-color: #FFEFE6;
    border-top-left-radius: 80px;
    padding: 60px 80px 60px 65px;
    -webkit-box-shadow: 0px 6px 1px 0px rgba(255, 153, 96, 0.1215686275) inset;
    box-shadow: 0px 6px 1px 0px rgba(255, 153, 96, 0.1215686275) inset;
    margin: 0 0 0 40px;border-radius: 10px;
}

.platformitem {
    border-right: 2px solid #FFD9C6;
    padding: 0px 0;
}

.platformitem .h2 {
    font-size: 38px;
    color: #000 !important;
    font-family: "Outfit", sans-serif;
}

.platformitem p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.platformitem i {
    color: #f67f00;
    margin: 0 0 16px 0;
}



.learning h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: "Outfit", sans-serif;
}

.learning p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.learning a {
    background: var(--ruhs-orange) !important;
    border: 1px transparent;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    display: inline-block;
}


.coursemainheding {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: "Outfit", sans-serif;

}

.coursemain {
    background: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 0 50px 60px 50px;
    border-radius:20px;
}

.coursemainheding h2 {
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 30px 0;
}

.coursemain .card {
    box-shadow: 0px 15px 20px -10px rgb(109 117 143 / 33%);
    padding: 20px;
}

.coursemain .card-body {
    padding: 20px 0 0 0;
}

.coursemain .card-body h5 {
    font-size: 22px;
    color: #000 !important;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}

.coursemain .card-body p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.coursemain .card-body span {
    background: #FFEFE6 !important;
    color: #f67f00;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
}


.coursemain .card-body small {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.coursemain .card-body strong {
    color: #f67f00 !important;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
}

.coursemain .card-body a {
    border: 1px solid #f67f00;
    color: #f67f00;
    padding: 10px 0;
    font-size: 18px;
}


ul.dropdown-menu li a {
    color: #000 !important;
}



/* 
.card.usercreatetop {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin: 20px 0 30px 0;
}


.card.usercreatetop .card-header {
    background: transparent;
    border-bottom: 1px solid #ebebeb;
    padding: 20px;
}

.card.usercreatetop .card-header h3 {
        font-size: 20px;
            font-weight: 600;
            margin: 0 0 0px 0;
            color: #000;text-align: left;
            font-family: "Outfit", sans-serif;

}

.usercreatebtn .btn {
    padding: 10px 1.125rem;
    --pe-btn-font-family: ;
    font-size: 16px;
    font-weight: 400;
    line-height:inherit;
    background: #f67e00;
    border-color: #f67e00;
    border-radius: 0.3125rem;
}

.card.usercreatetop .btn {
    padding:10px 1.125rem;
   
    font-size: 16px;
    font-weight: 400;
    line-height:inherit;
    background: #f67e00;
    border-color: #f67e00;
    border-radius: 0.3125rem;
    color: #FFF;
}

.customtablemaininn {
    border-radius: 0;
    overflow: auto;
}


.last-tablebtn a.btn.btn-sm.btn-outline-primary {
    background: rgb(106 114 130 / 10%);
    border-color: rgb(106 114 130 / 10%);
    color: #6a7282;padding: 4px 7px;
}


.last-tablebtn button.btn.btn-sm.btn-outline-danger {
    background: rgb(249 225 198);
        border-color: rgb(255 208 155);
        color: #ee7d00;padding:4px 7px;
}

.last-tablebtn a.btn.btn-sm.btn-outline-secondary{
    color: #003f7d;
        padding: 4px 9px;
        background: rgb(156 206 255 / 34%);
        border-color: rgb(111 179 247);
} */





.userdashcard4inn {
    flex-direction: column;
    gap: 18px;
}


.userdashcard1 {
    background: linear-gradient(90deg, #ffbf96, #fe7096);
}

.card.userdashcard.userdashcard2 {
    background: linear-gradient(90deg, #90caf9, #047edf 99%);
}

.card.userdashcard.userdashcard3 {
    background: linear-gradient(90deg, #84d9d2, #07cdae);
}

.card.userdashcard.userdashcard4 {
    background: linear-gradient(90deg, #da8cff, #9a55ff);
}




.userdashcard .card-body img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.userdashcard {
    position: relative;
    border-radius: 4px;
}


.card.usercard {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;

}

.card.usercard .card-header {
    margin-bottom: 0;
    background-color: #fff;
    transition: all .5s ease-in-out;
    position: relative;
    padding: 0px 0 20px 0;
    color: #000;
    border-bottom: 1px dashed rgb(229 229 229);
}


.table-responsive.useradtablemian table tr th {
    color: #000;
    border-bottom: 1px solid #E9ECEF;
    padding: 17px;
    background: transparent;
}

table.table.table-bordered.table-striped.verticle-middle {
    margin: 0;
}

.recentprogressscroll {
    height: 240px;
    overflow-x: overlay;
    overflow-y: scroll;
}


.coursedetalleftinn p {
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

.coursedetalleftinn h1 {
    font-size: 34px;
    font-weight: 600;
}

.coursedetalleftinn img {
    width: 100%;
}

.coursedetalleftinn h5 {
    font-size: 34px;
    font-weight: 600;
}


.coursedetalleftinn h6 {
    font-size: 24px;
}

.modulebox {
    margin: 10px 0 10px 0 !important;
}



.modulebox ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 12px;
    margin: 20px 0 0 0;
}


.modulebox ul li {

    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;


}


.modulebox ul li small {
    color: #f4a64c !important;
}


.card.coursedetalright.mb-4 {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 20px;
}


.btn.btn-learning {
    background: #f4a347;
    color: #fff;
    padding: 10px;
}


a.btn.btn-outline-secondary {
    border: 1px solid #f4a347;
    color: #f4a347;
    padding: 10px;


}

.instructorlist li {
    font-weight: 500;
    margin-top: 8px;
    padding-top: 8px;
    border-bottom: 1px solid #e7e7e7;
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.facultylist h6 {
    font-size: 20px;
}

/* .contentslisttop a:first-child {
background: #f67f00;
    border: 1px solid #f67f00;
} */


.card-footer.learningfooter {
    padding: 0;
    background: transparent;
    margin: 10px 0 0 0;
}

.instructorlist li:last-child {
    border: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
}





/*** 
=============================================
    Float Bob Y Animation Css
=============================================
***/
@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.bannerright {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}



.linebanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    background-image: url(../images/banner-line-shape-bg.png);
}

.banner-two__shape-2 {
    position: absolute;
    top: 180px;
    left: 0;z-index:-1 !important;
}


.banner-two__shape-3 {
    position: absolute;
    bottom: 70px;
    right: 0;
}



/* Image Bounce */

@-webkit-keyframes ImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes ImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}


.img-bounce {
    -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}


.moduleaccordion .bg-primary {
    --bs-bg-opacity: 1;
    background-color: #eeb27e !important;
}


.moduleaccordion button.accordion-button.active .bg-primary {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
    color: #eeb27e;
}

.instructorshead {
    background: #fce7cc;
    padding: 7px;
}


.testimonial-one__img-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px dashed #052143;
    border-radius: 50%;
    margin: 0 15px 0 0;
}



.testimonial-one__img img {
    width: 54px;
    border-radius: 70%;
    height: 54px;
}


.testimonial-one__icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #f4a347;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 0px;
    left: -13px;
}

.rightinstra {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}


.rightinstra span {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.testimonial-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: #FFF;
}

.testimonial-one__icon i {
    font-size: 11px;
    color: #FFF;
}

.accordion.faqquestioninn .accordion-item {
    border: none;
    margin-bottom: 19px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion.faqquestioninn .accordion-button:not(.collapsed) {
    color: #FFF;
    background-color: #F4B382;
    box-shadow: inherit;
}

.accordion.faqquestioninn .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


form.questionform .form-check {
    margin: 0 0 10px 0;
    display: flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

form.questionform .form-check-input:checked {
    background-color: #eeb27e;
    border-color: #eeb27e;
}

.badge.bg-primary.timermain {
    background: #eeb27e !important;
    padding: 0.75rem 1.5rem;
}


.badge.bg-primary.timermain span {
    background: #f67f00;
    padding: 5px;
    border-radius: 6px;
}

.badge.bg-primary.timermain {
    background: #eeb27e !important;
    padding: 0.75rem 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
}



.numberquesright a.btn.btn-sm.btn-success {
    background-color: #198754;
    border: 1px solid #198754;

}



.numberquesright a {

    border-radius: 5px;
    font-weight: 600;
    padding: 3px 17px !important;
    transition: all 0.3s ease;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 55px;
    height: 55px;
}

.numberquesright a:hover {
    background: #f67f00;
    color: #FFF;

}



form.questionform button.btn.btn-outline-secondary {
    font-size: 18px;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 18px;
}


.btn:hover {
    background-color: #f67f00!important;
    border-color: #f67f00!important;color: #FFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}


.text-start.modulestart h4 {
    color: #000;
}


button.accordion-button.collapsed.active .text-start.modulestart h4 {
    color: #fff;
}

button.accordion-button.active .text-start.modulestart h4 {
    color: #fff;
}


.list-group.list-group-flush.module.listnewmain {
    position: relative;
    display: block;
    border: 1px solid #eeb27e;
    background-color: #fffaf6;
    border-radius: 5px;
    padding: 31px 30px 40px;
}


.listnewmainin {
    background: transparent;
    border-bottom: 1px solid #eeb27e !important;
    border-radius: 0px !important;
}


.listnewmainin:last-child {
    border-bottom: 0px solid #eeb27e !important;
}


.accordion.moduleaccordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


.accordion.moduleaccordion .accordion-button.collapsed {
    background-color: #f1f5f9;
    color: #6c757d;
}

.bg-primary.text-white.p-2.rounded.mb-3.d-flex.align-items-center.lessontop {
    background: #f67f00 !important;
}





.list-group-item.active {
    z-index: 2;
  
    background-color: #eda23d;
    border-color: #eda23d;
}


/* .contentslisttop.modulelearn a:first-child {
    background: transparent;
    border: 0px solid #f67f00;
}
 */


/* Base dropdown styling */
.custom-dropdown {
    background: #fff;
    border-radius: 5px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    min-width: 240px;
    overflow: hidden;z-index: 9999;
}

/* Profile header */
.custom-dropdown .dropdown-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.custom-dropdown .dropdown-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.custom-dropdown .dropdown-header strong {
    display: block;
    font-size: 18px;
    color: #111827;
}

.custom-dropdown .dropdown-header small {
    font-size: 18px;
    color: #6b7280;
}

/* Menu items */
.custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 10px 16px;
    color: #374151;
    transition: background 0.2s ease;
}

.custom-dropdown .dropdown-item i {
    width: 20px;
    font-size: 15px;
    color: #6b7280;
    margin-right: 10px;
}

.custom-dropdown .dropdown-item:hover {
    background: #f3f4f6;
}

/* Divider */
.custom-dropdown .dropdown-divider {
    margin: 5px 0;
    border-color: #eee;
}


.card-body.profilebody input {
    padding: 11px 10px 9px;
    font-size: 16px;
    outline: none;
    height: 45px;
    color: #535353;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid #ebebeb;
    background: #f7f7f7;
    font-family: "Outfit", sans-serif;
}



.card-body.profilebody select {
padding: 11px 10px 9px;
    font-size: 16px;
    outline: none;
    height: 45px;
    color: #535353;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid #ebebeb;
    background: #f7f7f7 !important;
    font-family: "Outfit", sans-serif;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.2 5.5l4.8 4.8 4.8-4.8.8.8-5.6 5.6L2.4 6.3l.8-.8z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;

    background-size: 1rem !important;
}

.procard {
    background: #FFF;
    position: relative;
    display: block;
    border: 1px solid #eeb27e;
    background-color: #fffaf6;
    border-radius: 5px;
    padding: 10px 10px 10px;
}

.footercustom {
    padding: 70px 0 0 0;
}


.footercustom h6 {
    color: #FFF !important;
    font-size: 20px;
    margin: 0 0 16px 0;
}

.small.footercustomitem {
    font-size: 16px;
    color: #FFF;
}


.small.footercustomitem a {
    font-size: 16px;
    color: #FFF !important;
    text-decoration: none !important;
}

.foocopy {
    padding: 30px 0 30px 0;
    color: #FFF;
}


.facultyinn {
    border: 2px solid #FFF;
    position: relative;
    display: block;
    background: linear-gradient(180deg, #f1f5f9 60%, #FFF 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.11);
    padding: 20px 20px 20px !important;
    border-radius:10px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;height: 100%;
}

.fw-semibold.righthomefacalty {
    margin: 0 0 0 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fw-semibold.righthomefacalty h3 {
    font-size: 20px;
    text-align: left;
}


.facultymain {
    padding: 0 0 60px 0px;
}

.instructorlist {
    height: 410px;
    overflow-x: scroll;
}


.lastbtncenter {
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

.lastbtncenter .btn.btn-outline-secondary {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 18px;
}


form.questionform .form-check-input {
    border: 2px solid #ebebeb;
    background-color: #f7f7f7;
}

.feedbackbodyinn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 30px 0;
}

.starmain {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: none;
    transform: scale(1);
    color: #60699a;
}

.starmainlist {
text-align: center;
    cursor: pointer;
    border: 2px solid #e5edff;
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    min-width: 90px;
    box-sizing: border-box;
}

.starmainlist h2 {
    font-size: 22px;
    margin: 0;
}

.modal-body.feedbackbody textarea {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 2px solid #e5edff;
    resize: none;
    font-size: 1rem;
    outline: none;
}

.Journeybg img {
    width: 100%;
}

.accordion.faqquestioninn .accordion-header button {
    font-size: 20px;
    font-weight: 500;
}

.instructor-profile-cover {
    background: #0e2a47;
    border-radius: 10px;
    padding: 60px;
    margin-bottom: 90px;
    padding-bottom: 30px;
    padding-top: 110px;
    position: relative;
}

.instructor-profile-cover-items {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: end;
    gap: 50px;
}

.instructor-profile-cover-items .thumb {
    position: relative;
    z-index: 1;
}


.instructor-profile-cover-items .thumb .author {
    position: absolute;
    left: 0;
    bottom: -130px;
}

.instructor-profile-cover-items .thumb .author::before {
    position: absolute;
    content: "";
    bottom: 100px;
    left: -18px;
    height: 37px;
    width: 19px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 20px 0 0 #ffff;
}


.instructor-profile-cover-items .thumb img {
    border-radius: 50%;
    border: 10px solid #FFFF;width: 100%;
}

.instructor-profile-cover-items .thumb .author::after {
    position: absolute;
    content: "";
    bottom: 100px;
    right: -18px;
    height: 37px;
    width: 19px;
    border-bottom-left-radius: 20px;
    box-shadow: 0 20px 0 0 #ffff;
}


.instructor-profile-cover-items .info {
    display: flex;

    justify-content: space-between;

    align-items: end;

}


.right .reviews span {
    font-size: 22px;
}

.prefacetopmain {
    margin: 20px 0 0 0;
   
}


.prefacetopmain h1 {
    font-size: 32px;
}

.prefacetopmain h2 {
    font-size: 26px;
    margin: 10px 0 20px  0;
}


.prefacetopmain p {
    text-align: justify;
}


.prefacetopmain span {
    font-weight: bold;
    font-size: 18px;
}

.journey h2 {
    font-size: 34px;
}

.journey {
    padding: 0 0 60px 0px;
}

.facultymain h2 {
    font-size: 34px;
}

.faqquestion h3 {
    font-size: 34px;
}