/* Custom Font Declarations */
@font-face {
    font-family: 'Manrope-ExtraBold';
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope-Medium';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope-Regular';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope-SemiBold';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Custom CSS for Sci4Pol Quiz App */

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-green: #10b981;
    --text-light: #ffffff;
    --text-dark: #1f2937;
    --gradient-bg: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    max-width: 100%;
    /*height: 630px;*/
    position: relative;
    font-family: 'Manrope-Regular';
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    line-height: 1.5 !important;
    color: #000 !important;
    overflow: auto;
    direction: ltr !important;
    border: 0px;
    outline: 1px solid #F1F1F1;
}

/*body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-bg);
    min-height: 100vh;
}
*/
b {
    font-family: 'Manrope-SemiBold';
    font-weight: 500;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mar-bottom0 {
    margin-bottom: 0px !important;
}

/* Header Styles */

.meetcontext{
    display: flex;
    align-items: center;
    padding: 10px 5px 10px 70px;
    background: #04CF28;
}

.meetcontext img{
  width: 60px;
  height: auto;
  margin-right: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
.meetcontext .text{
  color: #1c0582;
  font-size: 18px;
  font-weight: 400;
}

.bannercontent {
    position: absolute;
    /*  top: 50%;
    right: 0; width: 42%;  margin: auto 0;
       padding: 20px 20px 20px 75px;    top: 82%;
   */

    left: 0;
    transform: translateY(-52%);
    padding: 10px 15px 10px 70px;
    min-width: 340px;
    max-width: 54%;
    background: #04CF28;
    border-radius: 0 20px 20px 0;
    color: #fff;
    display: flex;
    font-weight: 400;
    align-items: flex-start;
    gap: 20px;
    font-size: 18px;
}

.bannercontent img {
    height: 60px;
    align-self: center;
}

.intro-image-section.bkg1 {
    background-image: url('../images/modalStructer.jpg');
    background-size: cover;
}

.intro-image-section.bkg2 {
    background-image: url('../images/modalStructer.jpg');
    background-size: cover;
}

.bannerOutcome {
    background-image: url('../images/banner_outcome.jpg');
    background-size: cover;
}


.intro-image-section.bkgq1 {
    background-image: url('../images/banner_decision_point_1.jpg');
    background-size: cover;
}

.intro-image-section.bkgq2 {
    background-image: url('../images/decisionPt3-1.jpg');
    background-size: cover;
}

.intro-image-section.bkgq3 {
    background-image: url('../images/decisionPt3-2.jpg');
    background-size: cover;
}

.intro-image-section.bkgq4 {
    background-image: url('../images/decisionPt3-3.jpg');
    background-size: cover;
}

.intro-image-section.bkgq5 {
    background-image: url('../images/decisionPt3-4.jpg');
    background-size: cover;
}

.intro-image-section.bkgq6 {
    background-image: url('../images/decisionPt3-5.jpg');
    background-size: cover;
}

.intro-image-section {

    width: 100%;
    position: relative;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: center center;
    /* Centers the image
    background-size: auto;
     */
}

.topictitle.topictitle1.mobTitle {
    display: none;
}

.mainheader {
    background: #001094;
    color: white;
    min-height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.headerBlock {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-title {
    font-family: Manrope-Medium;
    color: #001094;
    font-size: 30px;
}

.main-title span {
    display: block;
}

.logodiv {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    height: 80px;
    width: 100px;
}

.logodiv img {
    height: 60px;
}

.logo {
    width: 60px;
    height: 60px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
}



.header-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.titlediv {
    font-family: 'Manrope-Medium';
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
}

.subtitlediv {
    color: #04CF28;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 0 1rem;
}


.intro-main-image.mobImg {
    display: none;
}

.scenario-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Question Styles */
.question-container {
    padding: 2rem;
}

.question-header {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    margin: -2rem -2rem 2rem -2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.question-text {
    font-family: 'Manrope-SemiBold';
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #04cf28;
}

.question-text,
.instruction-text {
    padding: 0 21px;
}

.upicon img {
    position: relative;
    top: -81px;
}


/* Status Icons */
.status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-icon.success {
    background: var(--accent-green);
    color: white;
}

.status-icon.warning {
    background: #f59e0b;
    color: white;
}

.status-icon.error {
    background: #ef4444;
    color: white;
}

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.progress-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-custom {
    background: var(--accent-green);
    height: 100%;
    transition: width 0.5s ease;
}


/* Welcome Screen Styles - Exact Match to Reference Image */
.welcome-screen {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
}

.hero-section:before {
    content: "";
    background: transparent linear-gradient(180deg, #00109400 0%, #00084A 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
    height: 110px;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    position: relative;
}



.hero-overlay {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px;
    /* background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );*/
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.question-content {
    background: #001094;
    flex: 1;
    padding: 20px 3.5%;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: auto;
}

.left-top-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.logo-section {
    flex-shrink: 0;
}

.main-title-section {
    flex: 1;
}

.right-top-section {
    text-align: right;
    flex-shrink: 0;
}

.main-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.logo-fallback {
    width: 100px;
    height: 100px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.4rem;
    font-family: 'Manrope', sans-serif;
}


.program-info {
    font-family: Manrope-Medium;
    color: #001094;
    font-size: 20px;
}

.bottom-content {
    /*  display: flex;
    align-items: end;
    gap: 60px;
*/
    font-family: 'Manrope-SemiBold', sans-serif;
    color: #001094;
    position: absolute;
    top: 30%;
    left: 20px;
    transform: translateY(-50%);
}

.scenario-info {
    color: white;
}

.scenario-label {
    display: inline-block;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;

    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}


.continue-btn {
    background: white;
    border: none;
    color: #001094;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Manrope-ExtraBold;
}

.partner-footer {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    border-top: 5px solid #04CF28;
}

.partner-logos {
    /*    height: 60px;
    object-fit: contain;
    opacity: 0.9;*/
    transition: opacity 0.3s ease;
}

.partner-logos:hover {
    opacity: 1;
}

/* Remove header on welcome screen */
.main-container:has(.welcome-screen) .header {
    display: none;
}

/* Introduction Screen Styles */
.introduction-screen {
    min-height: 100vh;
    background: #001094;
    color: #fff;
}

.intro-header {
    background: var(--primary-blue);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-logo {
    flex-shrink: 0;
}

.intro-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.intro-logo-fallback {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1rem;
}

.intro-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-main-title {
    color: white;
}

.intro-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.intro-subtitle {
    color: var(--accent-green);
    font-weight: 700;
}

.intro-content {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.topictitle {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Manrope-SemiBold';
}

.topictitle1 {
    margin-bottom: 24px;
}


.intro-main-image2 {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.intro-text-section {
    background: #001094;
    padding: 20px;
    display: flex;
    /* align-items: center; */
    gap: 6px;
    /* flex: 1; */
    padding-right: 9%;
    color: #fff;
    position: relative;
    max-width: 98%;
    margin: 0 auto;
}

.buttondiv {
    /*   position: absolute;
    right: 14px;
    bottom: 5px;
    */
    text-align: right;
    margin-top: 15px;
}

.intro-icon {
    flex-shrink: 0;
    /* min-height: 185px; */
    display: flex;
    align-items: center;
}

.intro-icon1 {
    align-items: baseline;
}

.contentdiv {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    /* margin-top: -62px; */
    margin-left: 15px;
    position: relative;
    /* top: -65px; */
}

/* .setting-icon {
    width: 150px;
    height: 150px;
    background: #04CF28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
} */

.greenBgIcon {
    width: 82%;
}

.intro-content-text {
    flex: 1;
    margin-top: 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Manrope', sans-serif;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.intro-continue-btn {
    background: white;
    border: none;
    color: var(--primary-blue);
    padding: 12px 32px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    float: right;
}

.intro-continue-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

/* Hide header on introduction screen */
.main-container:has(.introduction-screen) .header {
    display: none;
}






/* Logo and Header Styles */
.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Hero Section Enhancements */
.scenario-badge {
    background: rgba(16, 185, 129, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-hero-continue {
    background: var(--accent-green);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-continue:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Enhanced Header Styles */
.question-header {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    margin: -2rem -2rem 2rem -2rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-label {
    font-weight: 700;
}

.header-divider {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.header-section {
    color: var(--accent-green);
    font-weight: 600;
}

.fullscreen-hint {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Content Sections */
.setting-section {
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.setting-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.goal-text {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--accent-green);
    border-radius: 0 8px 8px 0;
}

/* Module Structure Section */
.module-structure-section {
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.structure-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.structure-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.structure-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.structure-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Results Screen Styles */
.results-container {
    min-height: 100vh;
    background: #f8f9fa;
}

.results-main-content {
    background: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.results-container-fluid {
    padding: 0;
}

.results-row {
    height: 100vh;
    margin: 0;
}

.results-image-column {
    /* background-image: url('../result_banner.png');
    background-size: cover;
    background-position: center; */
    position: relative;
    padding: 0;
}

.results-image-column>img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100vh;
}

.results-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.results-content-column {
    background: #F2F2F2;
    padding: 20px 60px;
    display: flex;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    max-height: 100vh;
    position: relative;
}

.results-badge-container {
    position: absolute;
    top: 25%;
    right: -14%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.results-badge-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.results-content-wrapper {
    margin-top: 26%;
}

.results-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #001094;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Manrope', sans-serif;
}

.results-description {
    margin-bottom: 0px;
}

.results-description-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
}

.results-score-section {
    margin-bottom: 10px;
}

.results-overall-score {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.results-score-value {
    font-size: 24px;
    font-weight: 700;
    color: #04CF28;
    font-family: 'Manrope-SemiBold';
}

.results-competency-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.results-table-container {
    margin-bottom: 10px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.results-table-cell {
    padding: 8px 15px;
    background: #f8f9fa;
    border: 1px solid #707070;
    font-weight: 500;
    color: #000;
}

.results-table-score {
    padding: 8px 15px;
    background: white;
    border: 1px solid #707070;
    text-align: center;
    font-weight: bold;
    font-family: 'Manrope-SemiBold';
    font-size: 16px;
    color: #04CF28;
}

.results-reflection {
    margin-top: 0px;
}

.results-reflection-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 10px;
}

.results-reflection-text:last-child {
    margin: 0;
}



/* Question Screen Enhancements */
.context-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.context-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.context-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.context-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.instruction-text {
    color: #a4aefc;
}

/* Enhanced Answer Options */

.answer-options-section {
    padding: 0px 10px;
}

.answer-option {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;


    position: relative;
    overflow: hidden;
}



.answer-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px 20px 35px;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
    position: relative;
    margin: 0px 10px;
}

.answer-card:before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: -20px;
    background: #04CF28;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgb(0 16 148);
}

.answer-card.selected:after {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: -10px;
    background: #001094;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}


.answer-option.selected {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent-green);
    color: var(--text-dark);
}


.answer-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.answer-option:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-blue);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}


.answer-option:hover::before,
.answer-option.selected::before {
    transform: scaleY(1);
}


.option-content {
    position: relative;
    z-index: 1;
}

/* Outcome Screen Styles */


.outcome-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
}

/* Results Screen Styles */


.performance-title {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.score-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.results-details {
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.detail-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.detail-text {
    color: var(--text-dark);
    font-size: 1rem;
}

.learning-points {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
    margin: 2rem 0;
}

.learning-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.learning-list {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.learning-list li {
    margin-bottom: 0.5rem;
}



/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Results Page Styles */
.results-image-container {
    height: 100vh;
    position: relative;
    overflow: hidden;

}

.results-content {

    min-height: 100vh;
    padding: 2rem !important;
}

.results-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.sci4pol-logo .logo-circle {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.conclusion-title {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.success-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.success-icon-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.success-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0 !important;
    margin: 0;
}

.scenario-description,
.performance-analysis {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overall-score-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.score-display {
    margin-bottom: 1rem;
}

.score-label {
    font-size: 1.1rem;
    color: #495057;
}

.overall-score {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    margin-left: 0.5rem;
}

.competency-label {
    color: #6c757d;
    font-weight: 500;
}

.competency-scores {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.competency-table {
    margin: 0;
}

.competency-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.competency-table tbody tr:last-child {
    border-bottom: none;
}

.competency-name {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    font-weight: 500;
    color: #495057;
    border-right: 1px solid #e9ecef;
    width: 70%;
}

.competency-score {
    padding: 1rem 1.5rem;
    text-align: center;
    background: white;
    width: 30%;
}

.score-percentage {
    font-size: 1.2rem;
    font-weight: bold;
}

.reflection-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.reflection-question {
    color: #856404;
    font-weight: 500;
    margin-bottom: 1rem;
}

.replay-suggestion {
    color: #856404;
    margin: 0;
}

.action-buttons {
    margin-top: 2rem;
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #1e3d6f 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}

.btn-outline-primary {
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}

/* Enhanced outcome screen styles */
.outcome-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.outcome-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.outcome-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.outcome-icon.optimal {
    background: #d4edda;
    color: #155724;
}

.outcome-icon.sub-optimal {
    background: #fff3cd;
    color: #856404;
}

.outcome-icon.non-optimal {
    background: #f8d7da;
    color: #721c24;
}

.try-again-section {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.try-again-message {
    color: #721c24;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Results Screen Action Buttons */
.results-action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
}

.results-btn-replay {
    background: transparent;
    border: 2px solid #001094;
    color: #001094;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.results-btn-replay:hover {
    background: #001094;
    color: white;
    border-color: #001094;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}

.results-btn-exit {
    background: #001094;
    /* border: 2px solid #001094; */
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.results-btn-exit:hover {
    background: transparent;
    border-color: #001094;
    color: #001094;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.top-left {
    align-self: flex-start;
}

.center-left {
    position: absolute;
    top: 50%;
    left: 20px;
    /* Same as padding for alignment */
    transform: translateY(-50%);
}

.btnContinue {
    background: #04cf28;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Manrope-ExtraBold;
}

.minititle {
   font-size: 1.4rem;
   margin-bottom: 5px;
   font-weight: 600;
   font-family: 'Manrope-semiBold';
}

.scenario-title {
    font-size: 1.8rem;
    line-height: 2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);

}

@media only screen and (min-width:1701px) {
    .results-content-wrapper {
        margin-top: 9%;
    }

    .results-badge-container {
        right: -11%;
    }

}





@media only screen and (min-width:768px) and (max-width:1200px) {
    .intro-text-section {
        padding-right: 14%;
    }
}

@media only screen and (min-width:768px) {
    .titlediv span::after {
        content: none;
        /* Remove the line break on larger screens */
    }

    .intro-image-section {
        height: 330px;
    }

    .bannercontent {
        top: 82%;
    }

    .intro-image-section.bkgq1 .bannercontent {
        top: 89%;
    }

    .intro-image-section.bkgq2 .bannercontent {
        top: 89%;
    }

    .intro-image-section.bkgq3 .bannercontent {
        top: 80%;
        transform: translateY(-65%);
    }

    .intro-image-section.bkgq4 .bannercontent {
        top: 80%
    }

    .intro-image-section.bkgq5 .bannercontent {
        top: 70%;
    }

    .intro-image-section.bkgq6 .bannercontent {
        top: 89%;
    }



}

/* Responsive Design for Introduction Screen */


@media (max-width: 1200px) {
    .intro-header {
        padding: 16px 30px;
        gap: 20px;
    }

    .intro-title {
        font-size: 1.6rem;
        gap: 12px;
    }

    /*
    .intro-text-section {
        padding: 40px;
        gap: 30px;
    }*/

    .intro-main-image {
        height: 250px;
    }

    .setting-icon {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .intro-description {
        font-size: 1rem;
    }
}



/* Responsive Enhancements */
@media (max-width: 768px) {
.meetcontext img{
  width: 42px;
  height: auto;

}
.meetcontext{
    padding: 10px 5px 10px 10px;
}
.meetcontext .text{
  font-size: 16px;
  font-weight: 300;
}
.minititle {
  font-size: 1.2rem;
  margin-bottom: 3px;
  font-family: 'Manrope-Medium';
}
    .question-text {
        font-family: 'Manrope-SemiBold';
        margin-bottom: 10px;
        font-size: 1.2rem;
        padding: 0 10px;
    }


    .module-structure-section {
        flex-direction: column;
        text-align: center;
    }

    .question-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .fullscreen-hint {
        order: -1;
    }

    .context-alert {
        flex-direction: column;
        text-align: center;
    }

    .results-details {
        padding: 1.5rem;
    }

    .results-content {
        padding: 1rem !important;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .overall-score {
        font-size: 1.5rem;
    }

    .competency-name,
    .competency-score {
        padding: 0.75rem 1rem;
    }

    .action-buttons .btn {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .topictitle.topictitle1.mobTitle {
        display: block;
        margin: 0;
    }

    .hero-section {
        /*   background: url(../images/mobileHeroImg.jpg);*/
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
    }

    .main-title {
        font-size: 11px;
    }

    .top-content {
        align-items: center;
    }

    .program-info {
        width: auto;
        font-size: 11px;
        margin: 0 0 8px;
    }

    .bottom-content {
        gap: 10px;
    }


    .intro-content-text {
        text-align: left;
    }


    .headerBlock {
        gap: 12px;
    }

    .logodiv {
        width: 68px;
    }

    .mobTitle {
        text-align: left;
    }

    .intro-main-image.mobImg,
    .mobTitle {
        display: block;
    }

    .mobTitltOutcome {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        margin-top: 18px;
    }

    .results-main-content {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .results-row {
        height: auto;
        flex-direction: column;
    }

    .results-image-column {
        height: 300px;
        width: 100%;
        order: 1;
    }

    .results-content-column {
        width: 100%;
        order: 2;
        padding: 20px;
        max-height: none;
        overflow-y: visible;
        justify-content: flex-start;
    }

    .results-image-column>img {
        height: 311px;
    }

    .results-badge-container {
        position: absolute;
        top: 250px;
        left: 25px;
        transform: none;
        right: unset;
    }


    .results-badge-image {
        width: 90px;
        height: 90px;
    }

    .results-content-wrapper {
        margin-top: 60px;
        text-align: center;
    }

    .results-title {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 15px;
    }

    .results-description {
        margin-bottom: 20px;
    }

    .results-description-text {
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
    }

    .results-overall-score {
        font-size: 16px;
        text-align: left;
    }

    .results-score-value {
        font-size: 22px;
    }

    .results-competency-label {
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
    }

    .results-table {
        font-size: 12px;
    }

    .results-table-cell,
    .results-table-score {
        padding: 8px 10px;
        font-size: 12px;
    }

    .results-table-score {
        font-size: 14px;
    }

    .results-reflection-text {
        font-size: 12px;
        text-align: left;
        line-height: 1.5;
    }

    .buttondiv {
        /* position: relative; */
        bottom: 20px;
        right: 20px;

        /*  position: sticky; left: unset; */
        justify-content: flex-end;
        display: flex;
        width: 100%;
        margin-top: 10px;
    }

    .intro-text-section,
    .contentdiv {
        flex-direction: column;
        padding: 30px;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .upicon img {
        position: static;
        height: 82px;
    }

    .contentdiv {
        margin: 0;
        padding: 0px;
    }

    .d-none-mob {
        display: none;
    }

    .intro-main-image {
        height: 230px;
    }

    .intro-header {
        padding: 12px 20px;
        gap: 16px;
    }

    .intro-title {
        font-size: 1.4rem;
        gap: 10px;
    }

    .intro-logo-img {
        width: 50px;
        height: 50px;
    }

    .intro-logo-fallback {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .setting-icon {
        width: 60px;
        height: 60px;
    }

    .setting-icon svg {
        width: 30px;
        height: 30px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .intro-description {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .intro-continue-btn {
        padding: 10px 28px;
        font-size: 1rem;
        margin-top: 20px;
        float: none;
    }

    /* Hide settings icon for mobile devices */
    .settings-icon,
    .setting-icon,
    .icon-settings,
    .fa-cog,
    .fa-gear,
    .fa-settings,
    [class*="settings"],
    [class*="setting"] {
        display: none !important;
    }



    .main-title {
        font-size: 22px;
    }

    .program-info {
        font-size: 17px;
    }

    .header-title {
        font-size: 1.2rem;
    }

    .header-subtitle {
        font-size: 0.9rem;
    }

    .content-card {
        margin: 0 0.5rem;
    }

    .question-container {
        padding: 1.5rem;
    }

    .question-header {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .answer-option {
        padding: 1rem;
    }

    .results-action-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .results-btn-replay,
    .results-btn-exit {
        width: 100%;
        padding: 12px 20px;
    }

    .intro-text-section {
        padding: 0px 20px 20px;
    }

    /* .hero-overlay {
        padding: 20px 30px;
    }*/

    /*.top-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }*/


    /* .right-top-section {
        text-align: left;
        width: 100%;
    }*/

    /*.main-title {
        font-size: 2rem;
    }*/

    /* .program-info {
        font-size: 1rem;
    }
    */
    .scenario-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .scenario-label {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 12px;
    }

    .partner-logos {
        height: 45px;
    }

    .main-logo {
        width: 80px;
        height: 80px;
    }

    .logo-fallback {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }


    .hero-section:before {
        bottom: 75px;
    }


    .left-top-section {
        /*flex-direction: column;
        align-items: flex-start;
        width: 100%;*/
        gap: 10px;
    }

    .bottom-content {
        color: #001094;
        position: absolute;
        top: 45%;
        left: 20px;
        transform: translateY(-65%);
    }

    .partner-footer {}


}

@media (max-width: 576px) {
 .meetcontext img{
  width: 36px;
  height: auto;
}

    .bottom-content {
        color: #001094;
        position: absolute;
        top: 35%;
        left: 20px;
        transform: translateY(-65%);
    }

    .intro-content {
        margin-top: 78px;
    }


    .bannercontent {
        padding: 12px;
        font-size: 12px;
        border-radius: 0;
        position: absolute;
        bottom: 0;
        transform: none;
        max-width: 100%;
        min-width: 100%;
    }

    .bannercontent img {
        height: 40px;
        top: 6px;
        position: relative;
    }

    .intro-image-section {
        min-height: 120px;
        height: 200px;
        background-position: center top;
        background-size: contain;
    }

    .intro-image-section {

        height: 120px;

        background-position: center center;
        background-size: cover;
    }


    .bkg1 {
        background-image: url('../images/settingBanner.jpg');

    }


    .intro-image-section.bkg2 {
        background-image: url('../images/modalStructer.jpg');


    }
   .bkgq2 {
        background-image: url('../images/decisionPt3-1.jpg');

    }
     .bkgq3 {


    } .bkgq4 {
        background-size: contain;

    }
    .bkgq5 {
        background-image: url('../images/decisionPt3-4.jpg');

    }

    .bkgq6 {
        background-image: url('../images/decisionPt3-5.jpg');

    }


    .titlediv {
        font-size: 15px;
    }

    .hero-image {
        height: 200px;
    }

    /* .hero-overlay {
        padding: 1rem;
    }*/

    .answer-options {
        gap: 0.75rem;
    }

    .hero-section:before {
        bottom: 75px;
    }

    .intro-header {
        padding: 10px 16px;
        gap: 12px;
    }

    .intro-title {
        font-size: 1.2rem;
        gap: 8px;
    }

    .intro-text-section {
        padding: 20px;
        gap: 16px;
        max-width: 100%;
    }

    /* .intro-main-image {
        height: 180px;
    } */

    .setting-icon {
        width: 50px;
        height: 50px;
    }

    .setting-icon svg {
        width: 24px;
        height: 24px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .intro-description {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .intro-continue-btn {
        padding: 8px 24px;
        font-size: 0.95rem;
        margin-top: 16px;
    }

    .intro-logo-img {
        width: 40px;
        height: 40px;
    }

    .intro-logo-fallback {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .scenario-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .structure-icon {
        width: 50px;
        height: 50px;
    }

    .context-icon {
        width: 40px;
        height: 40px;
    }

    .learning-points,
    .outcome-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .titlediv span::after {
        content: "\A";
        /* Inserts a new-line character */
        white-space: pre;
        /* Ensures the line break is respected */
    }

    .question-text {
        margin-bottom: 10px;
        font-size: 1rem;
        padding: 0 5px;
    }

    .intro-image-section {
        min-height: 120px;
        height: 175px;
        background-position: center top;
        background-size: contain;
    }

    .titlediv {
        font-size: 12px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1400px) {
    .results-content-wrapper {
        margin-top: 15%;
    }

    .results-badge-container {
        right: -13%;
    }

    .intro-image-section.bkgq4 .bannercontent {
        top: 80%;
        max-width: 64%;
    }
}