/* =========================================
   1. GLOBAL CONTAINER & TYPOGRAPHY
   ========================================= */
.sa-results-container {
    max-width: 95%; 
    margin: 0 auto;
    font-family: Georgia, serif;
    color: #000;
    background: transparent; 
    padding: 40px 0;
}

/* Header Section (Download Button) */
.sa-header-actions {
    text-align: center;
    margin-bottom: 40px;
}

.btn-download {
    background-color: #ED1B2F ;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-download:hover {
     background-color: #ED1B2F ;
}

/* Greeting & Main Title */
.sa-greeting {
    text-align: center;
    font-size: 23px;
    color: #F27D0C;
    margin-bottom: 10px;
    font-weight: 500;
}

.sa-main-title {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 80px;
    color: #222;
}

/* =========================================
   2. TWO COLUMN LAYOUT (DESKTOP)
   ========================================= */
.sa-layout-grid {
    display: flex;
    gap: 40px; 
    align-items: stretch; 
}

/* LEFT COLUMN: Understanding Your Results */
.sa-col-left {
    flex: 0 0 45%; /* 45% Width */
    border-right: 1px solid #0b0b0b; /* Vertical Divider Line */
    padding-right: 60px;
    
    /* VERTICAL MIDDLE ALIGNMENT LOGIC */
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

/* RIGHT COLUMN: Bars & Scores */
.sa-col-right {
    flex: 1; 
    
    /* Scroll enable */
    height: 580px;      
    overflow: auto;
    overflow-y: scroll !important;
    
    padding: 0px 20px;
}

/* Typography for Left Column */
.sa-section-title {
    font-size: 34px; 
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
}

.sa-description {
    font-size: 17px;
    line-height: 1.6;
    color: #000;
}

.sa-description strong {
    color: #000;
}

/* =========================================
   3. PROGRESS BARS & RESULTS
   ========================================= */
.result-block {
    margin-bottom: 50px;
}

.result-block h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.bar-container {
    background-color: #e5e5e5;
    border-radius: 30px;
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.bar-fill {
    height: 100%;
    background-color: #ccc;
    /* Optional Texture/Stripes styling */
    background-image: linear-gradient(45deg,rgba(103, 94, 94, 0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 40px 40px;
    border-radius: 30px;
    transition: width 1s ease-in-out;
}

/* List Styling (Breakdown) */
.breakdown, .skills-list {
    
    padding: 15px;
    border-left: 5px solid #ED1B2F; 
    border-radius: 0 5px 5px 0;
}

.breakdown ul, .skills-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breakdown li, .skills-list li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #000;
    padding-left: 20px;
    position: relative;
}

/* Custom Bullet Points */
.breakdown li:before, .skills-list li:before {
    content: "•";
    color: #ED1B2F;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* =========================================
   4. FORM STYLING (Assessment Form)
   ========================================= */
.sa-form-container { 
    max-width: 900px; 
    margin: 0 auto; 

    /* Scroll enable */
      

    height: 580px;
    overflow: auto;
    overflow-y: scroll !important;
    border-left: 1px solid #0b0b0b; /* Vertical Divider Line */
    padding: 0px 20px;
}

.sa-intro { text-align: center; margin-bottom: 30px; }
.sa-question-item { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.sa-question-item p { font-size: 15px!important; margin-bottom: 15px; font-weight: 500; color: #000; }
.sa-options label { margin-right: 20px; font-size: 15px !important; cursor: pointer;}


/* Desktop Input Grid */
.sa-user-details .col-half { width: 48%; display: inline-block; margin-bottom: 20px; margin-right: 1%; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 15px; box-sizing: border-box; }
.assesmetmain { background: #ED1B2F !important; color: white !important;  border: 0; padding: 15px 40px; cursor: pointer; font-size: 18px; border-radius: 30px !important; margin-top: 20px; transition: 0.3s; width: 100%; }
.assesmetmain:hover { background: #ED1B2F !important; }

/* =========================================
   5. MOBILE RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 991px) {
    /* Main Layout becomes Column (Stacked) */
    .sa-layout-grid {
        flex-direction: column;
        gap: 50px;
    }

    /* Left Column Changes for Mobile */
    .sa-col-left {
        width: 100%;
        flex: none;
        border-right: none;          /* Vertical border remove */
        border-bottom: 3px solid #ddd; /* Horizontal border add */
        padding-right: 0;
        padding-bottom: 40px;
        text-align: center;          /* Text center align */
    }

    .sa-main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .sa-section-title {
        font-size: 36px;
    }

    /* Form Inputs Stack 100% width */
    .sa-user-details .col-half {
        width: 100%;
        margin-right: 0;
        display: block;
    }

    .sa-form-container {
        padding: 20px;
    }
    
    .sa-results-container {
        padding: 20px 0;
        width: 90%;
    }
}