@import url("https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #fce595 #090b13;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Noto Naskh Arabic", serif;
  background-color: #090b13;
  height: 100vh;
}

/************************************************************************************/
/************************* header *************************/
/************************************************************************************/
.glass-header {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Hide all elements initially */
.glass-header.show {
  top: 30px;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(254, 240, 200, 0.075);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(254, 240, 200, 0.3);
  border-radius: 20px;
  padding: 15px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  direction: rtl;
}
.nav-menu ul li {
  display: flex;
  align-items: center;
}
.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.nav-menu a:hover {
  color: #fef0c8;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #fef0c8;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a span {
  display: inline-block;
}
.cta-button {
  background: linear-gradient(135deg, #fef0c8, #fac91a);
  color: #000000;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Noto Naskh Arabic", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 240, 200, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(0);
  height: 100%;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 240, 200, 0.4);
  background: linear-gradient(135deg, #f5d76e, #e8c547);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}
/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .glass-header {
    width: 95%;
    top: 15px;
    padding: 10px 0;
  }
  .glass-header.show {
    top: 0px;
  }
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    gap: 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .nav-menu a {
    font-size: 18px;
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu a:hover {
    transform: translateX(5px);
  }
  .nav-menu a::before {
    display: none;
  }
  .nav-menu a:hover span {
    transform: none;
  }
  .hedan {
    display: none !important;
  }
  .logo img {
    height: 40px;
  }
}
/************************************************************************************/
/************************* HERO SECTION *************************/
/************************************************************************************/
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 46, 0.4) 100%),
    radial-gradient(
      circle at 20% 50%,
      rgba(16, 77, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(254, 240, 200, 0.02) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgb(9, 11, 19) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgb(0, 0, 0) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

@keyframes glow {
  from {
    text-shadow:
      0 0 5px #fef0c8,
      0 0 10px #fef0c8,
      0 0 15px #fef0c8;
    opacity: 1;
  }
  to {
    text-shadow:
      0 0 10px #fef0c8,
      0 0 20px #fef0c8,
      0 0 30px #fef0c8;
    opacity: 0.6;
  }
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #d1d1d1 50%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow:
    0 0 20px rgba(254, 240, 200, 0.3),
    0 0 40px rgba(16, 77, 246, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.hero-content p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.replay-btn {
  background: linear-gradient(135deg, #fef0c8, #fac91a);
  color: #000000;
  border: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Noto Naskh Arabic", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 240, 200, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.replay-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.replay-btn:hover::before {
  left: 100%;
}

.replay-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(0);
  height: 100%;
}

.replay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 240, 200, 0.4);
  background: linear-gradient(135deg, #f5d76e, #e8c547);
}
.ratings-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ratings-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  color: #f5d76e;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(245, 215, 110, 0.4);
}

.star:nth-child(2) {
  animation-delay: 0.2s;
}
.star:nth-child(3) {
  animation-delay: 0.4s;
}
.star:nth-child(4) {
  animation-delay: 0.6s;
}
.star:nth-child(5) {
  animation-delay: 0.8s;
}
.ratings-count {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 80px 10px 0 10px;
  }
  .hero-content h1 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
  }
  .replay-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/************************************************************************************/
/************************* VIDEO SECTION *************************/
/************************************************************************************/
.video-section {
  padding: 80px 0;
  position: relative;
  width: 85%;
  margin: auto;
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 11, 19, 0.795);
  z-index: 0;
}
.video-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 1;
}

/* النور من الأعلى فقط */
.video-wrapper::before {
  content: "";
  position: absolute;
  top: 10px; /* مكان النور فوق الفيديو */
  left: 50%;
  transform: translateX(-50%);
  width: 70%; /* متجمع في النص */
  height: 400px;

  background: radial-gradient(
    ellipse at center top,
    rgba(254, 240, 200, 0.9) 0%,
    rgba(254, 240, 200, 0.45) 30%,
    rgba(254, 240, 200, 0.18) 50%,
    rgba(254, 240, 200, 0.06) 65%,
    transparent 75%
  );

  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
/* الفيديو فوق النور */
.video-border {
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  border: 7px solid transparent;
  background:
    linear-gradient(#010307, #010307) padding-box,
    linear-gradient(
        135deg,
        rgba(254, 240, 200, 0),
        rgba(254, 240, 200, 0),
        rgba(245, 215, 110, 0.6),
        rgba(254, 240, 200, 0),
        rgba(254, 240, 200, 0),
        rgba(254, 240, 200, 0),
        rgba(254, 240, 200, 0)
      )
      border-box;
}
.section-video {
  width: 100%;
  display: block;
  border-radius: 15px;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.section-video:hover {
  filter: blur(3px);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}
/* الفيديو فوق */
.video-border {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
}
/* طبقة الجزيئات */
.particles {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
/* شكل النقاط */
.particle {
  position: absolute;
  bottom: 20px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(1px);
  animation: floatUp linear forwards;
}
/* حركة الطيران لفوق */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-300px) scale(0.3);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-section {
    padding: 0px 10px 0px 10px;
    width: 100%;
  }
  .video-wrapper::before {
    top: -30px;
    width: 50%;
    height: 200px;
  }
}

/************************************************************************************/
/************************* ABOUT US SECTION *************************/
/************************************************************************************/
.about-section {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}
.about-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.about-text {
  flex: 1;
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  text-align: start;
}
.counters {
  display: flex;
  margin-top: 40px;
  width: 100%;
}
.counter-item {
  text-align: end;
  flex: 1;
}
.counter-number {
  font-size: 36px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(254, 240, 200, 0.3);
  position: relative;
}
.counter-number::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100px;
  height: 2px;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #fef0c800, #f5d76e);
  border-radius: 1px;
}
.counter-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 8px;
}
.about-title {
  flex-shrink: 0;
}
.about-title h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fef0c8;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.4);
  position: relative;
}
.about-title h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #fef0c800, #f5d76e);
  border-radius: 2px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 10px 50px 10px;
    width: 100%;
  }
  .about-content {
    flex-direction: column;
    gap: 30px;
    text-align: end;
  }
  .about-text {
    max-width: 100%;
    order: 2;
  }
  .about-title h2 {
    font-size: 25px;
  }
  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  .counters {
    margin-top: 20px;
  }
  .counter-number {
    font-size: 18px;
    font-weight: 700;
  }
  .counter-number::after {
    bottom: -10px;
  }
  .counter-label {
    font-size: 12px;
    margin-top: 0px;
  }
}
/************************************************************************************/
/************************* NEWS TICKER SECTION *************************/
/************************************************************************************/
.news-ticker-section {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  width: 82%;
  margin: 0 auto;
}
.ticker-shadow-left,
.ticker-shadow-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker-shadow-left {
  left: 0;
  background: linear-gradient(90deg, #090b13 0%, transparent 100%);
}
.ticker-shadow-right {
  right: 0;
  background: linear-gradient(270deg, #090b13 0%, transparent 100%);
}
.ticker-container {
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 30px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item img {
  width: 150px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.ticker-item:hover img {
  opacity: 1;
  transform: scale(1.1);
}
.ticker-item span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .news-ticker-section {
    padding: 10px 0;
    width: 100%;
  }
  .ticker-item {
    padding: 0 10px;
  }
  .ticker-item img {
    width: 100px;
    height: 30px;
  }
  .ticker-track {
    animation: ticker-scroll 10s linear infinite;
  }
}
/************************************************************************************/
/************************* NEW COURSE FEATURES SECTION *************************/
/************************************************************************************/
.course-features-new {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}
.features-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 60px;
}
.features-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.features-right {
  flex: 1;
  text-align: right;
  direction: rtl;
}
.features-title {
  font-size: 28px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.4);
  position: relative;
}
.features-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #fef0c800, #f5d76e);
  border-radius: 2px;
}
.features-subtitle {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-button.hero-style {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(254, 240, 200, 0.4);
  background: linear-gradient(135deg, #fef0c8, #fac91a);
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  font-family: "Noto Naskh Arabic", serif;
}
.cta-button.hero-style::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}
.cta-button.hero-style:hover::before {
  left: 100%;
}
.cta-button.hero-style span {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(0);
  height: 100%;
}
.cta-button.hero-style:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(254, 240, 200, 0.5);
  background: linear-gradient(135deg, #f5d76e, #e8c547);
}
/* Feature Boxes Grid */
.feature-boxes-grid {
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}
.b1 {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.b2 {
  width: 100%;
  display: flex;
  gap: 20px;
}
.feature-box {
  background: rgba(254, 240, 200, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 240, 200, 0.2);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: right;
  direction: rtl;
  min-height: 55vh;
}
/* Add overlay for better text readability */
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 11, 19, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}
/* Position content above overlay */
.feature-box h4,
.feature-box p {
  position: relative;
  z-index: 2;
}
/* Individual background images for each box */
.bak:nth-child(1) {
  background-image: url("Media/ph1.jpg");
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  width: 50%;
}
.bak:nth-child(2) {
  background-image: url("Media/ph2.jpg");
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  width: 50%;
}
.bak2:nth-child(1) {
  background-image: url("Media/ph3.jpg");
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  width: 33%;
}
.bak2:nth-child(2) {
  background-image: url("Media/ph4.jpg");
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  width: 33%;
}
.bak2:nth-child(3) {
  background-image: url("Media/ph5.jpg");
  background-size: cover;
  background-position: end;
  background-repeat: no-repeat;
  width: 33%;
}
.feature-box:hover {
  border-color: rgba(254, 240, 200, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(254, 240, 200, 0.2);
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fef0c8, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-box:hover::before {
  opacity: 1;
}
.feature-box-title {
  font-size: 20px;
  font-weight: 700;
  color: #fef0c8;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: right;
  direction: rtl;
}
.feature-box-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  text-align: right;
  direction: rtl;
}
/* Responsive Design */
@media (max-width: 768px) {
  .course-features-new {
    padding: 50px 10px 50px 10px;
    width: 100%;
  }
  .features-layout {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .features-title {
    font-size: 25px;
  }
  .features-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cta-button.hero-style {
    padding: 10px 15px;
    font-size: 14px;
  }
  .feature-boxes-grid {
    gap: 10px;
    margin-top: 30px;
  }
  .bak:nth-child(1) {
    background-position: center;

    width: 100%;
  }
  .bak:nth-child(2) {
    background-position: center;

    width: 100%;
  }
  .bak2:nth-child(1) {
    background-position: center;

    width: 100%;
  }
  .bak2:nth-child(2) {
    background-position: center;

    width: 100%;
  }
  .bak2:nth-child(3) {
    background-position: center;

    width: 100%;
  }
  .feature-box {
    min-height: 50vh;
  }
  .feature-box-title {
    font-size: 18px;
  }
  .feature-box-text {
    font-size: 14px;
  }
  .b1 {
    flex-direction: column-reverse;
  }
  .b2 {
    flex-direction: column-reverse;
  }
}
/************************************************************************************/
/************************* COURSE CONTENT SECTION *************************/
/************************************************************************************/
.course-content-section {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}
.content-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.content-right {
  flex: 1;
  max-width: 40%;
  text-align: right;
  position: sticky;
  top: 200px;
  align-self: flex-start;
}
.content-left {
  flex: 1;
  max-width: 55%;
}
.content-title {
  font-size: 28px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.4);
  position: relative;
}
.content-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #fef0c800, #f5d76e);
  border-radius: 2px;
}
.course-subtitle {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.content-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-box {
  background: rgba(254, 240, 200, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 240, 200, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: right;
  direction: rtl;
  display: flex;
  align-items: center;
  gap: 20px;
}
.content-box:hover,
.content-box.active-hover {
  background: rgba(254, 240, 200, 0.12);
  border-color: rgba(254, 240, 200, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 240, 200, 0.15);
}
.content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fef0c8, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.content-box:hover::before,
.content-box.active-hover::before {
  opacity: 1;
}
.content-box-number {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(254, 240, 200, 0.15);
  line-height: 1;
  z-index: 1;
  transition: all 0.3s ease;
}
.content-box:hover .content-box-number,
.content-box.active-hover .content-box-number {
  color: rgba(254, 240, 200, 0.25);
  transform: scale(1.05);
}
.content-box-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.content-box-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fef0c8, #f5d76e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}
.content-box-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef0c8, #f5d76e);
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}
.content-box-icon i {
  font-size: 20px;
  color: #000000;
  transition: all 0.3s ease;
}
.content-box:hover .content-box-icon,
.content-box.active-hover .content-box-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(254, 240, 200, 0.3);
}
.content-box:hover .content-box-icon i,
.content-box.active-hover .content-box-icon i {
  transform: rotate(5deg);
}
.content-box-content {
  flex: 1;
}
.content-box-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
  .course-content-section {
    padding: 50px 10px 50px 10px;
    width: 100%;
  }
  .content-layout {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
  .content-right {
    max-width: 100%;
    order: 2;
    text-align: center;
    position: relative;
    top: auto;
    align-self: center;
  }
  .content-left {
    max-width: 100%;
    order: 1;
  }
  .content-title {
    font-size: 25px;
    text-align: center;
  }
  .content-title::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .course-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  .content-box-icon {
    margin-bottom: 15px;
  }
  .content-box-title {
    font-size: 16px;
  }
  .content-box-text {
    font-size: 14px;
  }
}
/************************************************************************************/
/************************* pricing-trainer-section *************************/
/************************************************************************************/
/* Pricing and Trainer Section */
.pricing-trainer-section {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 100px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.4);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, #fef0c800, #f5d76e);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 40px 0 0;
  line-height: 1.8;
  font-weight: 400;
}

.content-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.content-grid > * {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
}

/* Premium Pricing Card */
.premium-pricing-card {
  background: linear-gradient(
    135deg,
    rgba(254, 240, 200, 0.1),
    rgba(254, 240, 200, 0.05)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: auto;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.premium-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(254, 240, 200, 0.3) 0%,
    rgba(254, 240, 200, 0.1) 50%,
    rgba(254, 240, 200, 0.2) 100%
  );
  border-radius: 24px;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  z-index: -1;
}

.premium-pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(254, 240, 200, 0.15),
    0 0 60px rgba(254, 240, 200, 0.1);
}

/* Premium Trainer Card */
.premium-trainer-card {
  background: linear-gradient(
    135deg,
    rgba(254, 240, 200, 0.08),
    rgba(254, 240, 200, 0.04)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(254, 240, 200, 0.15);
  border-radius: 24px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.premium-trainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(254, 240, 200, 0.15);
  border-color: rgba(254, 240, 200, 0.25);
}

.card-header {
  padding: 40px 30px 10px;
  text-align: center;
  border-radius: 24px 24px 0 0;
}

.course-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fef0c8, #f5d76e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 8px 25px rgba(254, 240, 200, 0.3);
}

.course-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #fef0c8, #f5d76e);
  border-radius: 20px;
  opacity: 0.4;
  filter: blur(10px);
  z-index: -1;
}

.course-icon i {
  font-size: 32px;
  color: #000;
}

.card-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fef0c8;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(254, 240, 200, 0.3);
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 20px;
  font-weight: 700;
  color: #fef0c8;
}

.original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.original-price .amount {
  font-size: 32px;
  font-weight: 700;
  color: #ff4444;
  text-decoration: line-through;
  text-decoration-color: #fef0c8;
  text-shadow: none;
  opacity: 0.8;
  font-style: italic;
}

.original-price .currency {
  font-size: 16px;
  font-weight: 600;
  color: #ff4444;
  /* text-decoration: line-through; */
  text-decoration-color: #fef0c8;
  opacity: 0.8;
  font-style: italic;
}

.discount-badge {
  font-size: 14px;
  font-weight: 700;
  color: #fef0c8;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  padding: 4px 8px;
  border-radius: 12px;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.limited-offer {
  text-align: center;
}

.offer-text {
  font-size: 16px;
  font-weight: 700;
  color: #fef0c8;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(254, 240, 200, 0.5);
  animation: pulse 2s infinite;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(254, 240, 200, 0.3);
  border-radius: 8px;
  padding: 8px 6px;
  min-width: 45px;
}

.timer-value {
  font-size: 18px;
  font-weight: 900;
  color: #fef0c8;
  line-height: 1;
  text-shadow: 0 0 15px rgba(254, 240, 200, 0.6);
}

.timer-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 2px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.amount {
  font-size: 80px;
  font-weight: 900;
  color: #fef0c8;
  line-height: 1;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.4);
}

.card-body {
  padding: 10px 30px 30px 30px;
}

.purchase-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.guarantee i {
  color: #4ade80;
}

.premium-purchase-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #fef0c8, #f5d76e);
  color: #000;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Noto Naskh Arabic", serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(254, 240, 200, 0.3);
}

.premium-purchase-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.premium-purchase-btn:hover::before {
  left: 100%;
}

.premium-purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(254, 240, 200, 0.4);
  background: linear-gradient(135deg, #f5d76e, #e8c547);
}

.premium-purchase-btn .btn-text,
.premium-purchase-btn i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.trainer-header {
  position: relative;
  padding: 30px 30px 0;
}

.trainer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.trainer-badge i {
  font-size: 10px;
}

.trainer-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.image-frame {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(254, 240, 200, 0.3);
  box-shadow: 0 8px 25px rgba(254, 240, 200, 0.2);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(254, 240, 200, 0.3), transparent);
}

.trainer-content {
  padding: 0 30px 30px 30px;
  text-align: center;
}

.trainer-info {
  text-align: center;
  margin-bottom: 10px;
}

.trainer-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(254, 240, 200, 0.3);
}

.trainer-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating .stars {
  display: flex;
  gap: 2px;
}

.rating .stars i {
  font-size: 14px;
  color: #f5d76e;
}

.rating-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(254, 240, 200, 0.1);
  border: 1px solid rgba(254, 240, 200, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(254, 240, 200, 0.2);
  border-color: rgba(254, 240, 200, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 240, 200, 0.2);
}

.social-link i {
  font-size: 14px;
  color: #fef0c8;
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: #ffffff;
}

.trainer-bio {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
}

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-item {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(254, 240, 200, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(254, 240, 200, 0.08);
  border-color: rgba(254, 240, 200, 0.2);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(254, 240, 200, 0.2),
    rgba(254, 240, 200, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 16px;
  color: #fef0c8;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-number {
  font-size: 18px;
  font-weight: 800;
  color: #fef0c8;
  text-shadow: 0 0 15px rgba(254, 240, 200, 0.3);
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-trainer-section {
    padding: 50px 10px;
    width: 100%;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 50px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .content-grid {
    flex-direction: column-reverse;
  }

  .content-grid > * {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .premium-pricing-card {
    width: 100%;
  }
  .trainer-content {
    padding: 10px;
  }
  .trainer-bio {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
/************************************************************************************/
/************************* testimonials-section *************************/
/************************************************************************************/
/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}

.testimonials-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  text-align: center;
}

.testimonials-left {
  flex: 1;
  max-width: 210px;
}

.testimonials-right {
  flex: 1;
  text-align: end;
}

/* Testimonials Ticker */
.testimonials-ticker-section {
  position: relative;
  overflow: hidden;
}

.testimonials-ticker-container {
  overflow: hidden;
  position: relative;
}

.testimonials-ticker-track-top {
  display: flex;
  animation: scrollTestimonialsRight 30s linear infinite;
  width: fit-content;
  padding: 20px 0;
}

.testimonials-ticker-track-bottom {
  display: flex;
  animation: scrollTestimonialsLeft 30s linear infinite;
  width: fit-content;
  padding: 20px 0;
}

.testimonial-ticker-item {
  flex: 0 0 auto;
  padding: 0 20px;
}

.testimonial-box {
  background: rgba(254, 240, 200, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 240, 200, 0.15);
  border-radius: 16px;
  padding: 20px 30px;
  min-width: 260px;
  max-width: 350px;
  height: 140px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  text-align: right;
  direction: rtl;
}

.testimonial-box:hover {
  background: rgba(254, 240, 200, 0.12);
  border-color: rgba(254, 240, 200, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(254, 240, 200, 0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fef0c8;
  background-color: #fef0c8;
}

.client-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  color: #fef0c8;
  margin: 0;
  text-align: right;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
}

.testimonial-rating i {
  font-size: 10px;
  color: #f5d76e;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@keyframes scrollTestimonialsRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scrollTestimonialsLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonials-ticker-section:hover .testimonials-ticker-track-top,
.testimonials-ticker-section:hover .testimonials-ticker-track-bottom {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 10px 50px 10px;
    width: 100%;
  }
  .testimonials-layout {
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column-reverse;
  }
}
/************************************************************************************/
/************************* cta-section *************************/
/************************************************************************************/
/* Call To Action Section */
.cta-section {
  padding: 80px 0;
  width: 82%;
  margin: auto;
  position: relative;
}

.cta-container {
  position: relative;
  background: rgba(254, 240, 200, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 240, 200, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  overflow: hidden;
  text-align: center;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(254, 240, 200, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 215, 110, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 240, 200, 0.1);
  border: 1px solid rgba(254, 240, 200, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #f5d76e;
  margin-bottom: 10px;
}

.cta-badge i {
  font-size: 14px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #fef0c8;
  margin-bottom: 5px;
  text-shadow: 0 0 30px rgba(254, 240, 200, 0.3);
}

.cta-buttons {
  margin-top: 10px;
}

.cta-main-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f5d76e;
  color: #090b13;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(245, 215, 110, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-main-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.cta-main-button:hover::before {
  left: 100%;
}

.cta-main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 215, 110, 0.4);
}

.cta-main-button i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 50px 10px;
    width: 100%;
  }
  .cta-container {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-main-button {
    font-size: 16px;
    padding: 14px 30px;
  }
}
/************************************************************************************/
/************************* footer *************************/
/************************************************************************************/
/* Footer */
.footer {
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(254, 240, 200, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fef0c8, transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0 20px;
}

.footer-logo {
  flex: 1;
  max-width: 300px;
}

.footer-brand {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 0 10px 0;
}

.footer-links {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section {
  min-width: 150px;
  text-align: center;
}

.footer-section ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 9px;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fef0c8, #f5d76e);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: #fef0c8;
  transform: translateX(5px);
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(254, 240, 200, 0.1);
  margin-top: 40px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0 0 20px 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 10px 50px 10px;
    margin-top: 0px;
  }
  /* Footer Responsive */
  .footer-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }

  .footer-section {
    min-width: auto;
    text-align: center;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0 0 0px 0;
  }
}

/* Fixed blur overlay at bottom of screen */
.blur-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  pointer-events: none;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
}
