/* ================================================================
   MODERN INNER PAGES CSS
   Extends modern-theme.css for all inner pages
   Brand Colors: Primary #2f57ef, Dark #192335, CTA #07285A
   ================================================================ */

/* ----------------------------------------------------------------
   1. BREADCRUMB SECTIONS
   ---------------------------------------------------------------- */

/* Pattern A: .breadcum-area (courses, blog, contact, instructors) */
.breadcum-area {
    background: linear-gradient(135deg, #192335 0%, #07285A 50%, #2f57ef 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.breadcum-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 87, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcum-area::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 87, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcum-area .eNtry-breadcum {
    text-align: left;
}

.breadcum-area .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 12px;
}

.breadcum-area .breadcrumb-item a,
.breadcum-area .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcum-area .breadcrumb-item a:hover {
    color: #fff;
}

.breadcum-area .breadcrumb-item.active {
    color: #fff;
}

.breadcum-area .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
    font-size: 16px;
}

.breadcum-area .g-title,
.breadcum-area h3,
.breadcum-area h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.breadcum-area .showing-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Pattern B: .py-56 breadcrumb (about, faq) */
section.py-56,
section[data-background*="breadcrumb"] {
    background: linear-gradient(135deg, #192335 0%, #07285A 50%, #2f57ef 100%) !important;
    padding: 100px 0 50px !important;
    position: relative;
    overflow: hidden;
}

section.py-56::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 87, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

section.py-56 .ul-ol a,
section.py-56 .ul-ol li,
section.py-56 .ul-ol span {
    color: rgba(255, 255, 255, 0.7) !important;
}

section.py-56 h4,
section.py-56 .fz-56 {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Course details breadcrumb */
.breadcum-area.page-content-pb-100 {
    padding-bottom: 100px;
}

/* Blog details breadcrumb */
.breadcum-area.playing-breadcum,
.breadcum-area.details-breadcum {
    padding: 100px 0 50px;
}

/* ----------------------------------------------------------------
   2. CARDS — Universal Modern Styling
   ---------------------------------------------------------------- */

/* Base card reset */
.Ecard,
.card.Ecard {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.Ecard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(47, 87, 239, 0.12);
}

/* Course card image area */
.Ecard .courses-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.Ecard .courses-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.Ecard:hover .courses-img img {
    transform: scale(1.05);
}

/* Price badge on card */
.Ecard .courses-img .cText {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
}

.Ecard .courses-img .cText h4 {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Wishlist heart on card */
.Ecard .heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.Ecard .heart:hover,
.Ecard .heart.fill-heart {
    background: #2f57ef;
    color: #fff;
}

.Ecard .heart svg {
    width: 16px;
    height: 16px;
}

/* Card body */
.Ecard .card-body,
.Ecard .entry-details {
    padding: 20px;
}

.Ecard .entry-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #192335;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.Ecard:hover .entry-title h3 {
    color: #2f57ef;
}

/* Creator info */
.Ecard .creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Ecard .creator img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef2ff;
}

.Ecard .creator h5,
.Ecard .creator p {
    font-size: 13px;
    color: #6b7385;
    margin: 0;
    font-weight: 500;
}

/* Info cards meta */
.Ecard .info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Star rating */
.Ecard ul {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
    font-size: 13px;
    color: #6b7385;
}

.Ecard ul li i.fa-star {
    color: #f59e0b;
}

/* Learn more link in card */
.Ecard .learn-more {
    padding: 12px 20px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Ecard .learn-more a,
.Ecard .learn-more span {
    color: #2f57ef;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ----------------------------------------------------------------
   2b. COURSE LIST CARD (.single-feature)
   ---------------------------------------------------------------- */

.single-feature {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
}

.single-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(47, 87, 239, 0.12);
    color: inherit;
}

.single-feature .courses-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
    transition: transform 0.5s ease;
}

.single-feature:hover .courses-img img {
    transform: scale(1.05);
}

.single-feature .entry-details {
    padding: 24px;
}

.single-feature .entry-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #192335;
    line-height: 1.4;
}

.single-feature:hover .entry-title h3 {
    color: #2f57ef;
}

.single-feature .description {
    color: #6b7385;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

/* ----------------------------------------------------------------
   2c. BLOG CARD (.b-card)
   ---------------------------------------------------------------- */

.b-card .card-head {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.b-card .card-head img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.b-card:hover .card-head img {
    transform: scale(1.05);
}

.b-card .card-head span {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.b-card .card-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: #192335;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.b-card:hover .card-body h4 {
    color: #2f57ef;
}

.b-card .b_bottom {
    padding-top: 12px;
    border-top: 1px solid #f0f2f5;
    margin-top: 12px;
}

.b-card .read-text {
    color: #2f57ef;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* ----------------------------------------------------------------
   2d. INSTRUCTOR CARD (.eCard2)
   ---------------------------------------------------------------- */

.eCard2 .card-head {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.eCard2 .card-head img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eCard2:hover .card-head img {
    transform: scale(1.05);
}

.eCard2 .card-body {
    text-align: center;
    padding: 20px;
}

.eCard2 .card-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 6px;
}

.eCard2 .card-body .gradient {
    display: inline-block;
    background: linear-gradient(135deg, #2f57ef, #07285A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 500;
}

/* ----------------------------------------------------------------
   2e. CONTACT CARD
   ---------------------------------------------------------------- */

.contact-card {
    text-align: center;
    padding: 40px 24px !important;
    border: 1px solid #eef2ff;
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(47, 87, 239, 0.1), rgba(7, 40, 90, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    transform: scale(1.05);
}

.contact-card:hover .contact-icon svg {
    fill: #fff;
    stroke: #fff;
}

.contact-card .g-title {
    font-size: 18px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 8px;
}

.contact-card p {
    color: #6b7385;
    font-size: 14px;
    line-height: 1.6;
}

.contact-card a {
    color: #2f57ef;
    font-weight: 600;
    text-decoration: none;
}

/* ----------------------------------------------------------------
   2f. MY COURSES / WISHLIST CARDS
   ---------------------------------------------------------------- */

.g-card .card-head {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.g-card .card-head img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.g-card:hover .card-head img {
    transform: scale(1.05);
}

/* Progress bar */
.g-card .single-progress .progress {
    height: 6px;
    border-radius: 3px;
    background: #eef2ff;
    overflow: hidden;
    margin-top: 12px;
}

.g-card .single-progress .progress-bar {
    background: linear-gradient(90deg, #2f57ef, #07285A);
    border-radius: 3px;
}

/* Price and rating row */
.g-card .ct-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.g-card .ct-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2f57ef;
    margin: 0;
}

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */

.eBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.5;
}

.eBtn.gradient {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(47, 87, 239, 0.3);
}

.eBtn.gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 87, 239, 0.4);
}

.eBtn.learn-btn,
.eBtn.border {
    background: transparent;
    border: 2px solid #2f57ef;
    color: #2f57ef !important;
}

.eBtn.learn-btn:hover,
.eBtn.border:hover {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff !important;
    transform: translateY(-2px);
}

.eBtn.eBtn-red {
    background: #ef4444;
    color: #fff !important;
    border: none;
}

.eBtn.eBtn-green {
    background: #22c55e;
    color: #fff !important;
    border: none;
}

.gradient-border-btn {
    background: transparent;
    border: 2px solid #2f57ef;
    color: #2f57ef;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gradient-border-btn:hover {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   4. SIDEBARS
   ---------------------------------------------------------------- */

/* Course filter sidebar */
.sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
}

.sidebar .widget {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

.sidebar .widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 16px;
}

.sidebar .search input,
.sidebar .widget input[type="text"],
.sidebar .widget input[type="search"] {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #192335;
    transition: border-color 0.3s ease;
    background: #f8f9fc;
}

.sidebar .search input:focus,
.sidebar .widget input:focus {
    border-color: #2f57ef;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
}

.sidebar .filter-item {
    padding: 6px 0;
}

.sidebar .filter-item label {
    cursor: pointer;
    color: #6b7385;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sidebar .filter-item label:hover {
    color: #192335;
}

.sidebar .filter-item input[type="checkbox"] {
    accent-color: #2f57ef;
    margin-right: 8px;
}

.sidebar .category.active,
.sidebar .entry-widget a.active {
    color: #2f57ef;
    font-weight: 600;
}

/* Blog sidebar */
.blog-sidebar .widget-post-bx {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f2f5;
}

.blog-sidebar .ttr-post-media img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-sidebar .post-titles {
    font-size: 14px;
    font-weight: 600;
    color: #192335;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-sidebar .post-titles:hover {
    color: #2f57ef;
}

.blog-sidebar .tags a {
    display: inline-block;
    padding: 4px 14px;
    background: #f8f9fc;
    border: 1px solid #eef2ff;
    border-radius: 20px;
    font-size: 13px;
    color: #6b7385;
    margin: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-sidebar .tags a:hover {
    background: #2f57ef;
    color: #fff;
    border-color: #2f57ef;
}

/* ----------------------------------------------------------------
   5. COURSE DETAILS PAGE
   ---------------------------------------------------------------- */

/* Pricing sidebar card */
.gradient-border.page-static-sidebar,
.ps-box.ps-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.ps-box.ps-sidebar .hero-details {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.ps-box.ps-sidebar .hero-details img {
    width: 100%;
    height: auto;
}

.ps-box.ps-sidebar .overly-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ps-price {
    padding: 20px 24px;
}

.ps-price h3,
.ps-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #192335;
}

.ps-price del {
    color: #9ca3af;
    font-size: 16px;
    margin-left: 8px;
}

.ps-side-feature {
    list-style: none;
    padding: 0 24px 20px;
    margin: 0;
}

.ps-side-feature li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 14px;
    color: #6b7385;
}

.ps-side-feature li:last-child {
    border-bottom: none;
}

.ps-side-feature li i {
    color: #2f57ef;
    margin-right: 8px;
    width: 18px;
}

/* Course details tabs */
.ps-box.static-menu {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    overflow: hidden;
}

.ps-box .nav-bordered {
    border-bottom: 2px solid #f0f2f5;
    padding: 0 24px;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.ps-box .nav-bordered .nav-item {
    flex-shrink: 0;
}

.ps-box .nav-bordered .nav-link {
    padding: 16px 20px;
    color: #6b7385;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ps-box .nav-bordered .nav-link:hover {
    color: #2f57ef;
}

.ps-box .nav-bordered .nav-link.active {
    color: #2f57ef;
    border-bottom-color: #2f57ef;
    background: transparent;
}

.ps-box .tab-content {
    padding: 24px;
}

/* ----------------------------------------------------------------
   6. BLOG DETAILS
   ---------------------------------------------------------------- */

.ps-box.blog-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    overflow: hidden;
    padding: 0;
}

.blog-f-image {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.blog-f-image img {
    width: 100%;
    height: auto;
    display: block;
}

.details-intro {
    padding: 24px;
}

.details-intro h1,
.details-intro h2,
.details-intro h3 {
    color: #192335;
    font-weight: 700;
    line-height: 1.4;
}

.course-motion-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    background: #f8f9fc;
    border-bottom: 1px solid #eef2ff;
    font-size: 14px;
    color: #6b7385;
}

.course-motion-top i {
    color: #2f57ef;
    margin-right: 4px;
}

.description-style {
    padding: 24px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.description-style h1, .description-style h2, .description-style h3,
.description-style h4, .description-style h5, .description-style h6 {
    color: #192335;
    margin-top: 24px;
    margin-bottom: 12px;
}

.description-style img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.description-style blockquote {
    border-left: 4px solid #2f57ef;
    padding: 16px 24px;
    background: #f8f9fc;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    font-style: italic;
    color: #192335;
}

.description-style a {
    color: #2f57ef;
    text-decoration: underline;
}

/* Tags */
.tags a {
    display: inline-block;
    padding: 4px 14px;
    background: #f8f9fc;
    border: 1px solid #eef2ff;
    border-radius: 20px;
    font-size: 13px;
    color: #6b7385;
    margin: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tags a:hover {
    background: #2f57ef;
    color: #fff;
    border-color: #2f57ef;
}

/* Social share links */
.details-socialsLink a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fc;
    color: #6b7385;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0 4px;
}

.details-socialsLink a:hover {
    background: #2f57ef;
    color: #fff;
    transform: translateY(-2px);
}

/* Like button */
.like-svg {
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-svg.active svg {
    fill: #2f57ef;
}

/* Comments */
.comment-wrap {
    padding: 24px;
}

.comment-head h3 {
    font-size: 20px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 20px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #192335;
    background: #f8f9fc;
    transition: border-color 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: #2f57ef;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
}

/* ----------------------------------------------------------------
   7. STUDENT DASHBOARD / PROFILE
   ---------------------------------------------------------------- */

/* Profile banner */
.profile-banner-area {
    background: linear-gradient(135deg, #192335 0%, #07285A 50%, #2f57ef 100%);
    padding: 100px 0 30px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.profile-banner-area::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 87, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.profile-banner-area-container {
    position: relative;
}

.profile-banner-area .banner,
.profile-banner-area .over-image {
    border-radius: 16px;
    overflow: hidden;
}

.profile-banner-area .my-info h4 {
    color: #fff;
    font-weight: 700;
}

.profile-banner-area .my-info p,
.profile-banner-area .my-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* Student sidebar */
.course-sideBar,
.gradient-border.course-sideBar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.course-sideBar .profile-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
    margin-bottom: 20px;
}

.course-sideBar .profile-info .photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eef2ff;
}

.course-sideBar .profile-info .name {
    font-size: 16px;
    font-weight: 600;
    color: #192335;
    margin-top: 12px;
}

.course-sideBar .profile-info .email {
    font-size: 13px;
    color: #6b7385;
}

/* Dashboard nav list */
.couses-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.couses-tab-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7385;
    text-decoration: none;
    transition: all 0.3s ease;
}

.couses-tab-list li a:hover,
.couses-tab-list li a.active,
.couses-tab-list li.active a {
    background: linear-gradient(135deg, rgba(47, 87, 239, 0.08), rgba(7, 40, 90, 0.05));
    color: #2f57ef;
}

.couses-tab-list li a i {
    width: 20px;
    text-align: center;
}

/* My course button */
.my-course-btn {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.my-course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 87, 239, 0.3);
    color: #fff;
}

/* ----------------------------------------------------------------
   8. FORMS
   ---------------------------------------------------------------- */

.global-form .form-group {
    margin-bottom: 20px;
}

.global-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 6px;
}

.global-form .form-control,
.edit_profile .form-control,
.section-padding .form-control {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #192335;
    background: #f8f9fc;
    transition: all 0.3s ease;
}

.global-form .form-control:focus,
.edit_profile .form-control:focus,
.section-padding .form-control:focus {
    border-color: #2f57ef;
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
    background: #fff;
}

.global-form textarea.form-control,
.section-padding textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Nice Select override */
.nice-select {
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #192335 !important;
    background: #f8f9fc !important;
    height: auto !important;
    line-height: 1.5 !important;
    width: 100%;
}

.nice-select:focus,
.nice-select.open {
    border-color: #2f57ef !important;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08) !important;
}

.nice-select .list {
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(25, 35, 53, 0.12);
    border: 1px solid #eef2ff;
    overflow: hidden;
}

.nice-select .list .option {
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nice-select .list .option:hover,
.nice-select .list .option.selected {
    background: rgba(47, 87, 239, 0.08);
    color: #2f57ef;
}

/* ----------------------------------------------------------------
   9. TABLES
   ---------------------------------------------------------------- */

.eTable,
.table.eTable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
}

.eTable thead th {
    background: linear-gradient(135deg, #192335, #07285A);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 16px;
    border: none;
    white-space: nowrap;
}

.eTable thead th:first-child {
    border-radius: 12px 0 0 0;
}

.eTable thead th:last-child {
    border-radius: 0 12px 0 0;
}

.eTable tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #f0f2f5;
    vertical-align: middle;
}

.eTable tbody tr {
    transition: background-color 0.3s ease;
}

.eTable tbody tr:hover {
    background-color: rgba(47, 87, 239, 0.03);
}

.eTable tbody tr:last-child td {
    border-bottom: none;
}

.table-responsive {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    background: #fff;
}

/* ----------------------------------------------------------------
   10. FAQ PAGE
   ---------------------------------------------------------------- */

.qnaaccordion-two .accordion-item {
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(25, 35, 53, 0.04);
    transition: all 0.3s ease;
}

.qnaaccordion-two .accordion-item:hover {
    box-shadow: 0 4px 16px rgba(47, 87, 239, 0.08);
}

.qnaaccordion-two .accordion-button {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #192335;
    background: #fff;
    border: none;
    box-shadow: none;
}

.qnaaccordion-two .accordion-button:not(.collapsed) {
    background: rgba(47, 87, 239, 0.04);
    color: #2f57ef;
    box-shadow: none;
}

.qnaaccordion-two .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: #2f57ef;
    width: auto;
    height: auto;
    transform: none;
    transition: all 0.3s ease;
}

.qnaaccordion-two .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
}

.qnaaccordion-two .accordion-body {
    padding: 0 24px 18px;
    color: #6b7385;
    font-size: 15px;
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   11. CART PAGE
   ---------------------------------------------------------------- */

.cart-items {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    overflow: hidden;
}

.entry_panel {
    padding: 20px;
    border-bottom: 1px solid #f0f2f5;
    transition: background-color 0.3s ease;
}

.entry_panel:last-child {
    border-bottom: none;
}

.entry_panel:hover {
    background-color: rgba(47, 87, 239, 0.02);
}

.cart-total-price {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    padding: 24px;
}

.cart-total-price .sub_total,
.cart-total-price .tax,
.cart-total-price .total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: #4b5563;
}

.cart-total-price .total {
    font-weight: 700;
    font-size: 18px;
    color: #192335;
    border-top: 2px solid #f0f2f5;
    padding-top: 16px;
    margin-top: 8px;
}

/* Alert styling */
.alert-purple {
    background: rgba(47, 87, 239, 0.08);
    border: 1px solid rgba(47, 87, 239, 0.2);
    border-radius: 12px;
    color: #192335;
}

/* ----------------------------------------------------------------
   12. PAGINATION
   ---------------------------------------------------------------- */

.entry-pagination,
.entry-pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
}

.entry-pagination .page-link,
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7385;
    background: #fff;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.entry-pagination .page-link:hover,
.pagination .page-link:hover {
    background: rgba(47, 87, 239, 0.08);
    color: #2f57ef;
    border-color: #2f57ef;
}

.entry-pagination .page-item.active .page-link,
.pagination .page-item.active .page-link,
.entry-pagination .active > .page-link,
.pagination .active > .page-link {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(47, 87, 239, 0.3);
}

/* ----------------------------------------------------------------
   13. MODALS
   ---------------------------------------------------------------- */

.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25, 35, 53, 0.2);
}

.modal-header {
    border-bottom: 1px solid #f0f2f5;
    padding: 20px 24px;
}

.modal-header .modal-title {
    font-weight: 600;
    color: #192335;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid #f0f2f5;
    padding: 16px 24px;
}

.eModal .icon-confirm {
    width: 60px;
    height: 60px;
    background: rgba(47, 87, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ----------------------------------------------------------------
   14. CONTENT SECTIONS & WRAPPERS
   ---------------------------------------------------------------- */

/* Main content area padding */
.eNtery-item {
    padding: 60px 0;
}

/* Section padding */
.section-padding {
    padding: 60px 0;
}

/* About us page */
.course-details-wraper {
    padding: 60px 0;
}

.course-details-wraper h2,
.course-details-wraper h3 {
    color: #192335;
    font-weight: 700;
}

.course-details-wraper p {
    color: #6b7385;
    line-height: 1.8;
}

/* Contact map iframe */
.section-padding iframe {
    border-radius: 16px;
    border: 1px solid #eef2ff;
}

/* Mycourses wrapper */
.Mycourses-wrapper {
    padding: 40px 0 60px;
}

/* ----------------------------------------------------------------
   15. GRID/LIST VIEW TOGGLE
   ---------------------------------------------------------------- */

.tab-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-list .layout {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #6b7385;
    background: #fff;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.tab-list .layout:hover,
.tab-list .layout.active {
    background: #2f57ef;
    color: #fff;
    border-color: #2f57ef;
}

/* ----------------------------------------------------------------
   16. GLOBAL TYPOGRAPHY & UTILITY OVERRIDES
   ---------------------------------------------------------------- */

.g-title {
    color: #192335;
    font-weight: 700;
}

.g-text {
    color: #6b7385;
    line-height: 1.7;
}

/* Gradient text */
.gradient.color {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trophy text */
.trophy-text {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(47, 87, 239, 0.06);
    border-radius: 10px;
    font-size: 14px;
    color: #2f57ef;
    font-weight: 600;
}

/* Rating stars */
.g-star i,
.color-g i {
    color: #f59e0b;
}

/* Price range slider */
.ui-slider-horizontal {
    background: #eef2ff;
    border: none;
    border-radius: 4px;
    height: 6px;
}

.ui-slider-horizontal .ui-slider-range {
    background: linear-gradient(90deg, #2f57ef, #07285A);
}

.ui-slider-horizontal .ui-slider-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2f57ef;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(47, 87, 239, 0.3);
    top: -6px;
    cursor: pointer;
}

/* Scroll to top */
.scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f57ef, #07285A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(47, 87, 239, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scrollTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 87, 239, 0.4);
}

/* ----------------------------------------------------------------
   17. ANIMATIONS (AOS enhancements for inner pages)
   ---------------------------------------------------------------- */

/* Add fade-in to main content sections */
.eNtery-item .container,
.section-padding .container,
.Mycourses-wrapper .container {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card entrance animations — staggered */
.Ecard {
    animation: cardFadeIn 0.4s ease-out both;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger cards in a grid */
.row > [class*="col-"]:nth-child(1) .Ecard { animation-delay: 0.05s; }
.row > [class*="col-"]:nth-child(2) .Ecard { animation-delay: 0.10s; }
.row > [class*="col-"]:nth-child(3) .Ecard { animation-delay: 0.15s; }
.row > [class*="col-"]:nth-child(4) .Ecard { animation-delay: 0.20s; }
.row > [class*="col-"]:nth-child(5) .Ecard { animation-delay: 0.25s; }
.row > [class*="col-"]:nth-child(6) .Ecard { animation-delay: 0.30s; }
.row > [class*="col-"]:nth-child(7) .Ecard { animation-delay: 0.35s; }
.row > [class*="col-"]:nth-child(8) .Ecard { animation-delay: 0.40s; }
.row > [class*="col-"]:nth-child(9) .Ecard { animation-delay: 0.45s; }

/* ----------------------------------------------------------------
   18. RESPONSIVE — Inner Pages
   ---------------------------------------------------------------- */

@media (max-width: 991px) {
    .breadcum-area {
        padding: 80px 0 40px;
    }

    .breadcum-area .g-title,
    .breadcum-area h3,
    .breadcum-area h4 {
        font-size: 24px;
    }

    section.py-56 h4,
    section.py-56 .fz-56 {
        font-size: 24px !important;
    }

    .profile-banner-area {
        padding: 80px 0 24px;
    }

    .course-sideBar {
        position: static;
        margin-bottom: 30px;
    }

    .gradient-border.page-static-sidebar,
    .ps-box.ps-sidebar {
        position: static;
    }

    .eNtery-item,
    .section-padding,
    .Mycourses-wrapper {
        padding: 40px 0;
    }

    .eCard2 .card-head img {
        height: 200px;
    }

    .ps-box .nav-bordered .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .breadcum-area {
        padding: 80px 0 30px;
    }

    .breadcum-area .g-title,
    .breadcum-area h3,
    .breadcum-area h4 {
        font-size: 20px;
    }

    section.py-56 {
        padding: 80px 0 30px !important;
    }

    section.py-56 h4,
    section.py-56 .fz-56 {
        font-size: 20px !important;
    }

    .Ecard .courses-img img {
        height: 160px;
    }

    .g-card .card-head img {
        height: 150px;
    }

    .eCard2 .card-head img {
        height: 180px;
    }

    .single-feature .courses-img img {
        border-radius: 16px 16px 0 0;
    }

    .single-feature .row {
        flex-direction: column;
    }

    .cart-total-price {
        margin-top: 24px;
    }

    .eNtery-item,
    .section-padding,
    .Mycourses-wrapper {
        padding: 30px 0;
    }

    .contact-card {
        padding: 24px 16px !important;
    }

    .ps-box .nav-bordered {
        padding: 0 16px;
    }

    .ps-box .nav-bordered .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .ps-box .tab-content {
        padding: 16px;
    }

    .description-style {
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .Ecard .courses-img img {
        height: 140px;
    }

    .eTable thead th,
    .eTable tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .entry-pagination .page-link,
    .pagination .page-link {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/* ----------------------------------------------------------------
   19. PLYR VIDEO PLAYER THEMING
   ---------------------------------------------------------------- */

.plyr--video .plyr__control--overlaid {
    background: linear-gradient(135deg, #2f57ef, #07285A);
}

.plyr--video .plyr__control--overlaid:hover {
    background: #07285A;
}

.plyr--full-ui input[type="range"] {
    color: #2f57ef;
}

/* ----------------------------------------------------------------
   20. MISC / OVERRIDES
   ---------------------------------------------------------------- */

/* Hide old layout header/footer when modern theme active */
.header-area,
.footer-area,
.top_bar_area {
    display: none !important;
}

/* Ensure smooth transitions across page loads */
body {
    overflow-x: hidden;
}

/* Upload button styling */
.upload-image-btn {
    background: linear-gradient(135deg, #2f57ef, #07285A);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.upload-image-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 87, 239, 0.3);
}

/* Tagify input styling */
.tagify {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 12px;
    background: #f8f9fc;
    min-height: 44px;
}

.tagify:focus-within {
    border-color: #2f57ef;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
}

.tagify__tag {
    background: rgba(47, 87, 239, 0.1);
    border-radius: 6px;
    color: #2f57ef;
}

.tagify__tag > div::before {
    box-shadow: none;
}

/* Link colours inside content */
a {
    color: #2f57ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #07285A;
}

/* Badge / label styling */
.badge {
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Coupon input area in cart */
.input-group .input-group-text.eBtn.gradient {
    border-radius: 0 10px 10px 0;
}

.input-group .form-control {
    border-radius: 10px 0 0 10px;
}

/* Gift check */
.send_gift_check {
    accent-color: #2f57ef;
}

/* Bootcamp badges */
.bootcamp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(47, 87, 239, 0.1);
    color: #2f57ef;
}

/* Hero popup play button */
.hero-popup {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2f57ef, #07285A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(47, 87, 239, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(47, 87, 239, 0.4);
}

/* Form check styling */
.form-check-input:checked {
    background-color: #2f57ef;
    border-color: #2f57ef;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.15);
    border-color: #2f57ef;
}

/* Profile edit area */
.my-panel {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    padding: 24px;
}

.my-panel h4 {
    font-size: 20px;
    font-weight: 600;
    color: #192335;
    margin-bottom: 20px;
}

/* Message panel */
.message-panel {
    border-radius: 16px;
    overflow: hidden;
}

/* Selection dropdown overrides */
select.form-control,
select.form-select {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    background: #f8f9fc;
    color: #192335;
    appearance: auto;
}

select.form-control:focus,
select.form-select:focus {
    border-color: #2f57ef;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
}

/* ----------------------------------------------------------------
   21. LOGIN/REGISTER PAGES (if shown in frontend)
   ---------------------------------------------------------------- */

.login-form,
.register-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(25, 35, 53, 0.06);
    border: 1px solid #eef2ff;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.login-form h3,
.register-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #192335;
    text-align: center;
    margin-bottom: 24px;
}

/* ----------------------------------------------------------------
   22. STATIC PAGES (Privacy, Terms, Refund, Cookie Policy)
   ---------------------------------------------------------------- */

.description-style ul,
.description-style ol {
    padding-left: 24px;
    color: #4b5563;
}

.description-style li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.description-style table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}

.description-style table th {
    background: linear-gradient(135deg, #192335, #07285A);
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
}

.description-style table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f2f5;
    color: #4b5563;
}

.description-style table tr:hover td {
    background-color: rgba(47, 87, 239, 0.03);
}

/* ----------------------------------------------------------------
   23. NOTIFICATION / TOAST OVERRIDES
   ---------------------------------------------------------------- */

.toast-success {
    background: #22c55e !important;
}

.toast-error {
    background: #ef4444 !important;
}

.toast-info {
    background: #2f57ef !important;
}

.toast-warning {
    background: #f59e0b !important;
}
