body{
background-image: url('../image/b.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
object-fit: cover;
}
.banner-answer{
height: 100%;
padding: 50px 0px;

}

.answer-title{
text-align: center;
font-size: 32px;
font-weight: 700;
}
.answer-text{
text-align: center;
margin-top: 9px;
}
.row-answer{
margin-top: 40px;
}
.answer-card{
    padding:30px;
    border:2px solid #ddd;
    border-radius:18px;
    cursor:pointer;
    transition:.3s;
    text-align:center;
}

.answer-card:hover{
    transform:translateY(-5px);
    border-color:#7F0316;
}

.answer-card.active{
   background: #F2E9E3;
    background: #F2E9E3;
}
.answers-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:30px;
}
.answer-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    padding:25px 15px;
    transition:.3s;
   background: #fff;
  border-radius: 1px;
  border: 1px solid #F2E9E3;
   }
.answer-card:hover{
background: #F2E9E3;
 border: 1px solid transparent;
}
.title-answer{
font-weight: 600;
}
.answer-card .icon img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:10px;
    transition:.3s;
}
.answer-card p{
    margin:0;
    font-size:16px;
    font-weight:500;
}
.answer-card:hover .icon img{
    transform:scale(1.1);
}

.answer-card.active .icon img{
    transform:scale(1.2);
  }

.answer-card.active p{
    color:#7F0316;
    font-weight:700;
}
.quiz-progress{
    display:flex;
    align-items:center;
    gap:15px;
}
.progress-info{
    display:flex;
    gap:5px;
    font-weight:600;
    color:#7F0415;
}

/* تصغير البار */
.small-progress{
    width:200px;
    height:6px;
    background:#eee;
    border-radius:10px;
    overflow:hidden;
}

/* لون التعبئة */
#progressBar{
    background:#7F0415;
    height:100%;
    width:0%;
    transition:0.3s ease;
}
.quiz-buttons{
margin-top: 40px;
text-align: end;
}
.quiz-buttons button{
padding: 5px 45px;
border: 1px solid #E5CB96 ;
background: #fff;
color: #7F0415;
}
.quiz-buttons .btn-next{
    background: #7F0415 !important;
    color: #fff;
    border: 1px solid #7F0415;
}
.quiz-buttons i{
padding: 0px 5px;
}