@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri&display=swap');
@font-face {
  font-family: 'LBC';
  src: url('../fonts/lbc-regular-.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  padding: 0;
  background: #100F1D;
  font-family: 'LBC', sans-serif;
}

.header {
   background: rgba(16,15,29,.45);
  backdrop-filter: blur(30px);       
  -webkit-backdrop-filter: blur(8px);
  height: 75px;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}


.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 65px;
  height: auto;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #BCBCBC;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav {
  display: flex;
  gap: 50px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.nav a:hover {
  color: #BCBCBC;
  transform: scale(1.01);
}

.account-btn {
  background: #100F1D;
  border: 2px solid #54248F;
  padding: 8px 16px;
  width: 160px;
  border-radius: 30px;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.6); 
}

.account-btn:hover {
 transform: scale(1.02);
 box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.7); 
}

.blur-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  margin-top: 80px;
}

.hero h1 span {
  font-size: 40px;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to right, #ffffff 0%, #c8abff 50%, #9661EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  display: block;
}

.hero h2 {
  font-size: 35px;
  color: #ffffff;
  margin-top: 15px;
}

.hero p {
  margin-top: 10px;
  font-size: 22px;
  color: #ccc;
}

.btn {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.acnt-btn,
.tele-btn {
  background:transparent;
  border: 2px solid #54248F;
  padding: 8px 16px;
  width: 200px;
  border-radius: 30px;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.6); 
  text-decoration: none;
}


.mobile-menu-icon {
  display: none;
  font-size: 20px;
  padding-right: 10px;
  color: white;
  cursor: pointer;
}

.mobile-menu-icon.open::before {
  content: "\f00d"; /* fa-xmark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}


.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #100F1D;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
  overflow: hidden;
}

.mobile-menu-overlay.open {
  display: flex;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: right;
  margin-top: 50px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

.mobile-nav a {
  opacity: 0;
  transform: translateY(20px);
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.show a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.close-menu-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.mobile-nav a {
  color: white;
  font-size: 22px;
  text-decoration: none;
}

.mobile-menu-overlay.open {
  display: flex;
  overflow: hidden;
}

.section-title {
 font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55);
  background: linear-gradient(to right, #ffffff 0%, #c8abff 50%, #9661EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  background-clip: text;
  font-weight: bold;
  display: block;
  margin-top: -20px;
}

.crypto-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.crypto-box {
  background: linear-gradient(135deg, #5525A2 0%, #100F1D 41%);
  border-radius: 15px;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.25);
  width: 340px;
  height: 180px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s;
}


/* top row: icon, symbol, price */
.crypto-top {
  display: flex;
  justify-content: space-between;
}

.crypto-symbol {
   font-family: 'Amiri', serif;
   font-weight: 400;
   font-size: 22px;
   text-align: right;
   color: #ffffff;
}

.crypto-price {
  font-family: 'Montserrat', sans-serif;
  color: #BCBCBC;
  font-weight: bold;
  font-size: 18px;
}

.crypto-icon {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.493);
  border-radius: 50%;
  width: 40px;
}

/* bottom row: change, sparkline */
.crypto-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.crypto-change {
  background: #9e9e9e81;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  width: 115px;
  font-size: 15px;
  padding: 4px 4px;
  border-radius: 10px;
  color: #ffffff;
  margin-top: 20px;
}

.sparkline {
  width: 180px !important;
  height: 100px !important;
  margin-left: 10px;
  background: transparent;
}


.up::before {
  content: '▲';
  margin-right: 4px;
}
.down::before {
  content: '▼';
  margin-right: 4px;
}

#why-space-tech {
  position: relative;
}

.why-space-tech-section {
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
}
#why-space-tech .blur-circle {
  position: absolute;
  top: 40%;
  left: 90%;
  width: 250px;
  height: 400px;
  z-index: -1000;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}
.why-space-tech-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.video-container {
  flex: 1;
  min-width: 300px;
}

.video-container video {
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
}

.text-container {
  flex: 1;
  min-width: 300px;
}

.text-container h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 35px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
    color: #673BB1;
}

.text-container h2 span {
  color: #ffffff;
}

.text-container p {
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ffffff;
}

.start-btn {
  padding: 6px 30px;
  background-color: #381a67c0;
  border: 2px solid #68479C;
  color: #fff;
  box-shadow: 0 0 10px 5px rgba(59, 53, 136, 0.47);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 250px;
  display: inline-block;
  font-size: 20px;

}

.start-btn:hover {
   transform: scale(1.02);
}
/*
.features {
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
    position: relative;
    
}

.title-features {
    font-size: 30px;
    color: #e9e9e9;
    margin-bottom: 70px;
    font-weight: 400;
    position: relative;
    direction: rtl;
    font-weight: 800;
}


.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(135deg, #5525A2 0%, #100F1D 41%);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    padding: 30px 20px;
    border-radius: 12px;
    width: 260px;
    transition: 0.3s;
}


.feature-box i {
    font-size: 40px;
    color: #54248F;
    margin-bottom: 15px;
    animation: floatY 2.5s ease-in-out infinite;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-box p {
    font-size: 14px;
    color: #d8d8d8;
    line-height: 1.6;
}

.blur-circle-features {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 250px;
  height: 400px;
  z-index: -1000;
  border-radius: 50%;
   background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}
*/
.why-space-tech-section-Mobile {
  display: block;
}

.stats-section {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction:row;
  gap: 300px;
  justify-content: center;
  align-items: center;
}

.stat-box {
  margin: 20px 0;
}

.stat-number {
   font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 55px;
  color: #6B2CB9;
}

.stat-title {
  font-size: 20px;
  margin-top: 5px;
  color: #c4c4c4;
}

#services {
  position: relative;
}

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.en-text {
  font-size: 25px;
  color: #BCBCBC;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0;
}

.ar-text {
  font-size: 25px;
  color: #BCBCBC;
  margin: 0;
}

.divider {
  width: 3px;
  height: 50px;
  background-color: #8F8C1B;
  box-shadow: 3px 0 4px rgba(255, 255, 255, 0.384);
  margin: 0 5px;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 5%;
  margin-bottom: auto;
}
#services .blur-circle {
  position: absolute;
  top: 40%;
  left: 90%;
  width: 250px;
  height: 400px;
  z-index: -1000;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}

.course,
.crypto-vip,
.ai-vip {
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.5px solid #54248F;
  background: transparent;
  border-radius: 30px;
  box-shadow: 0 0 10px 0px #54248F;
  position: relative;
  width: 30%;
  min-height: 500px;
  margin: 20px auto;
}

.desc {
  color: #D0D0D0;
  font-size: 18px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  width: 100%;
}

.srv-img {
  border-radius: 20px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.details-btn {
  background: #7034CE;
  padding: 10px 0;
  width: 80%;
  max-width: 260px;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: inset 0px 6px 6px rgba(0, 0, 0, 0.25);
}

.course h1,
.crypto-vip h1,
.ai-vip h1{
  color: #fff;
  padding-bottom: 10px;
  font-size: 25px;
}


.details-btn:hover {
  transform: scale(1.02);
}

.Animation-img {
  position: relative;
  padding: 35px;
  text-align: center;
  justify-self: center;
  margin-top: 40px;
}

.Animation-img .blur-circle {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 300px;
  height: 400px;
  z-index: -1000;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(200px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}

.Animation-img .title{
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px;
}

.trade-img {
  width: 400px;
  height: auto;
  animation: floatY 2.5s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); 
  }
  100% {
    transform: translateY(0); 
  }
}

#testimonial {
  position: relative;
  max-width: 100%;
  margin-top: 70px;
}
#testimonial .blur-circle {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 300px;
  height: 400px;
  z-index: -1000;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.6) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(150px); 
  transform: translate(-50%, -50%);
  z-index: -1000;
  pointer-events: none;
}

#testimonial .title {
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
  color: #BCBCBC;
  letter-spacing: 1px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.testimonial-card {
  background: linear-gradient(145deg, #1b1335, #2b204f);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  overflow: hidden;
  width: 280px;
  height: 600px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.market-section {
  text-align: center;
  padding: 35px 20px;
  margin-bottom: 50px;
}

.market-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: semibold;
  text-align: center;
  margin-bottom: 20px;
}

.market-image video,
.market-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.market-section p {
 color: #ffffff;
  font-size: 22px;
  text-align: center;
  margin-top: 50px;
}

.join-btn {
  background:transparent;
  border: 2px solid #54248F;
  padding: 8px 50px;
  width: 200px;
  border-radius: 30px;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 10px 2px rgba(112, 52, 206, 0.6); 
  text-decoration: none;
}

  .footer {
  background-color: #0f0f1b;
  padding: 30px 20px;
  border-radius: 15px 15px 0 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-info {
  flex: 1 1 250px;
  direction: rtl;
}

.footer-info h3 {
  font-size: 28px;
  font-family: 'Spinnaker', sans-serif;
  margin-bottom: 10px;
  position: relative;
  font-weight: 300;
  color: #fff;
}

.highlight-bar {
  display: inline-block;
  width: 4px;
  height: 45px;
  background: #FBB040;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.88);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 30%;
}

.footer-info p {
  font-size: 18px;
  color: #DEDEDE;
  margin-top: 5px;
  font-weight: 400;
}

.footer-contact {
  flex: 1 1 200px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
}

.contact-item i {
  margin-right: 10px;
  color: #DEDEDE;
}

.contact-item a {
  color: #DEDEDE;
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.contact-item span {
    color: #DEDEDE;
  transition: color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.contact-item a:hover {
  color: #a8a8a8;
}

.footer-social {
  flex: 1 1 150px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  gap: 10px;
}

.footer-social a {
   display: inline-block;
	height: 40px;
	width: 40px;
	background-color: #8D8D8D;
	margin:0 12px 12px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}

.footer-social a:hover {
  color: #24262b;
	background-color: #ffffff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #999;
  padding-top: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}


#cart-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #54248F;
  color: rgb(206, 206, 206);
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(31, 31, 31, 0.5);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#cart-icon:hover {
  transform: scale(1.1);
}

#cart-icon i {
  font-size: 20px;
}

.cart-item-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: rgb(207, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  visibility: hidden;
}

/* القائمة الجانبية */
#cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100%;
  background: linear-gradient(to bottom, #35175a, #100F1D);
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  direction: rtl;
   z-index: 10000;
}

#cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 15px;
  color: rgb(221, 221, 221);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

#close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 10px;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  color: #fff;
}

.cart-content table {
  width: 100%;
  border-collapse: collapse;
}

.cart-content th, .cart-content td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  text-align: right;
}

.cart-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.total {
  margin-bottom: 10px;
  font-size: 16px;
  color: #DEDEDE;
}

.pay-btn {
  width: 100%;
  padding: 10px;
  background-color: #7034CE;
  color: white;
  border: none;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  margin: 20px auto 0 auto;
  transition: background 0.3s;
  box-shadow:inset 0 6px 6px rgba(0, 0, 0, 0.25);
  margin-top: auto;
  align-self: center;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545; /* أحمر */
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.remove-item:hover {
  transform: scale(1.2);
}


@media (min-width: 992px) {  
  .why-space-tech-section-Mobile {
    display: none;
  }

  .footer-Mobile{
    display: none;
  }

  .line-wrapper{
    display: none;
  }

}
@media (max-width: 768px) {

  html,body {
    width: 100%;
    overflow-x: hidden;
  }
    .header {
    justify-content: space-between; 
    padding: 10px 12px;
    height: 60px;
    background: #100f1ddc;
    backdrop-filter: blur(30px);       
  -webkit-backdrop-filter: blur(8px);
  }

  .header-left {
    flex: 1; 
    justify-content: flex-start; 
  }

  .header-right {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }

  .account-btn {
  align-self: center;
  margin-top: 100px;
}

.blur-circle {
  top: 40%;
  left: 0;
  width: 200px;
  height: 250px;
  z-index: -1000;
}


.hero {
  margin-top: 20px;
}

.hero h1 span {
  font-size: 35px;
  font-family: 'Montserrat', sans-serif;
}

.hero h2 {
    font-size: 25px;
}

.hero p {
   font-size: 16px;
   opacity: 60%;
}

.crypto-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    gap: 20px;
    max-width: 100%;
    padding: 10px 0; /* فقط padding عمودي */
    justify-content: flex-start; /* بدل center */
    box-shadow: none; /* لتجربة فقط */
    scroll-padding-inline: 10px;
  }

  .crypto-container::before,
  .crypto-container::after {
    content: "";
    flex: 0 0 10px; /* حجم صغير جدًا */
  }

  .crypto-box {
    flex: 0 0 80%;
    scroll-snap-align: start;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
    scroll-snap-stop: always;
  }

  .crypto-box.active {
    opacity: 1;
    transform: scale(1.05);
}

.why-space-tech-section-Mobile {
  padding: 30px 18px;
  display: flex;
  border: 1.5px solid #54248F;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border-radius: 30px;
  box-shadow: 0 0 10px 2px #54248F;
  position: relative;
  width: 90%;
  margin: 110px auto 20px auto;
}

#why-space-tech .blur-circle {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 200px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 52, 206, 0.5) 100%, rgba(112, 52, 206, 0) 70%);
  filter: blur(150px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.why-space-tech-content {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.video-container {
  width: 100%;
}

.video-container video,
.video-container iframe {
  width: 100%;
  border-radius: 25px;
}

.text-container {
  width: 100%;
}

.text-container h2 {
  font-size: 26px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  color: #673BB1;
}

.text-container h2 span {
  color: #ffffff;
}

.text-container p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 15px;
}

.start-btn {
  padding: 6px 30px;
  background-color: transparent;
  border: 2px solid #68479C;
  color: #fff;
  box-shadow: 0 0 10px 5px rgba(59, 53, 136, 0.47);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 250px;
  display: inline-block;
  font-size: 20px;
}

.start-btn:hover {
  transform: scale(1.05);
}
.why-space-tech-section {
  display: none;
}

 .features {
        position: relative;
    }

.features-container{
  flex-direction: column;
  align-items: center;
}
    .features-line {
        position: absolute;
        left: 10px;
        top: 100px;
        bottom: 0;
        width: 20px;
    }

    .features-line .vertical-line {
        position: absolute;
        top: 50px;
        bottom: 50px;
        left: 9px;
        width: 5px;
        background: linear-gradient(180deg, #0000, #afafaf, #0000);
    }

    .features-line .circle {
        display: block;
        width: 25px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        left: 2px;
        z-index: 1;
    }

    .features-line .circle:nth-child(1) {
        top: 150px;
        background-color: #54248F;
    }

    .features-line .circle:nth-child(2) {
        top: 400px;
        background-color: #ffffff;
    }

    .features-line .circle:nth-child(3) {
        top: 650px;
        background-color: #54248F;
    }
.feature-box{
  width: 70%;
  max-width: 350px;
  margin-bottom: 5px;

}

.title-features{
  font-size: 28px;
}

.blur-circle-features {
  top: 50%;
  left: 90%;
  width: 150px;
  height: 250px;
}

.stats-section {
  padding: 50px 20px;
  flex-direction:row;
  gap: 50px;
}


.stat-number {
   font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #6B2CB9;
}

.stat-title {
  font-size: 18px;
  margin-top: 5px;
  color: #ffffff;
  opacity: 60%;
}

  .course,
  .crypto-vip,
  .ai-vip {
    width: 95%;
    margin-bottom: auto;
  }

  #Animation-img {
  position: relative;
  padding: 35px;
  text-align: center;
  justify-self: center;
}

#Animation-img .blur-circle {
  width: 150px;
  height: 800px;
  filter: blur(150px); 
}

#Animation-img .title{
  font-size: 18px;
}

.trade-img {
  animation: floatY 2.8s ease-in-out infinite;
}


   .testimonial-grid {
    position: relative;

    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    max-width: 100%;
    padding: 10px 0; /* فقط padding عمودي */
    justify-content: flex-start; /* بدل center */
    box-shadow: none; /* لتجربة فقط */
    scroll-padding-inline: 10px;
  }

  .testimonial-card {
    margin-top: 20px;
    flex: 0 0 80%;
    scroll-snap-align: center;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
  }

  .testimonial-card.active {
    opacity: 1;
    transform: scale(1.02);
  }
.testimonial-card:hover {
  transform: none;
}

.market-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .market-image video,
  .market-image img {
    max-width: 95%;
    max-width: 500x;
  }

  .market-section p {
  font-size: 19px;
  margin-bottom: 30px;
}

.footer {
  display: none;
}

.footer-Mobile .footer-info{
  direction: rtl;
  text-align: right;
}

.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .footer-contact {
    margin-top: -50px;
  }
.footer-social{
  margin-top: -150px;
}

#cart-sidebar{
  width: 100%;
  right: -100%;
  transition: right 0.3s ease;
  background: linear-gradient(to bottom, #271142, #100F1D);
}

#cart-sidebar.open {
  right: 0;
}

}