﻿/* Custom CSS Variables for Dark Mode */
:root {
    --bs-primary: #2196F3;
    --bs-primary-dark: #3b82f6;
    --bs-secondary: #475569;
    --bs-success: #10b981;
    --bs-info: #06b6d4;
    --bs-warning: #f59e0b;
    --bs-danger: #ef4444;
    --bs-light: #f1f5f9;
    --bs-dark: #1f2937;
    --bs-body-bg: #fafbfc;
    --bs-body-color: #374151;
    --bs-border-color: #e5e7eb;
    --transition-duration: 300ms;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #1f2937;
    --secondary-bg: #f1f5f9;
    --tertiary-bg: #e5e7eb;
}

/* Dark Mode Variables */
[data-bs-theme="dark"] {
    --bs-body-bg: #0a1628;
    --bs-body-color: #f3f4f6;
    --bs-border-color: #374151;
    --secondary-bg: #1e293b;
    --tertiary-bg: #374151;
    --card-bg: #1e293b;
    --header-bg: #0a1628;
    --footer-bg: #0a1628;
    --bs-light: #374151;
    --bs-secondary: #9ca3af;
}

/* Custom CSS classes used in the CSHTML file */
.bg-light-custom {
    background-color: var(--secondary-bg) !important;
}

.text-muted-custom {
    color: var(--bs-secondary) !important;
}

.text-purple {
    color: #6f42c1;
}

.text-orange {
    color: #fd7e14;
}

.hero-gradient {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-gradient {
    /*    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);*/
    background-image: linear-gradient(35deg, #fcfce2 30%, #dcf5fe 60%);
}

[data-bs-theme="dark"] .hero-gradient {
    /*    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);*/
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%) !important;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

    .benefit-icon.bg-blue-light {
        background-color: #dbeafe;
        color: #2563eb;
    }

    .benefit-icon.bg-green-light {
        background-color: #19281;
        color: #16a34a;
    }

    .benefit-icon.bg-purple-light {
        background-color: #f3e8ff;
        color: #9333ea;
    }

    .benefit-icon.bg-orange-light {
        background-color: #fed7aa;
        color: #ea580c;
    }

[data-bs-theme="dark"] .benefit-icon.bg-blue-light {
    background-color: rgba(37, 99, 235, 0.3);
    color: #60a5fa;
}

[data-bs-theme="dark"] .benefit-icon.bg-green-light {
    background-color: rgba(22, 163, 74, 0.3);
    color: #4ade80;
}

[data-bs-theme="dark"] .benefit-icon.bg-purple-light {
    background-color: rgba(147, 51, 234, 0.3);
    color: #a855f7;
}

[data-bs-theme="dark"] .benefit-icon.bg-orange-light {
    background-color: rgba(234, 88, 12, 0.3);
    color: #fb923c;
}
/*master class card style*/
.masterclass-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-duration) ease;
}

    .masterclass-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

[data-bs-theme="dark"] .masterclass-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

    [data-bs-theme="dark"] .masterclass-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

.masterclass-image-container {
    position: relative;
    height: 181px;
    overflow: hidden;
}

.masterclass-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-duration) ease;
}

.masterclass-card:hover .masterclass-image {
    transform: scale(1.02);
}

.masterclass-list {
    list-style: none;
    padding-left: 0;
}

    .masterclass-list li {
        margin-left: 35px;
        position: relative;
        margin-bottom: 6px;
        list-style: disc;
    }

#scrollableCard {
    position: static;
    top: 100px;
    transition: all 0.3s ease;
    z-index: 10;
}

    #scrollableCard.sticky {
        position: sticky;
    }

.benefit-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: orange;
}

.bg-warning-light {
    background-color: #fff3cd;
}
/* Course Category Pills */
.category-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-duration) ease;
    cursor: pointer;
    border: 1px solid var(--bs-border-color);
    background-color: var(--card-bg);
    color: var(--bs-body-color);
    font-size: 0.875rem;
    white-space: nowrap;
}

    .category-pill.active {
        background-color: var(--bs-primary);
        color: white;
        border-color: var(--bs-primary);
        box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    }

    .category-pill:not(.active):hover {
        background-color: var(--tertiary-bg);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

[data-bs-theme="dark"] .category-pill:not(.active):hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive category pills */
@media (max-width: 768px) {
    .category-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .category-pill {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
}


/*class details
/* Masterclass Detail Page Styles */

/* Hero Section */
.masterclass-hero {
    position: relative;
    /*    min-height: 100vh;*/
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 59 187) 0%, rgb(24 25 90) 50%, rgb(17 9 67) 100%);
    /*    background: linear-gradient( 135deg, rgba(37, 99, 235, 0.9) 0%, rgba(99, 102, 241, 0.8) 50%, rgba(168, 85, 247, 0.9) 100% );*/
}

.masterclass-hero .container {
    z-index: 2;
}

/* Badge */
.badge-lg {
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    border-radius: 50px;
}

/* Session Info Cards */
.session-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .session-info-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

/* Technology Badges */
.tech-badge-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Instructor Card */
.instructor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.instructor-image {
    position: relative;
    display: inline-block;
    /*    margin-bottom: 1.5rem;*/
}

    .instructor-image img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

.instructor-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f59e0b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.instructor-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Content Sections */
.content-section {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--bs-border-color);
}

.section-title {
    color: var(--bs-body-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 2rem;
    padding-left: 0;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--bs-primary);
        border-radius: 2px;
    }

/* Learning Modules */
.learning-modules {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.module-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.module-number {
    background: var(--bs-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.module-content {
    flex: 1;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--bs-secondary);
    }

        .module-list li::before {
            content: '•';
            color: var(--bs-primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

/* Benefit Cards */
.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

[data-bs-theme="dark"] .benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Speaker Profile */
.speaker-profile {
    background: var(--secondary-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--bs-border-color);
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Registration Card */
.registration-card {
    /*    border: none;*/
    /*    background: linear-gradient(135deg, var(--card-bg) 0%, var(--secondary-bg) 100%);*/
}

/* Countdown Timer */
.countdown-timer {
    background: var(--secondary-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
}

@media (max-width: 991.98px) {
    .countdown-timer-bottom {
        padding: 0rem !important;
    }
}

.countdown-item {
    background: var(--card-bg);
    border-radius: 0.5rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--bs-border-color);
}

.countdown-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--bs-secondary);
}

/* Registration Stats */
.registration-stats {
    background: var(--secondary-bg);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
}

/* Session Details Card */
.session-details-card {
    /*    border: none;*/
}

.session-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

    .session-detail-item:last-child {
        border-bottom: none;
    }

    .session-detail-item i {
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

/* Program Cards */
.program-card {
    background: var(--card-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

    .program-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

[data-bs-theme="dark"] .program-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.program-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.program-icon {
    background: var(--bs-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-badge {
    background: var(--bs-warning);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--bs-body-color);
}

/* Review Cards */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

[data-bs-theme="dark"] .review-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-rating {
    margin-left: auto;
    min-width: 108px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .sidebar-sticky {
        position: static;
        margin-top: 3rem;
    }

    .instructor-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .masterclass-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .session-info-card {
        padding: 1rem;
    }

    .instructor-card {
        padding: 1.5rem;
    }

    .instructor-image img {
        width: 100px;
        height: 100px;
    }

    .content-section {
        padding: 1.5rem;
    }

    .module-item {
        flex-direction: column;
        gap: 1rem;
    }

    .module-number {
        align-self: flex-start;
    }

    .countdown-item {
        padding: 0.5rem;
    }

    .countdown-number {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .session-info-card {
        padding: 0.75rem;
    }

    .instructor-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 0.5rem;
    }

    .stat-number,
    .stat-label {
        display: inline;
    }

    .content-section {
        padding: 1rem;
    }

    .program-card {
        padding: 1.5rem;
    }

    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .review-rating {
        margin-left: 0;
    }
}

/* Animation for countdown */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.countdown-number {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Print styles */
@media print {
    .navbar,
    .footer-custom,
    .sidebar-sticky {
        display: none !important;
    }

    .masterclass-hero {
        min-height: auto;
        page-break-after: always;
    }

    .content-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
}

.text-warning {
    color: rgb(7 122 255) !important;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    background: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

    .info-pill .pill-icon {
        color: #cd0bf5;
    }

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 0.65rem;
    background: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    min-width: 60px;
}

.countdown-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c99ff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.6rem;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}


.hero-section {
    padding: 3rem 1rem;
}

[data-bs-theme="light"] .hero-section {
    background: white;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 4rem 2rem;
    }
}

/* Instructor Card */
.instructor-cards {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

[data-bs-theme="light"] .instructor-cards {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 0, 0, 0.12);
}

.instructor-image {
    position: relative;
    display: inline-block;
}

    .instructor-image img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

@media (max-width: 992px) {
    .instructor-image img {
        width: 75px;
        height: 75px;
    }

    .instructor-cards {
        padding: 1rem;
    }
}


[data-bs-theme="light"] .instructor-image img {
    border-color: rgba(0, 0, 0, 0.15);
}

.instructor-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f59e0b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0f172a; /* dark page bg */
}

[data-bs-theme="light"] .instructor-badge {
    border-color: #ffffff;
}

.instructor-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}



[data-bs-theme="dark"],
[data-bs-theme="light"] {
    --cta-section-bg: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.cta-section {
    background: var(--cta-section-bg);
}

.cta-btn {
    background: linear-gradient(135deg, #00d7ff, #f600ff);
    color: #ffffff;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    box-shadow: 0 4px 20px rgb(53 30 245 / 45%);
}

    .cta-btn:hover {
        filter: brightness(1.08);
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgb(53 30 245 / 45%);
    }

    .cta-btn:active {
        transform: scale(0.98);
    }

.bottom-tab {
    /*    background: rgba(255, 255, 255, 0.8);*/
    backdrop-filter: blur(8px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 12;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.playlist-box {
    max-height: 500px;
    overflow-y: auto;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    -webkit-overflow-scrolling: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}

.ytp-title {
    display: none !important;
}

.playlist-box ::-webkit-scrollbar {
    display: none;
}

.playlist-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .playlist-item:hover {
        background: rgba(255,255,255,0.1);
    }

    .playlist-item.active {
        background: rgba(255,255,255,0.15);
    }

.playlist-thumb {
    width: 120px;
    border-radius: 6px;
}

.playlist-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}


.vid-section {
    background-color: #111827;
    padding: 2.5rem 0;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}


.vid-subtitle {
    color: #d1d5db;
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}


[data-bs-theme="dark"] {
    --trainer-section-bg: #0f172a;
    --trainer-card-bg: #1e293b;
    --trainer-border: rgba(255, 255, 255, 0.12);
    --company-tag-bg: rgba(255, 255, 255, 0.05);
    --company-tag-border: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="light"] {
    --trainer-section-bg: #ffffff;
    --trainer-card-bg: #f8fafc;
    --trainer-border: rgba(0, 0, 0, 0.10);
    --company-tag-bg: rgba(0, 0, 0, 0.03);
    --company-tag-border: rgba(0, 0, 0, 0.10);
}

.trainer-section {
    background: var(--trainer-section-bg);
}

.trainer-card {
    background: var(--trainer-card-bg);
    border-color: var(--trainer-border) !important;
}

.trainer-divider {
    border-top: 1px solid var(--trainer-border);
}

.skill-tag {
    padding: 0.3rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--company-tag-bg);
    border: 1px solid var(--company-tag-border);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bs-secondary-color, #6c757d);
}

.mentor-biography {
    color: var(--mentor-text-secondary-light);
    font-size: 0.875rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.mentor-expertise-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--mentor-text-secondary-light);
    position: relative;
    z-index: 1;
}

.mentor-icon {
    margin-right: 0.75rem;
    color: var(--mentor-text-primary-light);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mentor-expertise-text {
    font-size: 0.875rem;
}
/* SECTION BACKGROUND (very subtle separation) */
.quote-section {
    position: relative;
}

    /* Optional soft divider feel */
    .quote-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #0d6efd, transparent);
        opacity: 0.6;
    }

/* Wrapper */
.quote-modern {
    max-width: 520px;
    margin: 0 auto;
}

/* Title */
.quote-title {
    font-size: 1.7rem;
    letter-spacing: 0.01em;
}

/* Subtitle */
.quote-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
}

.quote-card {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

    .quote-card:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
    }

    .quote-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }


body.dark .quote-card {
    s background: rgba(30, 30, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

    body.dark .quote-card:hover {
        background: rgba(40, 40, 42, 0.7);
    }

body.dark .quote-subtitle {
    color: #a1a1aa;
}

.build-card {
    border: 1px solid #83acff !important;
}

#pagination-controls button {
    padding: 6px 12px;
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    color: var(--bs-body-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

    #pagination-controls button:hover {
        background: rgba(99,102,241,0.1);
    }

    #pagination-controls button.active {
        background: #6366f1;
        color: #fff;
        border-color: #6366f1;
    }

    #pagination-controls button:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

#pagination-controls button {
    width: 16rem;
    background-color: #0d6efd;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125);
}

#pagination-controls button {
    width: 16rem;
    background: linear-gradient(to right, #2563EB, #9333EA);
    color: #fff;
    border: 1px solid #0d6efd;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125);
}
