    /*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian Sidik
Template Name : Freeman - Multipurpose Personal One Page Html Template
Version       : 1.0
Filename      : main.css
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
    - loadder 
* 02.HEADER SECTION.
    - navigation 
* 03.HERO SECTION. 
* 04.ABOUT SECTION.
* 05.SERVICES SECTION.
* 06.PORTFOLIO SECTION.
* 07.CONTACT SECTION.
* 08.FOOTER SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    @import url(./vendor/bootstrap/bootstrap.css);
    @import url(./vendor/fontawesome/all.min.css);
    @import url(./vendor/keen-slider.css);
    @import url(./vendor/glightbox.css);
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 700;
        src: url("../font/Poppins-Bold.woff2") format("woff2");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 600;
        src: url("../font/Poppins-SemiBold.woff2") format("woff2");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 400;
        src: url("../font/Poppins-Regular.woff2") format("woff2");
        font-display: swap;
    }
    /*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
* ----------------------------------------------------------------------------------------
*/
    
    * {
        -webkit-font-smoothing: antialiased;
    }
    
    body {
            font-family: 'Droid Arabic Kufi','Poppins', sans-serif;

        font-size: 15px;
        font-weight: 400;
        background: #89CFF0;
        color: #181715;
        text-rendering: optimizeLegibility;
    }
    
     ::selection {
        background: #ddaa01;
        color: #ffffff;
    }
    
    a:hover {
        text-decoration: none;
    }
    
    .fixid {
        background: #89CFF0;
        box-shadow: 0 0 10px 5px rgb(1 150 221 / 30%);
    }
    
    label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    input,
    textarea {
        padding: 10px;
        font-size: 13px;
        width: 100%;
        color: #181715;
        background: transparent;
        border: 2px solid rgba(25, 26, 30, .5);
        border-radius: 3px;
    }
    
    textarea {
        height: 150px;
    }
    
    .goverlay {
        background: #89CFF0;
    }
    
    .linkbtn {
        background: #181715;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
    }
    
    .linkbtn:hover {
        color: #ffffff;
    }
    
    .navigation-wrapper {
        position: relative;
    }
    
    .dots {
        display: flex;
        padding: 5px 0;
        justify-content: center;
    }
    
    .dot {
        border: none;
        width: 20px;
        height: 2px;
        background: #027a7a;
        border-radius: 3px;
        margin: 10px 5px;
        padding: 3px;
        cursor: pointer;
    }
    
    .dot:focus {
        outline: none;
    }
    
    .dot--active {
        background: #181715;
    }
    /*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
- preloader
* ----------------------------------------------------------------------------------------
*/
    
    .preloader {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999999999 !important;
        background-color: #89CFF0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .preloader .preloader__img {
        display: inline-block;
        position: absolute;
        width: 150px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    /*
* ----------------------------------------------------------------------------------------
* 02.HEADER SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #headermain {
        padding: 10px 0 10px;
        position: fixed;
        width: 100%;
        z-index: 3;
    }
    /*
* ----------------------------------------------------------------------------------------
* 02.HEADER SECTION. 
- navigation
* ----------------------------------------------------------------------------------------
*/
    
    .navpage__wrap {
        padding: 10px 0 0;
        margin: 0;
    }
    
    .navpage__wrap li {
        list-style: none;
        display: inline-block;
        margin: 0 3px;
    }
    
    .navpage__wrap li a {
        font-size: 15px;
        font-weight: 500;
        position: relative;
        color: #181715;
        z-index: 1;
        padding: 5px 15px;
        border-radius: 50px;
    }
    
    .navpage__wrap li a:hover {
        text-decoration: none;
        color: #ffffff;
        background: #181715;
    }
    
    .navpage__wrap li a.activelink {
        color: #ffffff;
        background: #181715;
    }
    
    .navicon {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 22;
        border-radius: 25px;
    }
    
    .navicon__bar {
        width: 18px;
        height: 1px;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0);
        transition: all .3s;
    }
    
    .navicon__bar:before,
    .navicon__bar:after {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        background: #181715;
    }
    
    .navicon:hover .navicon__bar:before,
    .navicon:hover .navicon__bar:after {
        background: #181715;
    }
    
    .navicon__bar:before {
        transform: rotate(0deg) translate(0px, -4px);
    }
    
    .navicon__bar:after {
        transform: rotate(0deg) translate(0px, 4px);
    }
    
    .navicon.active .navicon__bar:before {
        transform: rotate(-45deg) translate(0px, 0px);
    }
    
    .navicon.active .navicon__bar:after {
        transform: rotate(45deg) translate(0px, 0px);
    }
    
    .navicon.active:hover .navicon__bar .navicon__bar:before {
        transform: rotate(0deg) translate(0px, 0px);
    }
    
    .navicon.active:hover .navicon__bar .navicon__bar:after {
        transform: rotate(0deg) translate(0px, 0px);
    }
    
    .overlay {
        position: fixed;
        width: 100%;
        height: auto;
        z-index: 2;
        top: -100%;
        display: none;
        background: #89CFF0;
        padding: 80px 0 30px 0;
        border-bottom: 1px solid #ddaa01;
    }
    
    .overlay__listnav {
        padding: 0 0 0 20px;
    }
    
    .overlay__listnav li {
        list-style: none;
        margin: 10px 0;
    }
    
    .overlay__listnav li a {
        font-size: 18px;
        font-weight: 500;
        position: relative;
        color: #181715;
        padding: 5px 10px;
        border-radius: 50px;
    }
    
    .overlay__listnav li a:hover {
        color: #ffffff;
        text-decoration: none;
        background: #181715;
    }
    
    .openmenu .overlay {
        display: block;
        top: -1px;
    }
    /*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #sectionhero {
        padding: 100px 0 0;
    }
    
    .infohero__p {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 5px 20px;
        color: #ffffff;
        display: inline-block;
        background: #181715;
    }
    
    .infohero__title {
        font-size: 80px;
        font-weight: 600;
        text-shadow: 5px 5px #00c4ff;
    }
    
    .infohero__title span {
        display: block;
    }
    
    .heroimg {
        height: 350px;
        width: 350px;
        margin: 0 auto;
    }
    
    .heroimg .heroimg__poto {
        border-radius: 100%;
        height: 350px;
        width: 350px;
        object-fit: cover;
        box-shadow: 20px 20px 1px 1px #0196dd;
        border: 7px solid;
    }
    
    #typed-text {
        /*letter-spacing: 3px;*/
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .herolink {
        display: inline-block;
    }
    /*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #aboutsection {
        height: auto;
        background: #ffffff;
        padding: 50px 0 0;
    }
    
    .abouthero h3 {
        font-size: 50px;
        font-weight: 600;
    }
    
    .infoabout__list {
        padding: 0;
    }
    
    .infoabout__list li {
        list-style: none;
    }
    
    .infoabout__wrap .infoabout__title {
        color: #181715;
        letter-spacing: 1px;
        font-weight: 700;
    }
    /*
* ----------------------------------------------------------------------------------------
* 05.SERVICE SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #servicesection {
        background: #89CFF0;
        height: auto;
        padding: 0 0 0;
    }
    
    .counterwrap {
        text-align: center;
    }
    
    .counterwrap__counternum {
        font-size: 30px;
        font-weight: 700;
    }
    
    .wrapservice {
        padding: 20px;
    }
    
    .wrapservice i {
        font-size: 30px;
        background: #89CFF0;
        padding: 20px 20px;
        border-radius: 100%;
    }
    
    .wrapservice__title {
        font-size: 20px;
        font-weight: 600;
    }
    /*
* ----------------------------------------------------------------------------------------
* 06.PORTFOLIO SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #portfoliosection {
        background: #ffffff;
        height: auto;
    }
    
    #porfoliowarp {
        padding-top: 50px;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        z-index: 1;
    }
    
    .grid-gutter-md {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .porfoliowarp__item {
        cursor: pointer;
        margin: 0;
        position: relative;
        float: right;
        padding: 10px;
        width: 33.3333%;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .porfoliowarp__content {
        border-radius: 5px;
        height: 350px;
        width: 100%;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .porfoliowarp__item:hover .porfoliowarp__content {
        background-color: #ddaa01;
        opacity: .5;
    }
    
    .porfoliowarp__portolink i {
        position: absolute;
        z-index: 1;
        color: #181715;
        opacity: 0;
        font-size: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        transition: all .3s;
    }
    
    .porfoliowarp__item:hover i {
        opacity: 1;
    }
    
    #filterwrap {
        padding: 0;
        margin: 30px 0;
    }
    
    #filterwrap li {
        display: inline-block;
        list-style: none;
        margin: 0 5px;
        padding: 5px 20px;
        cursor: pointer;
        border: 1px solid #181715;
    }
    
    #filterwrap li.active {
        background: #181715;
        color: #ffffff;
    }
    /*
* ----------------------------------------------------------------------------------------
* 07.CONTACT SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #contactsection {
        height: auto;
        background: #89CFF0;
        padding: 0 0 50px;
    }
    
    .contactdetail__title {
        font-size: 30px;
        font-weight: 600;
    }
    
    .contactdetail__list {
        padding: 0;
    }
    
    .contactdetail__list li {
        list-style: none;
        position: relative;
        margin: 20px 0;
    }
    
    .contactdetail__span {
        font-weight: 600;
    }
    
    .contactdetail__sosmed {
        padding: 0;
    }
    
    .contactdetail__sosmed li:first-child {
        margin: 10px 10px 0 0;
    }
    
    .contactdetail__sosmed li {
        list-style: none;
        margin: 10px 10px 10px;
        display: inline-block;
    }
    
    .contactdetail__sosmed li a {
        color: #181715;
        font-size: 30px;
    }
    /*
* ----------------------------------------------------------------------------------------
* 08.FOOTER SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    .footwrap p {
        font-size: 13px;
        letter-spacing: 1px;
    }



    /*
* ----------------------------------------------------------------------------------------
* Accordion
* ----------------------------------------------------------------------------------------
*/

/* Accordion styles */
.accordion {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    background: #f7f7f7;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.accordion-header:hover {
    background: #e2e2e2;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content.show {
    max-height: 200px; /* Adjust based on the content size */
    padding: 15px;
}


.section {
	background-color: #fff;
	border-radius: 5px;
	margin: 15px 0;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.section-header {
	background-color: #007bff;
	color: #fff;
	padding: 15px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
}
.lectures {
	display: none;
	padding: 15px;
	transition: max-height 0.3s ease;
}
.lecture-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #e4e4e4;
}
.lecture-item:last-child {
	border-bottom: none;
}
.lecture-title {
	font-size: 16px;
	text-align: right;
	color: #333;
}
.lecture-details {
	display: flex;
	align-items: center;
}
.lecture-duration {
	font-size: 14px;
	color: #666;
	margin-left: 10px;
}
.view-btn {
	background-color: #28a745;
	color: #fff;
	border: none;
	padding: 5px 10px;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin: 0 0.3rem;
}
.view-btn:hover {
	background-color: #218838;
}
.a_view{
	color: white;
}

.a_view:hover{
	color: white;
}

.strikethrough {
	position: relative;
	display: inline-block;
	font-weight: normal; /* جعل النص عادي */
}
.strikethrough::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 8px; /* سمك الخط */
	background: black; /* لون الخط */
	transform: rotate(-15deg); /* زاوية الميل */
	transform-origin: center;
}

.circle {
    background-color: red;
    color: #ffffff;
    /* width: 50px; */
    /* height: 50px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'FontAwesome';
    padding: 1rem;
}


.text_desc_info {
	margin: 2rem 0;
    text-align: justify;
}

    #notifications {
        position: fixed;
        bottom: 20px;
        right: 20px;
        max-width: 95%; /* الحد الأقصى للعرض لتجنب كسر الصفحة */
        z-index: 1000;
		text-align: right;
    }

    @media (max-width: 600px) {
        
	.show_image{
		    width: 20rem;
	}
        
        #notifications {
            right: 1px; /* المسافة من اليمين للأجهزة الصغيرة */
			font-size: 13px;
        }
    }

.countdown {
	display: flex;
	justify-content: space-around;
}
.countdown_box{
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color: white;
	background-color: red;
}
.time {
	font-size: 48px;
	font-weight: bold;
	margin: 0 10px; /* تباعد بين العناصر */
}
.label {
	font-size: 20px;
	margin-top: -10px;
	text-align: center; /* محاذاة النص في الوسط */
}
.left_time {
    font-size: 32px;
}







@media (max-width: 767px){
    
	.show_image{
		    width: 22rem;
	}
	.instapay_image{
		    width: 340px;
	}
	.view-btn {
		padding: 2px 5px;
	}
	.section-header {
		font-size: 14px;
		font-weight: bold;
	}
	.lecture-title {
		font-size: 14px;
	}
	.lecture-duration {
		font-size: 13px;
	}
}
@media (min-width: 768px) and (max-width: 991px){
    
	.show_image{
		    width: 46rem;
	}
	.instapay_image{
		    width: 450px;
	}
	.view-btn {
		padding: 2px 5px;
	}
	.section-header {
		font-size: 14px;
		font-weight: bold;
	}
	.lecture-title {
		font-size: 15px;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.show_image{
		    width: 65rem;
	}
    
	.instapay_image{
		    width: 450px;
	}
	.view-btn {
		padding: 5px 10px;
	}
}
@media (min-width: 1200px){
    
	.show_image{
		    width: 65rem;
	}
    
    
	.instapay_image{
		    width: 450px;
	}
	.view-btn {
		padding: 5px 10px;
	}
}

