.landing-quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px;
    font-family: 'Vazir', 'Arial', sans-serif;
    direction: rtl;
}

.landing-quiz-step {
    animation: fadeIn 0.3s ease-in;
}

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

.quiz-form-container,
.quiz-question-container,
.quiz-result-container {
    background: transparent;
    padding: 0px;
}
.quiz-result-content{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.result-name{
    display: none !important;
}
.mbottom p,.quiz-form-container h2,
.quiz-result-container h2 {
    margin-top: 0;
    color: #fff;
}
.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.quiz-btn {
    background: #0073aa;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.quiz-btn:hover {
    background: #005a87;
}

.quiz-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.quiz-message.error {
    background: #ffe6e6;
    color: #d00;
    border: 1px solid #fcc;
}

.quiz-message.success {
    background: #e6ffe6;
    color: #060;
    border: 1px solid #cfc;
}

.question-progress {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

#landing-quiz-image-wrapper {
    text-align: center;
}

#landing-quiz-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.landing-quiz-header {
    text-align: center;
    padding: 0px;
    background: #fff;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.question-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.question-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-option {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: #fff;
}

.quiz-option:hover {
    border-color: #0073aa;
    box-shadow: 0 2px 10px rgba(0,115,170,0.2);
}

.quiz-option.selected {
    border-color: #0073aa;
    background: #e6f3ff;
}

.quiz-option img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.option-text {
    font-size: 16px;
    color: #333;
}

.quiz-next-btn {
    width: 100%;
    margin-top: 20px;
}

.quiz-result-container h3 {
    color: #0073aa;
    margin-bottom: 15px;
}

.result-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.result-score {
    font-size: 18px;
    font-weight: bold;
    color: #0073aa;
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
}
.mheader{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
#landing-quiz-image-wrapper{
    width: 30%;
}
#landing-quiz-header-wrapper{
    width: 70%;
}
.landing-quiz-container{
    font-family: "mhdy", Sans-serif !important;
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-height: 100vh;
    background-color: #004f6f;
    justify-content: center;
}
.quiz-form-container h2, .quiz-result-container h2 {
    font-size: 20px;
    font-weight: 800;
}
button {
    position: fixed;
    bottom: 0;
    width: 100% !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    right: 0;
    background-color: #004f6f !important;
    z-index: 9999999;
    border: none !important;
    border-top: 2px solid #fff !important;
    border-radius: 12px !important
}
.mblue {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px 25px 0 0;
    padding-bottom: 140px;
}

