:root {
  --primary-color: #cef619;
  --primary-dark: #b8dd15;
  --primary-light: #d9f84d;
  --secondary-color: #1a1a1a;
  --accent-color: #00ff88;
  --bg-dark: #0a0a0a;
  --bg-dark-secondary: #111111;
  --bg-card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --border-color: rgba(206, 246, 25, 0.1);
  --shadow-glow: 0 0 25px rgba(206, 246, 25, 0.2);
  --font-family: "Cairo", sans-serif;

  --color-text: #000;
  --colog-bg: #000;
  --color-bg-accent: #ffe018;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Accessibility Classes */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-to-main {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 700;
}

.skip-to-main:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1b0d 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  direction: rtl;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(206, 246, 25, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(206, 246, 25, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 30px rgba(206, 246, 25, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(206, 246, 25, 0.45);
}

.btn-outline-light {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(206, 246, 25, 0.1);
  border-color: var(--primary-color);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.navbar {
  padding: 20px 0;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(206, 246, 25, 0.1);
  padding: 15px 0;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.navbar-toggler:hover {
  transform: translateY(-1px);
  border-color: rgba(206, 246, 25, 0.8);
  background: rgba(206, 246, 25, 0.08);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px;
  height: 2px;
  background-color: #fff;
  box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 40px);
}

.menu-backdrop {
  display: none;
}

.mobile-menu-header {
  display: none;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(206, 246, 25, 0.1);
  border: 1px solid rgba(206, 246, 25, 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 30px;
}

.hero-title {
  margin-bottom: 30px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.phone-mockup {
  position: relative;
  padding: 40px;
}

.phone-mockup img {
  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-card i {
  font-size: 24px;
  color: var(--primary-color);
}

.floating-card span {
  font-weight: 600;
  color: var(--text-primary);
}

.card-1 {
  top: 10%;
  left: -10%;
}

.card-2 {
  top: 40%;
  left: -15%;
}

.card-3 {
  bottom: 20%;
  left: -5%;
}

.trust-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  padding: 20px;
}

.trust-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.trust-text {
  color: var(--text-secondary);
  font-size: 16px;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(206, 246, 25, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #000;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 0;
}

.highlight-card {
  background: linear-gradient(
    135deg,
    rgba(206, 246, 25, 0.1) 0%,
    rgba(0, 255, 136, 0.1) 100%
  );
  border-color: var(--primary-color);
}

.why-feature-section {
  padding: 100px 0;
}

.why-feature-section img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.feature-title {
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #000;
}

.feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-content p {
  margin: 0;
  color: var(--text-secondary);
}

.clients-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(206, 246, 25, 0.03) 0%,
    rgba(0, 255, 136, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.clients-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.clients-header {
  text-align: center;
  margin-bottom: 80px;
}

.clients-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(206, 246, 25, 0.1);
  border: 1px solid rgba(206, 246, 25, 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.clients-header h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clients-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.client-item {
  perspective: 1000px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.client-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(206, 246, 25, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.client-card:hover .client-glow {
  transform: translate(-50%, -50%) scale(1);
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(206, 246, 25, 0.1) 0%,
    rgba(0, 255, 136, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.client-card:hover::before {
  opacity: 1;
}

.client-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  border-color: var(--primary-color);
  /* تقليل التوهج والبوكس شادو */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 35px rgba(206, 246, 25, 0.25),
    inset 0 0 0 1px rgba(206, 246, 25, 0.15);
}

.client-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.client-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1) rotateY(360deg);
}

.client-info {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.client-card:hover .client-info {
  opacity: 1;
  transform: translateY(0);
}

.client-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.client-info span {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .client-card {
    padding: 30px 20px;
  }

  .client-card img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 80px 0;
  }

  .clients-header {
    margin-bottom: 50px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
  }

  .client-card {
    padding: 25px 15px;
  }

  .client-card img {
    width: 50px;
    height: 50px;
  }

  .clients-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* process */

.process-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.process-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(206, 246, 25, 0.1);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #000;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.process-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.features-section {
  padding: 100px 0;
}

.advanced-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
}

.advanced-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #000;
  margin-bottom: 25px;
}

.advanced-feature-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.advanced-feature-card ul {
  list-style: none;
  padding: 0;
}

.advanced-feature-card li {
  padding: 12px 0 12px 30px;
  color: var(--text-secondary);
  position: relative;
  line-height: 1.6;
}

.advanced-feature-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  margin-inline-end: 10px;
  color: var(--accent-color);
}

/* Portfolio Swiper Styles */
.portfolio-swiper {
  padding: 20px 0 60px;
  overflow: visible;
}

.portfolio-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: rgba(206, 246, 25, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-swiper .swiper-button-next:hover,
.portfolio-swiper .swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1);
}

.portfolio-swiper .swiper-button-next::after,
.portfolio-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.portfolio-swiper .swiper-button-prev {
  right: auto;
  left: 10px;
}

.portfolio-swiper .swiper-button-next {
  left: auto;
  right: 10px;
}

.portfolio-swiper .swiper-pagination {
  bottom: 0;
}

.portfolio-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.portfolio-swiper .swiper-lazy-preloader {
  border-color: var(--primary-color);
  border-top-color: transparent;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 3/3;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.sectors-section {
  padding: 100px 0;
}

.sector-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.sector-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sector-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(206, 246, 25, 0.9) 0%,
    rgba(0, 255, 136, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sector-card:hover .sector-overlay {
  opacity: 1;
}

.sector-card:hover .sector-image img {
  transform: scale(1.1);
}

.sector-overlay i {
  font-size: 64px;
  color: #000;
}

.sector-card h4 {
  padding: 25px 20px;
  background: var(--bg-card);
  /* border: 1px solid var(--border-color); */
  border-top: none;
  margin: 0;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.sector-card:hover h4 {
  background: var(--bg-dark);
  border-color: var(--primary-color);
}

.table-responsive {
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.comparison-table {
  width: 100%;
  background: var(--bg-card);
  border-collapse: collapse;
  margin: 0;
}

.comparison-table thead {
  background: var(--primary-color);
}

.comparison-table th {
  padding: 25px 20px;
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  border: none;
}

.comparison-table td {
  padding: 25px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr {
  transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(206, 246, 25, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table i {
  margin-left: 10px;
  font-size: 20px;
}

.comparison-table span {
  font-weight: 600;
  font-size: 16px;
}

.text-danger {
  color: #ff4444 !important;
}

.text-success {
  color: var(--accent-color) !important;
}

.contact-section {
  padding: 100px 0;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: transparent;
  color: #000;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-form .form-control {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px 20px;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: var(--bg-card);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(206, 246, 25, 0.1);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.footer {
  background: var(--bg-dark-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-title {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.newsletter-form .input-group {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 12px 20px;
}

.newsletter-form .form-control:focus {
  background: transparent;
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px;
}

.footer-divider {
  border-color: var(--border-color);
  margin: 40px 0 30px;
}

.copyright {
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar {
    padding: 16px 0;
  }

  .navbar-collapse {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #f8f8f8;
    padding: 24px 24px 48px;
    border-radius: 0;
    margin-top: 0;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .navbar-collapse.show {
    transform: translateX(0);
    display: block !important;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
  }

  .mobile-menu-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #161616;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 22px;
    line-height: 1;
  }

  .mobile-nav-list {
    width: 100%;
  }

  .navbar-nav .nav-link {
    color: var(--text-primary);
    padding: 14px 0;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid #ededed;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-toggler {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
  }

  .menu-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  .hero-section {
    padding-top: 100px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .navbar-collapse {
    background: var(--bg-dark-secondary);
    padding: 20px;
    border-radius: 15px;
    /* margin-top: 20px; */
    border: 1px solid var(--border-color);
  }

  .phone-mockup {
    margin-top: 60px;
  }

  .floating-card {
    padding: 12px 20px;
  }

  .process-slider {
    grid-template-columns: 1fr;
  }

  .portfolio-swiper {
    padding: 20px 0 50px;
  }

  .portfolio-swiper .swiper-button-next,
  .portfolio-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-swiper .swiper-button-next::after,
  .portfolio-swiper .swiper-button-prev::after {
    font-size: 16px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .trust-number {
    font-size: 36px;
  }

  .service-icon,
  .process-icon,
  .feature-icon-large {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .floating-card {
    display: none;
  }

  .clients-slider {
    gap: 40px;
  }

  .sector-card h4 {
    font-size: 14px;
    padding: 20px 15px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
.marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
.marquee-reverse .marquee_group {
  animation-direction: reverse;
  animation-delay: -3s;
}
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
.fa {
  font-size: 70px !important;
}
.marquee .fa {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 19/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}
