:root {
    /* Brand Primary (Deep Royal Blue) */
    --color-primary: #1E3A8A; 
    --color-primary-dark: #172554;
    --color-primary-light: #EFF6FF;

    /* Brand Secondary (Crimson Red) */
    --color-secondary: #C2185B;
    --color-secondary-dark: #880E4F;

    /* Accent Color (Golden Yellow / Warm Amber) */
    --color-accent: #E0A92E;
    --color-accent-hover: #C5921D;

    /* UI Neutrals */
    --color-bg-light: #F8FAFC;
    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;
    --border-color: #E2E8F0;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Global Reset & Base Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Sample Primary CTA Button class using Logo Crimson Red */
.btn-primary {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
}

/* Sample Secondary CTA Button class using Logo Blue */
.btn-secondary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primary-dark);
}
/* ==========================================================================
   SHIKSHA ACADEMY - PRO-LEVEL COURSE STREAM EXPLORER
   ========================================================================== */

/* Main Layout Card */
.pro-stream-layout {
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Sidebar List Container */
.pro-sidebar-list {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid #EFF2F6;
}

/* Vertical Tab Buttons */
.pro-tab-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    margin-bottom: 6px;
}

.pro-tab-btn:hover {
    background-color: rgba(30, 58, 138, 0.03);
    color: var(--color-primary);
    border-left-color: rgba(30, 58, 138, 0.3);
    padding-left: 24px; /* Soft slide transition */
}

/* Active State: White card lift with Royal Blue accent line */
.pro-tab-btn.active {
    background-color: #FFFFFF !important;
    color: var(--color-primary) !important;
    border-left-color: var(--color-primary) !important;
    box-shadow: 0 10px 20px -10px rgba(30, 58, 138, 0.1);
}

.pro-tab-btn .stream-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.08);
    padding: 3px 10px;
    border-radius: 30px;
    width: fit-content;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.pro-tab-btn.active .stream-badge {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: transparent;
}

/* Counselling Tab Variant (Crimson Red Highlights) */
.pro-tab-btn.counselling-tab:hover {
    background-color: rgba(194, 24, 91, 0.03);
    color: var(--color-secondary);
    border-left-color: rgba(194, 24, 91, 0.3);
}

.pro-tab-btn.counselling-tab.active {
    background-color: #FFFFFF !important;
    color: var(--color-secondary) !important;
    border-left-color: var(--color-secondary) !important;
    box-shadow: 0 10px 20px -10px rgba(194, 24, 91, 0.1);
}

.pro-tab-btn.counselling-tab.active .stream-badge {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    border-color: transparent;
}

/* --------------------------------------------------
   PRO COURSE CARDS
   -------------------------------------------------- */
.pro-course-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pro-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.18);
}

/* Sleek tri-color brand gradient top-bar */
.pro-card-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    width: 100%;
}

.pro-card-body {
    padding: 5px 20px;
    text-align: left;
}

.pro-card-title {
    font-weight: 700;
    color: #0F172A;
    font-size: 1rem;
    line-height: 1.35;
    height: 44px;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
}

/* Overlapping University Partner Logos */
.partner-stack {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.partner-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.partner-avatar:first-child {
    margin-left: 0;
}

.pro-uni-badge {
    font-size: 11.5px;
    color: #64748B;
    font-weight: 600;
    margin-left: 10px;
}

/* Pro Card Footer */
.pro-card-footer {
    padding: 16px 24px;
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Eligibility Capsule */
.pro-eligibility-tag {
    background-color: rgba(194, 24, 91, 0.05);
    color: var(--color-secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(194, 24, 91, 0.08);
}

/* Compare Button */
.pro-compare-btn {
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    border: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pro-compare-btn:hover {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(194, 24, 91, 0.25);
    transform: scale(1.02);
}

/* Touch responsiveness */
@media (max-width: 991px) {
    .pro-sidebar-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
        padding: 8px;
        gap: 8px;
        box-shadow: none;
        background: transparent;
        border: none;
        border-bottom: 1px solid #E2E8F0;
        border-radius: 0;
    }
    .pro-tab-btn {
        display: inline-flex;
        width: auto;
        margin-bottom: 0;
        padding: 8px 14px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    .pro-tab-btn:hover {
        padding-left: 14px;
        border-bottom-color: rgba(30, 58, 138, 0.3);
    }
    .pro-tab-btn.active {
        border-bottom-color: var(--color-primary) !important;
    }
}
/* ==========================================================================
   PRO-LEVEL HOME REDESIGN (UNIVERSITIES & TRUST STRIP)
   ========================================================================== */

/* 1. Modern University Grid Styles */
.pro-uni-grid-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pro-uni-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.08) !important;
    border-color: rgba(30, 58, 138, 0.15) !important;
}

/* Elegant bottom accent line on hover */
.pro-uni-grid-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.pro-uni-grid-card:hover::after {
    opacity: 1;
}

.pro-uni-logo-holder {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 12px;
    background: #FAFCFF;
    border: 1px solid #F1F5F9;
}

.pro-uni-course-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.pro-uni-name-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.35;
    height: 40px;
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro-uni-location-strip {
    padding: 12px 15px;
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-size: 11px;
    font-weight: 500;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 2. Modern Trust Statistics Strip Styles */
.pro-trust-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.03);
    padding: 24px;
}

.pro-trust-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    height: 100%;
}

.pro-trust-icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pro-trust-info h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
    letter-spacing: -0.3px;
}

.pro-trust-info p {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 0;
    font-weight: 500;
}
 .mentor-grid-card {
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(180deg, #1E3A8A 0%, #001C3D 100%);
        border: none;
        position: relative;
        height: 100%;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: var(--transition-smooth);
        cursor: pointer;
    }
    .mentor-grid-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 28, 61, 0.25);
    }
    .mentor-image-bg {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 85%;
        width: auto;
        object-fit: cover;
        z-index: 1;
        transition: var(--transition-smooth);
    }
    .mentor-card-overlay {
        position: relative;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0, 28, 61, 0) 0%, rgba(0, 28, 61, 0.9) 80%);
        padding: 24px;
        width: 100%;
    }
    .mentor-rating-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 3;
        background-color: rgba(255, 255, 255, 0.95);
        color: #000000;
        font-weight: 700;
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 30px;
    }
    .mentor-certified-seal {
        position: absolute;
        top: 55px;
        left: 20px;
        z-index: 3;
        width: 32px;
        height: 32px;
    }
    .trait-pill-capsule {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        color: #FFFFFF;
        font-size: 9.5px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: inline-block;
        margin-right: 4px;
        margin-bottom: 4px;
    }

    /* Modal Player Styles */
    .modal-video-container {
        border-radius: 16px;
        overflow: hidden;
        background-color: #000000;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
/* ==========================================================================
   SHIKSHA ACADEMY - PRO-LEVEL VIDEO TESTIMONIALS & MENTORS
   ========================================================================== */

/* Main Mentor Card Wrapper */
.pro-mentor-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pro-mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.15);
}

/* Image Container */
.pro-mentor-img-wrap {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    background-color: #001C3D; /* Deep Navy Background fallback */
}

.pro-mentor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pro-mentor-card:hover .pro-mentor-img-wrap img {
    transform: scale(1.05); /* Soft zoom on hover */
}

/* Gradient text protection overlay over the image */
.pro-mentor-text-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, rgba(0, 28, 61, 0) 0%, rgba(0, 28, 61, 0.9) 80%);
    padding: 16px;
    z-index: 2;
    text-align: left;
}

/* Star Rating Badge */
.pro-mentor-rating {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0F172A;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* BOM Certified Gold Seal */
.pro-mentor-bom {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    background: linear-gradient(135deg, var(--color-accent) 0%, #D97706 100%);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Lower Traits Area (Card Body) */
.pro-mentor-body {
    padding: 12px;
    background: #FFFFFF;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Translucent player modal overlay styling */
.modal-video-container {
    border-radius: 16px;
    overflow: hidden;
    background-color: #000000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}