:root {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --font-family: Arial, Helvetica, sans-serif;
  --main-clr: #05141a;
  --sec-clr: #071722;
  --blue-circle-bg: #1f3a47;
  --arrow-clr: #8696a0;
  --main-green-clr: #1cb78a;
  --dark-green: #15555a;
  --dark-green-clr: rgba(0, 92, 75, 0.3);
  --light-green: #1cb78a;
  --read-green-clr: #25d366;
  --gray-green-clr: #b7d9cf;
  --white-clr: rgba(255, 255, 255, 1);
  --sec-light-green-clr: #EAFCF3;

  --light-yellow: #d0ce97;
  --blue-font-clr: #0e2637;
  --border-box-clr: rgba(255, 255, 255, 0.04);
  --border-cycle-clr: rgba(10, 31, 46, 1);
  --subtitle-clr: #cfe7df;
  --white-clr: #fff;
  --white-green-clr: #e6f7f0;

  direction: rtl;
}
.app-fs-7{
  font-size: 17px;
}
.insta-icon-clr{
  color: #E4405F !important;
}
.btn{
  box-shadow: none !important;
}
a{
  text-decoration: none;
  color: var(--gray-green-clr);
}
a:hover{
  color: var(--light-green);
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: var(--font-family);
  background: linear-gradient(180deg, var(--sec-clr) 0%, var(--main-clr) 100%);
  /* overflow-x: hidden; */
}

.container:not(.navbar .container) {
  border: 1px solid var(--border-box-clr);
  border-radius: 18px;
  box-shadow: 0 10px 30px 0 rgba(2, 8, 12, 0.6);

  padding: 25px 30px 50px;
}
/* start nav bar */
.custom-navbar {
  padding: 18px 0 23px 0;
}
.navbar-brand{
 max-width: 148px;
  min-width: 148px;
  /* height: 86px; */

}
.navbar-brand img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  aspect-ratio: 20/7;
}
.navbar-toggler {
  padding: 0.25rem 0.25rem;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--border-box-clr); /* your color */
}
.custom-navbar svg {
  margin-left: 5px;
}
.nav-link {
  color: var(--subtitle-clr) !important;
  font-size: 16px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link.active,
.nav-link:hover,
.custom-navbar .icon-btn:hover {
  color: var(--light-green) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  color: var(--subtitle-clr);
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.register-btn {
  border-radius: 10px;
  background: linear-gradient(180deg, #1cb78a 0%, #15555a 100%);
  box-shadow: 0 4px 12px 0 rgba(28, 183, 138, 0.2);
  padding: 9px 25.109px 11px 25px;
  font-size: 16px;
  border: none;
}
.custom-navbar .register-btn:hover {
  opacity: 0.9;
}

/* end nav bar */
/* start hero sec */
.hero-section {
  position: relative;
}
/* Image side */
.hero-section .video-box {
  /* position: relative;
  border-radius: 20px; */
  /* overflow: hidden; */
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px; 
}
.hero-section .main-img {
  border-radius: 20px;
}

.hero-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hero-section .video-label {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #b8c6c9;
}

.hero-section .vip-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #0f3b3f;
  color: #2dd4bf;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.in-mobile{
  display: none;
}
/* Content */
.hero-section .course-badge {
  border-radius: 10px;
  background: linear-gradient(180deg, #a2634b 0%, #15555a 100%);
  color: var(--white-clr);
  padding: 13px 7.031px 15px 10px;
  font-size: 16px;
}

.hero-section .course-title {
  font-size: 30px;
  margin-top: 2rem;
  color: var(--light-yellow);
}

.hero-section .course-desc {
  line-height: 25.6px;
  color: var(--subtitle-clr);
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-section .info-row {
  display: flex;
  flex-wrap: wrap;
}

.hero-section .info-box {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-green-clr);
  padding: 10px 14px 11.5px 30px;

  font-size: 16px;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.hero-section .actions .look-btn {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 27.313px 14px 28px;
  color: var(--white-clr);
  margin-right: 10px;
}
.hero-section .actions .register-now {
  border-radius: 14px;
  background: linear-gradient(180deg, #1cb78a 0%, #15555a 100%);
  box-shadow: 0 8px 20px 0 rgba(28, 183, 138, 0.14);
  padding: 10px 33.547px 14px 34px;
  color: var(--blue-font-clr);
  border: none;
}
.hero-section .feature-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  padding: 17px 17px 1px 17px;
  height: 148px;
}

.hero-section .feature-card h6 {
  color: var(--light-yellow);
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 17px;
}

.hero-section .feature-card p {
  font-size: 15px;
  color: var(--subtitle-clr);
}

/* end hero sec */
/* start about */
.about-section {
  padding: 80px 0;
}

.about-box {
  border: 1px solid var(--border-box-clr);
  border-radius: 18px;
  box-shadow: 0 10px 30px 0 rgba(2, 8, 12, 0.6);

  padding: 25px 30px 50px;
}

/* Badge */
.badge-custom, .badge-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--main-green-clr);
  background: linear-gradient(
    90deg,
    rgba(28, 183, 138, 0.2) 0%,
    rgba(21, 85, 90, 0.2) 100%
  );
  border: 1px solid rgba(28, 183, 138, 0.3);
}

/* Text */
.about-title {
  font-size: 32px;
  margin: 10px 0;
  color: var(--light-yellow);
}

.about-subtitle {
  color: var(--main-green-clr);
  font-size: 18px;
}

.about-desc , .book-section .description {
  font-size: 15px;
  color: var(--subtitle-clr);
  line-height: 27px;
}

/* Stats */
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.about-section .stat-card .stat_title {
  line-height: 20px;
}
.stat-card .icon_svg {
  background: linear-gradient(
    135deg,
    rgba(28, 183, 138, 0.2) 0%,
    rgba(21, 85, 90, 0.2) 100%
  );
  border-radius: 10px;
  padding: 7px 10px;
}

.stat-card h4 span, .stat-card h4 {
  color: var(--main-green-clr);
  font-size: 20px;
}

.stat-card span {
  font-size: 15px;
  color: var(--gray-green-clr);
}

.stat-card i {
  font-size: 22px;
  color: #1cb78a;
}

/* Image */
.image-wrapper {
  position: relative;
  border-radius: 22px;
  padding: 10px;
}
.col-lg-5.img-box {
  width: 39.9% !important;
}
.image-wrapper img {
  width: 100%;
  border-radius: 18px;
  position: relative;
  z-index: 9;
}
.layer_one {
  position: absolute;
  top: 0px;
  right: -16px;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: rotate(-3deg);
  border-radius: 16px;
  background: linear-gradient(
    315deg,
    rgba(28, 183, 138, 0.1) 0%,
    rgba(21, 85, 90, 0.1) 100%
  );
}
.layer_two {
  position: absolute;
  top: 9px;
  right: 13px;
  z-index: 2;

  width:100%;
  height: 100%;
  transform: rotate(3deg);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(28, 183, 138, 0.2) 0%,
    rgba(21, 85, 90, 0.2) 100%
  );
}
.image-badge {
  position: absolute;
  bottom: -23px;
  right: -15px;
  z-index: 100;
  background: linear-gradient(180deg, #1cb78a 0%, #15555a 100%);
  color: var(--blue-font-clr);
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 18px;
  box-shadow: 0 10px 30px 0 rgba(28, 183, 138, 0.4);
}
/* end about */
/* start testimonials */

.testimonials-section .badge-custom {
  color: var(--main-green-clr);
  background: linear-gradient(
    135deg,
    rgba(28, 183, 138, 0.2) 5%,
    rgba(21, 85, 90, 0.2) 60%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border: 1px solid rgba(28, 183, 138, 0.3);
  border-radius: 25px;
  font-size: 13px;
  /* font-weight: 00; */
  /* box-shadow: inset 0 0 12px rgba(28, 183, 138, 0.25); */
}

.section-title, .book-section .main-title {
  font-size: 28px;
  color: var(--light-yellow);
  /* margin-top: 10px; */
}

.testimonials-section .section-desc, .section-subtitle {
  color: var(--gray-green-clr);
  font-size: 16px;
}

.testimonials-section .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 3px;
  max-width: 400px;
  margin: auto;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial_img {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
}
.testimonials-section .testimonial-card img {
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
}

.testimonials-section .testimonial-card .check {
  position: absolute;
  bottom: -5px;
  right: 0px;
  z-index: 9999 !important;
  font-size: 20px;
  background-color: var(--read-green-clr);
  border-radius: 50%;
  border: 1px solid var(--border-cycle-clr);
  padding: 5px;
  width: 10%;
  height: 36%;
  box-shadow: none;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
  width: 45px;
  height: 45px;
  background: var(--blue-circle-bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.testimonials-section .carousel-control-prev i,
.testimonials-section .carousel-control-next i {
  color: var(--arrow-clr);
}
.testimonials-section .btn-custom {
  background: var(--dark-green-clr);
  color: var(--read-green-clr);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 33554400px;
  padding: 10px 25px;
  font-size: 16px;
}
.testimonials-section .btn-custom:hover {
  background: var(--dark-green-clr);
  color: var(--read-green-clr);
  opacity: 0.9;
}
.testimonials-section .slider-navigation {
  margin-top: 30px;
}
.testimonials-section .show-num {
  color: var(--arrow-clr);
}
.testimonials-section .nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.testimonials-section .nav-btn:hover {
  background: var(--dark-green);
  color: var(--main-green-clr);
}

.testimonials-section .dots {
  display: flex;
  gap: 6px;
}

.testimonials-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-circle-bg);
}

.testimonials-section .dot.active {
  width: 18px;
  border-radius: 10px;
  background: var(--read-green-clr);
}
.testimonials-section .carousel-item {
  padding: 10px 0;
}

.testimonials-section .testimonial-card {
  height: 100%;
}
/* in mobil */
.mobile-slider .testimonial-card {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-slider .testimonial_img {
  width: 100%;
}


/* end tesimonial */
/* start pricing cards */
/* ================= Pricing Section ================= */
.pricing-section {
  padding: 80px 0;
}

/* Title */
.badge-top, .small-badge, .top-badge {
border-radius: 33554400px;
border: 1px solid rgba(28, 183, 138, 0.30);
background: linear-gradient(90deg, rgba(28, 183, 138, 0.20) 0%, rgba(21, 85, 90, 0.20) 100%);
  padding: 9px 17px;
  display: inline-block;
  
  color: var(--light-green);
  font-size: 15px;
  margin-bottom: 1rem;
}


.pricing-card {
  border-radius: 14px;
border: 1px solid rgba(21, 85, 90, 0.12);
background: linear-gradient(180deg, rgba(21, 85, 90, 0.12) 0%, rgba(14, 38, 55, 0.12) 100%);
  padding: 30px;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.featured {
  border-radius: 14px;
border: 1px solid rgba(28, 183, 138, 0.50);
box-shadow: 0 0 30px 0 rgba(28, 183, 138, 0.20);
}

.badge-featured {
border-radius: 33554400px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  
  color: var(--blue-font-clr);
padding: 5px 16px 6.5px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
}

.plan-title {
  color: var(--light-yellow);
  margin-bottom: 15px;
  font-size: 16px;
}

.price {
  font-size: 32px;
  color: var(--light-green);
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--sec-light-green-clr);
}

.btn-buy {
  border-radius: 14px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 8px 20px 0 rgba(28, 183, 138, 0.14);
  color: var(--blue-font-clr);
  font-weight: bold;
  padding: 12px 25px;
  width: 100%;
  border: none;
}

.btn-buy:hover {
  opacity: 0.9;
}

.hide-me{
  visibility: hidden;
}




/* .section-title {
  font-size: 20px;
  color: var(--light-yellow);
} */



/* Card */
/* .pricing-card {                    offer
  position: relative;
  height: 100%;
  padding: 30px 24px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
} */

/* Active middle card */
/* .pricing-card.active {
  outline: 2px solid rgba(28, 183, 138, 0.5);           offer
} */

/* Discount badge */
/* .discount-badge {                               offer
  position: absolute;
  top: -14px;
  left: 20px;
  background: #ff4d4f;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
} */

/* Plan */
/* .plan-title {            offer
  margin-top: 20px;
  font-size: 18px;
  color: #9fe6d2;
} */

/* Price */
/* .price-box {                    offer
  margin: 20px 0;
}

.old-price {                     offer
  text-decoration: line-through;
  color: #7a8f8c;
  margin-left: 6px;
}

.price {                         offer
  font-size: 34px;
  color: #e6dca3;
}

.alert-custom {            offer
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 77, 79, 0.1);
  color: #ff7b7d;
  font-size: 13px;
}

.features {                     offer
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.features li {                      offer
  position: relative;
  padding-right: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbdede;
}

.features li::before {                offer
  content: "✓";
  position: absolute;
  right: 0;
  color: #1cb78a;
}

.btn-buy {               offer
  width: 100%;
  border-radius: 14px;
  padding: 12px;
  font-size: 15px;
  color: #003c35;
  background: linear-gradient(180deg, #1cb78a, #15555a);
  border: none;
}

.btn-buy:hover {          offer
  opacity: 0.9;
} */

/* end pricing cards */

/* start book sec */

.book-section .badge-book {
  background-color: #0f3b3f;
  color: #39d0b6;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}

.book-section .features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.book-section .features li {
  color: var(--subtitle-clr);
  font-size: 16px;
}


.book-section .buy-book {
  border-radius: 14px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 8px 20px 0 rgba(28, 183, 138, 0.20);
color: var(--white-clr);
border: none;
padding: 10px 40px;
font-size: 16px;
margin-left: .7rem;
}
.book-section .read-book{
  border-radius: 14px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.05);
color: var(--subtitle-clr);
padding: 10px 40px;
font-size: 16px;
}
.book-section .read-book:hover,
.book-section .buy-book:hover{
  opacity: .9;
}
.book-section .stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.book-section .stats h4 {
  color: var(--main-green-clr);
  font-weight: 500;
}

.book-section .stats span {
  font-size: 14px;
  color: var(--gray-green-clr);
}

.book-section .image-content {
  position: relative;
}

.book-section .book-img {
  max-width: 100%;
  border-radius: 16px;
}

.book-section .free-badge {
  position: absolute;
      bottom: 37px;
    right: 29%;
  transform: translateX(50%);
  border-radius: 14px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  color: var(--white-clr);
  padding: 8px 18px;
  font-size: 16px;
}

/* end book sec */
/* start social media */





.social-section .social-card {
  border-radius: 16px;
border: 1px solid rgba(28, 183, 138, 0.20);
border-top: 2px solid;
background: linear-gradient(135deg, rgba(28, 183, 138, 0.10) 0%, rgba(21, 85, 90, 0.10) 100%);
  padding: 30px;
  height: 100%;
  position: relative;
}

.social-section .social-card.instagram{
  border-radius: 16px;
border: 1px solid rgba(228, 64, 95, 0.20);
border-top: 2px solid;

background: linear-gradient(135deg, rgba(228, 64, 95, 0.10) 0%, rgba(131, 58, 180, 0.10) 100%);
}

.social-section .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
}

.social-section .soc-icon {
  border-radius: 14px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
padding: 15px;
}
.social-section .soc-icon.insta{
  border-radius: 14px;
background: linear-gradient(180deg, #F77737 0%, #E4405F 50%, #833AB4 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.social-section .card-header h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--light-yellow);
}

.social-section .card-header span {
  font-size: 13px;
  color: var(--light-green);
}

.social-section .card-desc {
  color: var(--subtitle-clr);
  font-size: 16px;
  margin-bottom: 15px;
}


 

.social-section .card-stats strong,
.social-section .info-box strong {
  display: block;
  font-size: 14px;
}

.social-section .price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  padding: 15px 20px;
  margin-bottom: 20px;

  border-radius: 14px;
border: 1px solid rgba(208, 206, 151, 0.30);
background: linear-gradient(90deg, rgba(208, 206, 151, 0.10) 0%, rgba(255, 215, 0, 0.10) 100%);
}

.social-section .price-box .right-part{
  border-radius: 10px;
background: linear-gradient(180deg, #D0CE97 0%, #FFD700 100%);
  padding: 6px 9px;
  font-size: 15px;
  font-weight: 700;
}
.social-section .price-box h6, .social-section .price-box .price{
  font-size: 16px;
  color: var(--light-yellow);
}
.social-section .price-box .small-title{
  color: var(--gray-green-clr);
}
.social-section .info-box-card{
    background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  width: 50%;
}
.social-section .info-box-card .follower{
   font-size: 18px;
   color: var(--light-green);
}
.social-section .btn {
  width: 100%;
  padding: 12px;
border-radius: 14px;
background: linear-gradient(180deg, #1CB78A 0%, #15555A 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
border: none;
}
.social-section .btn:hover{
  opacity: .9;
}

.social-section .insta-btn {
background: linear-gradient(180deg, #F77737 0%, #E4405F 50%, #833AB4 100%);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}



/* end social media */
/* star ques */


/* .section-title {
  color: var(--text-gold);
  font-weight: bold;
} */
/* 
.section-subtitle {
  color: var(--text-muted);
} */

/* تنسيق الـ Accordion */
.accordion-item {
  background-color: var(--card-bg) !important;
  border: none !important;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  border-radius: 14px;
border: 1px solid rgba(255, 255, 255, 0.04);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  color: var(--light-yellow) !important;
  padding: 20px;
  box-shadow: none !important;
  display: flex;
  justify-content: space-between;
  /* flex-direction: row; */
}

/* أيقونة الاستفهام */
.accordion-button .bi-question-circle {
  color: var(--accent-color);
  font-size: 1.2rem;
}



/* تنسيق النص عند فتح السؤال */
.accordion-body {
  color: var(--subtitle-clr);
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-align: start !important;
}

/* إزالة الحدود عند التركيز */
.accordion-button:focus {
  border-color: rgba(85, 240, 208, 0.5);
}
/* hide Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* SVG control */
.accordion-icon {
  color: #1CB78A; /* change color here */
  transition: transform 0.3s ease;
}

/* rotate when open */
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}
.accordion-button:not(.collapsed){
  background-color: transparent !important;
}
/* end ques */


/* footer */


.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-yellow);
}

.footer-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 16px;
  color: var(--gray-green-clr);
  margin-bottom: 12px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-green-clr);

  font-size: 16px;
  text-decoration: none;
}
.main-footer .first-part{
  width: 30% !important;
}
.main-footer .sec-part, .main-footer .third-part{
  width: 20% !important;
}

.footer-links a:hover {
  color: #2dd4bf;
}

.footer-logo {
  max-width: 130px;
  margin-bottom: 15px;
}
.main-footer .first-part {
  text-align: start !important;
}
footer .first-part img{
  width: 45% !important;
}
.footer-desc {
  font-size: 16px;
  color: #b8c6c9;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.social-icons svg {
  width: 36px;
  height: 36px;
  border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 10px;
}
.social-icons svg:hover{
  background: var(--light-green) !important;
}
.footer-bottom {
  border-top: 1.71px solid rgba(255, 255, 255, 0.08);
padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #9FBFB3;
}

/* end footer */
/* responsive */
@media screen and (width <= 1199px) {
  .container {
    max-width: 95%;
  }
}
@media screen and (width <= 1190px) {
  .testimonials-section .testimonial-card .check {
    width: 13%;
    height: 42%;
  }
}
@media screen and (width <= 1150px) {
    .about-section .layer_two {
    width: 100%;
    right: 5px;
    height: 100%;
  }
.about-section .layer_one{
  height: 100%;
  width: 100%;
}
  
}
@media screen and (width <= 1111px) {
  /* .about-section .layer_two {  //n
    top: -4px;
    right: 14px;
    width: 365.017px;
    height: 320.017px;
  } */
  .in-mobile{
    display: block;
  }
  .in-lap{
    display: none;
  }
  .hero-section .row:first-child{
    flex-direction: column-reverse;
    align-items: start !important;
    justify-content: start !important;
  }
  .course-desc{
    margin-top: 1rem;
    font-size: 18px !important;
  }
  .hero-section .row:first-child .col-lg-5 {
    width: 73.333333% !important;
  }
  .hero-section .row:first-child .col-lg-7 {
    width: 89.333333% !important;
  }
}
/* @media screen and (width <= 1069px) {  //n
  .about-section .layer_two {
    top: -4px;
    right: 24px;
    width: 338.017px;
  }
} */
/* @media screen and (width <= 1016px) {  //n
  .about-section .layer_two {
    top: -8px;
    right: 24px;
    width: 320.017px;
    height: 285.017px;
  }
  .about-section .layer_one {
    top: -14px;
    right: -1px;
    width: 306.017px;
    height: 286.017px;
  }
} */
@media screen and (width <= 991px) {
  .about-section .img-box {
    margin-top: 3rem;
    /* width: 100% !important; */
  }
  .about-section .image-wrapper {
    /* width: 50%; */
  }
  .about-box .row:first-child {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .about-section .badge-custom {
    margin-top: 3rem;
  }
  .book-section, .social-section {
    margin: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .book-section .stats {
    justify-content: space-between;
  }

  .book-section .main-title {
    font-size: 28px;
  }
  .social-section {
    margin: 15px;
  }


  .hero-section .course-title {
    font-size: 28px;
  }



  .main-footer .main-row{
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.main-footer .main-row .col-lg-3 {
  width: 100% !important;
  margin-bottom: 1.2rem;
}
.navbar-toggler-icon{
  border: none !important;
  background-image: none !important;
  outline: none !important;
}
  .navbar-nav {
    margin-top: 20px;
    text-align: center;
  }
.navbar-toggler{
  border: none !important;
}
  .nav-actions {
    justify-content: start;
    padding-right: 50px;
    margin-top: 15px;
  }
  .book-section .free-badge{
    right: 35%;
  }
.desktop-slider{
  display: none;
}
.testimonials-section .testimonial-card{
  background-color: transparent;
}

}
/* @media screen and (width <= 955px) {   //n
  .about-section .layer_two {
    width: 303.017px;
  }
} */
@media screen and (width <= 768px) {
  .about-section {
    padding: 40px 0;
  }

  .about-box {
    padding: 20px 16px 30px;
  }

  /* Columns stack */
  .about-section .row {
    flex-direction: column;

  }
      .about-box .row:first-child{
        align-items: start !important;
        justify-content: center !important;
      }

  .col-lg-5.img-box,
  .col-lg-7 {
    width: 95% !important;
  }

  /* Image */
  .image-wrapper {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
  }

  .image-wrapper img {
    width: 57%;
    border-radius: 14px;
  }
  .about-section .layer_two { 
   width: 57%;
       right: 22%;
       top: 0;
  }
  .about-section .layer_one {
           width: 57%;
               right: 20%;

  }
  .about-section .about-stat .col-md-6 {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Badge on image */
  .image-badge {
            bottom: -21px;
        right: 17%;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Badge text */
  .image-badge span {
    font-size: 16px;
    font-weight: bold;
  }

  /* Text alignment */
  .badge-custom {
    font-size: 12px;
    padding: 5px 12px;
  }

  .about-title {
    font-size: 24px;
    margin-top: 10px;
  }

  .about-subtitle {
    font-size: 15px;
  }

  .about-desc {
    font-size: 14px;
    line-height: 24px;
  }

  /* Stats grid */
  .about-section .row.g-3 > .col-md-6 {
    width: 50%;
  }

  .stat-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .stat-card h4 {
    font-size: 16px;
  }

  .stat-card span {
    font-size: 12px;
  }

  .stat-card .icon_svg {
    padding: 6px 8px;
    border-radius: 8px;
  }
  .section-title {
    font-size: 26px;
  }

  .pricing-card {
    padding: 24px 18px;
  }
  .col-lg-7.book-desc-mobileWidth{
    width:100% !important
  }
      .book-section .free-badge {
        right: 28%;
    }
}

@media screen and (width <= 767px) {
  .testimonials-section .testimonial-card .check {
    width: 10%;
    height: 37%;
  }
  .hero-section .row:first-child .col-md-4{
    margin-bottom: 1rem;
  }
  .hero-section .feature-card{
    height: auto;
  }
   .hero-section .row:first-child{
    align-items: center !important;
   }

  .hero-section .row:first-child .col-lg-7, .hero-section .row:first-child .col-lg-5 {
    width: 90% !important;
    padding: 0;
  }
}
@media screen and (width <= 737px) {
  /* .about-section .image-badge {
    bottom: -17px;
    right: -12px;
  } */
  /* .about-section .layer_two {  //n
    width: 392.017px;
  } */
  .about-section .stat-card h4 {
    font-size: 19px;
  }
  .about-section .stat-card span {
    font-size: 19px;
  }
  .about-section .about-desc {
    font-size: 17px;
  }
  .about-section .about-subtitle {
    font-size: 18px;
  }
  .about-title {
    font-size: 29px;
  }
}
/* @media screen and (width <= 705px) {  //n
  .about-section .layer_two {
    width: 345.017px;
    height: 352.017px;
    right: 58px;
  }
} */
/* @media screen and (width <= 671px) {   //n
  .about-section .layer_two {
    width: 100%;
    right: 5px;
    height: 100%;
  }
.about-section .layer_one{
  height: 100%;
  width: 100%;
}

} */
@media screen and (width <= 585px){
  section .buy-book{
    margin-bottom: 1rem;
  }
  .about-section .image-wrapper img{
    width: 79%;
  }
      .about-section .layer_one {
        width: 79%;
        right: 10%;
    }
        .about-section .layer_two {
        width: 79%;
        right: 11%;

        }
            .image-badge {
                      right: 8%;

            }
            .video-in-lap{
  display: none;
}
.video-in-mobile{
  display: block !important;
}
}
@media screen and (width <= 490px){
  .hero-section .actions .look-btn{
    margin-top: 1rem !important;
  }
  .book-section .free-badge{
    font-size: 14px;
  }
  .social-section .info-box{
    flex-direction: column;

  }
  .social-section .info-box .info-box-card:first-child{
    margin: 0 !important;
    margin-bottom: 1rem !important;
  }
   .social-section .info-box .info-box-card{
    width: 100%;

   }

   footer .first-part img {
    width: 44% !important;
}

}
@media screen and (width <= 422px) {
  .testimonials-section .testimonial-card .check {
    width: 11%;
    height: 38%;
  }
      .col-lg-5.img-box{
        width: 95% !important;
    }
    .about-section .about-box .col-lg-7{
      width: 95% !important;
    }
    .social-section .social-card {
      padding: 9px;
    }
    .social-section .info-box-card, .social-section .price-box{
          padding: 18px 6px;
    }
}
@media screen and (width <= 368px) {
  .custom-navbar .nav-actions {
    flex-direction: column;
    align-items: start;
  }
  .hero-section{
    margin-left: 0;
    margin-right: 0;
  }
  .hero-section .container {
        max-width: 97%;
    }
        .book-section .free-badge{
          right: 33%;
    padding: 6px 13px;
        bottom: 23px;
        }
}
@media screen and (width <= 366px) {
  .testimonials-section .testimonial-card .check {
    width: 13%;
    height: 44%;
  }
  .testimonial-card .check svg {
    height: 50px !important;
  }
}
@media screen and (width <= 354px) {
  .testimonials-section .testimonial-card .check {
    width: 15%;
    height: 48%;
  }
  .testimonials-section .btn-custom {
    font-size: 12px;
  }
  .main-footer .footer-bottom{
    font-size: 13px;
  }
      .section-title {
        font-size: 18px;
    }
}
@media screen and (width <= 321px) {
  .badge-featured{
    width: 131px;
    text-align: center;
  }
      .book-section .free-badge {
        padding: 5px 5px;
      }
}
@media screen and (width <= 308px) {
  .testimonials-section .testimonial-card .check {
    width: 17%;
    height: 55%;
  }
  .testimonials-section .btn-custom {
    font-size: 10px;
  }
}


