@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi+Ink&display=swap');

/* Importing fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Calibri&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Futura&display=swap'); /* Note: Futura may not be available */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;700&display=swap'); /* Bodoni alternative */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Garamond&display=swap'); /* Note: Garamond may not be available */
@import url('https://fonts.googleapis.com/css2?family=Helvetica&display=swap'); /* Note: Helvetica may not be available */
@import url('https://fonts.googleapis.com/css2?family=Ramaraja&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova&display=swap'); /* Note: Proxima Nova may not be available */
@import url('https://fonts.googleapis.com/css2?family=Frutiger&display=swap'); /* Note: Frutiger may not be available */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Verdana&display=swap'); /* Note: Verdana may not be available */
@import url('https://fonts.googleapis.com/css2?family=Century+Schoolbook&display=swap'); /* Note: Century Schoolbook may not be available */
@import url('https://fonts.googleapis.com/css2?family=Arial&display=swap'); /* Note: Arial may not be available */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cambria&display=swap'); /* Note: Cambria may not be available */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: inherit;
    /* font-family: "Reem Kufi Ink", sans-serif; */
    /* font-family: "Nunito Sans", sans-serif; */
    /* font-family: "Poppins", system-ui; */
    /* font-family: "Roboto", sans-serif; */
    /* font-family: "Playfair", serif; */
    font-family: "Inter", sans-serif;
    word-break: break-word;
}

a {
    text-decoration: none;
}



:root {
    --orange : #4E2A74 ;
    --orange2 : #4E2A74 ;
    --orange-hover : #E53935;
    --orange-light : #4E2A74 ;
    --orange-light2 : #E53935;
    --grey : #767676;
    --blue: #0A2A66  ;
    --blue: #004c9b  ;
    --blue-hover: #091b3e ;
    --shadow: 0px 0px 10px #282a2e00  ;


    --orange : #E53935 ;  
    --orange2 : #E53935 ;
    --orange-hover :#4E2A74;
    --orange-light : #E53935 ;
    --orange-light2 : #E53935;  
    --blue: #000  ;
    --section-font :"{{landing_page.heading_font_family}}", serif;
    --allfont: "{{landing_page.font_family}}", sans-serif;

    --red: #E53935;
    --purple: #4E2A74;
    --border: #E5E7EB;
    --bg-color: #F4F4F4;
    --blue: #1F2937;
    --text: #434343;
}



.horizontal {
    display: flex;
}

.vertical {
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.max-width {
    max-width: 1512px;
    padding: 0 50px;
}

.max-width2 {
    max-width: 1900px !important;
    padding: 0 50px;
    margin: 0 auto;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-wrap{
    flex-wrap: wrap;
}


.btn-primary-orange{
    background-color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 4px;
    color: black !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
        align-items:center;
        justify-content:center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-primary-orange:hover{
    border: 1px solid var(--orange-hover);
    background-color: var(--orange-hover);

}



.btn-secondary-orange{
    background-color: transparent;
    border: 1px solid var(--orange);
    border-radius: 4px;
    color: var(--orange) !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;

    justify-content:center    
}

.btn-secondary-orange:hover{
    background-color: var(--orange-hover);
    border: 1px solid var(--orange-hover);
    color: white !important;
}


.btn-primary-blue{
    background-color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 4px;

    color: white !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;
    justify-content:center    
}

.btn-primary-blue:hover{
    background-color: var(--red) !important;
    border: 1px solid var(--red) !important;
}

.btn-primary-purple{
    background-color: var(--purple);
    border: 1px solid var(--purple);
    border-radius: 4px;

    color: white !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;
    justify-content:center    
}

.btn-primary-purple:hover{
    background-color: var(--red) !important;
    border: 1px solid var(--red) !important;
}


.btn-primary-white{
    background-color: white;
    border: 1px solid white;
    border-radius: 4px;

    color: var(--purple) !important;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;
    justify-content:center    
}

.btn-primary-white:hover{
    background-color: var(--red) !important;
    border: 1px solid var(--red) !important;
    color: white !important;
}


.btn-secondary-purple{
    background-color: transparent;
    border: 1px solid var(--purple);
    border-radius: 4px;

    color: var(--purple); 
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;
    justify-content:center    
}

.btn-secondary-purple:hover{
    background-color: var(--red);
    border: 1px solid var(--red);
    color: white;
}




.btn-secondary-blue{
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 4px;

    color: var(--blue); 
    font-size: 16px;
    cursor: pointer;
    padding: 8px 20px;
    display:flex;
    align-items:center;
    justify-content:center    
}

.btn-secondary-blue:hover{
    background-color: var(--red);
    color: white;
}


.custom-label{
    font-size: 15px;
    font-weight:500;    
}
 
.custom-input{
    width: 100%;
    height: 35px;
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid #434343;
    resize: vertical;
}

/* Target the file input's button using ::file-selector-button */
.custom-input[type="file"]::file-selector-button {
    background-color: var(--orange); /* Blue background */
    color: white; /* White text */
    border: none;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



/* Change the button on hover */
.custom-input[type="file"]::file-selector-button:hover {
    background-color: var(--blue);
}

/* Style the input's outer area */
.custom-input[type="file"] {
    font-size: 16px;
    border: none;
    padding: 0px;
    border-radius: 5px;
    width: 100%;
}

/* Optional: Hide default input appearance */
.custom-input[type="file"] {
    color: black; /* Hide filename text */
}   

.asterik{
    color: red;
}












.custom-gpt-menu {
    max-width: 400px;
    /* border: 1px solid #ccc; */
    /* border-radius: 5px; */
    color: #000 !important;
    /* border-bottom: 1px solid var(--orange); */
}

.custom-gpt-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    /* border: 1px solid #ccc; */
    /* margin: 5px 0; */
    border-radius: 5px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.custom-gpt-menu-item:hover {
    /* background-color: #f0f0f0; */
}

.custom-gpt-submenu {
    margin-left: 20px;
    display: none;
}

.custom-gpt-submenu-item {
    cursor: pointer;
    padding: 8px;
    /* margin: 5px 0; */
    border-radius: 5px;
    background-color: #f7f7f7;
    transition: background-color 0.3s;
}

.custom-gpt-submenu-item:hover {
    /* background-color: #e7e7e7; */
}

.custom-gpt-caret {
    color: var(--orange);
    font-size: 16px;
    transition: transform 0.3s;
}

.custom-gpt-caret.custom-gpt-rotate {
    transform: rotate(180deg);
}

.question-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--orange);
    padding: 20px;

}

.question-wrapper{
    border-bottom:  1px solid var(--orange);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    color: #767676;
}
.question-text{
    color: var(--blue-hover);
    font-weight: 500;
}

.category-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}


.category-text{
    font-size: 10px;
    color: var(--purple);
    border: 1px solid var(--purple);
    padding: 5px 10px;
    border-radius: 2px;
}

.custom-scroll{
    padding-right: 10px;
}

.custom-scroll::-webkit-scrollbar{
    width: 5px;

}

.custom-scroll::-webkit-scrollbar-thumb{
    background-color: var(--orange);
    border-radius: 10px;
}


.detail-custom-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-custom-container span{
    display: inline-block;
    max-width: 200px;
    line-height: 20px;
}

.detail-custom-container b{
    color: var(--orange);
    display: inline-block;
    width: 70px;
}



.end{
    height: 200px;
    width: 100%;
}


.pagination button{
    background-color: var(--orange);
    color: white;
    border-radius: 2px;
    border:0px
}

.pagination button:hover{
    background-color: var(--orange-light);
}

#quotes-per-page{
    border: 1px solid var(--orange);
    border-radius: 2px;
}


.quote-body p{
    display: inline-block !important;
}


.tooltip {
    position: relative;
}

.tooltip:hover::after {
    content: attr(title); /* Use the title attribute value */
    position: absolute;
    bottom: 100%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange); /* Blue background for tooltip */
    color: white; /* White text */
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: 120%; /* Hidden by default */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}



.ribbon {
    position: absolute;
    right: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px;
    text-align: right;
  }
  .ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: var(--orange-hover);
    background: linear-gradient(var(--orange) 0%, var(--orange-hover) 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; right: -21px;
  }
  .ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid var(--orange-hover);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--orange-hover);
  }
  .ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--orange-hover);
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--orange-hover);
  }


  
.login-container{
    min-height: 1000px;
    width: 100%;
    max-width: 770px;
    background: url(/static/media/loginbg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 35px;
}

.slam-img{
    height: 120px;
}

.page-title-login{
    font-size: 30px;
    margin: 20px auto;
}

.login-form-label{
    font-size: 20px;
}

.login-form-input{
    width: 100%;
    padding: 15px 10px;
    border: 1px solid var(--orange);
    border-radius: 10px;
}

.custom-padding{
    padding: 0 50px ;
}

.custom-table{
    width: 100%;
    border-collapse: collapse;
}
.custom-table .table-head{
    background-color: var(--orange) !important;
}

.table-head th{
    padding: 10px;
    text-align: left;
}

.table-head th:first-child{
    border-radius: 10px 0 0 0 ;
}

.table-head th:last-child{
    border-radius: 0 10px 0 0;
}

.custom-table td{
    padding: 10px;
}
.custom-table tr:nth-child(odd){
    background-color: #f2f2f2;
}


.courses-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}

.course-card{
    /* background-color: var(--orange); */
    height: 400px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.course-play-btn{
    font-size: 90px;
    color: lightskyblue;
    position: absolute;
    bottom: 120px;
    z-index: 1;
    /* left: 150%; */
    left: calc(100% - 50px);
    transform: translate(-50%, 50%);
    transition: .5s;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px;
    width: 80px;

}


.course-card img{
    height: calc(100% - 100px);
    width: 100%;
    transition: .5s;
}

.course-card .card-info{
    position: absolute;
    bottom: 0;
    height: 100px;
    background-color: #ffffff;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 15px;
    width: 100%;
}

.course-card:hover .card-info{
    height: 100%;
    padding-top: 50px;
}
.course-card:hover img{
    height: 100%;
}

.course-card:hover .course-play-btn{
    left: 50%;
    bottom: 50%;
}
.extra-pad{
    padding: 50px;
}

.courese-detail-img{
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--orange);
}

.section-sub-heading{
    font-size: 20px;
    color: var(--orange);
}


.lecture-heading{
    width: 100%;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--orange);
}

.lecture-content{
    /* padding: 15px; */
    height: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.price-container{
    min-height: 250px;
    border-radius: 10px;
    border: 1px solid var(--orange);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price{
    font-size: 30px;
    color: var(--orange-hover);
}

.video-container{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.video-container video{
    width: 100%;
    height: 80vh;
    max-height:900px ;
    object-fit: cover; 


}

.overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #282a2e30 !important;
}

.hero-text-2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    /* text-align: center; */
    font-size: 50px;
    /* color: var(--orange); */
    color: white;
    /* text-shadow: 1px 1px black; */
    font-weight: 700;
    z-index: 20;
    font-family: "Playfair", serif !important;
}


.spacer{
    height: 100px;
    width: 100%;
    /* background-color: red; */
}



.swiper-slide img{
    object-fit: cover;
}







.navbar-font ul li a {
    font-family: var(--section-font) !important;
    font-weight: 600;
}

.same-font-heeding{
    font-family: var(--section-font) !important;
    font-weight: 600;
    letter-spacing:normal;
}



.articles-2-line{

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}


.ql-align-center{
    text-align: center;
}

.ql-align-right{
    text-align: right;
}

.ql-align-justify{
    text-align: justify;
}


.hero-section-text-1{
    color: var(--blue);
    font-size: 30px
}

.hero-section-main-text{
    color: var(--blue);
    font-size: 60px;
    font-weight:600;
}

.hero-section-v2{
    height: 80vh;
    max-height: 800px;
    background-color: var(--bg-color);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: flex-start;
}
.sheikh-hero-image img{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: contain;
    object-position: right;
    /* opacity: 0.5; */
}
.status-bar-v2{
    height: 150px;
    width: 100%;
    background-color: var(--purple);
}
.status-bar-card-v2{
    height: 150px;
    width: 100%;
    display: flex;
    /* background-color: red; */
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-size: 24px;
    gap: 10px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

.status-bar-title{
    font-size: 50px;
    font-weight: 600;
}

.section-margin{
    height: 150px;
}

.section-margin-half{
    height: 75px;
}


.sub-menu{
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    color: black;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    top: 100%;
    width: 120px;
    left: 0;
    /* padding: 10px; */
}

.sub-menu-items-v2{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    color: black;
    gap: 15px;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    transition: 0s;
}


.sub-menu-items-v2:hover{
    color: white;
    background-color: var(--purple) !important;

}

.nav-menu-items-v2:hover .sub-menu{
    display: flex;
}
.sheikh-hero-image {
    /* position: relative;
    overflow: hidden;
    height: 400px; adjust based on image height */
}

.sheikh-hero-image .welcome-image {

    opacity: 0;
    transition: all 1s ease-in-out;
    overflow: hidden;
    animation: slide-out 4s forwards;
    /* background-color: red; */

}

.sheikh-hero-image .welcome-image.active {
    left: 0;
    opacity: 1;
    animation: slide-in 2s forwards;
    /* background-color: red !important; */
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
    
}

@keyframes slide-out {
    0% {
        transform: translateX(0%);
        opacity: 0;
    }

    50% {
        opacity: 1;

    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.sheikh-hero-image .welcome-image.exit-right {
    left: 100%;
    opacity: 0;
}

.status-bar-title {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.status-bar-title.visible {
    opacity: 1;
}

.about-us-description{
    font-size: 16px;
    color: var(--blue);
    font-weight: 400;
    line-height: 22.8px;
    letter-spacing: 1.5%;
}

.event-container{
    /* background-color: white; */
    padding: 20px;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.timeline-container{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 20px;
    height: 300px;
    width: 150px;
    overflow: auto;
}

.event-btns{
    border: none;
    padding: 10px;
    background-color: white;
    color: var(--purple);
    border-radius: 2px;
    text-align: start;
    cursor: pointer;
}

.event-btns:hover{
    background-color: var(--purple);
    color: white;
}

.event-btns.active{
    background-color: var(--purple);
    color: white;
}


.eventdetail-container{
    height: 300px;
    overflow: auto;
    margin-top: 20px;
}

.event-detail-card{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-radius: 5px;
    background-color: #fcfcfc;
    font-size: 14px;
    font-weight: 400;
}


.event-detail-title{
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
}

.event-detail-date{
    font-size: 10x;
}

.event-detail-readmore{
    font-size: 12px;
    color: var(--red) ;
    cursor: pointer;
}

.event-detail-readmore:hover{
    font-weight: 700;
}

.testimonials-container .testimonials-card{
    margin-top: 20px;
    cursor: grab;
}