    /*
* ----------------------------------------------------------------------------------------
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;
	}
}


.accordion2 {
  width: 100%;
  margin: 25px 0;
  font-family: 'Tajawal', sans-serif;
}

.accordion-item2 {
  border: 1px solid #e8e8e8;
  margin-bottom: 15px;
  border-radius: 14px;
  background: #f9f9f9;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* الجزء الظاهر */
.visible-part {
  padding: 20px;
  padding-bottom: 0;
}

.visible-part h2,
.visible-part h3 {
  margin-bottom: 10px;
}

/* زرار الفتح */
.accordion-header2 {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d1d4d9;
  border-top: 1px solid #eee;
  transition: 0.25s;
}

.accordion-header2:hover {
  background: #eef1f5;
}

.accordion-header2 span {
  transition: transform 0.3s ease;
  font-size: 22px;
}

/* الجزء المخفي */
.accordion-content2 {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.accordion-content2.open {
  padding: 20px;
  opacity: 1;
}

.hidden-part p,
.hidden-part ul,
.hidden-part hr {
  margin-bottom: 15px;
}

.hidden-part ul {
  padding-left: 20px;
}

.proof_section {
    padding: 14px 0 60px 0;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
}

.proof_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

/* الحاوية */
.stack_container {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: auto;
    height: 420px;
}

/* كل كارت */
.stack_card {
    position: absolute;
    width: 260px;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stack_card img {
    width: 100%;
    border-radius: 12px;
}

/* ترتيب الكروت */
.card1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
}

.card2 {
    top: 100px;
    right: 0;
    transform: rotate(2deg);
}

/* لو عندك صورة 3 */
.card3 {
    top: 200px;
    left: 80px;
    transform: rotate(-2deg);
}

/* Hover Effect جميل */
.stack_card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* موبايل */
@media (max-width: 600px) {

    .stack_container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stack_card {
        position: relative;
        width: 90%;
        margin: auto;
        transform: rotate(0deg) !important;
    }
}


.free_lecture {
    margin: 30px 0;
    text-align: center;
    font-family: 'Tajawal';
}

.video_wrapper {
    max-width: 520px;
    margin: 25px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video_wrapper iframe {
    width: 100%;
    height: 420px;
}

@media (max-width: 480px) {
    .video_wrapper iframe {
        height: 220px;
    }
}
.hero_promise {
    font-family: 'Tajawal', sans-serif;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eef6ff 0%, #e0ecff 100%);
    border-radius: 7px;
    margin-bottom: 2rem;
}

/* خلفيات متحركة */
.hero_promise::before,
.hero_promise::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(59,130,246,0.18);
    filter: blur(85px);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate;
    z-index: 1;
}
.hero_promise::before { top: -40px; left: -40px; }
.hero_promise::after { bottom: -40px; right: -40px; animation-delay: 2s; }

.hero_inner {
    max-width: 850px;
    margin: auto;
    position: relative;
    z-index: 5;
}

/* العنوان */
.hero_title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 14px;
}
.hero_title span {
    display: block;
    font-size: 26px;
    margin-top: 6px;
    color: #1d4ed8;
}

/* النص */
.hero_sub {
    font-size: 18px;
    margin-bottom: 16px;
    color: #334155;
}

/* الملاحظة */
.hero_note {
    font-size: 15px;
    color: #475569;
    background: #ffffffd5;
    display: inline-block;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    margin-top: 10px;
}
.hero_note strong { color: #1e293b; }
.hero_note em { color: #1e40af; font-weight: 700; }

/* ------------ ANIMATIONS ------------ */

/* لازم opacity 0 الأول */
.animate_fade,
.animate_fade_delay,
.animate_fade_delay2 {
    opacity: 0;
}

@keyframes fade_up {
    0%   { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate_fade {
    animation: fade_up 0.9s ease forwards;
}

.animate_fade_delay {
    animation: fade_up 1.4s ease forwards;
}

.animate_fade_delay2 {
    animation: fade_up 1.9s ease forwards;
}

/* حركة الخلفية */
@keyframes float {
    from { transform: translateY(0px); }
    to   { transform: translateY(20px); }
}

/* موبايل */
@media (max-width: 600px){
    .hero_title { font-size: 26px; }
    .hero_title span { font-size: 20px; }
    .hero_sub { font-size: 16px; }
}



.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}



.main_cta_btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: #ff6600; /* لون برتقالي فاقع */
    color: #fff !important;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-orange 2s infinite; /* تأثير النبض */
}

.main_cta_btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.4);
    color: #fff;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* لجعل الزر متجاوب مع الموبايل */
@media (max-width: 768px) {
    .main_cta_btn {
        font-size: 18px;
        padding: 15px 25px;
        width: 90%;
    }
}
    .scarcity_bar_fixed {
    background: #fff;
    border: 2px solid #ffd700;
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto 35px;
    max-width: 500px;
    position: relative;
    /* تأكيد الظهور */
    opacity: 1 !important; 
    visibility: visible !important;
    display: block;
    /* التوهج الدائم */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    text-align: center;
    direction: rtl;
}

/* تأثير التوهج النابض */
@keyframes glow-pulse {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 25px rgba(255, 102, 0, 0.7); transform: scale(1.02); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.4); transform: scale(1); }
}

.scarcity_bar_fixed {
    animation: glow-pulse 2s infinite ease-in-out;
}

.num_highlight {
    color: #e63946;
    font-size: 24px;
    font-weight: 900;
}

.spots_left {
    display: block;
    font-size: 14px;
    color: #e63946;
    margin-top: 5px;
}

.custom_progress {
    background: #eee;
    height: 12px;
    border-radius: 10px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.fill_progress {
    background: linear-gradient(90deg, #ff6600, #ffd700);
    height: 100%;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.student_status {
    font-size: 15px;
    color: #444;
}

.glow_pulse_dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: #e63946;
    border-radius: 50%;
    box-shadow: 0 0 10px #e63946;
    animation: blink-red 1s infinite;
}

@keyframes blink-red {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
    
    
.comparison_section {
    padding: 60px 0;
    background-color: #fff;
}

.comparison_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.comparison_table th, .comparison_table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

/* تلوين الرأس */
.comparison_table thead th {
    background: #f8f9fa;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

/* تمييز عمود الكورس الخاص بك */
.comparison_table .our_course {
    background: #e6f7ff; /* لون سماوي فاتح جداً */
    color: #007bff;
    border-left: 2px solid #007bff;
    border-right: 2px solid #007bff;
    position: relative;
}

.comparison_table th.our_course {
    background: #007bff !important;
    color: #fff !important;
}

/* تمييز عمود المنافسين */
.comparison_table .competitor {
    background: #fff5f5;
    color: #c0392b;
}

/* تحسين شكل النصوص داخل عمود الكورس */
.comparison_table td.our_course {
    font-weight: bold;
    color: #2c3e50;
}

/* علامات الصح والخطأ (اختياري لو حابب تضيفها قبل النص) */
.comparison_table td:nth-child(2)::before {
    content: "❌ ";
    font-size: 14px;
}

.comparison_table td:nth-child(3)::before {
    content: "✅ ";
    font-size: 14px;
}

/* موبايل */
@media (max-width: 768px) {
    .comparison_table th, .comparison_table td {
        padding: 12px 8px;
        font-size: 13px;
    }
}
 
.bonuses_section {
    padding: 80px 0;
    background: #f0f4f8; /* خلفية هادية عشان تبرز الكروت */
}

.bonus_box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ed;
}

.bonus_badge {
    background: #ffcc00;
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.bonus_title {
    font-size: 36px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
}

.bonus_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.bonus_card:hover {
    transform: translateY(-10px);
}

.gold_border {
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.blue_border {
    border: 2px solid #00c4ff;
    box-shadow: 0 10px 30px rgba(0, 196, 255, 0.15);
}

.bonus_icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.bonus_card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.bonus_card p {
    font-size: 15px;
    line-height: 1.7;
    color: #636e72;
}

.bonus_tag, .bonus_tag_all {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.bonus_tag { background: #fff3cd; color: #856404; }
.bonus_tag_all { background: #d1ecf1; color: #0c5460; }

.bonus_footer p {
    font-weight: bold;
    color: #e63946;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .bonus_title { font-size: 28px; }
    .bonus_card { padding: 30px 20px; }
}
    
/* تنسيق الكارت الأخضر (الوصول الدائم) */
.green_border {
    border: 2px solid #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}/* تنسيق الكارت الأخضر (الوصول الدائم) */
.red_border {
    border: 2px solid #cc2e2e;
    box-shadow: 0 10px 30px rgb(204 46 46 / 15%);
}

.bonus_tag_lifetime {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    background: #d4edda;
    color: #155724;
}

/* تعديل عرض الكروت لتناسب 3 في الصف */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* مسافة بين الكروت ميرجن توب */
.bonuses_section .col-lg-6 {
    margin-top: 30px;
}

/* تأثير الوميض والتنبيه لكارت حساب n8n */
.bonus_flash_card {
    position: relative;
    overflow: hidden;
    animation: flash-border 1.5s infinite; /* وميض الإطار */
}

@keyframes flash-border {
    0% { border-color: #cc2e2e; box-shadow: 0 10px 30px rgba(204, 46, 46, 0.15); }
    50% { border-color: #ff0000; box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5); transform: scale(1.02); }
    100% { border-color: #cc2e2e; box-shadow: 0 10px 30px rgba(204, 46, 46, 0.15); }
}

/* شارة صغيرة فوق الكارت "الأكثر طلباً" */
.hot_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #cc2e2e;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.top_promo_bar {
    background: #000; /* خلفية سوداء فخمة */
    color: #fff;
    padding: 10px 0;
    text-align: center;
    direction: rtl;
    font-size: 16px;
    position: relative;
    z-index: 9999;
    border-bottom: 2px solid #ff0000;
    /* أنيميشن الوميض للخلفية بالكامل */
    animation: bar-glow 3s infinite;
}

.promo_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.n8n_text {
    color: #ff6600;
    font-weight: 900;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
}

.promo_link {
    background: #ff0000;
    color: #fff !important;
    padding: 2px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
    animation: pulse-button 1.5s infinite;
}

/* تأثير الوميض للخلفية */
@keyframes bar-glow {
    0% { background-color: #000; }
    50% { background-color: #1a0000; } /* يميل للاحمرار الخفيف */
    100% { background-color: #000; }
}

/* تأثير النبض للزر */
@keyframes pulse-button {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* أيقونة الهدية المتحركة */
.flash_icon {
    display: inline-block;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0); }
}

/* للجوال */
@media (max-width: 768px) {
    .top_promo_bar {
        font-size: 13px;
        padding: 8px 5px;
    }
    .promo_link {
        display: block;
        margin: 5px auto 0;
        width: fit-content;
    }
}

.feedback_custom_slider {
    padding: 60px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.slider_container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.slider_wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slide_item {
    min-width: calc(33.333% - 14px); /* عرض 3 صور في الديسكتوب */
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.slide_item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* أزرار التنقل */
.slider_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #ff6600;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider_btn.prev { left: -10px; }
.slider_btn.next { right: -10px; }

.slider_btn:hover { background: #ff6600; color: #fff; }

/* النقاط */
.slider_dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active { background: #ff6600; width: 25px; border-radius: 10px; }

/* التجاوب مع الشاشات */
@media (max-width: 992px) {
    .slide_item { min-width: calc(50% - 10px); } /* صورتين في التابلت */
}

@media (max-width: 600px) {
    .slide_item { min-width: 100%; } /* صورة واحدة في الموبايل */
    .slider_container { padding: 0 10px; }
    .slider_btn { width: 35px; height: 35px; font-size: 16px; }
}                  
   