/*=================================
  SegnaTech CSS Main Stylesheet
  Author: SegnaTech Design Team
  Version: 1.0.0
==================================*/

/*---------------------------------
  TABLE OF CONTENTS
  
  1. CSS Variables & Base Styles
  2. Typography
  3. Layout & Grid Utilities
  4. Component Utilities
  5. Glassmorphic Elements
  6. Animation Utilities
  7. Component Styles
  8. Page Sections
  9. Responsive Styles
---------------------------------*/

/*---------------------------------
  1. CSS VARIABLES & BASE STYLES
---------------------------------*/
:root {
  /* Brand Colors */
  --primary: #5D3FD3;        /* Purple - Brand primary */
  --primary-light: #9277ED;  /* Light purple */
  --primary-dark: #472D9F;   /* Dark purple */
  --secondary: #3FD3C0;      /* Teal - Brand secondary */
  --accent: #FFB84D;         /* Orange accent */
  --accent-coral: #FB7185;   /* Coral accent */
  
  /* UI Colors */
  --dark: #1F2937;           /* Dark text */
  --gray: #6B7280;           /* Gray text */
  --light-gray: #E5E7EB;     /* Light gray lines */
  --background: #F9FAFB;     /* Background color */
  --white: #FFFFFF;          /* White */
  --success: #10B981;        /* Green */
  --error: #EF4444;          /* Red */
  
  /* Glassmorphism Properties */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.2);
  --glass-blur: 16px;
  
  /* Spacing System (0.25rem = 4px base) */
  --spacing-xs: 0.25rem;     /* 4px */
  --spacing-sm: 0.5rem;      /* 8px */
  --spacing-md: 1rem;        /* 16px */
  --spacing-lg: 2rem;        /* 32px */
  --spacing-xl: 3rem;        /* 48px */
  --spacing-xxl: 5rem;       /* 80px */
  
  /* Typography */
  --font-size-base: 16px;    /* Base font size */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --line-height-tight: 1.2;
  --line-height-base: 1.5;
  --line-height-loose: 1.8;
  
  /* Border Radius */
  --radius-sm: 0.25rem;      /* 4px */
  --radius-md: 0.5rem;       /* 8px */
  --radius-lg: 1rem;         /* 16px */
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 15px;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-base: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  
  /* Layout */
  --container-width: 1200px;
  --container-padding: var(--spacing-md);
  
  /* Standard Component Sizes */
  --button-height: 44px;     /* Touch-friendly minimum */
  --button-padding: 0.85rem 1.7rem;
}

/*---------------------------------
  4. COMPONENT UTILITIES
---------------------------------*/

/* Border Radius Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Background & Color Utilities */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark); }
.bg-transparent { background-color: transparent; }

/* Background Opacity */
.bg-opacity-0 { background-color: rgba(255, 255, 255, 0); }
.bg-opacity-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-opacity-30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-opacity-40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-opacity-50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-opacity-60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-opacity-70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-opacity-80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-opacity-90 { background-color: rgba(255, 255, 255, 0.9); }

/* Transition Utilities */
.transition-fast { transition: var(--transition-fast); }
.transition-base { transition: var(--transition-base); }
.transition-smooth { transition: var(--transition-smooth); }
.transition-none { transition: none; }

/*---------------------------------
  5. GLASSMORPHIC ELEMENTS
---------------------------------*/

/* Glass Card Utility Class */
.glass-card {
  /* Base styles */
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: var(--transition-smooth);
  overflow: hidden;
  position: relative;
  
  /* Accessibility considerations */
  isolation: isolate; /* Creates a new stacking context */
  color: inherit;
  
  /* Subtle light glow effect from the top */
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

/* Subtle inner border glow effect */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: calc(var(--radius-lg) - 1px);
  border: 1px solid transparent;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05) 50%,
    transparent 50%,
    transparent
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* Hover states */
.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

.glass-card:hover::before {
  opacity: 0.8;
}

/* Variants */
/* Dark variant - For use on darker backgrounds */
.glass-card.dark {
  background: rgba(255, 255, 255, 0.15);
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(255, 255, 255, 0.1);
}

.glass-card.dark::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.08) 50%,
    transparent 50%,
    transparent
  );
}

.glass-card.dark:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35),
              0 0 30px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Primary brand variant */
.glass-card.primary {
  background: rgba(93, 63, 211, 0.1);
  border-color: rgba(93, 63, 211, 0.2);
  box-shadow: 0 8px 32px rgba(93, 63, 211, 0.2);
}

.glass-card.primary:hover {
  background: rgba(93, 63, 211, 0.15);
  border-color: rgba(93, 63, 211, 0.3);
  box-shadow: 0 15px 40px rgba(93, 63, 211, 0.25);
}

/*---------------------------------
  2. TYPOGRAPHY & RESET
---------------------------------*/
/* CSS Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: var(--line-height-base);
  background-color: var(--background);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
  font-weight: 600;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.25px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: var(--line-height-base);
}

/* Text Utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Lists */
ul, ol {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

ul.unstyled,
ol.unstyled {
  list-style: none;
  padding-left: 0;
}

/* Media Elements */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0 0 var(--spacing-md) 0;
}

figcaption {
  font-size: 0.875rem;
  color: var(--gray);
  text-align: center;
  margin-top: var(--spacing-xs);
}

/*---------------------------------
  3. LAYOUT & GRID UTILITIES
---------------------------------*/
/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

/* Sections */
section {
  position: relative;
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-xxl) 0;
}

.section-sm {
  padding: var(--spacing-lg) 0;
}

/* Flex Utilities */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-1 {
  flex: 1;
}

/* Grid Utilities */
.d-grid {
  display: grid;
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-xs { margin: var(--spacing-xs); }
.m-sm { margin: var(--spacing-sm); }
.m-md { margin: var(--spacing-md); }
.m-lg { margin: var(--spacing-lg); }
.m-xl { margin: var(--spacing-xl); }
.m-auto { margin: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-xs { margin-left: var(--spacing-xs); margin-right: var(--spacing-xs); }
.mx-sm { margin-left: var(--spacing-sm); margin-right: var(--spacing-sm); }
.mx-md { margin-left: var(--spacing-md); margin-right: var(--spacing-md); }
.mx-lg { margin-left: var(--spacing-lg); margin-right: var(--spacing-lg); }
.mx-xl { margin-left: var(--spacing-xl); margin-right: var(--spacing-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-xs { margin-top: var(--spacing-xs); margin-bottom: var(--spacing-xs); }
.my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.my-xl { margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-auto { margin-bottom: auto; }

.p-0 { padding: 0; }
.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-xs { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-xl { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-xs { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

/* Position Utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Display Utilities */
.d-none { display: none; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-block { display: block; }
.d-table { display: table; }
.d-table-cell { display: table-cell; }
.d-table-row { display: table-row; }

/* Visibility Utilities */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* Overflow Utilities */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/*---------------------------------
  6. BUTTON COMPONENTS
---------------------------------*/

/* Base Button Styles */
.btn {
  display: inline-block;
  padding: var(--button-padding);
  min-height: var(--button-height);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* For when using as anchor */
  line-height: 1;
  white-space: nowrap;
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(93, 63, 211, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(93, 63, 211, 0.1);
  transform: translateY(-3px) scale(1.05);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), darken(var(--accent), 15%));
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 184, 77, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 184, 77, 0.5);
}

/* Button Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-height: 52px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

/* Button States */
.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
  transform: none !important;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/*---------------------------------
  7. NEON BUTTON COMPONENT
---------------------------------*/

/* Neon Button - Glowing Buttons with Pulse Animation */
.neon-button {
  /* Base styles */
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--button-padding);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  overflow: hidden;
  min-width: 150px;
  line-height: 1.2;
  
  /* Transition */
  transition: var(--transition-smooth);
  
  /* Accessibility */
  color: var(--white);
  outline: none;
  min-height: var(--button-height); /* Minimum touch target size */
  
  /* Default state with subtle gradient */
  background-color: var(--primary);
  background-image: linear-gradient(
    40deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0) 70%
  );
  
  /* Default shadow */
  box-shadow: 0 4px 15px rgba(93, 63, 211, 0.25),
              0 0 5px rgba(93, 63, 211, 0.5),
              inset 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Glow effect element */
.neon-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: transparent;
  border-radius: calc(var(--radius-md) + 2px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Inner highlight */
.neon-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0.5;
  pointer-events: none;
}

/* States */
.neon-button:hover {
  transform: translateY(-3px) scale(1.05);
}

.neon-button:hover::before {
  opacity: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

.neon-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(93, 63, 211, 0.2);
}

.neon-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Neon Button Variants */
.neon-button.primary {
  background-color: var(--primary);
  border-color: rgba(93, 63, 211, 0.5);
  box-shadow: 0 4px 15px rgba(93, 63, 211, 0.25),
              0 0 5px rgba(93, 63, 211, 0.7), 
              inset 0 0 5px rgba(93, 63, 211, 0.3);
}

.neon-button.primary:hover {
  background-color: var(--primary-light);
  border-color: rgba(93, 63, 211, 0.8);
  box-shadow: 0 6px 20px rgba(93, 63, 211, 0.35),
              0 0 10px rgba(93, 63, 211, 0.9), 
              0 0 20px rgba(93, 63, 211, 0.5), 
              inset 0 0 10px rgba(93, 63, 211, 0.4);
}

.neon-button.primary:hover::before {
  box-shadow: 0 0 15px 3px rgba(93, 63, 211, 0.7);
}

.neon-button.secondary {
  background-color: var(--secondary);
  border-color: rgba(63, 211, 192, 0.5);
  box-shadow: 0 4px 15px rgba(63, 211, 192, 0.25),
              0 0 5px rgba(63, 211, 192, 0.7), 
              inset 0 0 5px rgba(63, 211, 192, 0.3);
}

.neon-button.secondary:hover {
  border-color: rgba(63, 211, 192, 0.8);
  box-shadow: 0 6px 20px rgba(63, 211, 192, 0.35),
              0 0 10px rgba(63, 211, 192, 0.9), 
              0 0 20px rgba(63, 211, 192, 0.5), 
              inset 0 0 10px rgba(63, 211, 192, 0.4);
}

.neon-button.secondary:hover::before {
  box-shadow: 0 0 15px 3px rgba(63, 211, 192, 0.7);
}

.neon-button.coral {
  background-color: var(--accent-coral);
  border-color: rgba(251, 113, 133, 0.5);
  box-shadow: 0 4px 15px rgba(251, 113, 133, 0.25),
              0 0 5px rgba(251, 113, 133, 0.7), 
              inset 0 0 5px rgba(251, 113, 133, 0.3);
}

.neon-button.coral:hover {
  border-color: rgba(251, 113, 133, 0.8);
  box-shadow: 0 6px 20px rgba(251, 113, 133, 0.35),
              0 0 10px rgba(251, 113, 133, 0.9), 
              0 0 20px rgba(251, 113, 133, 0.5), 
              inset 0 0 10px rgba(251, 113, 133, 0.4);
}

.neon-button.coral:hover::before {
  box-shadow: 0 0 15px 3px rgba(251, 113, 133, 0.7);
}

/* Neon Button Sizes */
.neon-button.sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 38px;
  min-width: 120px;
}

.neon-button.lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-height: 54px;
  min-width: 180px;
}

/* Neon Button with Icon */
.neon-button .icon {
  margin-right: 0.5rem;
}

.neon-button.icon-right .icon {
  margin-right: 0;
  margin-left: 0.5rem;
}

/*---------------------------------
  8. ANIMATION UTILITIES
---------------------------------*/

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

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

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(93, 63, 211, 0.6); }
  50% { box-shadow: 0 0 20px rgba(93, 63, 211, 0.9); }
  100% { box-shadow: 0 0 10px rgba(93, 63, 211, 0.6); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Animation Utility Classes */
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-slide-up { animation: slideUp 0.5s ease-out forwards; }
.animate-slide-down { animation: slideDown 0.5s ease-out forwards; }
.animate-slide-left { animation: slideLeft 0.5s ease-out forwards; }
.animate-slide-right { animation: slideRight 0.5s ease-out forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-glow { animation: glow 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-700 { animation-delay: 700ms; }
.delay-1000 { animation-delay: 1000ms; }

/* Transition Durations */
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-slide-up,
  .animate-slide-down,
  .animate-slide-left,
  .animate-slide-right,
  .animate-pulse,
  .animate-glow,
  .animate-float {
    animation: none !important;
    transition: none !important;
  }
}

/*---------------------------------
  9. COMPONENT STYLES
---------------------------------*/

/* Navbar - Glassmorphic Style */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(93, 63, 211, 0.05);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: var(--spacing-md) 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background-color: rgba(93, 63, 211, 0.1);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: var(--transition-base);
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 8px rgba(93, 63, 211, 0.6));
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(93, 63, 211, 0.7);
}

/* Mobile hamburger button */
.mobile-menu-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1002;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Menu overlay for mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Body class for when menu is open */
body.menu-open {
  overflow: hidden;
}

/* This section was removed as it was duplicating the navbar styles */

/* Hero Section - Glassmorphic Style */
#hero {
  min-height: 100vh;
  width: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    #0f1729 0%, 
    #1a1f35 40%, 
    #0b0f21 100%);
  background-size: 300% 300%;
  animation: gradientShift 20s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 25%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 25%;
  }
}

/* Animated particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.particle:nth-child(1) {
  width: 150px;
  height: 150px;
  left: 10%;
  top: 20%;
  background: radial-gradient(circle at center, rgba(93, 63, 211, 0.08), transparent 70%);
  animation: floatParticle 35s linear infinite;
}

.particle:nth-child(2) {
  width: 250px;
  height: 250px;
  right: 15%;
  bottom: 10%;
  background: radial-gradient(circle at center, rgba(63, 211, 192, 0.08), transparent 70%);
  animation: floatParticle 45s linear infinite 5s;
}

.particle:nth-child(3) {
  width: 120px;
  height: 120px;
  right: 20%;
  top: 25%;
  background: radial-gradient(circle at center, rgba(255, 184, 77, 0.05), transparent 70%);
  animation: floatParticle 30s linear infinite 2s;
}

.particle:nth-child(4) {
  width: 180px;
  height: 180px;
  left: 30%;
  bottom: 30%;
  background: radial-gradient(circle at center, rgba(93, 63, 211, 0.06), transparent 70%);
  animation: floatParticle 40s linear infinite 10s;
}

.particle:nth-child(5) {
  width: 200px;
  height: 200px;
  left: 50%;
  top: 50%;
  background: radial-gradient(circle at center, rgba(63, 211, 192, 0.05), transparent 70%);
  animation: floatParticle 50s linear infinite 7s;
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg) scale(1.05);
    opacity: 0.5;
  }
  50% {
    transform: translate(10px, 50px) rotate(180deg) scale(1);
    opacity: 0.3;
  }
  75% {
    transform: translate(-30px, 10px) rotate(270deg) scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.3;
  }
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
}

.shape-1 {
  background: var(--primary);
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatAnimation 20s ease-in-out infinite;
}

.shape-2 {
  background: var(--secondary);
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  animation: floatAnimation 25s ease-in-out infinite reverse;
}

.shape-3 {
  background: var(--accent);
  width: 400px;
  height: 400px;
  top: 30%;
  right: 10%;
  animation: floatAnimation 15s ease-in-out infinite 2s;
}

/* Animation for the neon button pulse glow effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.4);
  }
}

@keyframes neon-purple-glow {
  0% {
    box-shadow: 0 0 5px rgba(93, 63, 211, 0.7),
                0 0 10px rgba(93, 63, 211, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(93, 63, 211, 0.9),
                0 0 20px rgba(93, 63, 211, 0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(93, 63, 211, 0.7),
                0 0 10px rgba(93, 63, 211, 0.5);
  }
}

@keyframes neon-teal-glow {
  0% {
    box-shadow: 0 0 5px rgba(63, 211, 192, 0.7),
                0 0 10px rgba(63, 211, 192, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(63, 211, 192, 0.9),
                0 0 20px rgba(63, 211, 192, 0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(63, 211, 192, 0.7),
                0 0 10px rgba(63, 211, 192, 0.5);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, 40px) rotate(8deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.hero-card {
  max-width: 800px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: var(--spacing-xxl) var(--spacing-xl);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 
              0 10px 20px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 
              0 15px 25px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.hero-card:hover::before {
  left: 125%;
  transition: all 0.75s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-card h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.hero-card p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

/* Animation classes */
.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-slide-up:nth-child(2) {
  animation-delay: 0.6s;
  animation-duration: 1s;
}

.animate-slide-up:nth-child(3) {
  animation-delay: 0.9s;
  animation-duration: 1.2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(93, 63, 211, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(93, 63, 211, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(93, 63, 211, 0.2);
  }
}

/* Animation keyframes have been moved higher in the stylesheet */

/* Features - Glassmorphic Style */
#features {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.features-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(93, 63, 211, 0.05) 0%, 
    rgba(63, 211, 192, 0.05) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: var(--spacing-sm) auto 0;
  border-radius: var(--radius-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.4s ease;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Use the comprehensive .glass-card class defined earlier */
.feature-card.glassmorphic {
  /* Additional specific glassmorphic styles for feature cards if needed */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(93, 63, 211, 0.1), 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.4);
}

.feature-content {
  flex: 1;
  z-index: 2;
}

.feature-card h3 {
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--primary);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Dashboard Preview - Glassmorphic Style */
#dashboard-preview {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.dashboard-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dashboard-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(93, 63, 211, 0.03) 0%, 
    rgba(63, 211, 192, 0.03) 100%);
}

.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.preview-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Preview container uses our utility glass-card class */

.preview-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.preview-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.preview-image-container:hover .preview-image {
  box-shadow: var(--shadow-lg);
}

.preview-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, 
    rgba(93, 63, 211, 0.1), 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.preview-image-container:hover .preview-image-glow {
  opacity: 1;
}

.dashboard-svg {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.preview-image-container:hover .dashboard-svg {
  transform: scale(1.02);
}

.preview-content {
  padding: var(--spacing-lg);
}

.preview-content h2 {
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

.preview-content p {
  margin-bottom: var(--spacing-lg);
  color: var(--gray);
  line-height: 1.7;
}

.dashboard-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.dashboard-features li {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.dashboard-features li:hover {
  transform: translateX(5px);
}

.dashboard-features li i {
  color: var(--success);
  font-size: 1.1rem;
}

.preview-content .btn {
  margin-top: var(--spacing-md);
  padding: 0.8rem 1.8rem;
  transition: all 0.3s ease;
}

.preview-content .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(93, 63, 211, 0.3);
}

/* Timeline / Process - Alternating Glassmorphic Style */
.timeline-section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.timeline-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.timeline-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(93, 63, 211, 0.03) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(63, 211, 192, 0.03) 100%);
}

.timeline-section .section-title {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

/* Central vertical line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, 
    rgba(93, 63, 211, 0.2), 
    rgba(93, 63, 211, 0.6), 
    rgba(63, 211, 192, 0.6), 
    rgba(63, 211, 192, 0.2));
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 4px;
}

/* Timeline items - common styles */
.timeline-item {
  display: flex;
  position: relative;
  margin-bottom: var(--spacing-xl);
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease;
}

/* Alternating layout styles */
.timeline-item.left {
  justify-content: flex-start;
  padding-right: 50%;
  padding-left: var(--spacing-lg);
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: 50%;
  padding-right: var(--spacing-lg);
}

/* Glowing dot styles */
.timeline-dot {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 0 0 4px rgba(93, 63, 211, 0.3);
  transition: all 0.3s ease;
}

.timeline-dot span {
  position: relative;
  z-index: 4;
  font-family: var(--font-heading);
}

/* Pulsing animation for the dots */
.dot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

/* Glassmorphic card styles */
.timeline-card {
  position: relative;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  transition: all 0.3s ease;
}

.timeline-item.left .timeline-card {
  text-align: left;
  margin-left: var(--spacing-xl);
}

.timeline-item.right .timeline-card {
  text-align: left;
  margin-right: var(--spacing-xl);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(93, 63, 211, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.timeline-card-content {
  position: relative;
  z-index: 2;
}

.timeline-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.timeline-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.timeline-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Animation classes */
.timeline-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in left animation */
.timeline-item[data-animate="fade-in-left"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item[data-animate="fade-in-left"].animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in right animation */
.timeline-item[data-animate="fade-in-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item[data-animate="fade-in-right"].animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Generic animation classes for reuse throughout the site */
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.in-view.fade-in-left,
.in-view.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive styles for timeline section */
/*---------------------------------
  10. RESPONSIVE STYLES
---------------------------------*/

/* Large Desktops - Above 1200px */
@media screen and (min-width: 1201px) {
  .container {
    max-width: 1140px;
  }
}

/* Desktops - 1025px to 1200px */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.85rem;
  }
}

/* Tablets - 769px to 1024px */
@media screen and (max-width: 1024px) {
  :root {
    --spacing-xxl: 4rem;
    --container-padding: 1.5rem;
  }

  html {
    font-size: 15px;
  }

  .container {
    max-width: 720px;
  }
  
  .section-lg {
    padding: var(--spacing-xl) 0;
  }
  
  /* Timeline Component Adjustments */
  .timeline-section .section-title {
    margin-bottom: var(--spacing-xl);
  }
  
  .timeline-card {
    max-width: 400px;
  }
  
  .timeline-card h3 {
    font-size: 1.3rem;
  }
  
  .timeline-card p {
    font-size: 0.95rem;
  }
}

/* Tablets (Portrait) - 481px to 768px */
@media screen and (max-width: 768px) {
  :root {
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3.5rem;
  }
  
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  /* Stack timeline items vertically on mobile */
  .timeline-section {
    padding: var(--spacing-xl) 0;
  }
  
  .timeline-container {
    padding: var(--spacing-lg) 0;
  }
  
  /* Move central line to left */
  .timeline-line {
    left: 24px;
    width: 3px;
  }
  
  /* Make all items left-aligned regardless of original position */
  .timeline-item.left, 
  .timeline-item.right {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
    margin-bottom: var(--spacing-lg);
  }
  
  /* Move dots to left */
  .timeline-dot {
    left: 24px;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
  }
  
  .dot-pulse {
    opacity: 0.5;
  }
  
  /* Adjust card spacing and width */
  .timeline-card {
    width: 100%;
    max-width: 100%;
    margin-left: var(--spacing-lg);
    margin-right: 0;
    text-align: left;
    border-radius: var(--radius-md);
  }
  
  .timeline-item.left .timeline-card, 
  .timeline-item.right .timeline-card {
    margin-left: var(--spacing-lg);
    margin-right: 0;
  }
  
  /* Adjust animations for mobile */
  .timeline-item[data-animate="fade-in-left"],
  .timeline-item[data-animate="fade-in-right"] {
    opacity: 0;
    transform: translateX(20px); /* Same animation direction on mobile */
  }
  
  .timeline-item[data-animate="fade-in-left"].animate-in,
  .timeline-item[data-animate="fade-in-right"].animate-in {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Devices - 360px to 480px */
@media screen and (max-width: 480px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --container-padding: 1rem;
  }
  
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 100%;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section-title {
    margin-bottom: var(--spacing-lg);
  }
  
  /* Button adjustments */
  .btn, .neon-button {
    padding: 0.6rem 1.2rem;
    min-width: 120px;
  }
  
  /* Timeline Component Specific Adjustments */
  .timeline-section .section-title {
    font-size: 1.5rem;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item.left, 
  .timeline-item.right {
    padding-left: 50px;
  }
  
  .timeline-dot {
    left: 20px;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .timeline-card {
    padding: var(--spacing-md);
  }
  
  .timeline-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .timeline-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .timeline-card h3::after {
    width: 30px;
    height: 2px;
    bottom: -4px;
  }
  
  .timeline-item.left .timeline-card, 
  .timeline-item.right .timeline-card {
    margin-left: var(--spacing-md);
  }
}

/* Small Mobile Devices - Below 360px */
@media screen and (max-width: 360px) {
  html {
    font-size: 13px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  /* Timeline Component Additional Adjustments */
  .timeline-section {
    padding: var(--spacing-lg) 0;
  }
  
  .timeline-line {
    left: 16px;
    width: 2px;
  }
  
  .timeline-item.left, 
  .timeline-item.right {
    padding-left: 40px;
    margin-bottom: var(--spacing-md);
  }
  
  .timeline-dot {
    left: 16px;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  
  .timeline-card {
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
  }
  
  .timeline-card h3 {
    font-size: 1rem;
  }
  
  .timeline-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .timeline-item.left .timeline-card, 
  .timeline-item.right .timeline-card {
    margin-left: var(--spacing-sm);
  }
}

/* Testimonials */
/* Testimonials Slider */
#testimonials {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.testimonials-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(93, 63, 211, 0.03) 0%, 
    rgba(63, 211, 192, 0.03) 100%);
}

#testimonials h2 {
  text-align: center;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
  transition: opacity 0.4s ease;
}

/* For desktop, show 3 cards side by side */
@media (min-width: 992px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* For tablets, show 2 cards side by side */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.testimonial-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
  min-height: 300px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeSlideUp 0.8s forwards 0.2s;
}

.testimonial-card.active {
  transform: translateY(0);
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  animation: none; /* Disable the default animation when hovering */
}

/* Glowing border effect on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(45deg, 
    var(--primary), 
    var(--secondary), 
    var(--primary-light), 
    var(--secondary-light));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
  background-size: 400% 400%;
  animation: gradientBorder 6s ease infinite;
}

.testimonial-card:hover::before {
  opacity: 1;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.testimonial-avatar {
  margin: 0 auto var(--spacing-md);
}

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(93, 63, 211, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.avatar-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.3;
  z-index: -1;
  animation: avatar-pulse 2s infinite;
}

@keyframes avatar-pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  outline: none;
}

.slider-arrow:hover {
  background: rgba(93, 63, 211, 0.7);
  box-shadow: 0 0 15px rgba(93, 63, 211, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  outline: none;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  transform: scale(1.2);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  padding: var(--spacing-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-icon, .quote-icon-right {
  color: var(--primary);
  font-size: 2.5rem;
  position: relative;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.testimonial-card.active .quote-icon {
  opacity: 0.3;
  transform: scale(1);
  animation: float-quote 6s ease-in-out infinite;
}

.testimonial-card.active .quote-icon-right {
  opacity: 0.3;
  transform: scale(1);
  animation: float-quote 6s ease-in-out infinite 0.5s;
}

@keyframes float-quote {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-5px) rotate(3deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  margin: var(--spacing-md) 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.9); /* Changed to black text */
  font-style: italic;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  transition-delay: 0.3s;
}

.testimonial-card.active .testimonial-content p {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: rgba(93, 63, 211, 0.05);
  gap: var(--spacing-md);
}

.author-avatar {
  font-size: 2rem;
  color: var(--primary);
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.9); /* Changed to black text */
}

.author-info p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.7); /* Changed to black text with opacity */
  font-size: 0.875rem;
}

/* Call to Action */
#cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl);
  color: var(--white);
}

.cta-card h2 {
  margin-bottom: var(--spacing-md);
}

.cta-card p {
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.cta-card .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--white);
  color: var(--primary);
}

.cta-card .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
#contact-form {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

#contact-form h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

#demo-request-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

label {
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-xs);
}

input, textarea {
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(93, 63, 211, 0.1);
}

#demo-request-form .neon-button {
  align-self: center;
  margin-top: var(--spacing-md);
  width: auto;
  min-width: 150px;
  padding: 12px 24px;
}

.contact-info {
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-method i {
  color: var(--primary);
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: #121825; /* Deep navy background */
  color: var(--white);
  position: relative;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  overflow: hidden; /* Contain the floating elements */
}

/* Footer background with gradient */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(93, 63, 211, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(63, 211, 192, 0.1) 0%, transparent 50%);
}

/* Floating particles in the footer */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(8px);
  background: linear-gradient(45deg, var(--primary-light), var(--secondary));
  animation: float-particle 15s infinite ease-in-out;
}

.footer-particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  opacity: 0.03;
  animation-duration: 25s;
  animation-delay: 0s;
}

.footer-particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 75%;
  opacity: 0.04;
  animation-duration: 30s;
  animation-delay: 2s;
}

.footer-particle:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 30%;
  opacity: 0.04;
  animation-duration: 27s;
  animation-delay: 5s;
}

.footer-particle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 80%;
  opacity: 0.03;
  animation-duration: 38s;
  animation-delay: 1s;
}

.footer-particle:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 50%;
  opacity: 0.025;
  animation-duration: 22s;
  animation-delay: 3s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateY(5px) translateX(-15px) rotate(-5deg);
  }
  75% {
    transform: translateY(15px) translateX(5px) rotate(3deg);
  }
}

/* Glowing border at the top of footer */
.footer-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  box-shadow: 0 0 10px 1px var(--secondary), 0 0 15px 2px rgba(63, 211, 192, 0.5);
  opacity: 0.8;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1; /* Ensure content is above background */
}

/* Logo/Brand column */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--spacing-md);
  text-decoration: none;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.25));
  transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  filter: drop-shadow(0 0 8px rgba(93, 63, 211, 0.5));
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 280px;
  line-height: 1.5;
}

/* Contact column */
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h3, .footer-social h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.footer-contact h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.footer-contact i {
  color: var(--secondary);
  margin-right: var(--spacing-md);
  font-size: 1.1rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(63, 211, 192, 0.5);
}

/* Social media column */
.footer-social {
  flex: 0.7;
  min-width: 180px;
}

.social-icons {
  display: flex;
  gap: var(--spacing-md);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(63, 211, 192, 0.6);
}

/* Legal links section */
.footer-legal {
  width: 100%;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.company-info {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.legal-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
}

.legal-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.legal-links a:not(:last-child):after {
  content: '•';
  position: absolute;
  right: -14px;
  opacity: 0.5;
}

/* Copyright section */
.footer-copyright {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.6;
  position: relative;
  z-index: 1; /* Ensure content is above background */
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  /* Container width adjustment */
  .container {
    max-width: 90%;
  }
  
  /* Slightly adjust spacing on large screens */
  section {
    padding: var(--spacing-xxl) 0;
  }
  
  /* Reduce column count in grids */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  /* Typography adjustments */
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  /* Layout changes */
  .container {
    max-width: 95%;
    padding: 0 var(--spacing-md);
  }
  
  section {
    padding: var(--spacing-xl) 0;
  }
  
  /* Dashboard preview section */
  .preview-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .preview-image-container {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .preview-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .preview-content .btn {
    margin: var(--spacing-md) auto 0;
  }
  
  .dashboard-features li {
    justify-content: center;
  }
  
  /* Timeline adjustments */
  .timeline-item.left .timeline-card, 
  .timeline-item.right .timeline-card {
    max-width: 85%;
  }
  
  /* Hero section sizing */
  #hero {
    min-height: 80vh;
  }
  
  .hero-card {
    max-width: 90%;
    padding: var(--spacing-xl);
  }
  
  /* CTA section */
  .cta-card {
    max-width: 90%;
    padding: var(--spacing-xl);
  }
  
  /* Testimonials */
  .testimonial-slider-container {
    max-width: 85%;
  }
  
  /* Footer adjustments */
  .footer-content {
    gap: var(--spacing-lg);
  }
  
  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* === Typography Adjustments === */
  body {
    line-height: 1.6;
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* === Layout Adjustments === */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  /* === Spacing Adjustments === */
  .section-title {
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }
  
  /* === Mobile Menu & Navigation === */
  #navbar {
    padding: var(--spacing-sm) 0;
  }
  
  /* Menu button with improved hit area */
  .mobile-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(93, 63, 211, 0.08);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .mobile-menu-btn:hover {
    background: rgba(93, 63, 211, 0.15);
    transform: translateY(-2px);
  }
  
  /* Full menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
  }
  
  /* Enhanced slide-in navigation */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-left: 1px solid rgba(93, 63, 211, 0.1);
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  /* Larger touch targets for mobile */
  .nav-links a {
    font-size: 1.2rem;
    padding: var(--spacing-md);
    margin: var(--spacing-sm) 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
    width: 100%;
    text-align: center;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered animation for menu items */
  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.active a:nth-child(6) { transition-delay: 0.6s; }
  
  /* === Hero Section === */
  #hero {
    min-height: auto;
    padding: var(--spacing-xxl) 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-card {
    padding: var(--spacing-xl) var(--spacing-lg);
    margin: 0 var(--spacing-md);
    width: 100%;
    max-width: 90%;
  }
  
  .hero-card h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
  }
  
  .hero-card p {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    align-items: center;
  }
  
  .hero-buttons .neon-button {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  
  /* Reduce the size of background shapes */
  .shape-1 {
    width: 200px;
    height: 200px;
    opacity: 0.5;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
    opacity: 0.5;
  }
  
  .shape-3 {
    width: 100px;
    height: 100px;
    opacity: 0.5;
  }
  
  /* === Features Section === */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .feature-card {
    padding: var(--spacing-lg);
    text-align: center;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-md);
  }
  
  .feature-content h3 {
    text-align: center;
  }
  
  /* === Dashboard Preview Section === */
  .preview-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .preview-image-container {
    width: 100%;
    max-width: 100%;
    padding: var(--spacing-md);
  }
  
  .preview-content {
    text-align: center;
    padding: 0 var(--spacing-md);
  }
  
  .dashboard-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
  }
  
  .dashboard-features li {
    justify-content: flex-start;
    margin-bottom: var(--spacing-sm);
    width: 100%;
  }
  
  /* === Timeline Section === */
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
    margin-bottom: var(--spacing-xl);
  }
  
  .timeline-item.left, 
  .timeline-item.right {
    width: 100%;
    padding-right: 0;
  }
  
  .timeline-item.right .timeline-dot,
  .timeline-item.left .timeline-dot {
    left: 20px;
  }
  
  .timeline-item.left .timeline-card, 
  .timeline-item.right .timeline-card {
    max-width: 100%;
  }
  
  /* === Testimonials Section === */
  .testimonial-slider-container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }
  
  .testimonial-card {
    min-height: 280px;
  }
  
  /* === Contact Form Section === */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  #demo-request-form {
    padding: var(--spacing-lg);
  }
  
  /* === CTA Section === */
  .cta-card {
    padding: var(--spacing-lg);
    text-align: center;
  }
  
  .cta-card h2 {
    font-size: 1.6rem;
  }
  
  /* === Footer Section === */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .footer-brand, 
  .footer-contact, 
  .footer-social {
    width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto;
    max-width: 90%;
  }
  
  .footer-contact h3::after, 
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  /* Make social icons larger for better touch targets */
  .social-icon {
    width: 48px;
    height: 48px;
  }
  
  /* Footer legal section responsive */
  .footer-legal {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* === Typography Adjustments === */
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  
  h2 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
  }
  
  h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* === Layout Adjustments === */
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  section {
    padding: var(--spacing-lg) 0;
  }
  
  /* === Navbar Adjustments === */
  #navbar {
    padding: var(--spacing-xs) 0;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .logo svg {
    width: 24px;
    height: 24px;
  }
  
  /* === Hero Section === */
  #hero {
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }
  
  .hero-card {
    padding: var(--spacing-md);
    margin: 0;
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  .hero-card h1 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
  }
  
  .hero-card p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
  }
  
  .hero-buttons {
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .neon-button {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Reduce even more the size and opacity of background shapes */
  .shape-1, .shape-2, .shape-3 {
    opacity: 0.25;
    transform: scale(0.8);
  }
  
  .hero-particles .particle {
    opacity: 0.3;
  }
  
  /* === Features Section === */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .feature-card {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  /* === Dashboard Preview Section === */
  .preview-image-container {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .preview-content {
    padding: 0;
  }
  
  .preview-content p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
  }
  
  .dashboard-features {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-sm);
  }
  
  .dashboard-features li {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
  }
  
  .dashboard-features li i {
    font-size: 0.9rem;
    margin-right: var(--spacing-sm);
  }
  
  /* === Timeline Section === */
  .timeline-container {
    padding-left: 0;
  }
  
  .timeline-line {
    left: 15px;
    width: 2px;
  }
  
  .timeline-item {
    padding-left: 40px;
    margin-bottom: var(--spacing-lg);
  }
  
  .timeline-dot {
    width: 30px;
    height: 30px;
    left: 15px !important;
  }
  
  .timeline-dot span {
    font-size: 0.9rem;
  }
  
  .timeline-card {
    padding: var(--spacing-md);
  }
  
  .timeline-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
  }
  
  .timeline-card-content p {
    font-size: 0.85rem;
  }
  
  /* === Testimonials Section === */
  .testimonial-slider-container {
    padding: 0;
  }
  
  .testimonial-card {
    padding: var(--spacing-md);
    min-height: 260px;
  }
  
  .testimonial-slide {
    padding: 0 var(--spacing-sm);
  }
  
  .testimonial-avatar {
    transform: scale(0.9);
  }
  
  .testimonial-info h4 {
    font-size: 1rem;
  }
  
  .testimonial-role {
    font-size: 0.8rem;
  }
  
  .quote-icon, .quote-icon-right {
    font-size: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 0 var(--spacing-sm);
  }
  
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .slider-arrow.prev {
    left: 2px;
  }
  
  .slider-arrow.next {
    right: 2px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  /* === CTA Section === */
  .cta-card {
    padding: var(--spacing-md);
  }
  
  .cta-card h2 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .cta-card p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
  }
  
  /* === Contact Form === */
  #demo-request-form {
    padding: var(--spacing-md);
  }
  
  .form-group {
    margin-bottom: var(--spacing-md);
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
  }
  
  .form-group input, 
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  /* === Footer Section === */
  .site-footer {
    padding-top: var(--spacing-lg);
  }
  
  .footer-content {
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-logo {
    font-size: 1.3rem;
  }
  
  .footer-logo svg {
    width: 24px;
    height: 24px;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
  }
  
  .footer-contact h3, 
  .footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .footer-contact li {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
  }
  
  .footer-contact i {
    font-size: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  /* === Menu Overlay === */
  .menu-overlay {
    backdrop-filter: blur(2px);
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  /* === General Adjustments === */
  body {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--spacing-xs);
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
  
  /* === Typography === */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.85rem;
  }
  
  /* === Navbar === */
  .logo {
    font-size: 1.1rem;
  }
  
  .logo svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
  }
  
  /* === Hero Section === */
  .hero-card {
    padding: var(--spacing-sm);
    margin: 0;
    border-radius: var(--radius-sm);
  }
  
  .hero-card h1 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-card p {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .hero-buttons .neon-button {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    min-height: 40px;
  }
  
  /* Background elements */
  .shape-1, .shape-2, .shape-3 {
    opacity: 0.15;
    transform: scale(0.7);
  }
  
  .particle {
    opacity: 0.15;
  }
  
  /* === Feature Cards === */
  .feature-card {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  /* === Timeline === */
  .timeline-item {
    padding-left: 30px;
    margin-bottom: var(--spacing-md);
  }
  
  .timeline-dot {
    width: 24px;
    height: 24px;
    left: 10px !important;
  }
  
  .timeline-dot span {
    font-size: 0.8rem;
  }
  
  .timeline-line {
    left: 12px;
  }
  
  .timeline-card {
    padding: var(--spacing-sm);
  }
  
  /* === Testimonials === */
  .testimonial-card {
    padding: var(--spacing-sm);
    min-height: 240px; 
  }
  
  .testimonial-avatar {
    transform: scale(0.8);
  }
  
  .quote-icon, .quote-icon-right {
    font-size: 1.2rem;
  }
  
  /* === Form Elements === */
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-group input, 
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  
  /* === CTA Section === */
  .cta-card {
    padding: var(--spacing-sm);
  }
  
  .cta-card h2 {
    font-size: 1.2rem;
  }
  
  .cta-card p {
    font-size: 0.85rem;
  }
  
  /* === Footer === */
  .footer-content {
    gap: var(--spacing-md);
  }
  
  .footer-logo {
    font-size: 1.2rem;
  }
  
  .footer-contact h3, 
  .footer-social h3 {
    font-size: 1rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
}

/* Accessibility - Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
