:root {
  --primary-dark: #0a0e17;
  --secondary-dark: #0f1a26;
  --accent-green: #00ff88;
  --accent-blue: #00d4ff;
  --gold: #ffd700;
  --white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --glass: rgba(15, 26, 38, 0.4);
  --gradient-main: linear-gradient(
    135deg,
    #0a0e17 0%,
    #0f1a26 50%,
    #1a2a3a 100%
  );
  --gradient-glow: linear-gradient(
    145deg,
    var(--accent-green),
    var(--accent-blue)
  );
}
#hero {
  position: relative;
}
.heroSwiper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.swiper-slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.swiper-slide::before {
  background: rgba(0, 0, 0, 0.45);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "Cairo", "Tajawal", sans-serif;
  background: var(--gradient-main);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header.scrolled {
  background: rgba(10, 14, 23, 0.98);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
}

.logo-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 255, 136, 0.4));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8));
}

.nav-link,
.nav-link-mobile {
  position: relative;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: all 0.4s ease;
  text-decoration: none;
}

.nav-link::after,
.nav-link-mobile::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-glow);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.nav-link:hover::after,
.nav-link-mobile:hover::after,
.nav-link.active::after,
.nav-link-mobile.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active,
.nav-link-mobile:hover,
.nav-link-mobile.active {
  color: var(--accent-green) !important;
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
}

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSwiper {
  height: 100vh;
  width: 100%;
}

.swiper-slide {
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.85) 0%,
    rgba(15, 26, 38, 0.8) 25%,
    rgba(26, 42, 58, 0.7) 50%,
    rgba(10, 14, 23, 0.9) 100%
  );
  z-index: 1;
  animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1400px;
  padding: 0 2rem;
  width: 100%;
}

.hero-title {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--accent-green) 40%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3.5rem;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8))
      drop-shadow(0 0 60px rgba(0, 212, 255, 0.4));
  }
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-weight: 400;
  max-width: 800px;
  margin-inline: auto;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 60px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  gap: 1rem;
}

.btn-primary {
  background: var(--gradient-glow);
  color: var(--primary-dark);
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4),
    0 0 0 1px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.6), 0 0 0 1px var(--accent-green),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.section-header {
  width: 100%;
  margin-bottom: 30px;
}
.section-title {
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--accent-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 50px;
  margin-bottom: 10px;
}

.section-title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-glow);
  border-radius: 2px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
  z-index: -1;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--accent-green);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s linear infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 30%;
  animation-delay: 10s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  right: 40%;
  animation-delay: 15s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 10%;
  left: 70%;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.card {
  background: rgba(15, 26, 38, 0.6);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-glow);
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: 0 50px 100px rgba(0, 255, 136, 0.25),
    0 0 0 1px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 136, 0.4);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-green);
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover .card-icon {
  background: var(--gradient-glow);
  color: var(--primary-dark);
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4), 0 0 0 1px var(--accent-green);
}

.checkmark {
  width: 64px;
  height: 64px;
  background: var(--gradient-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4),
    0 0 0 1px rgba(0, 255, 136, 0.2);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.checkmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.service-item:hover .checkmark::before {
  width: 300px;
  height: 300px;
}

.service-item:hover .checkmark {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 25px 60px rgba(0, 255, 136, 0.6), 0 0 0 1px var(--accent-green);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  transition: all 0.4s ease;
}

.service-item:hover {
  padding-right: 1.5rem;
  border-bottom-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.03);
  border-radius: 16px;
  margin: 0 -1rem;
  padding-right: 2.5rem;
}

.service-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.7;
  text-align: right;
}

.platform-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.social-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-12px) scale(1.2) rotateY(360deg);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.5), 0 0 0 1px var(--accent-green);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon:hover i {
  color: var(--primary-dark) !important;
  z-index: 2;
  position: relative;
}

.contact-card {
  text-align: center;
  transition: all 0.4s ease;
}

.contact-icon {
  width: 90px;
  height: 90px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--accent-green);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gradient-glow);
  color: var(--primary-dark);
  transform: scale(1.15);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.4), 0 0 0 1px var(--accent-green);
}

#footer {
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 6rem 0 3rem;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-glow);
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.footer-link {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-link:hover {
  color: var(--accent-green);
  transform: translateX(-8px);
}

@media (max-width: 1024px) {
  .section {
    padding-top: 140px;
    padding-bottom: 120px;
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 0;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 50px 10px;
  }
  .section-title {
    font-size: 30px;
  }
  header .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }

  .hero-title {
    font-size: 25px !important;
    letter-spacing: -1px;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section {
    /* padding-top: 120px !important; */
    /* padding-bottom: 100px !important; */
  }

  .card {
    padding: 2rem !important;
    margin: 0.5rem !important;
  }

  .platform-socials {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap;
  }

  .social-icon {
    width: 64px !important;
    height: 64px !important;
    font-size: 1.4rem !important;
  }

  .service-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 0 !important;
  }

  .service-item:hover {
    margin: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
  }

  .checkmark {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.25rem !important;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 5rem !important;
    padding: 3rem 0 !important;
  }
  .card {
    padding: 1.5rem !important;
  }
  .service-text {
    font-size: 1.1rem !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(40px);
  z-index: 9998;
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 140px 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .nav-link-mobile {
  display: block;
  padding: 2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 255, 136, 0.2);
  position: relative;
}

.mobile-menu .nav-link-mobile:hover,
.mobile-menu .nav-link-mobile.active {
  padding-right: 2rem;
  color: var(--accent-green) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 36px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.hamburger span {
  width: 100%;
  height: 4px;
  background: var(--accent-green);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 15px rgba(0, 255, 136, 0.4);
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.loading {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 255, 136, 0.2);
  border-top: 4px solid var(--accent-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* .text-right-all {
  text-align: center !important;
  direction: rtl !important;
} */

/* .text-right-all * {
  text-align: center !important;
} */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 26, 38, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-glow);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}
.text-white {
  font-size: 23px;
}
.text-lg,
.text-2xl {
  font-size: 14px;
}
.ii {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
