.elementor-3170 .elementor-element.elementor-element-1dbaf09{--display:flex;--margin-top:12px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-3170 .elementor-element.elementor-element-ec2ea8b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-11px;--margin-bottom:15px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-3170 .elementor-element.elementor-element-1dbaf09{--content-width:91%;--margin-top:7px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-3170 .elementor-element.elementor-element-1dbaf09{--content-width:801px;}.elementor-3170 .elementor-element.elementor-element-ec2ea8b{--content-width:950px;}}/* Start custom CSS for shortcode, class: .elementor-element-59d50e2 *//* Clean Navigation Bar - Background Free */
.jee-simple-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0; /* Reduced padding, no background */
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent; /* Transparent background */
}

/* Clean Back Button */
.jee-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #01009A;
    font-size: 0.95em;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(1, 0, 154, 0.08); /* Very light background */
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.jee-back-btn:hover {
    background: #01009A;
    color: white;
    transform: translateX(-2px);
}

.jee-back-btn svg {
    transition: transform 0.2s ease;
}

.jee-back-btn:hover svg {
    transform: translateX(-3px);
}

/* Clean Report Button */
.jee-report-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.1); /* Light red background */
    border: none;
    color: #ff6b6b;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jee-report-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.jee-report-btn svg {
    stroke-width: 2;
}

/* Modal - Clean Design */
.jee-report-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay */
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px); /* Blur effect */
}

.jee-modal-content {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.jee-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafbff;
}

.jee-modal-header h3 {
    margin: 0;
    color: #01009A;
    font-size: 1.2em;
    font-weight: 600;
}

.jee-modal-close {
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.jee-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.jee-modal-body {
    padding: 24px;
}

/* Clean Radio Options - Single Round Circle */
.jee-report-options {
    margin-bottom: 20px;
}

.jee-radio-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fdfdfd;
}

.jee-radio-option:hover {
    border-color: #01009A;
    background: #f8f9ff;
    transform: translateX(2px);
}

.jee-radio-option input[type="radio"] {
    display: none; /* Hide default radio */
}

.jee-radio-check {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Single Circle When Selected */
.jee-radio-option input[type="radio"]:checked + .jee-radio-check {
    border-color: #01009A;
    background: #01009A;
    box-shadow: 0 0 0 3px rgba(1, 0, 154, 0.1);
}

.jee-radio-option input[type="radio"]:checked + .jee-radio-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.jee-radio-text {
    font-size: 0.95em;
    color: #333;
    font-weight: 500;
    flex-grow: 1;
}

/* Comment Section */
.jee-comment-section {
    margin-bottom: 24px;
}

.jee-comment-section textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95em;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background: #fdfdfd;
}

.jee-comment-section textarea:focus {
    outline: none;
    border-color: #01009A;
    box-shadow: 0 0 0 3px rgba(1, 0, 154, 0.1);
    background: white;
}

.jee-comment-section textarea::placeholder {
    color: #999;
}

/* Modal Footer */
.jee-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.jee-modal-cancel,
.jee-modal-submit {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.jee-modal-cancel {
    background: #f8f9fa;
    color: #666;
    border-color: #e8e8e8;
}

.jee-modal-cancel:hover {
    background: #e9ecef;
    color: #333;
}

.jee-modal-submit {
    background: #01009A;
    color: white;
    border-color: #01009A;
}

.jee-modal-submit:hover:not(:disabled) {
    background: #F15E03;
    border-color: #F15E03;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(241, 94, 3, 0.3);
}

.jee-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .jee-simple-nav {
        padding: 10px 0;
    }
    
    .jee-back-btn,
    .jee-report-btn {
        padding: 8px 10px;
    }
    
    .jee-back-text,
    .jee-report-text {
        font-size: 0.85em;
    }
    
    .jee-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .jee-modal-body {
        padding: 20px;
    }
    
    .jee-radio-option {
        padding: 10px 14px;
    }
    
    .jee-radio-text {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .jee-back-text,
    .jee-report-text {
        display: none; /* Hide text on very small screens */
    }
    
    .jee-back-btn,
    .jee-report-btn {
        padding: 10px;
        border-radius: 10px;
    }
    
    .jee-modal-body {
        padding: 16px;
    }
    
    .jee-radio-option {
        padding: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-9a51a58 *//* JEE Question App - FINAL CSS */
.jee-question-app {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e0e0e0;
}

/* HEADER */
.jee-header {
    background: #01009A;
    color: white;
    padding: 20px 16px;
    border-radius: 12px 12px 0 0;
}

.jee-question-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.jee-question-subtext {
    font-size: 0.95em;
    opacity: 0.9;
    font-weight: 400;
}

/* SECTION TITLES */
.jee-section-title {
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

/* QUESTION SECTION */
.jee-question-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e9ecef;
}

.jee-question-text {
    font-size: 1.05em;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 400;
}

/* IMAGE CONTAINERS */
.jee-image-container {
    max-width: 100%;
    margin: 12px 0;
    text-align: center;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.jee-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 6px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* OPTIONS IMAGE SECTION */
.jee-options-image-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.jee-options-image-container {
    max-width: 100%;
    margin-bottom: 16px;
    text-align: center;
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.jee-options-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 6px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.jee-image-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jee-image-option {
    width: 50px;
    height: 50px;
    border: 2px solid #01009A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: 700;
    color: #01009A;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jee-image-option:hover {
    background: #01009A;
    color: white;
}

/* TEXT OPTIONS SECTION */
.jee-options-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e9ecef;
}

.jee-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jee-option {
    padding: 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    background: white;
}

.jee-option:hover {
    border-color: #01009A;
    background: #f8f9ff;
}

.jee-option-label {
    font-weight: 700;
    margin-right: 12px;
    font-size: 1em;
    color: #01009A;
    min-width: 28px;
    background: #f0f1ff;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
}

.jee-option-text {
    flex-grow: 1;
    font-size: 1em;
    line-height: 1.5;
    color: #2c3e50;
    padding-top: 2px;
}

/* CORRECT/INCORRECT STATES */
.jee-option.jee-correct,
.jee-image-option.jee-correct {
    border-color: #00C853;
    background: #f0fff4;
}

.jee-option.jee-correct .jee-option-label,
.jee-image-option.jee-correct {
    background: #00C853;
    color: white;
}

.jee-option.jee-incorrect,
.jee-image-option.jee-incorrect {
    border-color: #ff4444;
    background: #fff0f0;
}

.jee-option.jee-incorrect .jee-option-label,
.jee-image-option.jee-incorrect {
    background: #ff4444;
    color: white;
}

/* RESULT SECTION */
.jee-result-section {
    padding: 0 16px;
}

.jee-result-message {
    margin: 12px 0;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
    text-align: center;
    font-size: 0.95em;
}

.jee-correct-message {
    background: #f0fff4;
    color: #00C853;
    border: 1px solid #00C853;
}

.jee-incorrect-message {
    background: #fff0f0;
    color: #ff4444;
    border: 1px solid #ff4444;
}

/* ANSWER SECTION */
.jee-answer-section {
    padding: 20px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.jee-view-answer-btn {
    background: #01009A;
    color: white;
    border: none;
    padding: 14px 0;
    font-size: 1em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(1, 0, 154, 0.2);
}

.jee-view-answer-btn:hover {
    background: #F15E03;
}

.jee-solution-container {
    margin-top: 16px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    display: none;
    border: 1px solid #e9ecef;
}

.jee-solution-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 16px;
}

/* TAGS SECTION */
.jee-tags-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.jee-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jee-tag {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8em;
    font-weight: 500;
}

.jee-tag-1 {
    background: #e8f4fd;
    color: #01009A;
    border: 1px solid #01009A;
}

.jee-tag-2 {
    background: #fff2e5;
    color: #F15E03;
    border: 1px solid #F15E03;
}

.jee-tag-3 {
    background: #e8f6f3;
    color: #00a085;
    border: 1px solid #00a085;
}

/* MARKETING SECTION - SQUARE BOXES */
.jee-marketing-section {
    padding: 20px 16px;
    background: #F9E7B2;
    border-top: 3px solid #F15E03;
    border-radius: 0 0 12px 12px;
}

.jee-marketing-box {
    text-align: center;
}

.jee-marketing-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #01009A;
    margin-bottom: 25px;
}

.jee-marketing-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.jee-marketing-link {
    text-decoration: none;
    color: inherit;
}

.jee-square-box {
    aspect-ratio: 1/1;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.jee-square-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.jee-square-box i {
    font-size: 2.2em;
    margin-bottom: 12px;
}

.jee-link-text {
    font-size: 0.95em;
    font-weight: 600;
    text-align: center;
}

/* YouTube Box */
.youtube-link .jee-square-box {
    border-color: #FF0000;
}

.youtube-link .jee-square-box i {
    color: #FF0000;
}

.youtube-link .jee-square-box:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.youtube-link .jee-square-box:hover i,
.youtube-link .jee-square-box:hover .jee-link-text {
    color: white;
}

/* App Box */
.app-link .jee-square-box {
    border-color: #01009A;
}

.app-link .jee-square-box i {
    color: #01009A;
}

.app-link .jee-square-box:hover {
    background: #01009A;
    border-color: #01009A;
}

.app-link .jee-square-box:hover i,
.app-link .jee-square-box:hover .jee-link-text {
    color: white;
}

/* Tests Box */
.test-link .jee-square-box {
    border-color: #F15E03;
}

.test-link .jee-square-box i {
    color: #F15E03;
}

.test-link .jee-square-box:hover {
    background: #F15E03;
    border-color: #F15E03;
}

.test-link .jee-square-box:hover i,
.test-link .jee-square-box:hover .jee-link-text {
    color: white;
}

/* NO CONTENT */
.jee-no-content {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
    font-size: 0.9em;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .jee-question-app {
        max-width: 100%;
        margin: 10px;
        border-radius: 10px;
    }
    
    .jee-header {
        padding: 14px 10px;
    }
    
    .jee-question-title {
        font-size: 1.1em;
    }
    
    .jee-question-subtext {
        font-size: 0.85em;
    }
    
    .jee-question-section,
    .jee-options-section,
    .jee-answer-section,
    .jee-tags-section,
    .jee-options-image-section,
    .jee-marketing-section {
        padding: 14px 10px;
    }
    
    .jee-option {
        padding: 12px;
    }
    
    .jee-option-label {
        min-width: 26px;
        padding: 5px 8px;
        font-size: 0.9em;
    }
    
    .jee-option-text {
        font-size: 0.9em;
    }
    
    .jee-image-option {
        width: 45px;
        height: 45px;
        font-size: 1em;
    }
    
    .jee-image {
        max-height: 250px;
    }
    
    .jee-options-image {
        max-height: 200px;
    }
    
    .jee-marketing-links {
        gap: 10px;
    }
    
    .jee-square-box {
        padding: 15px;
    }
    
    .jee-square-box i {
        font-size: 1.8em;
        margin-bottom: 8px;
    }
    
    .jee-link-text {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .jee-marketing-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .jee-square-box {
        padding: 12px 8px;
    }
    
    .jee-square-box i {
        font-size: 1.6em;
        margin-bottom: 6px;
    }
    
    .jee-link-text {
        font-size: 0.8em;
    }
    
    .jee-image-options {
        gap: 8px;
    }
    
    .jee-image-option {
        width: 40px;
        height: 40px;
        font-size: 0.9em;
    }
}

@media (max-width: 360px) {
    .jee-marketing-links {
        gap: 6px;
    }
    
    .jee-square-box {
        padding: 10px 6px;
    }
    
    .jee-square-box i {
        font-size: 1.4em;
    }
    
    .jee-link-text {
        font-size: 0.75em;
    }
}

/* ===== NUMERICAL ANSWER SECTION ===== */
.jee-numerical-section {
    padding: 20px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.jee-numerical-input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.jee-numerical-input {
    flex-grow: 1;
    padding: 14px 16px;
    border: 2px solid #01009A;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.2s ease;
    min-width: 200px;
    background: white;
}

.jee-numerical-input:focus {
    outline: none;
    border-color: #F15E03;
    box-shadow: 0 0 0 3px rgba(241, 94, 3, 0.1);
}

/* NUMERICAL SUBMIT BUTTON - Orange default */
.jee-numerical-submit {
    background: #F15E03; /* Orange default */
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1em;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(241, 94, 3, 0.2);
}

.jee-numerical-submit:hover {
    background: #01009A; /* Blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 0, 154, 0.3);
}

.jee-numerical-result {
    min-height: 20px;
}

.jee-numerical-correct {
    padding: 12px;
    border-radius: 8px;
    background: #f0fff4;
    color: #00C853;
    border: 1px solid #00C853;
    font-weight: 600;
    text-align: center;
}

.jee-numerical-incorrect {
    padding: 12px;
    border-radius: 8px;
    background: #fff0f0;
    color: #ff4444;
    border: 1px solid #ff4444;
    font-weight: 600;
    text-align: center;
}

/* Mobile responsive for numerical section */
@media (max-width: 768px) {
    .jee-numerical-section {
        padding: 14px 10px;
    }
    
    .jee-numerical-input-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .jee-numerical-input {
        min-width: 100%;
        padding: 12px;
    }
    
    .jee-numerical-submit {
        width: 100%;
        padding: 12px;
    }
}/* End custom CSS */