.assessment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Start Button Styling */
.start-section {
    text-align: center ;
    padding: 40px 0;
}

.start-assessment {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.start-assessment:hover {
    background: #45a049;
}

/* Progress Bar */
.progress-bar {
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.progress {
    height: 100%;
    background: #4CAF50;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Question Styling */
.question-slide {
    display: none;
    padding: 20px;
}

.question-slide.active {
    display: block;
}

.question-text {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.4;
}

/* Rating Options Styling */
.rating-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.rating-button {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
}

.rating-button:hover {
    border-color: #4CAF50;
    background: #f9f9f9;
    color: #ffffff !important;
}

.rating-button.selected {
    border-color: #4CAF50;
    background: #4caf50 !important ;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-button {
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.nav-button:hover {
    background: #45a049;
}

/* Results Section */
.results-container {
    padding: 20px;
}

.score-display {
    text-align: center;
    font-size: 36px;
    margin: 20px 0;
}

.answers-review {
    margin-top: 30px;
}

.answer-item {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.hidden {
    display: none;
}
/* Result Actions Styling */
.result-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.restart-assessment {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.restart-assessment:hover {
    background: #45a049;
}

.book-coaching {
    background: #2196F3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    text-align: center;
}

.book-coaching:hover {
    background: #1976D2;
}





    span.progress-text {
    position: relative;
    padding: 15px;
    font-weight: 500;
    color: white !important;
    top: -2px;
    letter-spacing: 2px;
}