: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;
}
.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%,
      rgb(206 246 25 / 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgb(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: 1400px;
}
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, 3rem);
}
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: #fff0;
  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 22px rgb(206 246 25 / 0.21);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 33px rgb(206 246 25 / 0.26);
}
.btn-outline-light {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  background: #fff0;
}
.btn-outline-light:hover {
  background: rgb(206 246 25 / 0.1);
  border-color: var(--primary-color);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}
.navbar {
  padding: 20px 0;
  background: #fff0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
}
.navbar.sticky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.navbar.scrolled {
  background: rgb(10 10 10 / 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgb(206 246 25 / 0.1);
  padding: 15px 0;
}
.navbar-toggler {
  border: 1px solid rgb(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: rgb(206 246 25 / 0.8);
  background: rgb(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);
}
@media (min-width: 992px) {
  .navbar-nav {
    margin: 0 auto;
    align-items: center;
  }
  .navbar-nav .nav-link {
    text-align: center;
  }
}
.menu-backdrop {
  display: none;
}
.mobile-menu-header {
  display: none;
}
.hero-section {
  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: rgb(206 246 25 / 0.1);
  border: 1px solid rgb(206 246 25 / 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #hero {
    padding-top: 20px;
  }
  .hero-badge {
    margin: 10px auto;
    justify-content: center;
    display: flex;
  }
  .hero-title {
    text-align: center;
  }
  .hero-description {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
}
.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: 20px;
}
.phone-mockup img {
  border-radius: 30px;
}
.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 rgb(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: 7%;
}
.card-2 {
  top: 40%;
  left: 10%;
}
.card-3 {
  bottom: 20%;
  left: 7%;
}
.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;
}
@media (max-width: 767px) {
  .trust-bar {
    padding: 30px 0;
  }
  .trust-item {
    padding: 10px;
  }
}
.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,
    rgb(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,
    rgb(206 246 25 / 0.1) 0%,
    rgb(0 255 136 / 0.1) 100%
  );
  border-color: var(--primary-color);
}
.why-feature-section {
  padding: 100px 0;
}
.why-feature-section img {
  border-radius: 20px;
}
.feature-title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .feature-title {
    text-align: center;
  }
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.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;
  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: rgb(206 246 25 / 0.1);
  border: 1px solid rgb(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: #fff0;
  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,
    rgb(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,
    rgb(206 246 25 / 0.1) 0%,
    rgb(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 rgb(0 0 0 / 0.45), 0 0 35px rgb(206 246 25 / 0.25),
    inset 0 0 0 1px rgb(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 rgb(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-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: rgb(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;
}
@media (max-width: 767px) {
  .advanced-feature-card {
    text-align: center;
  }
}
.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 {
  padding: 20px 0 60px;
  overflow: hidden;
}
.portfolio-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: rgb(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;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  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: #fff0;
}
.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%,
    rgb(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: #fff;
  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,
    rgb(206 246 25 / 0.9) 0%,
    rgb(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-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 rgb(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: rgb(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: #fff0;
  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 rgb(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 rgb(206 246 25 / 0.1);
  outline: none;
}
.contact-form .form-control::placeholder {
  color: var(--text-muted);
}
.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.25);
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgb(206 246 25 / 0.12), transparent);
}
.map-title {
  margin: 0;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 16px;
}
.map-subtitle {
  color: var(--text-secondary);
  font-size: 13px;
}
.map-header i {
  color: var(--primary-color);
  font-size: 22px;
}
.map-embed-wrapper {
  position: relative;
  height: 360px;
}
.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) saturate(110%);
}
.map-marker {
  position: absolute;
  bottom: 22px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(0 0 0 / 0.7);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.marker-ping {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(206 246 25 / 0.12);
  animation: ping 2s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.marker-dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #101010;
  background: linear-gradient(135deg, #cef619, #86ff7b);
  box-shadow: 0 10px 25px rgb(206 246 25 / 0.35);
}
.marker-label {
  position: relative;
  z-index: 1;
  color: #f8f8f8;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 767px) {
  .contact-title {
    text-align: center;
  }
  .contact-description {
    text-align: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}
.footer {
  position: relative;
  padding: 80px 0 30px;
  background: var(--bg-dark-secondary);
  color: #d4d4d4;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.03), #fff0),
    linear-gradient(90deg, rgb(206 246 25 / 0.05), rgb(0 255 136 / 0.05));
  pointer-events: none;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer-brand-block {
  /*max-width: 380px;*/
}
.footer-logo {
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 25px rgb(0 0 0 / 0.25));
}
.footer-description {
  color: #d4d4d4;
  line-height: 1.8;
  font-size: 14px;
}
.footer-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.badge-item {
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.badge-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.badge-title {
  color: #f1f1f1;
  font-weight: 700;
  font-size: 13px;
}
.badge-number {
  color: #a6a6a6;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.footer-heading {
  color: #f8f8f8;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 6px;
  border-radius: 999px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: #cfd0d3;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(-4px);
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cef619, #86ff7b);
  color: #101010;
  font-weight: 800;
  box-shadow: 0 20px 50px rgb(206 246 25 / 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.footer-cta i {
  font-size: 20px;
}
.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgb(206 246 25 / 0.45);
  color: #101010;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: #cfd0d3;
  font-size: 14px;
}
.copyright {
  margin: 0;
}
.footer-legal {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.footer-legal a {
  color: #cfd0d3;
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--primary-color);
}
.newsletter-form .input-group {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
}
.newsletter-form .form-control {
  background: #fff0;
  border: none;
  color: var(--text-primary);
  padding: 12px 20px;
}
.newsletter-form .form-control:focus {
  background: #fff0;
  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;
}
@media (max-width: 991px) {
  .footer-cta {
    width: 100%;
    justify-content: center;
  }
  .footer-logo {
    margin: 10px auto;
  }
  .footer-description {
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    text-align: center;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-heading::after {
    display: none;
  }
  .footer p {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .badge-item {
    min-width: auto;
    width: 100%;
  }
}
.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);
}
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.25), 0 0 0 8px rgb(37 211 102 / 0.12);
  z-index: 1100;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  overflow: visible;
  animation: floaty 4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgb(0 0 0 / 0.3), 0 0 0 10px rgb(37 211 102 / 0.18);
}
.whatsapp-ping {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgb(37 211 102 / 0.4);
  animation: ping 2.4s ease-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes ping {
  0% {
    transform: scale(0.75);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@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 rgb(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: #fff0;
    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: rgb(0 0 0 / 0.25);
    border-color: rgb(255 255 255 / 0.35);
  }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.45);
    -webkit-backdrop-filter: blur(4px);
    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;
    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;
    display: flex;
  }
  .trust-number {
    font-size: 36px;
  }
  .service-icon,
  .process-icon,
  .feature-icon-large {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 16px auto;
  }
  .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;
  -webkit-user-select: none;
  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;
}

/* Slide to Unlock Button Styles */
.slide-to-unlock-wrapper {
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.slide-to-unlock-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #cef619 0%, #cef619 100%);
  border-radius: 50px;
  overflow: hidden;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.slide-to-unlock-btn.unlocked {
  cursor: pointer;
  pointer-events: all;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  /* box-shadow: 0 0 10px rgba(206, 246, 25, 0.3); */
}

.slide-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-handle {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(206, 246, 25) 0%, rgb(91 91 91) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 10;
  pointer-events: all;
  /* box-shadow: 0 4px 15px rgba(206, 246, 25, 0.5),
      0 0 25px rgba(206, 246, 25, 0.4); */
  transition: all 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  animation: slideHint 1.2s ease-in-out infinite,
    pulseGlow 1.2s ease-in-out infinite;
}

.slide-handle.dragging {
  animation: none;
}

.slide-to-unlock-btn.unlocked .slide-handle {
  animation: none;
}

.slide-handle:active {
  cursor: grabbing;
  transform: translateY(-50%) scale(0.95);
}

.slide-handle i {
  color: #333;
  font-size: 16px;
  transition: transform 0.3s ease;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.slide-handle.dragging i {
  animation: none;
}

.slide-to-unlock-btn.unlocked .slide-handle i {
  animation: none;
}

.slide-to-unlock-btn.unlocked .slide-handle i {
  transform: rotate(0deg);
}

.slide-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.slide-to-unlock-btn.unlocked .slide-text {
  color: #ffffff;
  /* text-shadow: 0 0 10px rgba(206, 246, 25, 0.5); */
}

/* Progress indicator */
.slide-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(206, 246, 25, 0.1) 0%,
    rgba(206, 246, 25, 0.05) 100%
  );
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 50px;
}

/* Slide to unlock animations */
@keyframes slideHint {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(206, 246, 25, 0.5),
      0 0 25px rgba(206, 246, 25, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(206, 246, 25, 0.7),
      0 0 35px rgba(206, 246, 25, 0.6), 0 0 50px rgba(206, 246, 25, 0.3);
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(3px) scale(1.1);
  }
  50% {
    transform: translateX(6px) scale(1.15);
  }
  75% {
    transform: translateX(3px) scale(1.1);
  }
}

@media (max-width: 767px) {
  .slide-to-unlock-btn {
    height: 55px;
  }

  .slide-handle {
    width: 45px;
    height: 45px;
  }

  .slide-text {
    font-size: 16px;
  }
}
