* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: auto
}

body {
  background: #09090b;
  color: #fafafa;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

::selection {
  background: rgba(170, 254, 2, 0.3);
  color: #fff
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #09090b
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46
}

*:focus-visible {
  outline: 2px solid #AAFE02;
  outline-offset: 2px;
  border-radius: 4px
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none
  }
}

/* --- Utilities --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #AAFE02, #C6FF5A, #95E600);
  z-index: 9999;
  width: 0%;
  will-change: width
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.grid-bg {
  background-image: linear-gradient(to right, rgba(128, 128, 128, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(128, 128, 128, 0.03) 1px, transparent 1px);
  background-size: 60px 60px
}

.section-glow {
  position: absolute;
  width: 600px;
  height: 300px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none
}

.overflow-x-auto::-webkit-scrollbar {
  display: none
}

.overflow-x-auto {
  -ms-overflow-style: none;
  scrollbar-width: none
}

/* --- Blobs --- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(170, 254, 2, 0.3), transparent 70%);
  top: -200px;
  right: -100px;
  animation: blobFloat1 20s ease-in-out infinite
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(149, 230, 0, 0.25), transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: blobFloat2 25s ease-in-out infinite
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 255, 90, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat3 18s ease-in-out infinite
}

@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-60px, 40px) scale(1.1)
  }

  66% {
    transform: translate(40px, -30px) scale(0.95)
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(50px, -40px) scale(1.05)
  }

  66% {
    transform: translate(-30px, 50px) scale(0.9)
  }
}

@keyframes blobFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-40%, -60%) scale(1.15)
  }
}

/* --- Hero Floating Elements --- */
.hero-float {
  position: absolute;
  will-change: transform
}

.hero-float-1 {
  animation: heroFloat1 6s ease-in-out infinite
}

.hero-float-2 {
  animation: heroFloat2 8s ease-in-out infinite
}

.hero-float-3 {
  animation: heroFloat3 7s ease-in-out infinite
}

.hero-float-4 {
  animation: heroFloat4 9s ease-in-out infinite
}

@keyframes heroFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-15px) rotate(2deg)
  }
}

@keyframes heroFloat2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(-3deg)
  }
}

@keyframes heroFloat3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg)
  }
}

@keyframes heroFloat4 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-18px) rotate(-2deg)
  }
}

/* --- Glow Ring --- */
.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(170, 254, 2, 0.12);
  animation: glowPulse 4s ease-in-out infinite
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.05)
  }
}

/* --- Cards --- */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(170, 254, 2, 0.1)
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s ease
}

.service-detail-card:hover {
  border-color: rgba(170, 254, 2, 0.12);
  box-shadow: 0 0 60px -20px rgba(170, 254, 2, 0.08)
}

/* --- Buttons --- */
.flip-btn {
  position: relative;
  overflow: hidden;
  perspective: 600px;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  border: none
}

.flip-btn .flip-front,
.flip-btn .flip-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.flip-btn .flip-front {
  transform-origin: center bottom
}

.flip-btn .flip-back {
  position: absolute;
  inset: 0;
  transform: rotateX(90deg);
  transform-origin: center top
}

.flip-btn:hover .flip-front {
  transform: rotateX(-90deg);
  opacity: 0
}

.flip-btn:hover .flip-back {
  transform: rotateX(0deg)
}

.cta-primary {
  padding: 16px 36px;
  background: #AAFE02;
  color: #09090b;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  transition: box-shadow 0.3s ease, transform 0.3s ease
}

.cta-primary:hover {
  box-shadow: 0 12px 40px -8px rgba(170, 254, 2, 0.4);
  transform: translateY(-2px)
}

.cta-secondary {
  padding: 16px 36px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  transition: all 0.3s ease
}

.cta-secondary:hover {
  border-color: rgba(170, 254, 2, 0.4);
  background: rgba(170, 254, 2, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px rgba(170, 254, 2, 0.15)
}

.animated-underline {
  position: relative
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #AAFE02, #C6FF5A);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.animated-underline:hover::after {
  width: 100%
}

/* --- Mockups --- */
.browser-mockup {
  background: #18181b;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6), 0 0 80px -20px rgba(170, 254, 2, 0.1)
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 12px;
  color: #71717a
}

.phone-mockup {
  width: 100px;
  height: 200px;
  background: #18181b;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5)
}

.phone-notch {
  width: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin: 8px auto
}

/* --- Trust Scroll --- */
.trust-scroll {
  display: flex;
  gap: 32px;
  animation: trustScroll 30s linear infinite
}

.trust-scroll:hover {
  animation-play-state: paused
}

@keyframes trustScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* --- Testimonials --- */
.testimonial-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none
}

.testimonial-track {
  display:flex;
  gap:24px;
}

.testimonial-track.animate {
  animation: testimonialScroll 40s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused
}


html[dir="rtl"] .testimonial-track {
  animation-name: testimonialScrollRTL;
}

html[dir="rtl"] .testimonial-track {
  direction: rtl;
}

@keyframes testimonialScrollRTL {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    animation: none;
    width: max-content
  }

  .testimonial-track:hover {
    animation-play-state: running
  }
}

/* --- Accordion --- */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1)
}

.accordion-content.open {
  max-height: 300px
}

.accordion-icon {
  transition: transform 0.3s ease
}

.accordion-icon.open {
  transform: rotate(45deg)
}

/* --- Timeline --- */
.timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06)
}

.timeline-line-fill {
  height: 100%;
  background: linear-gradient(90deg, #AAFE02, #C6FF5A, #95E600);
  width: 0%;
  transition: width 0.1s linear
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  background: #18181b;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2
}

.timeline-dot.active {
  border-color: #AAFE02;
  background: #AAFE02;
  color: #000;
  box-shadow: 0 0 30px -5px rgba(170, 254, 2, 0.35)
}

/* --- Tech Badges --- */
.tech-badge {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #a1a1aa;
  transition: all 0.3s ease;
  white-space: nowrap
}

.tech-badge:hover {
  background: rgba(170, 254, 2, 0.06);
  border-color: rgba(170, 254, 2, 0.25);
  color: #C6FF5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(170, 254, 2, 0.2)
}

/* --- Comparison --- */
.comp-row {
  transition: all 0.4s ease
}

.comp-row:hover {
  background: rgba(255, 255, 255, 0.02)
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px)
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px)
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1)
}

.mobile-menu.open {
  transform: translateX(0)
}

/* --- Service Navigation --- */
.service-nav {
  position: sticky;
  top: 80px;
  z-index: 30
}

.service-nav::-webkit-scrollbar {
  display: none
}

.service-nav-link {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #71717a;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer
}

.service-nav-link:hover {
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.04)
}

.service-nav-link.active {
  color: #AAFE02;
  background: rgba(170, 254, 2, 0.08);
  border-color: rgba(170, 254, 2, 0.15)
}

/* --- Service Items --- */
.svc-featured {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(170, 254, 2, 0.06), rgba(149, 230, 0, 0.03));
  border: 1px solid rgba(170, 254, 2, 0.12);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.svc-featured:hover {
  background: linear-gradient(135deg, rgba(170, 254, 2, 0.1), rgba(149, 230, 0, 0.05));
  border-color: rgba(170, 254, 2, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px rgba(170, 254, 2, 0.15)
}

.svc-featured-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(170, 254, 2, 0.12);
  border: 1px solid rgba(170, 254, 2, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAFE02;
  transition: all 0.35s ease
}

.svc-featured:hover .svc-featured-icon {
  background: rgba(170, 254, 2, 0.2);
  border-color: rgba(170, 254, 2, 0.3);
  box-shadow: 0 0 24px -4px rgba(170, 254, 2, 0.3)
}

.svc-featured-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #e4e4e7;
  margin-bottom: 3px
}

.svc-featured-desc {
  display: block;
  font-size: 12px;
  color: #71717a;
  line-height: 1.5;
  margin-top: 5px;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  font-size: 13px;
  color: #a1a1aa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.svc-item:hover {
  background: rgba(170, 254, 2, 0.05);
  border-color: rgba(170, 254, 2, 0.15);
  color: #e4e4e7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(170, 254, 2, 0.1)
}

.svc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(170, 254, 2, 0.07);
  border: 1px solid rgba(170, 254, 2, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAFE02;
  transition: all 0.3s ease
}

.svc-item:hover .svc-icon {
  background: rgba(170, 254, 2, 0.15);
  border-color: rgba(170, 254, 2, 0.25);
  box-shadow: 0 0 16px -4px rgba(170, 254, 2, 0.25)
}

.svc-icon-alt {
  background: rgba(149, 230, 0, 0.07);
  border-color: rgba(149, 230, 0, 0.08);
  color: #95E600
}

.svc-item:hover .svc-icon-alt {
  background: rgba(149, 230, 0, 0.15);
  border-color: rgba(149, 230, 0, 0.25);
  box-shadow: 0 0 16px -4px rgba(149, 230, 0, 0.25)
}

/* --- Include List --- */
.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.include-item:last-child {
  border-bottom: none
}

.include-check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(170, 254, 2, 0.1);
  border: 1px solid rgba(170, 254, 2, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AAFE02
}

/* --- CTA Gradient --- */
.cta-gradient {
  background: linear-gradient(135deg, rgba(170, 254, 2, 0.12) 0%, rgba(149, 230, 0, 0.08) 50%, rgba(123, 194, 0, 0.04) 100%);
  position: relative;
  overflow: hidden
}

.cta-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(170, 254, 2, 0.15), transparent 70%)
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible
}

.modal-box {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8)
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1)
}

.modal-box::-webkit-scrollbar {
  width: 4px
}

.modal-box::-webkit-scrollbar-track {
  background: transparent
}

.modal-box::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 2px
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2
}

html[lang="ar"] .modal-close {
  right: auto;
  left: 20px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff
}

body.modal-open {
  overflow: hidden
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 8px
}

.form-optional {
  font-weight: 400;
  color: #52525b;
  font-size: 11px;
  margin-left: 6px
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fafafa;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(170, 254, 2, .4);
  background: rgba(170, 254, 2, .03);
  box-shadow: 0 0 0 3px rgba(170, 254, 2, .08)
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer
}

.form-select option {
  background: #18181b;
  color: #fafafa
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6
}

.form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #AAFE02;
  color: #09090b;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

.form-submit:hover {
  transform: translateY(-2px)
}

.form-submit:active {
  transform: translateY(0)
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-success.show {
  display: block
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(170, 254, 2, 0.1);
  border: 2px solid rgba(170, 254, 2, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #AAFE02
}

.nav-link.active-nav::after {
  width: 100% !important;
}

/* Value card large */
    .value-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 32px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .value-card:hover {
      border-color: rgba(170, 254, 2, 0.12);
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-4px);
      box-shadow: 0 24px 60px -15px rgba(170, 254, 2, 0.08)
    }

    /* Principle item */
    .principle-num {
      font-size: 64px;
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(180deg, rgba(170, 254, 2, 0.2), rgba(170, 254, 2, 0.02));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent
    }


     /* Case Study Card */
    .case-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .case-card:hover {
      border-color: rgba(170, 254, 2, 0.15);
      transform: translateY(-6px);
      box-shadow: 0 30px 80px -20px rgba(170, 254, 2, 0.12)
    }

    .case-card-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #111113
    }

    .case-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease
    }

    .case-card:hover .case-card-image img {
      transform: scale(1.05);
      filter: brightness(1.1)
    }

    .case-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(9, 9, 11, 0.6) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s ease
    }

    .case-card:hover .case-card-overlay {
      opacity: 1
    }


    .case-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      font-size: 11px;
      font-weight: 500;
      color: #a1a1aa;
      transition: all 0.25s ease
    }

    .case-tag:hover {
      background: rgba(170, 254, 2, 0.08);
      border-color: rgba(170, 254, 2, 0.2);
      color: #C6FF5A
    }

    .case-stat {
      padding: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      text-align: center;
      transition: all 0.3s ease
    }

    .case-stat:hover {
      background: rgba(170, 254, 2, 0.05);
      border-color: rgba(170, 254, 2, 0.15)
    }

    .case-stat-value {
      font-size: 22px;
      font-weight: 700;
      color: #AAFE02;
      line-height: 1;
      margin-bottom: 4px
    }

    .case-stat-label {
      font-size: 11px;
      font-weight: 500;
      color: #71717a;
      text-transform: uppercase;
      letter-spacing: 0.05em
    }



  /* ========== MEGA MENU ========== */

  .mega-trigger {
    position: relative;
  }

  .mega-trigger .mega-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mega-trigger.mega-active > button {
    color: #fff !important;
  }

  .mega-trigger.mega-active .mega-chevron {
    transform: rotate(180deg);
  }

  .mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 60;
    overflow: hidden;
  }

  .mega-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mega-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(170, 254, 2, 0.03) 0%, transparent 100%);
    pointer-events: none;
  }

  /* Service Column Header */
  .mega-col-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #AAFE02;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(170, 254, 2, 0.1);
  }

  .mega-col-title i,
  .mega-col-title svg {
    width: 14px;
    height: 14px;
  }

  /* Service Item */
  .mega-svc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.3;
  }

  .mega-svc-link:hover {
    background: rgba(170, 254, 2, 0.06);
    color: #e4e4e7;
  }

  .mega-svc-link i,
  .mega-svc-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: all 0.2s ease;
  }

  .mega-svc-link:hover i,
  .mega-svc-link:hover svg {
    opacity: 1;
    color: #AAFE02;
  }

  /* Case Study Card */
  .mega-case-card {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
  }

  .mega-case-card:hover {
    border-color: rgba(170, 254, 2, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px -10px rgba(170, 254, 2, 0.15);
  }

  .mega-case-card-img {
    overflow: hidden;
  }

  .mega-case-card-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mega-case-card:hover .mega-case-card-img img {
    transform: scale(1.06);
  }

  /* Hide on mobile */
  @media (max-width: 1023px) {
    .mega-panel {
      display: none !important;
    }
  }

  .mega-services:before, .mega-services:after{
    border: none !important;
  }

  html[lang="ar"] body {
    font-family: "Almarai", sans-serif !important;
}