/* CSS Custom Properties - Design Tokens */
:root {
  /* Button and Badge outlines */
  --button-outline: rgba(0,0,0, .10);
  --badge-outline: rgba(0,0,0, .05);

  /* Border intensity computation */
  --opaque-button-border-intensity: -8;

  /* Elevation backgrounds */
  --elevate-1: rgba(0,0,0, .03);
  --elevate-2: rgba(0,0,0, .08);

  /* Core colors - Light mode */
  --background: 0 0% 100%;
  --foreground: 220 15% 20%;
  --border: 220 10% 90%;
  --card: 0 0% 98%;
  --card-foreground: 220 15% 20%;
  --card-border: 220 10% 92%;
  --primary: 25 100% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 8% 92%;
  --secondary-foreground: 220 15% 25%;
  --muted: 220 10% 95%;
  --muted-foreground: 220 10% 45%;
  --accent: 220 8% 94%;
  --accent-foreground: 220 15% 25%;
  --destructive: 0 75% 55%;
  --destructive-foreground: 0 0% 98%;
  --input: 220 15% 75%;
  --ring: 25 100% 50%;
  --chart-1: 25 100% 50%;
  --chart-2: 120 60% 45%;
  --chart-3: 220 70% 55%;
  --chart-4: 280 65% 60%;
  --chart-5: 340 75% 65%;

  /* Typography */
  --font-sans: 'Montserrat', 'Noto Sans Arabic', sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: Menlo, monospace;

  /* Border radius */
  --radius: 0.5rem;

  /* Shadows */
  --shadow: 0px 2px 0px 0px hsl(220 10% 10% / 0.04), 0px 1px 2px -1px hsl(220 10% 10% / 0.06);
  --shadow-md: 0px 2px 0px 0px hsl(220 10% 10% / 0.06), 0px 2px 4px -1px hsl(220 10% 10% / 0.08);
  --shadow-lg: 0px 2px 0px 0px hsl(220 10% 10% / 0.08), 0px 4px 6px -1px hsl(220 10% 10% / 0.10);
  --shadow-xl: 0px 2px 0px 0px hsl(220 10% 10% / 0.10), 0px 8px 10px -1px hsl(220 10% 10% / 0.12);

  /* Spacing */
  --spacing: 0.25rem;
}

.dark {
  --button-outline: rgba(255,255,255, .10);
  --badge-outline: rgba(255,255,255, .05);
  --opaque-button-border-intensity: 9;
  --elevate-1: rgba(255,255,255, .04);
  --elevate-2: rgba(255,255,255, .09);

  --background: 220 15% 10%;
  --foreground: 0 0% 95%;
  --border: 220 15% 18%;
  --card: 220 15% 12%;
  --card-foreground: 0 0% 95%;
  --card-border: 220 15% 20%;
  --primary: 25 100% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 15% 20%;
  --secondary-foreground: 0 0% 90%;
  --muted: 220 15% 16%;
  --muted-foreground: 220 10% 65%;
  --accent: 220 15% 18%;
  --accent-foreground: 0 0% 90%;
  --destructive: 0 75% 55%;
  --destructive-foreground: 0 0% 98%;
  --input: 220 15% 35%;
  --ring: 25 100% 50%;
  --chart-1: 25 100% 60%;
  --chart-2: 120 60% 65%;
  --chart-3: 220 70% 70%;
  --chart-4: 280 65% 75%;
  --chart-5: 340 75% 75%;

  --shadow: 0px 2px 0px 0px hsl(0 0% 0% / 0.12), 0px 1px 2px -1px hsl(0 0% 0% / 0.15);
  --shadow-md: 0px 2px 0px 0px hsl(0 0% 0% / 0.15), 0px 2px 4px -1px hsl(0 0% 0% / 0.18);
  --shadow-lg: 0px 2px 0px 0px hsl(0 0% 0% / 0.18), 0px 4px 6px -1px hsl(0 0% 0% / 0.20);
  --shadow-xl: 0px 2px 0px 0px hsl(0 0% 0% / 0.20), 0px 8px 10px -1px hsl(0 0% 0% / 0.25);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  /* background-color: hsl(var(--background));s */
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(0 0% 100%);


}
@media (max-width: 991.5px) {
  body {
    height: auto;
  background-color: hsl(var(--background));
  display: block;

  }
}


::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

::-webkit-scrollbar {
  width: 0px;
  border-radius: 20px;
}

::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

html {
  scroll-behavior: smooth;
}
.mobile-view-wrapper {
  border: 10px solid #333;
    max-width: 375px;
    height: 98vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* overflow: hidden; */
    border-radius: 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;

}


@media (max-width: 991.5px) {
  .mobile-view-wrapper {
    height: auto;
    border-radius: 0;
    border: none;
    max-width: 100%;
  }
}
.mobile-view-wrapper::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -13px;
  width: 3px;
  height: 65px;
  background-color: #333;
  border-radius: 0 10px 10px 0;
}
@media (max-width: 991.5px) {
  .mobile-view-wrapper::after {
    display: none;
  }
}
.mobile-view-wrapper::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -13px;
  width: 3px;
  height: 35px;
  background-color: #333;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 991.5px) {
  .mobile-view-wrapper::before {
    display: none;
  }
}
.volume-btn1::before {
  content: "";
  position: absolute;
  top: 31%;
  left: -13px;
  width: 3px;
  height: 50px;
  background-color: #333;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 991.5px) {
  .volume-btn1::before {
    display: none;
  }
}
.volume-btn2::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -13px;
  width: 3px;
  height: 50px;
  background-color: #333;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 991.5px) {
  .volume-btn2::before {
    display: none;
  }
}
  




/* Scrollable content area */
.scrollable-content {
  flex-grow: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: hsl(var(--background));
  border-radius: 3.4rem;
   -webkit-backface-visibility: hidden; 
  -webkit-transform: translate3d(0, 0, 0);
}
@media (max-width: 991.5px) {
  .scrollable-content {
    border-radius: 0;
     overflow-y: unset;
  }
}
.camera-lens{
  width: 110px;
  padding: 0 0 6px 0;
  background-color: #333;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;


}
@media (max-width: 991.5px) {
  .camera-lens{
    display: none!important;
  }
}
.camera-lens img{
  width: 10%;
  margin: 0 20px 0 auto;
  display: block;


}

.mobile-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
}

h2 {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
}

h3 {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
}

p {
  line-height: 1.6;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  z-index: 0;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Button Sizes */
.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 2.25rem; /* 36px - default */
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  min-height: 2.5rem; /* 40px */
}

.btn-full {
  width: 100%;
}

/* Button Variants */
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-color: hsl(var(--secondary));
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

/* Button Hover States */
.btn::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.btn:hover:not(:disabled)::after {
  background-color: var(--elevate-1);
}

.btn:active:not(:disabled)::after {
  background-color: var(--elevate-2);
}

/* Card Styles */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 0;
}

.card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.card.hoverable:hover::after {
  background-color: var(--elevate-1);
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

/* Logo Section */
.logo-section {
  background-color: hsl(var(--background));
  padding: 1.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
  border-radius: 4rem 0 0 0;
}

.logo-container {
  text-align: center;
}

.logo {
  max-height: 60px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Hero Section */
.hero-section {
  background-color: hsl(var(--background));
  padding: 3rem 0;
      
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.phone-mockup {
  position: relative;
  margin: 0 auto 2rem;
  width: 8rem;
  height: 16rem;
}

.phone-outer {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--foreground));
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
}

.phone-inner {
  position: absolute;
  inset: 0.5rem;
  background-color: hsl(var(--background));
  border-radius: 1.5rem;
  padding: 0.75rem;
}

.phone-screen {
  height: 100%;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.phone-icon {
  color: hsl(var(--primary));
}

.phone-icon.smartphone {
  width: 2rem;
  height: 2rem;
}

.phone-icon.trending {
  width: 1.5rem;
  height: 1.5rem;
}

.phone-icon.target {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.8;
}

.phone-bars {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bar {
  background-color: hsl(var(--primary));
  border-radius: 9999px;
}

.bar.large {
  width: 3rem;
  height: 0.5rem;
}

.bar.small {
  width: 2rem;
  height: 0.25rem;
  opacity: 0.6;
}

.hero-text {
  max-width: 350px;
  margin: 0 auto;
}

.hero-text h1 {
  color: hsl(var(--foreground));
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.hero-cta {
  padding-top: 1rem;
}

/* Services Section */
.services-section {
  background-color: hsl(var(--muted) / 0.3);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}

.service-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.service-card:hover::after {
  background-color: var(--elevate-1);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  color: hsl(var(--primary));
}

.service-content h3 {
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.service-content p {
  color: hsl(var(--muted-foreground));
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: hsl(var(--background));
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dashboard-card {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.1));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background-color: hsl(var(--background) / 0.8);
  padding: 0.75rem;
  border-radius: var(--radius);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.stat-dot.primary {
  background-color: hsl(var(--primary));
}

.stat-dot.chart-2 {
  background-color: hsl(var(--chart-2));
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.stat-change {
  font-size: 0.75rem;
}

.stat-change.primary {
  color: hsl(var(--primary));
}

.stat-change.chart-2 {
  color: hsl(var(--chart-2));
}

.dashboard-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-icon svg {
  color: hsl(var(--primary));
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.benefit-content svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.benefit-content span {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* Industry Snapshot Section */
.industry-snapshot-section {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.industry-snapshot-section .section-header h2 {
  color: hsl(var(--background));
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-block {
  text-align: center;
}

.stat-percentage {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.stat-block p {
  font-size: 1.125rem;
  color: hsl(var(--background) / 0.9);
  line-height: 1.6;
}

.stats-source {
  text-align: center;
  margin-top: 3rem;
}

.stats-source p {
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.7);
}

/* Client Industries Section */
.client-industries-section {
  background-color: hsl(var(--muted) / 0.3);
}

.industries-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}

.industry-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}

.industry-card:hover::after {
  background-color: var(--elevate-1);
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.industry-card svg {
  color: hsl(var(--primary));
}

.industry-card span {
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* Our Promise Section */
.our-promise-section {
  background-color: hsl(var(--background));
}

.promise-card {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--primary) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.promise-icon {
  margin-bottom: 1.5rem;
}

.promise-icon svg {
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.promise-card h2 {
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.promise-card p {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  line-height: 1.6;
  font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
  background-color: hsl(var(--muted) / 0.3);
}

.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--card-border));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.success-message {
  text-align: center;
  padding: 2rem;
  color: hsl(var(--foreground));
}

.success-message svg {
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.success-message h3 {
  margin-bottom: 0.5rem;
}

.success-message p {
  color: hsl(var(--muted-foreground));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.form-group input {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.2s ease-in-out;
}

.form-group input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 2.5rem;
}

.error-message {
  font-size: 0.875rem;
  color: hsl(var(--destructive));
  min-height: 1.25rem;
}

.btn-loading {
  display: none !important;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline !important;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid hsl(var(--border));
  padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 480px) {
  .mobile-container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.375rem;
  }
  
  .stat-percentage {
    font-size: 2.5rem;
  }
  
  .contact-form-section {
    padding-bottom: 7rem;
  }
}

/* Dark mode toggle class for JavaScript */
.dark-mode-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  /* right: calc((100vw - 400px) / 2 + 1rem); */
}

.dark-mode-toggle svg {
  color: hsl(var(--foreground));
}

/* Contact Information Section */
.contact-info-section {
  background-color: hsl(var(--background));
  padding: 3rem 0;
}

.contact-info-content {
  text-align: center;
}

.contact-info-content h3 {
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  font-size: 1.375rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact-detail svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  color: hsl(var(--foreground));
  font-weight: 500;
}

/* Copyright Section */
.copyright-section {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 2rem 0 8rem 0; /* Extra bottom padding for sticky footer */
}

.copyright-content {
  text-align: center;
}

.copyright-content p {
  margin: 0;
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.8);
}
.mobile-view-wrapper, .mobile-view-wrapper * {
  cursor: none !important;
}

/* Custom cursor trail styles */
.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 50px;
  height: 50px;
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.1s ease-out;
  will-change: transform, opacity, left, top;
  display: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Hide cursor trail on mobile devices */
@media (max-width: 991px) {
  .cursor-trail {
    display: none !important;
  }
  
  /* Restore default cursor on mobile */
  .mobile-view-wrapper, .mobile-view-wrapper * {
    cursor: auto !important;
  }
}