/* Container for the overall progress */
.progress-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #fff;
    gap: 15px;
}

/* Progress circle and icon wrapper */
.progress-circle-container {
    position: relative;
    width: 32px;
    height: 32px;
}

/* SVG container for the circular progress */
.progress-circle {
    width: 32px;
    height: 32px;
    transform: rotate(-90deg); /* Rotate to make progress start from the top */
}

/* Background circle */
.progress-circle .progress-bg {
    fill: none;
    stroke: #FFD157; /* Light grey color */
    stroke-width: 4;
}

/* Progress bar */
.progress-circle .progress-bar {
    fill: none;
    stroke: #FFA752; 
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 88; /* Total circumference for radius 14 */
    stroke-dashoffset: 88; /* Start hidden */
    transition: stroke-dashoffset 0.5s ease; /* Smooth animation */
}

/* Icon container for the lightning SVG */
.icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress text */
.progress-text {
    font-size: 14px;
    text-align: center;
    display: flex;
    gap: 6px;
}



.nav-container {
    width: auto;
    display: flex;
    gap: 70px;
    align-items: center;
    justify-content: space-between;
    font-family: 'AmazonEmber-Bold';
    font-weight: 500;
}

#avatarButton {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 6px;
}

#avatarButton svg{
    width: 12px;
    height: auto;
    fill: #fff;
    transition: .3s ease all;
}

#avatarButton:hover svg{
    transform:rotate(180deg);
    transition: .3s ease all;
}

.review-container {
    font-size: 14px;
    text-align: center;
    display: flex;
    color: #fff;
    gap: 15px;
}



.lesson-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: rgb(34,34,34);
    background: linear-gradient(0deg, rgba(34,34,34,1) 0%, rgba(34,34,34,0) 100%);
    z-index: 0;
}






/* ARABIC */

html:lang(ar) body {
    font-family: "Cairo", serif;
    direction: rtl;
    text-align: right;
    font-weight: 400;
}

html:lang(ar) .nav-container {
    font-family: "Cairo", serif;
}

html:lang(ar) header,
html:lang(ar) .lesson-control
{
    direction: ltr;
}

html:lang(ar) .text-left,
html:lang(ar) .lesson-title {
    text-align: right;
}

html:lang(ar) h1, 
html:lang(ar) h2, 
html:lang(ar) h3, 
html:lang(ar) h4, 
html:lang(ar) h5, 
html:lang(ar) h6, 
html:lang(ar) .h1, 
html:lang(ar) .h2, 
html:lang(ar) .h3, 
html:lang(ar) .h4, 
html:lang(ar) .h5, 
html:lang(ar) .h6 {
    font-family: "Cairo", serif;
}

html:lang(ar) h1 {
    line-height: 1.4;
}

html:lang(ar) #video-description b, html:lang(ar) #video-description strong, html:lang(ar) #video-description p , html:lang(ar) #video-description span{
    font-family: "Cairo", serif !important;
}

/* html:lang(ar) h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { 
    font-family: "Cairo", serif;
    font-weight: 600;
} */

#video-description p { 
    margin-bottom: 1rem !important;
}


#video-description ol { 
    list-style: auto !important;
}
 
#video-description ul { 
    list-style: inside !important;
}

#video-description li { 
    margin-bottom: 1rem !important;
}

#video-description b, #video-description strong  { 
    font-weight: 800;
    font-family: 'AmazonEmber-Bold';
}

#video-description a { 
    color: #6FB1FC !important;
    transition: all .3s ease;
    background-color: transparent !important;
}
#video-description a:hover {
    color: #1458DF !important;
    transition: all .3s ease;
}

