@font-face {
    font-family: 'thuluth-decorated';
    src: url('../fonts/thuluth-decorated.eot');
    src: local('ثلث مزخرف'), local('thuluth-decorated'),
        url('../fonts/thuluth-decorated.woff') format('woff');
}

@font-face {
    font-family: 'cairo-bold';
    src: url('../fonts/cairo-bold.eot');
    src: local('القاهرة ثقيل'), local('cairo-bold'), url('../fonts/cairo-bold.woff') format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600&family=Tajawal:wght@400;500;700;800;900&display=swap');

* {
padding: 0 ;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    background-color: #e8dac3;
    font-family: 'Changa', sans-serif;
    font-family: 'Tajawal', sans-serif;
    font-family: 'Cairo', sans-serif;
}

:root {
    --main-color: #DC9C51;
    --text-color: #fff;
    --other-color: #212121;
    --second-color: #3F200C;
    --bg-color: #111111;

    /* fonts */
    --big-font: 4.5rem;
    --h2-font: 2.6rem;
    --p-font: 1.1rem;

    /* borders */
    --shadow-main: #ff9f0d 0 1px 25px;
}
.icon-color-surah{
    color:#864419;
}
.general-header {
    font-family: 'thuluth-decorated';
    color: var(--main-color);
    text-align: center;
    font-size: 40px !important;
}

.general-color {
    color: var(--main-color);
}

.general-btn {
    background-color: var(--main-color);
    outline: 0;
    border: 0;
    border-radius: 2px;
    padding: 10px 30px;
    font-size: 18px;
    transition: all .3s ease-in-out;
    text-transform: capitalize;
    color: white;
}

.general-btn:hover {
    transform: scale(1.03);
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

::selection {
    background-color: var(--main-color);
    color: white;
}

a {
    text-decoration: none;
}

.scrolling-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: var(--second-color);
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    transition: all .3s ease;
}

.scrolling-up.show {
    opacity: 1;
}


.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    background-color: #3F200C;
    direction: rtl;
    /* padding: 6px 6.5rem 6px 2rem; */
    padding: 4px  .2rem;

    /* border: 2px solid red; */

}

.logo,
.logo span {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 600;
    font-family: 'thuluth-decorated' !important;
    color: var(--main-color);

}

.logo i {
    vertical-align: middle;
    margin-right: 8px;
    color: var(--main-color);
}

@media only screen and (max-width:1500px) {
    .logo {
        margin-right: -100px !important;
    }
}

.nav-list {
    display: flex;
    /* flex-direction: column;  */
    list-style: none;
    font-size: 18px;
    justify-content: flex-start; /* لتصحيح المحاذاة عموديًا */
    margin-top: 15px;
    padding: 0 !important;
    width: 100%;
    max-height: 88vh; /* تحديد أقصى ارتفاع */
    /* border: 2px solid green; */
    z-index: 100000 !important;
    align-items: flex-start;
    

}



.nav-list::-webkit-scrollbar {
    width: 0px;
}

.nav-list::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.nav-list::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

.nav-list li {
    margin-right: 44px;
}

.dropdown-menu li {
    /* border: 2px solid red; */
    margin-left: 10px;
}

.nav-list a {
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 600;
    transition: all 0.5s ease;
        /* border: 2px solid blue; */
        /* margin-right: 0px; */
        /* width: 90%; */

}

.nav-list a:hover {
    color: var(--main-color);
}

.nav-list a.active {
    color: var(--main-color);
}

.nav-icons {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 3rem;
}


.nav-icons i {
    vertical-align: middle;
    font-size: 25px;
    color: var(--main-color);
    margin-right: 8px;
    margin-left: 5px;
    transition: all 0.5s ease;

}

.dropdown-menu {
    background-color: #2c2925;
}

#menu-icon {
    font-size: 40px;
    color: var(--main-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
    margin-left: -100px;
}

.bx-x {
    font-size: 50px;
    color: red !important;
}

.nav-icons i:hover {
    transform: scale(1.1);
    color: var(--text-color);
}
.active-azkar{
    background-color: var(--main-color);
    color: white;
}
.azkar-icon:hover {
    background-color: var(--main-color);
    color: white !important;
}
.azkar-icon:hover .azkar-icons{
    color: white !important;
}

@media only screen and (min-width:1500px) {
    .dropdown-menu li {
        background-color: #2c2925;
         width: 100%;
         margin: auto;
    }

}


@media only screen and (max-width:1520px) {
    .header {

        padding: 6px 6.5rem 6px 2rem;
        /* border: 2px solid blue; */
    
    }

    #menu-icon {
        display: initial;
    }

    .nav-list {
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--other-color);
        transition: all 0.5s ease;
        overflow-y: scroll;
    }
    .nav-list {
        margin-top:3px;
    }
    .nav-list a {
        display: block;
        padding: 0.5rem;
        margin-inline: 1rem;
        margin-block: .5rem;
        border-right: 2px solid var(--main-color);
      
    }
    .nav-list li {
    margin-right: 0px;
}
.dropdown-menu-link {

        /* border: 2px solid green; */
        /* margin-right: 0px; */
        width: 90%;
       

}

            
}

    .nav-list.open {
        top: 100%;
    }
    .nav-list li a{
        margin-top: 3px;
      
      }
 



nav .nav-item {
    font-size: 10px;
    font-weight: 400;
}

.main-section {
    width: 100%;
    height: 100vh;
    background-image: url(../Images/Home/home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-section .txt-main-section {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(-40%, -50%);
    -moz-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    -o-transform: translate(-40%, -50%);

    transform: translate(-40%, -50%);
    color: white;
}

.main-section .txt-main-section p {
    font-size: 40px;
    color: var(--main-color);
}

.readers-section {
    padding: 60px 0 100px 0;

}

.readers-section .card {
    padding-bottom: 2px;
    background: linear-gradient(0deg, #3F200C, #3F200C),
        linear-gradient(0deg, #EFAC5A, #EFAC5A);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border: 2px solid var(--main-color);
    text-align: center;
}

.readers-section .card img {
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.readers-section .card .card-body {
    padding: 9px 0 !important;
}

.readers-section .card:hover {
    background-color: #1f2947;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.websites {
    padding-bottom: 80px;
    background-image: url(../Images/Books/background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #e8dac3;
}

.imag-q {
    text-align: center;
}

.imag-q img {
    max-width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.websites .website {
    padding: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    cursor: pointer;
    border: 1px solid var(--main-color);
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.website-1 {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--main-color);
    border-right: none;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding-left: 20px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    cursor: pointer;
    background-color: white;
}

.website-1 img{
 
 border: 2px solid var(--main-color);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
    

.website-3 {
    flex-direction: column;
    z-index: 2000 !important;
}
.icon-phone{
  display: inline-block;
  outline: 2px solid var(--main-color);
  border: 2px solid gray;
  outline-offset: 3px;
  width: 40px;
  height: 40px;
  /*display: flex;
  justify-content: center;
  align-items: center;
  */
 text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.txt-website {
    text-align: center;
    width: 80%;
}

.website-1 img {
    height: 125px
}

.website-1 a,
.website-3 a {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    color: #75777d;
}

.website-1 a:hover,
.website-3 a:hover {
    color: var(--main-color);
}

.website-1 p,
.website-3 p {
    flex-direction: column;
    font-size: 22px;
}

.websites .website:hover,
.websites .website-1:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.web {
    margin-top: 30px;
    padding: 150px 0 !important;
    background-image: url(../Images/Websites/background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.bbb {
    background-attachment: fixed;
}

.web1 {
    margin-top: 30px;
    background-image: url(../Images/Apps/background.png);
    background-size: contain;
    background-color: #e8dac3;
}

.web-link {
    z-index: 200 !important;
}

.web::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.cc {
    z-index: 200 !important;
}
.status-conainer{
    padding-bottom: 20px;
    /* border: 2px solid red; */

}
.status-conainer .btn{
 outline: 0;
 border: 0;

}
.status{
    border: 2px solid var(--main-color);
    
}
.bb{
    padding: 0;
    top: 10px;
    left: 10px;
    border: 2px solid white;
    padding: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.ayy{

    background-color: var(--main-color);
    width: 50px;
    height:50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

}
.facebook{
    color: #4267B2;
}
.share{
    color: #1f85de;
}
.status-conainer .icon:hover{
    cursor: pointer;
}

footer {
    background-color: rgb(82, 49, 28) !important;
    color: white !important;
}

footer .logo-footer {
    font-size: 40px;
    font-weight: 600;
    font-family: 'thuluth-decorated' !important;
    color: var(--main-color);
}

footer p a {
    transition:all .3s ease ;
    -webkit-transition:all .3s ease ;
    -moz-transition:all .3s ease ;
    -ms-transition:all .3s ease ;
    -o-transition:all .3s ease ;
}
footer p a:hover {
color: var(--main-color) !important;
}