
























body {
    padding: 0 !important;
    position: relative;
    z-index: 1;
}


.BodyBackground {
    position: absolute;
    left: -30%;
    top: 55%;
    transform: translateY(-50%);
    z-index: -1;
    width: 65%;
    height: 55%;
    object-fit: contain;

}

.PatternBG{
    width: 100%;
    overflow: hidden;
    
    position: relative;
    z-index: 1;
    
}
.PatternBG::before{
    content:"";
    position: absolute;
    top:0;
    right:0;
    background: url(../img/Logos/LogoPattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 1500px;
    width: 50%;
    z-index: 0;

    
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -webkit-opacity:0.5;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    
}
.PatternBG section{
    position: relative;
    z-index: 2;
}





/* login */
.LandingContent {
    margin: -30px 0 50px;
}

.LandingHeader {
    width: 100%;
    height: 300px;
    background-color: var(--PrimaryBGColor);background-color: #6a8313;
    position: relative;
    z-index: -1;
    display: flex;
    padding: 80px 20px 20px;
}

.LandingHeaderText {
    position: relative;
    z-index: 5;
    color: white;
    text-align: center;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;*/
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: auto;
}


.LandingHeader::after {
    content: '';
    position: absolute;
    top: 0;left: 0;
    background-image: url('../img/ramadan-kareem-islamic-background-design-with-moon\ 1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.LandingHeaderText h3,.LandingHeaderText h1{
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* signout */


/* Progress Steps */
.ProgressSteps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px;
}

.ProgressSteps .Step {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #E5E7EB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.ProgressSteps .Step.Active {
    background: #8BA830;
}

/* Signup Card */
.SignupCard {
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.SignupCard h2 {
    color: #2C5F5D;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.SignupCard .Subtitle {
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

/* User Type Selection */
.UserTypeSelection {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.UserTypeCard {
    cursor: pointer;
    position: relative;
}

.UserTypeCard input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.CardContent {
    background: #F3F4F6;
    border-radius: 15px;
    padding: 70px 60px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.UserTypeCard:hover .CardContent {
    background: #E5E7EB;
}

.UserTypeCard input[type="radio"]:checked~.CardContent {
    border-color: #8BA830;
    background: #F0F5E8;
}

.UserTypeCard h3 {
    color: #374151;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

.UserTypeIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}


.FormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.FormGroup {
    display: flex;
    flex-direction: column;
}

.FormGroup label {
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.FormGroup input,
.FormGroup select {
    padding: 12px 15px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: white;
}

.FormGroup input::placeholder {
    color: #D1D5DB;
}

.FormGroup input:focus,
.FormGroup select:focus {
    border-color: #8BA830;
}

/* Phone Input */
.PhoneInput {
    display: flex;
    gap: 10px;
}

.CountryCode {
    width: 100px;
    padding: 12px 10px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    outline: none;
}

.PhoneInput input {
    flex: 1;
}

/* Upload Area */
.UploadArea {
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.UploadedFile {
    background: #F3F4F6;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.AudioFile {
    display: flex;
    justify-content: space-between;
}

.AudioInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.FileName {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.AudioDuration {
    color: #9CA3AF;
    font-size: 12px;
}

.DeleteBtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.DeleteBtn:hover {
    transform: scale(1.1);
}

.AddFileBtn {
    border: 2px dashed #D1D5DB;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.AddFileBtn:hover {
    background: #F9FAFB;
    border-color: #8BA830;
}

.AddFileBtn span {
    font-size: 48px;
    color: #9CA3AF;
    font-weight: 300;
}

.TeacherContent {
    display: grid;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .UserTypeSelection {
        flex-direction: column;
    }

    .FormRow {
        grid-template-columns: 1fr;
    }

    .SignupCard {
        padding: 30px 20px;
    }

    .CardContent {
        padding: 30px 40px;
    }

    .ProgressSteps {
        gap: 10px;
    }

    .ProgressSteps .Step {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Header*/
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.Logo {
    margin-bottom: 0 !important;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e75c00;
    font-family: var(--font-family-secondary);
    text-decoration: none;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e75c00;
    font-family: var(--font-family-secondary);
    text-decoration: none;
}




.BtnPrimary {
    background: var(--primary-color);
    color: white;
    padding: 13px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}



/*
nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}



nav .Container {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 100%;
    z-index: 5;
}





a {
    text-decoration: none;
}



.NavLinks {
    height: 100%;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}



.NavLinks .TadweeraStarted a {
    text-decoration: none;
    color: white;
}

.NavLink {
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #565656;
}



.NavLink.Active {

    color: var(--primary-color);

}





.NavCont {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 4px;

    justify-content: space-between;

    margin: 0 auto;

}



nav .Container .BrandLogo img {

    height: 70px;

    width: 100px;

    object-fit: contain;

    margin: 0 auto;

    flex-shrink: 0;

}



.MobileNavToggle {

    display: none;

    position: fixed;

    top: 20px;

    left: 20px;

    z-index: 1101;

    width: 40px;

    height: 30px;

    cursor: pointer;

}





@media screen and (max-width: 768px) {

    .NavLinks {

        position: fixed;

        top: 80px;

        left: 0;

        width: 100%;

        height: calc(100% - 80px);

        overflow-y: auto;

        overflow-x: hidden;

        background: #fff;

        flex-direction: column;

        justify-content: space-between;

        padding: 10px 0px;

        display: none;

        z-index: 1000;

    }



    .NavCont {

        height: unset;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 2px;

    }



    .TadweeraStarted {

        margin-top: auto;

        padding: 0 20px 15px;

        width: 100%;

    }

    .NavLinks .TadweeraStarted a {

        width: 100%;

        display: inline-block;

        text-align: center;

    }

    .NavLink {

        height: unset;

        width: 100%;

        padding: 13px 20px;

        border-bottom: 1px solid #ededed;

        justify-content: flex-start;

    }

    .NavLinks.active {

        display: flex;

    }



    .MobileNavToggle {

        display: block;

        position: relative;

        top: 0;

        left: 0;

    }



    .BurgerIcon,

    .BurgerIcon::before,

    .BurgerIcon::after {

        content: '';

        display: block;

        height: 3px;

        width: 25px;

        background: #333;

        margin: 6px 0;

        transition: 0.3s;
    }

}
*/



.AppContainer {
    display: flex;
    min-height: 100vh;
}


.MainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #eeeeee;
}

.BodyContent {
    padding: 10px;
}

.NavigationSidebar {
    width: 280px;
    height: 100vh;
    background: white;
    border-right: 1px solid var(--BorderColor);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.NavigationSidebar.collapsed {
    width: 80px;
}

.SidebarHeader {
    padding: 10px;
    border-bottom: 1px solid rgba(50, 82, 89, 0.08);
    display: flex;
    align-items: center;
    border-top: 3px solid var(--PrimaryBGColor);
}

.NavigationSidebar.collapsed .SidebarHeader {
    padding: 24px 16px;
}

.SidebarLogo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.NavigationSidebar.collapsed .SidebarLogo {
    height: 32px;
}

.SidebarToggleBtn {
    display: none;
}

.SidebarNavActions {
    padding: 16px 24px;
    border-bottom: 1px solid var(--BorderColor);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.NavigationSidebar.collapsed .SidebarNavActions {
    padding: 16px;
}

.LanguageButton {
    background: var(--LightGray);
    border: 1px solid var(--BorderColor);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
    text-align: center;
}

.LanguageButton:hover {
    background: #e5e7eb;
}

.NavigationSidebar.collapsed .LanguageButton {
    font-size: 12px;
    padding: 8px;
}

.UserDropdown {
    position: relative;
}

.DropdownToggle {
    width: 100%;
    background: white;
    border: 1px solid var(--BorderColor);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #374151;
}

.DropdownToggle:hover {
    border-color: var(--PrimaryBGColor);
}

.NavigationSidebar.collapsed .DropdownToggle {
    padding: 10px 8px;
}

.UserName {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.NavigationSidebar.collapsed .UserName {
    display: none;
}

.DropdownIcon {
    margin-left: 8px;
    flex-shrink: 0;
}

/*
.DropdownMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--BorderColor);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 4px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
}

.DropdownMenu.show {
    display: block;
}

.DropdownItem {
    display: block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.DropdownItem:hover {
    background: var(--LightGray);
}

.DropdownDivider {
    height: 1px;
    background: var(--BorderColor);
    margin: 8px 0;
}

.SidebarMenu {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.MenuList {
    list-style: none;
}

.MenuItem {
    margin-bottom: 4px;
}

.MenuLink {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.NavigationSidebar.collapsed .MenuLink {
    padding: 12px 16px;
    justify-content: center;
}

.MenuLink:hover {
    background: rgba(134, 166, 20, 0.05);
    color: var(--PrimaryBGColor);
}

.MenuLink.active {
    background: var(--PrimaryBGColor);
    color: white;
    border-radius: 0 25px 25px 0;
    margin-right: 16px;
}

.NavigationSidebar.collapsed .MenuLink.active {
    border-radius: 8px;
    margin: 0 8px;
}

.MenuIcon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.NavigationSidebar.collapsed .MenuIcon {
    margin-right: 0;
}

.MenuText {
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.NavigationSidebar.collapsed .MenuText {
    opacity: 0;
    width: 0;
}

.SidebarFooter {
    padding: 24px;
    border-top: 1px solid var(--BorderColor);
    text-align: center;
}

.NavigationSidebar.collapsed .SidebarFooter {
    padding: 16px;
}

.FooterText {
    font-size: 12px;
    color: var(--GrayColor);
    margin-bottom: 8px;
}

.NavigationSidebar.collapsed .FooterText {
    display: none;
}

.FooterLink {
    color: var(--PrimaryBGColor);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.NavigationSidebar.collapsed .FooterLink {
    font-size: 10px;
}

.FooterLink:hover {
    text-decoration: underline;
}

.MobileToggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    background: var(--PrimaryBGColor);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
}

.SidebarOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
*/
/* .MainContent {
            flex: 1;
            padding: 24px;
            overflow-x: hidden;
        } */

.ContentHeader {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.ContentTitle {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.ContentDescription {
    color: var(--GrayColor);
}

@media (max-width: 768px) {
    .NavigationSidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 100;
        width: 280px;
    }

    .NavigationSidebar.show {
        left: 0;
    }

    .MobileToggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 1001;
        background: var(--PrimaryBGColor);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px;
        cursor: pointer;
    }

    .SidebarOverlay.show {
        display: block;
    }

    .MainContent {
        margin-left: 0;
        padding: 80px 16px 16px;
    }

    .AppContainer.collapsed .MainContent {
        margin-left: 0;
    }
}


/* Hero Section */
.hero {
    position: relative;
    color: white;
    height: 100vh;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    padding: 200px 0px 100px;
    background-image: url(../img/Main\ banner\ 1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero .container {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story .container {
    max-width: var(--max-width);
    margin: 0px auto;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: Poppins, sans-serif;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}



/* About Us Section */
.AboutUsSection {
    padding: 0;
    /*height: 600px;*/
    position: relative;
}

.AboutUsContent {
    /*display: grid;
    grid-template-columns: 2fr 1fr;*/
    display: flex;
    gap: 30px;
    align-items: center;
}

.AboutUsText {
    padding: 20px 10px;
}

.AboutUsText .AllSectionTitle {
    margin-bottom: 30px;
    padding-left: 30px;
    text-align: left;
}
html[dir="rtl"] .AboutUsText .AllSectionTitle {
    padding-left: unset;
    padding-right: 30px;
    text-align: right;
}

.AboutUsText .SectionDescription {
    font-size: 1rem;
    line-height: 2;
    padding-left: 30px;
    text-align: left;
}
html[dir="rtl"] .AboutUsText .SectionDescription {
    padding-left: unset;
    padding-right: 30px;
    text-align: right;
}

.AboutUsImage {
    min-height: 500px;
    min-width: 350px;
    width: 100%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*padding-left: 40px;*/
}

.DecorativeCircle::before {
    content: '';
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 30%;
    height: 100%;
    background: url('../img/Vector9.svg');
    background-position: center right;
    /*background-size: 30% 100%;*/
    background-repeat: no-repeat;
    z-index: -1;
}

html[dir="rtl"] .DecorativeCircle::before,.DecorativeCircle.Inverse::before{
    right: unset;
    left: 0;
    transform: translateY(-50%) scaleX(-1);
}


html[dir="rtl"] .DecorativeCircle.Inverse::before{
    right: 0;
    left:unset;
    transform: translateY(-50%);
}





/*
.AboutUsImage::after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(45% - 2px);
    transform: translateY(-50%);
    width: calc(30% + 4px);
    height: calc(100% + 4px);
    background: url('../img/Vector9.svg');
    background-position: center;
    background-size: cover;
    z-index: 0;
    filter: brightness(0);
}
*/




.AboutUsImage img {
    /*position: absolute;
    right: 120px;
    top: 45%;
    transform: translateY(-50%);
    width: 600px;
    z-index: 3;*/

    position: relative;
    width: 100%;
    z-index:3;
}


.AllSectionTitle {
    text-align: center;
    color: #324f76;
}




@media screen and (max-width: 768px) {
    .AboutUsSection {
        padding: 30px 0;
        display: grid;
        grid-template-columns: 1fr;
    }

    .AboutUsContent {
        flex-direction: column-reverse;
        gap:10px;
    }

    .AboutUsText {
        padding: 30px 20px;
    }

    .AboutUsText .AllSectionTitle {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .AboutUsText .SectionDescription {
        font-size: 0.9rem;
        line-height: 1.8;
        text-align: center;
    }

    .AboutUsImage {
        align-items: center;
        justify-content: center;
        min-height: unset;
        /*display: none*/
    }



    .DecorativeCircle::before{
        top: 35%;
        width: 50%;
        opacity: 0.5;
    }

    .AboutUsImage::before,
    .AboutUsImage::after {
        width: 50%;
    }

    .AboutUsImage img {
        width: 300px;
    }
}

@media screen and (min-width: 768px) {
    .AboutUsConten {
        display: grid;
    }
}

@media screen and (max-width: 576px) {
    .AboutUsSection {
        padding: 30px 0;
        width: 100%;
        display: grid;
    }

    /*.AboutUsImage img {
        display: none;
    }*/

    .AboutUsText {
        width: 100%;
    }
}

/* Statictics */

/*.StatisticsSection {
    margin-top: -100px;
}*/

.StatisticsSection .AllSectionTitle,
.HowItWorksText .AllSectionTitle {
    position: relative;
}





.StatisticsSection .AllSectionTitle::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /*top: 0px;
    width: 150px;
    height: 36px;*/

    top: -2px;
    width: 200px;
    height: 68px;

    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/Vector16.svg);
    z-index:-1;


}



.HowItWorksText{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.HowItWorksText .AllSectionTitle::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 60px;
    /*left: -44px;
    top: 26px;*/
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/Vector16.svg);
    z-index:-1;
}



/* Mission and Vision */
.MissionVisionGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
}
.MissionVisionGrid>div{
    height:auto;
}
.MissionVisionGrid .StatCard{
    padding:20px;
    gap: 15px;
    
    width:100%;
    max-width:500px;
    height:100%;
}
@media screen and (max-width: 600px) {
    .MissionVisionGrid{
        flex-direction: column;
    }
}









/* How it works */


.HowItWorksSection {
    padding: 0;
    /*height: 600px;*/
    position: relative;
}

.HowItWorksContent {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px;
}


.HowItWorksText .AllSectionTitle {
    margin-bottom: 24px;
    padding: 30px 0;
}

.HowItWorksImage {
    /*min-height: 500px;
    justify-content: flex-start;
    padding-right: 40px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    padding: 20px;
    
    
}


.HowItWorksImage img {
    /*position: absolute;
    left: 120px;
    top: 45%;
    transform: translateY(-50%);
    width: 300px;*/
    position: relative;
    width: 100%;
    max-width: 300px;
    z-index: 3;
}

.StepsList {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.StepsList::before{
    content:"";
    width:4px;
    height:100%;
    height:calc(100% - 10px);
    position: absolute;
    left:13px;
    top:5px;
    background-color: #e5e5e5;
}
html[dir="rtl"] .StepsList::before{
    left:unset;
    right:13px;
}

.StepsList .Step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap:8px;
}
.StepsList .Step div{
    display: flex;
    flex-direction: column;
}

.StepsList .Step::before{
    content:"";
    position:relative;
    width: 18px;
    height: 18px;
    top: 5px;
    right: 0;
    background-color: var(--PrimaryBGColor);
    border:6px solid #eeeeee;
    display: inline-block;
    border-radius: 50%;
    flex-shrink: 0;

}




.StepsList .Step h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    position:relative;
    z-index:2;
    text-align:start;
    width:100%;
}

.StepsList .Step p {
    color: #666;
    font-size: 16px;
    text-align:start;
    width:100%;
}



@media screen and (max-width: 768px) {
    .HowItWorksContent {
        flex-direction: column;
    }

    .HowItWorksImage img{
        max-width: 250px;
    }

    .HowItWorksText .AllSectionTitle{
        margin: 0 auto;
    }

}



/* Testimonials */


.TestimonialsSection {
    padding: 80px 50px;
    position: relative;
}




.TestimonialsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.TestimonialCard {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*border-right: 3px solid var(--PrimaryBGColor);*/
    position: relative;
}

.TestimonialCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-top {
    background: #2d5f5f;
    padding: 20px;
    position: relative;
    min-height: 120px;
}



.quote-left {
    position: absolute;
    bottom: -35px;
    left: 20px;
    z-index: 1;
}
.quote-right {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 1;
}
.TestimQuotes{
    width: 40px;
    height: 40px;
    stroke:#8BC34A;
    stroke: var( --PrimaryBGColor);
    stroke-width: 2px;
}
.TestimQuotes.Inverted{
    stroke: #2d5f5f;
    stroke: var( --SecondaryBGColor);

    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: -50px;
    z-index: 2;
    pointer-events:none;
}

.TestimonialCard .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.card-bottom {
    padding: 18px 20px;
    position: relative;
}

.TestimonialCard .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
}

.TestimonialCard .author {
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
    position:relative;
}
.TestimonialCard .author:empty {
    visibility: hidden;
}
.TestimonialCard .author:empty::before {
    content:'.';
    display:block;
    visibility: hidden;
}

.TestimonialsDots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.TestimonialsDots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.TestimonialsDots span:hover {
    background: #999;
    transform: scale(1.2);
}

.TestimonialsDots span.active {
    background: #7cb342;
}

/* Responsive */
@media (max-width: 1024px) {
    .TestimonialsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .TestimonialsGrid {
        grid-template-columns: 1fr;
    }
}

/* Pricing */
.PricingSection{
    width: 100%;
}
.SectionSubtitle,
.SectionDescription {
    color: #324f76;
    ;
    text-align: center;
}

.HowItWorksText .SectionDescription{
    text-align:start;
}


/* Contact Form */

.ContactUsSection {
    position:relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
} 
.ContactUsSection::before{
    content: '';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    background-image: url('../img/Banner\ 2\ 2.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


html[dir="rtl"] .ContactUsSection::before{
    transform: scaleX(-1);
}
/*html[dir="rtl"] .ContactUsSection{
    transform: scaleX(-1);
}
html[dir="rtl"] .ContactUsSection .Container{
    transform: scaleX(-1);
}*/
.ContactUsSection>div{
    position:relative;
    z-index:2;
}

.ContactUsContent {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.ContactUsForm {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ContactUsForm .AllSectionTitle {
    text-align: start;
    margin-bottom: 20px;
    color: #2d5f5f;
    /*font-size: 2.5rem;*/
}

.FormContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: left;
}
/******************************************************************************************************************/
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    position: relative;
}

.phone-group {
    gap: 10px;
}

.FormContainer input,
.FormContainer textarea,
.FormContainer select {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #666;
}

.FormContainer textarea {
    border-radius: 25px;
    resize: none;
}

.country-code {
    width: 100px;
    flex-shrink: 0;
}

.phone-group input {
    flex: 1;
    padding-left: 100px;
}

.reason-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 45px;
}

.FormContainer input::placeholder,
.FormContainer textarea::placeholder {
    color: #ccc;
}

.FormContainer select {
    color: #ccc;
}

.FormContainer select:focus {
    color: #666;
    position: absolute;
    z-index: 1;
}

.FormContainer select:valid {
    color: #666;
    position: absolute;
    left: 6px;
    width: 20%;
    z-index: 1;
    padding: 5px;
    top: 5px;

}

.FormContainer input:focus,
.FormContainer textarea:focus,
.FormContainer select:focus {
    outline: none;
    border-color: #7cb342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

/******************************************************************************************************************/



/* Responsive */
@media (max-width: 1024px) {
    .ContactUsContent {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .ContactUsForm .AllSectionTitle {
        text-align: center;
    }
}


/* library */

.LibraryContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.LibraryHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.LibraryHeaderLeft {
    flex: 1;
}

.LibraryLabel {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.LibraryTitle {
    color: #1F2937;
    font-size: 42px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.LibraryTitle .Highlight {
    color: #2C5F5D;
    position: relative;
}

.LibraryTitle .Highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8BA830;
}

.LibraryDescription {
    color: #6B7280;
    font-size: 16px;
}

.LibraryHeaderRight {
    display: flex;
    align-items: center;
}
.LibraryHeaderRight .DropdownWrapper{
    min-width: 150px;
}

.SortButton {
    background: white;
    border: 1px solid #D1D5DB;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: #374151;
    font-size: 14px;
}

.SortButton:hover {
    border-color: #8BA830;
    color: #8BA830;
}

.FilterButtons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.FilterBtn {
    background: #E5E7EB;
    border: none;
    padding: 7px 22px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;

    background:#CCC;color: white;;
}

.FilterBtn:hover {
    background: #D1D5DB;
}

.FilterBtn.active {
    background: #8BA830;
    color: white;
}
.BooksGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.BookCard {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.BookCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.BookImage {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.BookImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.BookImage::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #00000020;
}

.BookCard .BrandBtn{
    padding: 8px 30px;
    -moz-border-radius: 150px;
    -khtml-border-radius: 150px;
    -webkit-border-radius: 150px;
    -o-border-radius: 150px;
    -ms-border-radius: 150px;
    border-radius: 150px;
    display: flex;
    align-items: center;
    gap: 4px;

    
}

.BookCard .BrandBtn .SVGOrigIcon{
    stroke: white;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
}

.BookBadges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.Badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.BadgeDate {
    color: #374151;
}

.BadgeTime {
    color: #6B7280;
}

.BookContent {
    padding: 20px;
}

.BookTitle {
    color: #1F2937;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 2px;
    /*line-height: 1.2;
    min-height: 50px;*/
}

.BookDescription {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.BookDate{
    color: #6B7280;
    font-size: 14px;
}

.DownloadBtn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 14px;
}

.DownloadBtn svg {
    width: 18px;
    height: 18px;
}


@media (max-width: 1200px) {
    .BooksGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .BooksGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .LibraryTitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .LibraryHeader {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .BooksGrid {
        grid-template-columns: 1fr;
    }
    
    .LibraryTitle {
        font-size: 32px;
    }
    
    .FilterButtons {
        flex-wrap: wrap;
    }
}
















.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .three-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content,
    .application-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}











.ResendEmail{
    cursor:pointer;
    text-decoration:underline;
}
.ResendEmail.Disabled{
    color: #a8a8a8;
    background-color: unset;
    pointer-events:none;
}
.ResendEmailTimer{
    font-weight: 500;
}

