/* Enhanced Main Styles */
:root {
  /* Enhanced Color Palette */
  --primary-50: #f0f4ff;
  --primary-100: #e0eaff;
  --primary-200: #c7d8ff;
  --primary-300: #a5bcff;
  --primary-400: #8195ff;
  --primary-500: #667eea;
  --primary-600: #5a67d8;
  --primary-700: #4c51bf;
  --primary-800: #434190;
  --primary-900: #3c366b;

  --secondary-50: #fff5f5;
  --secondary-100: #fed7d7;
  --secondary-200: #feb2b2;
  --secondary-300: #fc8181;
  --secondary-400: #f56565;
  --secondary-500: #f5576c;
  --secondary-600: #e53e3e;
  --secondary-700: #c53030;
  --secondary-800: #9b2c2c;
  --secondary-900: #742a2a;

  /* Enhanced Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-400) 0%,
    var(--secondary-600) 100%
  );
  --gradient-success: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  --gradient-warning: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  --gradient-info: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
  --gradient-dark: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);

  /* Hero Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    var(--primary-600) 0%,
    var(--primary-800) 50%,
    var(--secondary-600) 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(245, 87, 108, 0.8) 100%
  );

  /* Enhanced Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Enhanced Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Enhanced Animations */
  --animation-fast: 150ms ease;
  --animation-normal: 250ms ease;
  --animation-slow: 350ms ease;
  --animation-slower: 500ms ease;

  /* Enhanced Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1010;
  --z-fixed: 1020;
  --z-modal-backdrop: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
  --z-toast: 1070;
  --z-loading: 9999;
}

/* Enhanced Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--dark-color);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  color: var(--dark-color);
}

h1 {
  font-size: var(--font-size-5xl);
}
h2 {
  font-size: var(--font-size-4xl);
}
h3 {
  font-size: var(--font-size-3xl);
}
h4 {
  font-size: var(--font-size-2xl);
}
h5 {
  font-size: var(--font-size-xl);
}
h6 {
  font-size: var(--font-size-lg);
}

.display-1 {
  font-size: var(--font-size-6xl);
  font-weight: 900;
}
.display-2 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
}
.display-3 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
}
.display-4 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

/* Enhanced Text Styles */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced Containers */
.container-full {
  width: 100%;
  max-width: none;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-lg {
  padding: var(--space-20) 0 var(--space-20) 0;
}

/* Enhanced Buttons */
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: 1.5;
  border-radius: var(--border-radius-md);
  padding: var(--space-3) var(--space-6);
  border: 2px solid transparent;
  transition: var(--animation-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-500), 0.25);
}

.btn-lg {
  font-size: var(--font-size-lg);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--border-radius-lg);
}

.btn-sm {
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-sm);
}

/* Enhanced Button Variants */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.25);
}

.btn-primary:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 4px 6px rgba(245, 87, 108, 0.25);
}

.btn-secondary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(245, 87, 108, 0.4);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-500);
  border-color: var(--primary-500);
}

.btn-outline-primary:hover {
  background: var(--primary-500);
  color: white;
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
}

/* Enhanced Cards */
.card {
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: var(--animation-normal);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.card-elevated {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-elevated:hover {
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Forms */
.form-control,
.form-select {
  border-radius: var(--border-radius-md);
  border: 2px solid #e2e8f0;
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-base);
  line-height: 1.5;
  transition: var(--animation-normal);
  background-color: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: var(--space-2);
}

/* Enhanced Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 992px) {
  :root {
    --font-size-6xl: 3rem;
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }
  h2 {
    font-size: var(--font-size-3xl);
  }
  h3 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-20: 3rem;
    --space-16: 2.5rem;
    --space-12: 2rem;
  }

  .container-full {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .hero-section {
    min-height: 70vh;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }

  .display-1 {
    font-size: var(--font-size-4xl);
  }
  .display-2 {
    font-size: var(--font-size-3xl);
  }
  .display-3 {
    font-size: var(--font-size-2xl);
  }
  .display-4 {
    font-size: var(--font-size-xl);
  }

  .section {
    padding: var(--space-12) 0;
  }
}

/* Performance Optimizations */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Accessibility Improvements */
.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;
}

.visually-hidden-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

/* Focus Management */
.focus-ring:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles can be added here */
}

/* Print Styles */
@media print {
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .btn {
    border: 1px solid #000;
    background: transparent !important;
    color: #000 !important;
  }

  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
}
/* ========================================
   Enhanced Interactive Styles
   ======================================== */

/* Custom Lightbox Styles */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.custom-lightbox.closing {
  opacity: 0;
  transform: scale(0.9);
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: white;
}

.lightbox-counter {
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-normal);
}

.lightbox-close:hover {
  color: #f8b500;
  transform: scale(1.1);
}

.lightbox-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-loading {
  color: white;
  text-align: center;
}

.lightbox-error {
  color: white;
  text-align: center;
  font-size: 1.1rem;
}

.lightbox-caption {
  color: white;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.lightbox-caption h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f8b500;
}

.lightbox-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(248, 181, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-thumbnails {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  overflow-x: auto;
}

.lightbox-thumbnail {
  width: 60px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.lightbox-thumbnail.active {
  opacity: 1;
  border-color: #f8b500;
  transform: scale(1.1);
}

.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enhanced Search Results */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-result-item {
  transition: var(--transition-normal);
}

.search-result-item:hover,
.search-result-item.selected {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(245, 87, 108, 0.1)
  );
}

.search-result-item .result-title {
  color: var(--primary-color);
  font-weight: 600;
}

.search-result-item .result-excerpt {
  font-size: 0.9rem;
  line-height: 1.4;
}

.search-result-item mark {
  background: linear-gradient(135deg, #fff3cd, #f8d7da);
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-weight: 600;
}

/* Enhanced Notifications */
.notification {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
  transform: translateX(-100%);
  transition: var(--transition-normal);
}

.notification.show {
  transform: translateX(0);
}

.notification.removing {
  transform: translateX(-100%);
  opacity: 0;
}

.notification-success {
  border-color: #10b981;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.notification-error {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2, #fecaca);
}

.notification-warning {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.notification-info {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-message {
  flex: 1;
  font-weight: 500;
}

/* Enhanced Form Validation */
.form-control.is-valid,
.form-select.is-valid {
  border-color: #10b981;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.94-.94 2.94-2.94.94.94-3.88 3.88L.64 6.03l.94-.94z'/%3e%3c/svg%3e");
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 7'/%3e%3c/svg%3e");
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #ef4444;
  font-weight: 500;
}

/* File Upload Enhancements */
.file-upload-container {
  border: 2px dashed #d1d5db;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.file-upload-container.drag-over {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(245, 87, 108, 0.1)
  );
  transform: scale(1.02);
}

.file-preview-item {
  background: white;
  transition: var(--transition-normal);
}

.file-preview-item:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-md);
}

/* Enhanced Loading States */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-dots::after {
  content: "";
  animation: loading-dots 1.5s steps(4, end) infinite;
}

@keyframes loading-dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60% {
    content: "...";
  }
  80%,
  100% {
    content: "";
  }
}

/* Enhanced Accessibility */
.keyboard-navigation *:focus {
  outline: 3px solid var(--primary-color) !important;
  outline-offset: 2px !important;
  border-radius: var(--border-radius-sm) !important;
}

.skip-links {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 1000;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* High Contrast Mode */
.high-contrast {
  --primary-color: #0000ff;
  --secondary-color: #ff0000;
  --text-color: #000000;
  --bg-color: #ffffff;
}

.high-contrast .btn {
  border: 2px solid currentColor !important;
  font-weight: bold !important;
}

/* Reduced Motion */
.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

/* Offline Styles */
.offline .online-only {
  opacity: 0.5;
  pointer-events: none;
}

.offline::before {
  content: "وضع عدم الاتصال";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ef4444;
  color: white;
  text-align: center;
  padding: 0.5rem;
  z-index: 9998;
  font-weight: 600;
}

/* Slow Connection Optimizations */
.slow-connection .heavy-animation {
  animation: none !important;
}

.slow-connection .background-image {
  background-image: none !important;
}

/* Dark Theme Support */
.dark-theme {
  --bg-color: #1a202c;
  --text-color: #f7fafc;
  --border-color: #4a5568;
  --card-bg: #2d3748;
}

.dark-theme .card {
  background: var(--card-bg);
  color: var(--text-color);
  border-color: var(--border-color);
}

.dark-theme .form-control,
.dark-theme .form-select {
  background: var(--card-bg);
  color: var(--text-color);
  border-color: var(--border-color);
}

.dark-theme .navbar {
  background: rgba(26, 32, 44, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* RTL Enhancements */
[dir="rtl"] .lightbox-navigation {
  flex-direction: row-reverse;
}

[dir="rtl"] .search-results {
  text-align: right;
}

[dir="rtl"] .notification {
  border-right: 4px solid;
  border-left: 1px solid #e5e7eb;
}

/* Print Optimizations */
@media print {
  .custom-lightbox,
  .notification,
  .skip-links,
  .float-buttons {
    display: none !important;
  }

  .search-results {
    display: none !important;
  }

  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .lightbox-container {
    padding: 1rem;
  }

  .lightbox-thumbnails {
    display: none;
  }

  .notification {
    margin: 0.5rem;
    border-radius: var(--border-radius-md);
  }

  .search-results {
    max-height: 300px;
  }
}

/* Performance Enhancements */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}
