﻿/* Common Styles for Podar Lakshya Portal */

* {
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EFF5 50%, #F5F0F8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* ========== HEADER STYLES ========== */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.06);
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    height: 70px;
    width: auto;
}

.header-report-logo-img {
    height: 90px;
    width: auto;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #44617e;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px 15px;
}

    .logout-btn:hover {
        color: #2C3E50;
    }

    .logout-btn i {
        font-size: 18px;
    }

.loop-leaarning-logo-login {
    height: 20px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

/* ========== MAIN CONTENT ========== */
.main-content,
.dash-main,
.result-wrapper {
    flex: 1 0 auto;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px 20px;
}

/* ========== FOOTER STYLES ========== */
.footer {
    flex-shrink: 0;
    background: transparent;
    padding: 20px;
    text-align: center;
  
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5D6D7E;
    margin: 0;
}

/* ========== LOGIN PAGE STYLES ========== */
.login-container {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 40px;
}





.left-section {
    flex: 1;
    background: transparent;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.brand-content {
    position: relative;
    z-index: 1;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #34495E;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ========== BRAND TITLE HIGHLIGHT ========== */
.highlight-word {
    font-family: 'Playfair Display', serif;
    /* color: #6B4C9A; */
    color: #4d8ec8;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #5D6D7E;
    line-height: 1.5;
    margin-top: 10px;
}

.right-section {
    flex: 0 0 420px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    margin-top: 60px;
}

.form-section {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.welcome-text {
    color: #2C3E50;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 8px;
    text-align: center;
}

.subtitle-text {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 400;
}

.form-label {
    color: #495057;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #E8EEF3;
    border-radius: 0;
    padding: 10px 14px;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .form-control::placeholder {
        color: #B0BEC5;
        opacity: 1;
    }

    .form-control:focus {
        border-color: #6B4C9A;
        box-shadow: none;
    }

.input-group-text {
    background: transparent;
    border: 2px solid #E8EEF3;
    border-right: none;
    border-radius: 0;
    color: #6B4C9A;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0;
}

/* .input-group:focus-within .input-group-text {
    border-color: #6B4C9A;
} */

/* ========== PASSWORD GROUP PREMIUM FOCUS FIX ========== */

.password-group {
    position: relative;
    border: 2px solid #E8EEF3;
    transition: border-color 0.25s ease;
}

    .password-group .input-group-text,
    .password-group .form-control {
        border: none !important;
        box-shadow: none !important;
        background: transparent;
    }

    /* Full textbox highlight */
    .password-group:focus-within {
        border-color: #6B4C9A;
    }

/* Password input spacing */
.password-input {
    padding-right: 52px !important;
}

/* Eye button */
.password-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9AA7B2;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .password-toggle-btn:hover {
        color: #7e3d97;
    }

    .password-toggle-btn:focus {
        outline: none;
        box-shadow: none;
    }

    .password-toggle-btn i {
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .password-toggle-btn:hover i {
        transform: scale(1.08);
    }

/* ========== USERNAME GROUP PREMIUM FOCUS ========== */

.username-group {
    border: 2px solid #E8EEF3;
    transition: border-color 0.25s ease;
}

    .username-group .input-group-text,
    .username-group .form-control {
        border: none !important;
        box-shadow: none !important;
        background: transparent;
    }

    /* Complete unified highlight */
    .username-group:focus-within {
        border-color: #6B4C9A;
    }


.form-check {
    margin: 18px 0 20px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #D5DCE3;
    border-radius: 0;
    cursor: pointer;
}

    .form-check-input:checked {
        background-color: #6B4C9A;
        border-color: #6B4C9A;
    }

.form-check-label {
    color: #6c757d;
    font-size: 14px;
    margin-left: 0;
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(135deg, #7e3d97 0%, #7e3d97 100%);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-submit:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(93, 156, 236, 0.3);
        background: linear-gradient(135deg, #7e3d97 0%, #7e3d97 100%);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

    .forgot-password a {
        color: #7e3d97;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .forgot-password a:hover {
            color: #57256a;
            text-decoration: underline;
        }

/* ========== PASSWORD TOGGLE ========== */

.password-group {
    position: relative;
}

.password-input {
    padding-right: 52px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    width: 24px;
    height: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9AA7B2;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .password-toggle-btn:hover {
        color: #7e3d97;
    }

    .password-toggle-btn:focus {
        outline: none;
        box-shadow: none;
    }

    .password-toggle-btn i {
        font-size: 18px;
        transition: all 0.25s ease;
    }

    /* Slight premium interaction */
    .password-toggle-btn:hover i {
        transform: scale(1.08);
    }

/* ========== QUESTIONNAIRE PAGE STYLES ========== */
.questions-section {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.question-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    border: 1px solid #E8EEF3;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    transition: all 0.3s ease;
}

    .question-box:hover {
        box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
        transform: translateY(-2px);
    }

.question-text {
    font-size: 17px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E8EFF5;
}

.question-number {
    color: #6B4C9A;
    margin-right: 8px;
}

/* ========== QUESTIONNAIRE PAGE - STUDENT PROFILE BAR ========== */
.questions-section .student-header-bar {
    margin-bottom: 24px;
    /* border-left: 4px solid #6B4C9A; */
}

.answers-container {
    margin-left: 10px;
}

.answer-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

    .answer-option:last-child {
        margin-bottom: 0;
    }

.form-check-input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #D5DCE3;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

    .form-check-input[type="radio"]:checked {
        background-color: #6B4C9A;
        border-color: #6B4C9A;
        box-shadow: 0 0 0 0.2rem rgba(107, 76, 154, 0.25);
        border-color: #6B4C9A;
    }

/* ===== PAGINATION (NUMBERS ONLY) ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

#pageNumbers {
    display: flex;
    gap: 8px;
}

.page-number {
    background-color: #6B4C9A;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 500;
    min-width: 36px;
    text-align: center;
    transition: all 0.2s ease;
}

    .page-number:hover {
        background-color: #5A3A78;
    }

    .page-number.active {
        background-color: #3f2a5c;
        font-weight: 600;
    }

.page-nav {
    background: transparent;
    border: 1.5px solid #6B4C9A;
    color: #6B4C9A;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

    .page-nav:hover {
        background: #6B4C9A;
        color: #ffffff;
    }

.submit-container {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
}

.btn-submit-questionnaire {
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
    border: none;
    color: white;
    padding: 14px 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

    .btn-submit-questionnaire:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(107, 76, 154, 0.3);
        background: linear-gradient(135deg, #7C5AAA 0%, #684488 100%);
    }

    .btn-submit-questionnaire:active {
        transform: translateY(0);
    }

/* ========== VALIDATION ERROR STYLES ========== */
.error-message {
    color: #dc3545;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    margin-left: 2px;
    min-height: 18px;
    display: block;
    font-family: 'Inter', sans-serif;
}

    .error-message:empty {
        display: none;
    }

.authorized-users {
    border: 1px solid #fdb1b9;
    background-color: #ffdce0;
    text-align: left;
    margin-top: 10px;
}

    .authorized-users p {
        font-size: 13px;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 0px;
        margin-bottom: 5px;
        color: #d83f4b;
        font-weight: 600;
    }



/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
    }

    .header-logo {
        font-size: 20px;
    }

    .main-content {
        padding: 80px 20px 60px;
    }

    .login-container {
        flex-direction: column;
        gap: 30px;
    }

    .left-section {
        padding: 30px 20px;
        text-align: center;
    }

    .brand-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 22px;
        display: none;
    }

    .right-section {
        flex: 1;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-logo-img {
        height: 32px;
    }

    .header-logo {
        font-size: 18px;
    }

    .logout-btn {
        font-size: 14px;
        padding: 6px 10px;
    }

    .main-content {
        padding: 90px 15px 30px;
    }

    .question-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .question-text {
        font-size: 16px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .answers-container {
        margin-left: 5px;
    }

    .form-check-label {
        font-size: 14px;
    }

    .btn-submit-questionnaire {
        padding: 12px 40px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .left-section {
        padding: 20px 15px;
    }

    .brand-title {
        font-size: 36px;
    }

    .right-section {
        padding: 30px 20px;
    }

    .welcome-text {
        font-size: 24px;
    }

    .subtitle-text {
        font-size: 13px;
    }

    .footer-text {
        font-size: 12px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeInUp 0.6s ease-out;
}

.question-box {
    animation: fadeInUp 0.5s ease-out;
}

    .question-box:nth-child(1) {
        animation-delay: 0.05s;
    }

    .question-box:nth-child(2) {
        animation-delay: 0.1s;
    }

    .question-box:nth-child(3) {
        animation-delay: 0.15s;
    }

    .question-box:nth-child(4) {
        animation-delay: 0.2s;
    }

    .question-box:nth-child(5) {
        animation-delay: 0.25s;
    }



/* ========== ASSESSMENTS PAGE STYLES ========== */
.assessments-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

.assessment-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #6B4C9A;
    text-align: left;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.assessment-card {
    background: #FFFFFF;
    border-radius: 0;
    padding: 30px 25px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

    .assessment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
        transform: scaleY(0);
        transition: transform 0.4s ease;
    }

    .assessment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(93, 156, 236, 0.15);
    }

        .assessment-card:hover::before {
            transform: scaleY(1);
        }

.card-content {
    flex: 1;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.card-code {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7B8794;
    margin: 0;
    font-style: italic;
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    /* background: linear-gradient(135deg, #F0F4F8 0%, #E8EFF5 100%); */
    background: linear-gradient(135deg, #f3ecfb 0%, #f3ecfb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

    .card-arrow i {
        font-size: 16px;
        color: #6B4C9A;
        transition: transform 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.assessment-card:hover .card-arrow {
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
    transform: scale(1.1);
}

    .assessment-card:hover .card-arrow i {
        color: #FFFFFF;
        transform: translateX(3px);
    }

/* Parent Section Styling Variant */
.assessment-section:last-child .assessment-card::before {
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
}

.assessment-section:last-child .card-arrow i {
    color: #6B4C9A;
}

.assessment-section:last-child .assessment-card:hover .card-arrow {
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
}

    .assessment-section:last-child .assessment-card:hover .card-arrow i {
        color: #FFFFFF;
    }


/* ========== ASSESSMENT TIME PILL ========== */

/* Footer row layout */
.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

/* Time pill */
.assessment-time-pill {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* padding: 5px 10px; */
    border-radius: 999px;
    /* background: linear-gradient(
        135deg,
        #f4eefb 0%,
        #eee4fa 100%
    ); */
    /* border: 1px solid #e3d3f5; */
    font-size: 11px;
    font-weight: 600;
    color: #6B4C9A;
    line-height: 1;
    white-space: nowrap;
}

    .assessment-time-pill i {
        font-size: 12px;
        color: #7e3d97;
        padding-right: 3px;
    }

.average-time-pill {
    background: linear-gradient( 135deg, #f4eefb 0%, #eee4fa 100% );
    padding: 5px 10px;
    border-radius: 50px;
}

/* Mobile */
@media (max-width: 576px) {

    .card-footer-row {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .assessment-time-pill {
        order: 3;
        margin-bottom: 30px;
    }
}

/* ========== RESPONSIVE ADJUSTMENTS FOR ASSESSMENTS ========== */
@media (max-width: 768px) {
    .assessments-container {
        padding: 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .assessment-card {
        padding: 25px 20px;
        min-height: 120px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-code {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
    }

    .assessment-card {
        padding: 20px 18px;
    }

    .card-title {
        font-size: 14px;
    }
}

/* Assessment card animations */
.assessment-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: backwards;
}

    .assessment-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .assessment-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .assessment-card:nth-child(3) {
        animation-delay: 0.15s;
    }

    .assessment-card:nth-child(4) {
        animation-delay: 0.2s;
    }


/* ========== NO ASSESSMENTS AVAILABLE - EMPTY STATE ========== */
.empty-state-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 60px 30px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
    border-radius: 0;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseIcon 2s ease-in-out infinite;
}

    .empty-state-icon i {
        font-size: 40px;
        color: #F39C12;
    }

.empty-state-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.empty-state-message {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7B8794;
    margin: 0 0 35px 0;
    line-height: 1.6;
}

.btn-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
    border: none;
    color: white;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0;
}

    .btn-refresh i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .btn-refresh:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(107, 76, 154, 0.3);
        background: linear-gradient(135deg, #7C5AAA 0%, #684488 100%);
    }

        .btn-refresh:hover i {
            transform: rotate(180deg);
        }

    .btn-refresh:active {
        transform: translateY(0);
    }

/* Animation for the icon */
@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Fade in animation for container */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state-container {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== MOBILE RESPONSIVENESS FOR EMPTY STATE ========== */
@media (max-width: 768px) {
    .empty-state-container {
        padding: 50px 25px;
    }

    .empty-state-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

        .empty-state-icon i {
            font-size: 35px;
        }

    .empty-state-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .empty-state-message {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-refresh {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .empty-state-container {
        padding: 40px 20px;
    }

    .empty-state-icon {
        width: 60px;
        height: 60px;
    }

        .empty-state-icon i {
            font-size: 30px;
        }

    .empty-state-title {
        font-size: 22px;
    }

    .empty-state-message {
        font-size: 14px;
    }
}
/* ===== RESULT PAGE SPECIFIC STYLES ===== */

.result-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.initiative-text {
    text-align: center;
    font-size: 14px;
    color: #7B8794;
    margin-bottom: 10px;
    font-style: italic;
}

.result-main-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 25px;
}

.export-btn {
    display: block;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
    border: none;
    color: white;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .export-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(107, 76, 154, 0.3);
    }

.report-card {
    background: #FFFFFF;
    border: 2px solid #6B4C9A;
    padding: 35px;
    position: relative; /* ADD THIS */
    overflow: hidden; /* ADD THIS */
}

    .report-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 312px;
        background-image: url('../Images/watermark-logo.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

    .report-card > * {
        position: relative;
        z-index: 1;
    }

.report-header {
    background: #6B4C9A;
    color: #FFFFFF;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 25px;
}

.student-details {
    /* background: #F3EDF9; */
    border: 1px solid #F3EDF9;
    ;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    color: #2C3E50;
    line-height: 26px;
}

    .student-details div {
        margin-bottom: 5px;
    }

.personality-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C3E50;
    margin-top: 10px;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 5px;
}

    .result-table th {
        background: #6B4C9A;
        color: #FFFFFF;
        /*color: #6B4C9A;*/
        padding: 6px;
        font-weight: 600;
        border: 1px solid #DDD;
    }

    .result-table td {
        padding: 6px;
        /*text-align: center;*/
        border: 1px solid #DDD;
        color: #2C3E50;
    }

    .result-table tbody tr:nth-child(even) {
        /* background: #FAF8FC; */
        background: transparent;
    }

/* Responsive */

@media (max-width: 768px) {
    .student-details {
        flex-direction: column;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .result-main-title {
        font-size: 24px;
    }

    .report-card {
        padding: 20px;
    }
}
/* ========================================================
   ASSESSMENT CARD � SUBMITTED / DISABLED STATE
   Add this file after podar-styles.css in your <head>
   ======================================================== */

/* ---------- Disabled card shell ---------- */
.assessment-card.assessment-card--submitted {
    cursor: not-allowed;
    pointer-events: none; /* blocks all clicks */
    background: #F7F8FA; /* washed-out background */
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.04);
    opacity: 0.82;
}

    /* Kill the hover lift & glow */
    .assessment-card.assessment-card--submitted:hover {
        transform: none;
        box-shadow: 0 1px 4px rgba(44, 62, 80, 0.04);
    }

    /* Kill the left-border accent on hover */
    .assessment-card.assessment-card--submitted::before {
        display: none;
    }

    /* Mute the card title */
    .assessment-card.assessment-card--submitted .card-title {
        color: #9BA8B4;
    }

    /* Grey-out the arrow bubble */
    .assessment-card.assessment-card--submitted .card-arrow {
        background: #EAECEF;
        opacity: 0.55;
    }

        .assessment-card.assessment-card--submitted .card-arrow i {
            color: #B0BAC5;
        }


/* ---------- Submitted badge � base ---------- */
.submitted-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px; /* pill shape */
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

    .submitted-badge i {
        font-size: 12px;
        flex-shrink: 0;
    }


    /* ---------- Student section badge � soft teal-blue ---------- */
    /*
   Complements the student section's blue accent (#5D9CEC).
   Background: pale sky   Text / icon: calm teal-blue
*/
    .submitted-badge.submitted-badge--student {
        background-color: #EDE8F6;
        color: #5A3A88;
        border: 1px solid #D2C5EA;
    }

        .submitted-badge.submitted-badge--student i {
            color: #7155A8;
        }


    /* ---------- Parent section badge � soft lavender-mauve ---------- */
    /*
   Complements the parent section's purple accent (#6B4C9A).
   Background: pale lavender   Text / icon: muted purple
*/
    .submitted-badge.submitted-badge--parent {
        background-color: #EDE8F6;
        color: #5A3A88;
        border: 1px solid #D2C5EA;
    }

        .submitted-badge.submitted-badge--parent i {
            color: #7155A8;
        }

/* ========== STUDENT HEADER BAR ========== */
.student-header-bar {
    display: flex;
    align-items: center;
    /* margin-bottom: 24px; */
    padding: 14px 20px;
    background: #ffffff;
    /* border-left: 4px solid #cbd3de; */
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
    position: relative;
    overflow: hidden;
    justify-content: space-between;
}

    .student-header-bar::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        /* background: rgba(93, 156, 236, 0.06); */
        border-radius: 50%;
    }

.student-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.student-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6B4C9A 0%, #6B4C9A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .student-avatar i {
        font-size: 20px;
        color: #ffffff;
    }

.student-header-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.student-header-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #452b4e;
    letter-spacing: 0.2px;
    line-height: 1;
}

/* ========== STUDENT HEADER SCHOOL NAME ========== */

.student-header-school {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6A5B78;
    line-height: 1.35;
    letter-spacing: 0.15px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 5px;
}



.student-header-grade {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B4C9A;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .student-header-grade i {
        font-size: 11px;
    }

/* View final result link css code */
.view-final-result-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #6B4C9A;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #c9b8e8;
    letter-spacing: 0.2px;
    border: none;
    padding: 4px 0;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

    .view-final-result-link:hover {
        color: #452b4e;
        text-decoration-color: #452b4e;
    }

    .view-final-result-link i {
        font-size: 13px;
        transition: transform 0.2s ease;
    }

    .view-final-result-link:hover i {
        transform: translateX(3px);
    }



/* ========== STUDENT SECTION DIVIDER ========== */
.student-section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 36px 0 28px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D5DCE3 40%, #D5DCE3 60%, transparent);
}

.divider-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #9BA8B4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .divider-label i {
        font-size: 13px;
        color: #B0BAC5;
    }

/* ========== ASSESSMENT BOX ========== */
.assessment-box {
    background: rgba(210, 200, 255, 0.15);
    border: 1px solid rgba(200, 180, 255, 0.30);
    box-shadow: 0 4px 20px rgba(130, 100, 200, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
}

/* ===== BACK TO ASSESSMENTS BUTTON ===== */

.back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
    cursor: pointer;
    padding: 8px 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .back-btn i {
        font-size: 16px;
    }

    .back-btn:hover {
        color: #43576b;
        transform: translateX(-2px);
    }


/* ===== RESULT TOP BAR ===== */

.result-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

    /* Slight card-aligned look */
    .result-top-bar .back-btn {
        background: #FFFFFF;
        border: 1px solid #E0D7F3;
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 12px;
    }

/* ===== RESPONSIVE TABLE ===== */

.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Improve mobile readability */
@media (max-width: 768px) {

    .result-top-bar {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

        .result-top-bar .back-btn {
            background: #FFFFFF;
            border: 1px solid #E0D7F3;
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 12px;
            margin-bottom: 30px;
        }

    .result-table {
        min-width: 600px;
    }

    .back-btn {
        font-size: 13px;
        padding: 6px 10px;
    }

    .result-top-bar {
        margin-bottom: 10px;
    }
}
/* ===== STUDENT BANNER � VARIATION 2 ===== */
.student-banner-v2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 4px 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid #E0D7F3;
}

.v2-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F3EDF9;
    border: 1.5px solid #C9B8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

    .v2-avatar i {
        font-size: 26px;
        color: #6B4C9A;
    }

.v2-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v2-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
}

.v2-class {
    font-size: 13px;
    font-weight: 500;
    color: #6B4C9A;
    letter-spacing: 0.3px;
}

@media (max-width: 576px) {
    .v2-name {
        font-size: 20px;
    }

    .printfixdiv {
        text-align: center;
        margin-bottom: 5px;
    }
}

.result-interpretation-title {
    font-size: 16px;
    font-weight: bold;
}

.result-interpretation-details {
    font-size: 14px;
}

.result-description-block {
    margin-bottom: 11px;
    padding: 14px;
    /* background: #faf8fa; */
    border-left: 3px solid #6B4C9A;
}


/* ============================================================
   DASHBOARD EXCLUSIVE STYLES — dashboard-styles.css
   Podar Lakshya Portal
   ============================================================ */

/* ── Override main-content top padding for dashboard ───────── */
.db-main {
    padding-top: 100px;
    padding-bottom: 60px;
    align-items: flex-start;
}

/* ── Container ─────────────────────────────────────────────── */
.db-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.db-section {
    width: 100%;
}

/* ============================================================
   SECTION 1 — EXCELLENCE CARD
   ============================================================ */
.db-excellence-card {
    background: #ffffff;
    box-shadow: 0 4px 28px rgba(44, 62, 80, 0.07);
    border-radius: 2px;
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    animation: dbFadeUp 0.6s ease-out both;
    position: relative;
}

    /* Subtle top accent line */
    .db-excellence-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #5D9CEC 0%, #6B4C9A 100%);
    }

.db-excellence-left {
    flex: 1;
    padding: 42px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid #EDF1F5;
}

.db-excellence-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.35;
    margin: 0;
}

.db-excellence-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #5D6D7E;
    line-height: 1.75;
    margin: 0;
}

/* ── Stats Panel ──────────────────────────────────────────── */
.db-excellence-right {
    flex: 0 0 300px;
    background: linear-gradient(160deg, #FFFDF4 0%, #FFF8E1 100%);
    padding: 38px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.db-stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.db-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #E8960A;
    line-height: 1;
    letter-spacing: -1px;
}

.db-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #7B6830;
    text-align: center;
}

.db-stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DFC46E, transparent);
    margin: 6px 0;
}

.db-stat-tag {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #C87D00;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .db-stat-tag i {
        font-size: 13px;
    }

/* ============================================================
   SECTION 2 — FOUR PILLARS
   ============================================================ */
.db-pillars-section {
    animation: dbFadeUp 0.65s ease-out 0.1s both;
}

.db-pillars-header {
    text-align: center;
    margin-bottom: 36px;
}

.db-pillars-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 10px;
}

.db-pillars-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #7B8794;
    margin: 0;
}

/* ── Pillar Grid ──────────────────────────────────────────── */
.db-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.db-pillar-card {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(44, 62, 80, 0.06);
    padding: 34px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: dbFadeUp 0.55s ease-out both;
    cursor: default;
}

/* Bottom accent bar — hidden by default, slides up on hover */
.db-pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5D9CEC, #6B4C9A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.db-pillar-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 32px rgba(93, 156, 236, 0.13);
}

    .db-pillar-card:hover .db-pillar-accent {
        transform: scaleX(1);
    }

.db-pillar-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
    transition: transform 0.3s ease;
}

.db-pillar-card:hover .db-pillar-icon {
    transform: scale(1.12);
}

.db-pillar-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px;
    letter-spacing: 0.1px;
}

.db-pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #6B7785;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.db-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 10px 0 20px;
    animation: dbFadeUp 0.7s ease-out 0.25s both;
}

.db-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #5D9CEC 0%, #4A89DC 40%, #6B4C9A 100%);
    color: #ffffff;
    border: none;
    padding: 17px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 6px 24px rgba(74, 137, 220, 0.30);
}

    /* Shimmer sweep on hover */
    .db-cta-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
        transition: left 0.5s ease;
    }

    .db-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(74, 137, 220, 0.38);
    }

        .db-cta-btn:hover::after {
            left: 150%;
        }

    .db-cta-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 14px rgba(74, 137, 220, 0.25);
    }

.db-cta-icon i {
    font-size: 19px;
    opacity: 0.92;
}

.db-cta-text {
    flex: 1;
}

.db-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.db-cta-btn:hover .db-cta-arrow {
    transform: translateX(4px);
}

.db-cta-arrow i {
    font-size: 14px;
}

.db-cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #9BA8B4;
    margin: 0;
    letter-spacing: 0.2px;
}

    .db-cta-note i {
        color: #5D9CEC;
    }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes dbFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .db-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .db-excellence-card {
        flex-direction: column;
    }

    .db-excellence-left {
        padding: 28px 24px;
        border-right: none;
        border-bottom: 1px solid #EDF1F5;
    }

    .db-excellence-right {
        flex: unset;
        padding: 28px 24px;
    }

    .db-excellence-title {
        font-size: 22px;
    }

    .db-pillars-title {
        font-size: 26px;
    }

    .db-cta-btn {
        padding: 15px 28px;
        font-size: 14px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .db-pillars-grid {
        grid-template-columns: 1fr;
    }

    .db-container {
        gap: 36px;
    }

    .db-stat-number {
        font-size: 34px;
    }
}


/* ============================================================
   ASSESSMENT ENHANCEMENTS — assessment-enhancements.css
   Add this file after assessment-submitted.css in <head>
   Podar Lakshya Portal
   ============================================================ */


/* ──────────────────────────────────────────────────────────
   1. SECTION DESCRIPTION
   Sits directly below .section-title in each section.
   ────────────────────────────────────────────────────────── */
.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5D6D7E;
    line-height: 1.75;
    margin-top: -18px; /* pull up to close gap after title */
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #faf8fa;
    border-left: 3px solid #6B4C9A;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .section-description i {
        font-size: 15px;
        color: #5D9CEC;
        flex-shrink: 0;
        margin-top: 2px;
    }

/* Parent section gets purple accent */
.assessment-section:last-child .section-description {
    border-left-color: #6B4C9A;
    background: #F9F7FD;
}

    .assessment-section:last-child .section-description i {
        color: #6B4C9A;
    }


/* ──────────────────────────────────────────────────────────
   2. CARD DESCRIPTION
   Short paragraph below .card-title inside .card-content.
   ────────────────────────────────────────────────────────── */
.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #7B8794;
    line-height: 1.65;
    margin: 0 0 14px 0; /* space before badge row */
}


/* ──────────────────────────────────────────────────────────
   3. BADGE + ICONS ROW
   Wraps .submitted-badge and the two icon buttons together.
   ────────────────────────────────────────────────────────── */
.card-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ── Icon buttons ── */
.card-action-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 2px;
    margin-top: 8px;
}

.card-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    /* background: #D5DCE3; */
    color: #6B4C9A;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    padding: 0;
    outline: none;
}

    .card-icon-btn:hover {
        background: #6B4C9A;
        border-color: #6B4C9A;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(93, 156, 236, 0.28);
    }

    .card-icon-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

/* PDF button — distinct purple tint */
.card-icon-btn--pdf {
    color: #6B4C9A;
    border-color: #D5C9E8;
}

    .card-icon-btn--pdf:hover {
        background: #6B4C9A;
        border-color: #6B4C9A;
        color: #FFFFFF;
        box-shadow: 0 4px 12px rgba(107, 76, 154, 0.28);
    }

/* ── Tooltip ── */
.card-icon-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    background: #2C3E50;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
    letter-spacing: 0.2px;
}

/* Tooltip arrow */
.card-icon-btn::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    border: 5px solid transparent;
    border-top-color: #2C3E50;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.card-icon-btn:hover::after,
.card-icon-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}


/* ──────────────────────────────────────────────────────────
   4. CARD HEIGHT ADJUSTMENT
   Cards now have more content — raise min-height.
   ────────────────────────────────────────────────────────── */
.assessment-card {
    min-height: 180px;
}

    /* Push card-arrow down so it doesn't overlap new content */
    .assessment-card .card-arrow {
        margin-top: 16px;
        position: absolute;
        bottom: 20px;
        right: 20px;
    }


/* ──────────────────────────────────────────────────────────
   5. RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-description {
        font-size: 13px;
        padding: 12px 14px;
    }

    .card-desc {
        font-size: 12px;
    }

    .card-icon-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .card-badge-row {
        flex-wrap: wrap;
        gap: 8px;
    }
}


/* ========== SECTION INTRO BANNER (Refined) ========== */
.sib-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #E3EDF7;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.06);
    margin-bottom: 32px;
    overflow: hidden;
}

.sib-side-bar {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #5D9CEC 0%, #6B4C9A 100%);
}

.sib-body-wrap {
    padding: 28px 36px 24px 28px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.sib-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.sib-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EBF3FD, #EDE7F8);
    border: 1px solid #D8E8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .sib-icon-wrap i {
        font-size: 20px;
        background: linear-gradient(135deg, #5D9CEC, #6B4C9A);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.sib-body {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    color: #5D6D7E;
    line-height: 1.8;
    margin: 0;
}

.sib-hints {
    display: flex;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid #EDF2F7;
    flex-wrap: wrap;
}

.sib-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #8FA5BC;
    letter-spacing: 0.3px;
}

.sib-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sib-dot--blue {
    background: #5D9CEC;
}

.sib-dot--purple {
    background: #6B4C9A;
}

.sib-dot--mid {
    background: #8FAAD8;
}

/* Decorative orbs */
.sib-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sib-orb--1 {
    width: 180px;
    height: 180px;
    right: -40px;
    bottom: -50px;
    background: rgba(107, 76, 154, 0.04);
}

.sib-orb--2 {
    width: 110px;
    height: 110px;
    right: 80px;
    bottom: -40px;
    background: rgba(93, 156, 236, 0.05);
}

/* Responsive */
@media (max-width: 600px) {
    .sib-body-wrap {
        padding: 22px 20px 20px 20px;
    }

    .sib-hints {
        gap: 14px;
    }

    .sib-body {
        font-size: 13.5px;
    }
}


/* ============================================================
   LAKSHYA LEFT SECTION — CONTENT UPDATE
   File: lakshya-left-section.css
   
   HOW TO USE:
   Link this file AFTER podar-styles.css in <head>:
   <link rel="stylesheet" href="lakshya-left-section.css">
   
   This file ONLY touches the left section of the login page.
   No existing styles are overridden elsewhere.
   ============================================================ */


/* ── 1. Left section layout adjustment ──────────────────────
   More content needs more vertical breathing room and a
   slightly wider column. We switch from centre-align to
   top-align so the copy reads naturally top-down.
   ---------------------------------------------------------- */
.left-section {
    justify-content: flex-start; /* align to top, not centre   */
    padding: 48px 44px 40px; /* generous breathing room     */
    overflow-y: auto; /* scroll if viewport is short */
}

/* Widen left panel relative to right so text isn't cramped */
.login-container {
    max-width: 1100px; /* slightly wider than 1000px  */
    gap: 48px;
    align-items: flex-start; /* left & right both top-align  */
}


/* ── 2. Eyebrow label ────────────────────────────────────── */
.lls-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #7e3d97; /* matches existing brand blue  */
    margin-bottom: 10px;
}


/* ── 3. Main title ───────────────────────────────────────── */
.lls-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.15;
    margin: 0 0 6px;
}

.lls-highlight {
    font-family: 'Playfair Display', serif;
    color: #7e3d97; /* brand blue                  */
}


/* ── 4. Subtitle line ────────────────────────────────────── */
.lls-sub-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #5D6D7E;
    margin: 0 0 20px;
    letter-spacing: 0.2px;
}


/* ── 5. Intro paragraph ──────────────────────────────────── */
.lls-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5D6D7E;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .lls-intro-text strong {
        color: #34495E;
        font-weight: 600;
    }


/* ── 6. Thin divider ─────────────────────────────────────── */
.lls-divider {
    height: 1px;
    background: linear-gradient(90deg, #D5E4F2 0%, transparent 100%);
    margin: 24px 0;
}


/* ── 7. "How Lakshya Works" section label ────────────────── */
.lls-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2C3E50;
    margin: 0 0 8px;
}


/* ── 8. Short intro sentence before steps ────────────────── */
.lls-works-intro {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5D6D7E;
    line-height: 1.7;
    margin: 0 0 18px;
}


/* ── 9. Numbered steps list ──────────────────────────────── */
.lls-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.lls-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Step number bubble */
.lls-step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7f3e98 0%, #7e3d97 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(77, 142, 200, 0.28);
}

/* Step body text */
.lls-step-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5D6D7E;
    line-height: 1.75;
}

    .lls-step-body strong {
        color: #34495E;
        font-weight: 600;
    }

/* Bold step label (e.g. "Student Insights:") */
.lls-step-title {
    font-weight: 600;
    color: #34495E;
}


/* ── 10. Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    /* Stack columns on tablet / mobile */
    .login-container {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .left-section {
        padding: 32px 28px;
    }

    .lls-main-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .lls-main-title {
        font-size: 24px;
    }

    .lls-intro-text,
    .lls-works-intro,
    .lls-step-body {
        font-size: 13px;
    }
}


/* ===== SECTION BASE ===== */
.las-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f4f7fb 0%, #eef2f7 100%);
}

.las-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.las-header {
    text-align: center;
    margin-bottom: 50px;
}

.las-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2C3E50;
    margin-bottom: 10px;
}

    .las-title span {
        font-family: 'Playfair Display', serif;
        color: #7e3d97;
    }

.las-subtitle {
    font-size: 15px;
    color: #6c7a89;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== COLUMNS ===== */
.las-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===== CARD ===== */
.las-card {
    background: #ffffff;
    border: 1px solid #e6edf5;
    /* padding: 25px; */
    transition: all 0.3s ease;
}

    .las-card:hover {
        box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
        transform: translateY(-3px);
    }

/* ===== HEAD ===== */
.las-card-head {
    display: flex;
    align-items: center;
    background-color: #7e3d97;
    gap: 15px;
    /* margin-bottom: 20px; */
    border-bottom: 1px dotted #d9cfe8;
    padding: 25px;
}

    .las-card-head i {
        font-size: 26px;
        color: #ffffff;
    }

.las-parent .las-card-head i {
    color: #ffffff;
}

.las-card-head h3 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
}

.las-card-head span {
    font-size: 13px;
    color: #f3eff5;
}

/* ===== LIST ITEMS ===== */
.las-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 25px;
}

.las-item {
    padding: 14px 14px 14px 18px;
    background: #faf8fa;
    border-left: 3px solid #6B4C9A;
}

.las-parent .las-item {
    border-left: 3px solid #6B4C9A;
}

.las-item h4 {
    margin: 0;
    font-size: 15px;
    color: #2C3E50;
}

.las-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6c7a89;
}

/* ===== ELIGIBILITY ===== */
.las-elig {
    margin-top: 50px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.las-elig-left h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #2C3E50;
}

.las-elig-left p {
    margin: 0;
    font-size: 14px;
    color: #6c7a89;
}

/* ===== GRADE PILLS ===== */
.las-elig-right {
    /* display: flex; */
    display: none;
    gap: 10px;
}

    .las-elig-right span {
        padding: 8px 14px;
        border-radius: 6px;
        background: #eef3f9;
        font-weight: 600;
        color: #2C3E50;
        font-size: 14px;
    }

/* ===== CTA ===== */
.las-cta {
    margin-top: 40px;
    text-align: center;
}

.las-btn {
    /* background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%); */
    /* background: linear-gradient(135deg, #7f3e98 0%, #f57c00 100%); */
    background: #7f3e98;
    border: none;
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .las-btn i {
        margin-left: 8px;
    }

    .las-btn:hover {
        transform: translateY(-2px);
        /* box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3); */
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .las-cols {
        grid-template-columns: 1fr;
    }

    .las-elig {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Hide desktop-only content on tablets & mobiles */
@media (max-width: 992px) {
    .desktop-only-content {
        display: none !important;
    }

    .right-section {
        margin-top: 0;
    }
}


/* ===== PROFILE DROPDOWN ===== */
.profile-dropdown {
    position: relative;
}

/* Trigger (top right avatar) */
.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* ===== AVATAR ===== */
.profile-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px; /* 🔥 prevents shrink */
    flex-shrink: 0; /* 🔥 critical fix */
    background: linear-gradient(135deg, #6B4C9A, #462f68);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .profile-avatar.large {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

/* ===== DROPDOWN ===== */
.profile-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #E8EEF3;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    display: none;
    z-index: 1000;
}

    /* Show state */
    .profile-menu.active {
        display: block;
    }

/* ===== PROFILE INFO ===== */
.profile-info {
    display: flex;
    gap: 12px;
    padding: 15px;
    align-items: flex-start; /* 🔥 keeps layout stable */
}

    /* Text container */
    .profile-info > div {
        min-width: 0; /* 🔥 enables ellipsis */
    }

/* Name (FIXED) */
.profile-name {
    font-weight: 600;
    font-size: 14px;
    color: #2C3E50;
    white-space: normal; /* ✅ allow wrapping */
    word-break: break-word; /* ✅ break long strings */
    line-height: 1.3;
}

/* Meta */
.profile-meta {
    font-size: 12px;
    color: #7B8794;
    margin-top: 2px;
}

/* ===== ITEMS ===== */
.profile-item {
    padding: 12px 15px;
    font-size: 14px;
    color: #2C3E50;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .profile-item:hover {
        background: #f0eff2;
    }

    .profile-item.logout {
        color: #39044b;
    }

/* ===== DIVIDER ===== */
.profile-divider {
    height: 1px;
    background: #E8EEF3;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .profile-menu {
        right: 10px;
        width: 240px;
    }

    .profile-avatar {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }

        .profile-avatar.large {
            width: 38px;
            height: 38px;
            min-width: 38px;
        }
}

























/* ── Assessment Banner ── */


.section-divider {
    height: 1px;
    border: none;
    background: linear-gradient(to right, transparent, #c4b8e0 20%, #c4b8e0 80%, transparent);
    margin: 0 0 1rem;
}

/* ===== ASSESSMENT BANNER FIX ===== */
.assessment-banner {
    background: #6B4C9A;
    padding: 30px 35px;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
    margin-bottom: 20px;
    text-align: center;
    margin-top: 10px;
}

.assessment-number {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999999
}

.assessment-title {
    font-family: 'Playfair Display', serif;
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 700;
    /* color: #7B6EA6; */
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.assessment-description {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    /* max-width: 640px; */
}

.assessment-time-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    margin-top: 18px;
}

.assessment-notification-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 236, 210, 0.18);
    /* border: 1px solid rgba(255, 210, 140, 0.55); */
    color: rgba(255, 235, 180, 0.97);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    margin-top: 18px;
}

/* ── Completion Banner ── */
.completion-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3EDF9;
    border: 1px solid #C9B8E8;
    border-radius: 0px;
    padding: 14px 20px;
    margin: 0 auto 1.5rem auto;
    max-width: 1200px;
    gap: 12px;
}

.completion-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.completion-check-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: #6B4C9A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

.completion-banner-text {
    font-size: 15px;
    font-weight: 600;
    color: #4a2d72;
}

.completion-view-btn {
    background-color: #6B4C9A;
    color: #ffffff;
    border: none;
    border-radius: 0px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

    .completion-view-btn:hover {
        background-color: #5A3A78;
    }

@media (max-width: 576px) {
    .completion-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .completion-view-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── Proceed Button ── */
.proceed-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.proceed-btn {
    background: linear-gradient(135deg, #6B4C9A 0%, #5A3A78 100%);
    border: none;
    color: #ffffff;
    padding: 14px 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .proceed-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(107, 76, 154, 0.3);
        background: linear-gradient(135deg, #7C5AAA 0%, #684488 100%);
    }

    .proceed-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .proceed-btn i {
        font-size: 16px;
        vertical-align: middle;
        margin-left: 6px;
    }

@media (max-width: 576px) {
    .proceed-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 15px;
    }
}

/* ===== DISABLED ASSESSMENT CARD ===== */
.assessment-card.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #f0f0f0;
    box-shadow: none;
    border-color: #ddd;
    transition: none !important;
    transform: none !important;
}

    /* Block the card lift on hover */
    .assessment-card.disabled:hover {
        transform: none !important;
        box-shadow: none !important;
        background-color: #f0f0f0 !important;
    }

        /* Block the border-left (::before pseudo-element) from scaling in */
        .assessment-card.disabled::before,
        .assessment-card.disabled:hover::before {
            transform: scaleY(0) !important;
            transition: none !important;
        }

    /* Grey out the content */
    .assessment-card.disabled .card-content {
        opacity: 0.45;
        filter: grayscale(30%);
        transition: none !important;
    }

        .assessment-card.disabled .card-content * {
            color: #999 !important;
        }

    /* Grey out and fully lock the arrow — even on card hover */
    .assessment-card.disabled .card-arrow,
    .assessment-card.disabled:hover .card-arrow {
        opacity: 0.45;
        background: linear-gradient(135deg, #F0F4F8 0%, #E8EFF5 100%) !important;
        transform: none !important;
        transition: none !important;
    }

        .assessment-card.disabled .card-arrow i,
        .assessment-card.disabled:hover .card-arrow i {
            color: #bbb !important;
            transform: none !important;
            transition: none !important;
        }

    /* Keep badge and action buttons fully active and vivid */
    .assessment-card.disabled .submitted-badge,
    .assessment-card.disabled .card-icon-btn {
        pointer-events: auto;
        cursor: pointer;
        opacity: 1;
        filter: none;
    }
