@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400&display=swap');

/* Header Overlap Fix */
body {
    padding-top: 0;
}

.hero-section {
    padding-top: 0;
}

/* Ensure content doesn't overlap with fixed header */
section:first-of-type {
    margin-top: 0;
    padding-top: 12rem; /* 192px */
}

@media (max-width: 768px) {
    section:first-of-type {
        padding-top: 8rem; /* 128px */
    }
}

/* Mobile Menu Visibility Fix */
#mobileMenu {
    background: rgba(15, 15, 25, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    border-radius: 0 0 16px 16px !important;
    margin-top: 8px !important;
}

#mobileMenu a {
    color: white !important;
    font-weight: 500 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 4px 0 !important;
}

#mobileMenu a:hover {
    background: rgba(0, 212, 255, 0.2) !important;
    color: rgba(0, 212, 255, 1) !important;
    transform: translateX(4px) !important;
}

#mobileMenu a.text-accent {
    color: rgba(0, 212, 255, 1) !important;
    background: rgba(0, 212, 255, 0.1) !important;
}

#mobileMenu .border-t {
    border-color: rgba(0, 212, 255, 0.2) !important;
}

/* Mobile Menu Button Styling */
#mobileMenuBtn {
    color: white !important;
    transition: all 0.3s ease !important;
}

#mobileMenuBtn:hover {
    color: rgba(0, 212, 255, 1) !important;
    transform: scale(1.1) !important;
}

/* Mobile Menu Animation */
#mobileMenu {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease !important;
}

#mobileMenu:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Menu Item Icons */
#mobileMenu a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

#mobileMenu a:hover::before {
    background: rgba(0, 212, 255, 1);
    transform: scale(1.5);
}

/* Ultra Smooth Desktop and Mobile Scrolling and Animations */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 80px;
}

/* Desktop-specific smooth animations */
@media (min-width: 769px) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  
  /* Desktop performance optimizations */
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
  }
  
  /* Desktop smooth transitions */
  .glass, .card, [class*="card"], .journey-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, opacity;
  }
  
  /* Desktop hover effects */
  .glass:hover, .card:hover, [class*="card"]:hover {
    -webkit-transform: translateZ(0) translateY(-8px) scale(1.02);
    transform: translateZ(0) translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
  }
  
  .journey-card:hover {
    -webkit-transform: translateZ(0) translateY(-12px) scale(1.05);
    transform: translateZ(0) translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
  }
  
  /* Desktop text animations */
  h1, h2, h3, h4, h5, h6 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Desktop button animations */
  button, .btn, [role="button"] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  button:hover, .btn:hover, [role="button"]:hover {
    -webkit-transform: translateZ(0) translateY(-2px) scale(1.05);
    transform: translateZ(0) translateY(-2px) scale(1.05);
  }
}

/* Mobile-specific smooth scrolling */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 60px;
    overflow-x: hidden;
  }
  
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Disable heavy animations on mobile for better performance */
  .particle, .matrix-container, .neural-network-bg, .neural-canvas {
    display: none !important;
  }
  
  /* Optimize hero section for mobile */
  .hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%) !important;
  }
  
  /* Simplify complex backgrounds on mobile */
  .neural-network, .data-streams, .holographic-grid {
    display: none !important;
  }
  
  /* Optimize fixed elements */
  .fixed {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
  }
  
  /* Reduce complexity of glass effects on mobile */
  .glass {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* Ultra smooth transitions for mobile */
  * {
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Smooth scroll snap for sections */
  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  
  /* Mobile-optimized animations */
  .animate-fade-in {
    animation: mobileFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .animate-slide-up {
    animation: mobileSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  .animate-scale-in {
    animation: mobileScaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  /* Mobile keyframes */
  @keyframes mobileFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes mobileSlideUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes mobileScaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Inter, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: JetBrains Mono, monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
}

.transition-smooth {
  transition: all var(--transition-duration) var(--transition-smooth);
}

.btn-primary {
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition-duration) var(--transition-smooth);
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(0 212 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(10 10 15 / var(--tw-text-opacity, 1));
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover{
  background-color: rgb(0 212 255 / 0.9);
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-shadow-color: rgb(0 212 255 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition-duration) var(--transition-smooth);
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 46 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover{
  border-color: rgb(0 212 255 / 0.5);
  background-color: rgb(26 26 46 / 0.8);
}

.card-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-duration) var(--transition-smooth);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .card-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.card-glass:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-shadow-color: rgb(0 212 255 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-accent {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.pointer-events-none{
  pointer-events: none;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.inset-0{
  inset: 0px;
}

.-bottom-4{
  bottom: -1rem;
}

.-left-4{
  left: -1rem;
}

.-right-4{
  right: -1rem;
}

.-top-4{
  top: -1rem;
}

.bottom-24{
  bottom: 6rem;
}

.bottom-4{
  bottom: 1rem;
}

.bottom-40{
  bottom: 10rem;
}

.bottom-6{
  bottom: 1.5rem;
}

.bottom-8{
  bottom: 2rem;
}

.left-1\/2{
  left: 50%;
}

.left-10{
  left: 2.5rem;
}

.left-20{
  left: 5rem;
}

.left-32{
  left: 8rem;
}

.left-4{
  left: 1rem;
}

.right-20{
  right: 5rem;
}

.right-4{
  right: 1rem;
}

.right-6{
  right: 1.5rem;
}

.top-0{
  top: 0px;
}

.top-1\/2{
  top: 50%;
}

.top-20{
  top: 5rem;
}

.top-32{
  top: 8rem;
}

.top-4{
  top: 1rem;
}

.top-40{
  top: 10rem;
}

.top-48{
  top: 12rem;
}

.top-60{
  top: 15rem;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-50{
  z-index: 50;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-8{
  margin-left: 2rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-3{
  margin-right: 0.75rem;
}

.mr-4{
  margin-right: 1rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-8{
  margin-top: 2rem;
}

.block{
  display: block;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-square{
  aspect-ratio: 1 / 1;
}

.aspect-video{
  aspect-ratio: 16 / 9;
}

.h-10{
  height: 2.5rem;
}

.h-12{
  height: 3rem;
}

.h-16{
  height: 4rem;
}

.h-2{
  height: 0.5rem;
}

.h-20{
  height: 5rem;
}

.h-24{
  height: 6rem;
}

.h-3{
  height: 0.75rem;
}

.h-32{
  height: 8rem;
}

.h-4{
  height: 1rem;
}

.h-48{
  height: 12rem;
}

.h-5{
  height: 1.25rem;
}

.h-6{
  height: 1.5rem;
}

.h-64{
  height: 16rem;
}

.h-8{
  height: 2rem;
}

.h-96{
  height: 24rem;
}

.h-full{
  height: 100%;
}

.max-h-\[90vh\]{
  max-height: 90vh;
}

.min-h-screen{
  min-height: 100vh;
}

.w-1{
  width: 0.25rem;
}

.w-1\/2{
  width: 50%;
}

.w-10{
  width: 2.5rem;
}

.w-12{
  width: 3rem;
}

.w-16{
  width: 4rem;
}

.w-2{
  width: 0.5rem;
}

.w-2\/12{
  width: 16.666667%;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-3{
  width: 0.75rem;
}

.w-32{
  width: 8rem;
}

.w-4{
  width: 1rem;
}

.w-5{
  width: 1.25rem;
}

.w-5\/12{
  width: 41.666667%;
}

.w-6{
  width: 1.5rem;
}

.w-8{
  width: 2rem;
}

.w-80{
  width: 20rem;
}

.w-full{
  width: 100%;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-4xl{
  max-width: 56rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-xs{
  max-width: 20rem;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.grow{
  flex-grow: 1;
}

.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-4{
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-0{
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-bounce{
  animation: bounce 1s infinite;
}

@keyframes float{
  0%, 100%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-10px);
  }
}

.animate-float{
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow{
  0%, 100%{
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }

  50%{
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

.animate-pulse-glow{
  animation: pulse-glow 2s ease-in-out infinite;
}

.cursor-pointer{
  cursor: pointer;
}

.resize{
  resize: both;
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

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

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

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

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

.gap-12{
  gap: 3rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-4{
  gap: 1rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.space-x-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(3rem * var(--tw-space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.border{
  border-width: 1px;
}

.border-2{
  border-width: 2px;
}

.border-4{
  border-width: 4px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-accent{
  --tw-border-opacity: 1;
  border-color: rgb(0 212 255 / var(--tw-border-opacity, 1));
}

.border-accent\/20{
  border-color: rgb(0 212 255 / 0.2);
}

.border-background{
  --tw-border-opacity: 1;
  border-color: rgb(15 15 35 / var(--tw-border-opacity, 1));
}

.border-transparent{
  border-color: transparent;
}

.bg-accent{
  --tw-bg-opacity: 1;
  background-color: rgb(0 212 255 / var(--tw-bg-opacity, 1));
}

.bg-accent\/10{
  background-color: rgb(0 212 255 / 0.1);
}

.bg-accent\/15{
  background-color: rgb(0 212 255 / 0.15);
}

.bg-accent\/20{
  background-color: rgb(0 212 255 / 0.2);
}

.bg-accent\/5{
  background-color: rgb(0 212 255 / 0.05);
}

.bg-background{
  --tw-bg-opacity: 1;
  background-color: rgb(15 15 35 / var(--tw-bg-opacity, 1));
}

.bg-error{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-primary\/40{
  background-color: rgb(10 10 15 / 0.4);
}

.bg-primary\/80{
  background-color: rgb(10 10 15 / 0.8);
}

.bg-secondary-400\/20{
  background-color: rgb(129 140 248 / 0.2);
}

.bg-success{
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}

.bg-success\/90{
  background-color: rgb(16 185 129 / 0.9);
}

.bg-surface{
  --tw-bg-opacity: 1;
  background-color: rgb(26 26 46 / var(--tw-bg-opacity, 1));
}

.bg-surface\/20{
  background-color: rgb(26 26 46 / 0.2);
}

.bg-surface\/30{
  background-color: rgb(26 26 46 / 0.3);
}

.bg-surface\/50{
  background-color: rgb(26 26 46 / 0.5);
}

.bg-warning{
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}

.bg-warning-400\/20{
  background-color: rgb(251 191 36 / 0.2);
}

.bg-warning\/20{
  background-color: rgb(245 158 11 / 0.2);
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-accent{
  --tw-gradient-from: #00d4ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 212 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent\/10{
  --tw-gradient-from: rgb(0 212 255 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 212 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent\/20{
  --tw-gradient-from: rgb(0 212 255 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 212 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-accent\/5{
  --tw-gradient-from: rgb(0 212 255 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 212 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-background{
  --tw-gradient-from: #0f0f23 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(15 15 35 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-primary\/80{
  --tw-gradient-from: rgb(10 10 15 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(10 10 15 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-secondary-400{
  --tw-gradient-from: #818cf8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(129 140 248 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-secondary\/10{
  --tw-gradient-from: rgb(30 27 75 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 27 75 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-secondary\/20{
  --tw-gradient-from: rgb(30 27 75 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 27 75 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-success{
  --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-warning{
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-warning-400{
  --tw-gradient-from: #fbbf24 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(251 191 36 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-warning\/20{
  --tw-gradient-from: rgb(245 158 11 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-warning\/5{
  --tw-gradient-from: rgb(245 158 11 / 0.05) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-accent-300{
  --tw-gradient-to: rgb(103 232 249 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #67e8f9 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-accent\/5{
  --tw-gradient-to: rgb(0 212 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 212 255 / 0.05) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-accent\/50{
  --tw-gradient-to: rgb(0 212 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 212 255 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-background-800{
  --tw-gradient-to: rgb(30 41 59 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1e293b var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-surface\/30{
  --tw-gradient-to: rgb(26 26 46 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(26 26 46 / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-surface\/50{
  --tw-gradient-to: rgb(26 26 46 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(26 26 46 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-transparent{
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-accent{
  --tw-gradient-to: #00d4ff var(--tw-gradient-to-position);
}

.to-accent-300{
  --tw-gradient-to: #67e8f9 var(--tw-gradient-to-position);
}

.to-accent\/10{
  --tw-gradient-to: rgb(0 212 255 / 0.1) var(--tw-gradient-to-position);
}

.to-accent\/40{
  --tw-gradient-to: rgb(0 212 255 / 0.4) var(--tw-gradient-to-position);
}

.to-accent\/5{
  --tw-gradient-to: rgb(0 212 255 / 0.05) var(--tw-gradient-to-position);
}

.to-background{
  --tw-gradient-to: #0f0f23 var(--tw-gradient-to-position);
}

.to-secondary-600{
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}

.to-secondary-900{
  --tw-gradient-to: #1e1b4b var(--tw-gradient-to-position);
}

.to-secondary\/40{
  --tw-gradient-to: rgb(30 27 75 / 0.4) var(--tw-gradient-to-position);
}

.to-secondary\/5{
  --tw-gradient-to: rgb(30 27 75 / 0.05) var(--tw-gradient-to-position);
}

.to-success-400{
  --tw-gradient-to: #34d399 var(--tw-gradient-to-position);
}

.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.to-warning-400{
  --tw-gradient-to: #fbbf24 var(--tw-gradient-to-position);
}

.to-warning-600{
  --tw-gradient-to: #d97706 var(--tw-gradient-to-position);
}

.to-warning\/10{
  --tw-gradient-to: rgb(245 158 11 / 0.1) var(--tw-gradient-to-position);
}

.to-warning\/40{
  --tw-gradient-to: rgb(245 158 11 / 0.4) var(--tw-gradient-to-position);
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pl-12{
  padding-left: 3rem;
}

.pl-8{
  padding-left: 2rem;
}

.pr-8{
  padding-right: 2rem;
}

.pt-20{
  padding-top: 5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pt-8{
  padding-top: 2rem;
}

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

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

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

.font-display{
  font-family: Playfair Display, serif;
}

.font-mono{
  font-family: JetBrains Mono, monospace;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl{
  font-size: 3rem;
  line-height: 1.2;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold{
  font-weight: 700;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.italic{
  font-style: italic;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-tight{
  line-height: 1.25;
}

.text-accent{
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}

.text-accent\/50{
  color: rgb(0 212 255 / 0.5);
}

.text-accent\/70{
  color: rgb(0 212 255 / 0.7);
}

.text-error{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-primary{
  --tw-text-opacity: 1;
  color: rgb(10 10 15 / var(--tw-text-opacity, 1));
}

.text-secondary-400{
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}

.text-success{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}

.text-text-muted{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.text-text-primary{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  opacity: 1 !important;
}

.text-text-secondary{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  opacity: 1 !important;
}

.text-warning{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.text-warning-400{
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  opacity: 1 !important;
}

.placeholder-text-muted::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity, 1));
}

.placeholder-text-muted::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(100 116 139 / var(--tw-placeholder-opacity, 1));
}

.opacity-0{
  opacity: 0;
}

.opacity-20{
  opacity: 0.2;
}

.opacity-30{
  opacity: 0.3;
}

.shadow-glow{
  --tw-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-glass{
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300{
  transition-duration: 300ms;
}

.duration-500{
  transition-duration: 500ms;
}

.glass{
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.text-gradient{
  background: linear-gradient(135deg, #00d4ff, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.transition-smooth{
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.backdrop-blur-glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.border-glass {
  border-color: var(--glass-border);
}

:root {
  /* Primary Colors */
  --color-primary: #0a0a0f;
  /* deep-space-900 */
  --color-primary-50: #f8fafc;
  /* slate-50 */
  --color-primary-100: #f1f5f9;
  /* slate-100 */
  --color-primary-200: #e2e8f0;
  /* slate-200 */
  --color-primary-300: #cbd5e1;
  /* slate-300 */
  --color-primary-400: #94a3b8;
  /* slate-400 */
  --color-primary-500: #64748b;
  /* slate-500 */
  --color-primary-600: #475569;
  /* slate-600 */
  --color-primary-700: #334155;
  /* slate-700 */
  --color-primary-800: #1e293b;
  /* slate-800 */
  --color-primary-900: #0a0a0f;
  /* deep-space-900 */
  /* Secondary Colors */
  --color-secondary: #1e1b4b;
  /* indigo-900 */
  --color-secondary-50: #eef2ff;
  /* indigo-50 */
  --color-secondary-100: #e0e7ff;
  /* indigo-100 */
  --color-secondary-200: #c7d2fe;
  /* indigo-200 */
  --color-secondary-300: #a5b4fc;
  /* indigo-300 */
  --color-secondary-400: #818cf8;
  /* indigo-400 */
  --color-secondary-500: #6366f1;
  /* indigo-500 */
  --color-secondary-600: #4f46e5;
  /* indigo-600 */
  --color-secondary-700: #4338ca;
  /* indigo-700 */
  --color-secondary-800: #3730a3;
  /* indigo-800 */
  --color-secondary-900: #1e1b4b;
  /* indigo-900 */
  /* Accent Colors */
  --color-accent: #00d4ff;
  /* cyan-400 */
  --color-accent-50: #ecfeff;
  /* cyan-50 */
  --color-accent-100: #cffafe;
  /* cyan-100 */
  --color-accent-200: #a5f3fc;
  /* cyan-200 */
  --color-accent-300: #67e8f9;
  /* cyan-300 */
  --color-accent-400: #00d4ff;
  /* cyan-400 */
  --color-accent-500: #06b6d4;
  /* cyan-500 */
  --color-accent-600: #0891b2;
  /* cyan-600 */
  --color-accent-700: #0e7490;
  /* cyan-700 */
  --color-accent-800: #155e75;
  /* cyan-800 */
  --color-accent-900: #164e63;
  /* cyan-900 */
  /* Background Colors */
  --color-background: #0f0f23;
  /* space-900 */
  --color-background-50: #f8fafc;
  /* slate-50 */
  --color-background-100: #f1f5f9;
  /* slate-100 */
  --color-background-200: #e2e8f0;
  /* slate-200 */
  --color-background-300: #cbd5e1;
  /* slate-300 */
  --color-background-400: #94a3b8;
  /* slate-400 */
  --color-background-500: #64748b;
  /* slate-500 */
  --color-background-600: #475569;
  /* slate-600 */
  --color-background-700: #334155;
  /* slate-700 */
  --color-background-800: #1e293b;
  /* slate-800 */
  --color-background-900: #0f0f23;
  /* space-900 */
  /* Surface Colors */
  --color-surface: #1a1a2e;
  /* space-800 */
  --color-surface-50: #f8fafc;
  /* slate-50 */
  --color-surface-100: #f1f5f9;
  /* slate-100 */
  --color-surface-200: #e2e8f0;
  /* slate-200 */
  --color-surface-300: #cbd5e1;
  /* slate-300 */
  --color-surface-400: #94a3b8;
  /* slate-400 */
  --color-surface-500: #64748b;
  /* slate-500 */
  --color-surface-600: #475569;
  /* slate-600 */
  --color-surface-700: #334155;
  /* slate-700 */
  --color-surface-800: #1a1a2e;
  /* space-800 */
  --color-surface-900: #0f0f23;
  /* space-900 */
  /* Text Colors */
  --color-text-primary: #ffffff;
  /* white */
  --color-text-secondary: #94a3b8;
  /* slate-400 */
  --color-text-muted: #64748b;
  /* slate-500 */
  --color-text-inverse: #0f172a;
  /* slate-900 */
  /* Status Colors */
  --color-success: #10b981;
  /* emerald-500 */
  --color-success-50: #ecfdf5;
  /* emerald-50 */
  --color-success-100: #d1fae5;
  /* emerald-100 */
  --color-success-200: #a7f3d0;
  /* emerald-200 */
  --color-success-300: #6ee7b7;
  /* emerald-300 */
  --color-success-400: #34d399;
  /* emerald-400 */
  --color-success-500: #10b981;
  /* emerald-500 */
  --color-success-600: #059669;
  /* emerald-600 */
  --color-success-700: #047857;
  /* emerald-700 */
  --color-success-800: #065f46;
  /* emerald-800 */
  --color-success-900: #064e3b;
  /* emerald-900 */
  --color-warning: #f59e0b;
  /* amber-500 */
  --color-warning-50: #fffbeb;
  /* amber-50 */
  --color-warning-100: #fef3c7;
  /* amber-100 */
  --color-warning-200: #fde68a;
  /* amber-200 */
  --color-warning-300: #fcd34d;
  /* amber-300 */
  --color-warning-400: #fbbf24;
  /* amber-400 */
  --color-warning-500: #f59e0b;
  /* amber-500 */
  --color-warning-600: #d97706;
  /* amber-600 */
  --color-warning-700: #b45309;
  /* amber-700 */
  --color-warning-800: #92400e;
  /* amber-800 */
  --color-warning-900: #78350f;
  /* amber-900 */
  --color-error: #ef4444;
  /* red-500 */
  --color-error-50: #fef2f2;
  /* red-50 */
  --color-error-100: #fee2e2;
  /* red-100 */
  --color-error-200: #fecaca;
  /* red-200 */
  --color-error-300: #fca5a5;
  /* red-300 */
  --color-error-400: #f87171;
  /* red-400 */
  --color-error-500: #ef4444;
  /* red-500 */
  --color-error-600: #dc2626;
  /* red-600 */
  --color-error-700: #b91c1c;
  /* red-700 */
  --color-error-800: #991b1b;
  /* red-800 */
  --color-error-900: #7f1d1d;
  /* red-900 */
  /* Glassmorphism Variables */
  --glass-bg: rgba(26, 26, 46, 0.8);
  /* surface with transparency */
  --glass-border: rgba(255, 255, 255, 0.1);
  /* subtle white border */
  --glass-shadow: 0 4px 32px rgba(0, 212, 255, 0.1);
  /* accent glow */
  --glass-backdrop: blur(16px);
  /* backdrop blur effect */
  /* Animation Variables */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-duration: 300ms;
  --stagger-delay: 100ms;
}

/* Base Styles */

/* Component Styles */

/* Utility Styles */

/* Animations */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

/* Responsive Design */

@media (max-width: 768px) {
  .glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-accent:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 212 255 / var(--tw-border-opacity, 1));
}

.hover\:bg-accent:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 212 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-accent\/90:hover{
  background-color: rgb(0 212 255 / 0.9);
}

.hover\:bg-surface\/50:hover{
  background-color: rgb(26 26 46 / 0.5);
}

.hover\:text-accent:hover{
  --tw-text-opacity: 1;
  color: rgb(0 212 255 / var(--tw-text-opacity, 1));
}

.hover\:text-accent-300:hover{
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}

.hover\:text-primary:hover{
  --tw-text-opacity: 1;
  color: rgb(10 10 15 / var(--tw-text-opacity, 1));
}

.hover\:text-text-primary:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:shadow-glow:hover{
  --tw-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-accent:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 212 255 / var(--tw-border-opacity, 1));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-accent:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 212 255 / var(--tw-ring-opacity, 1));
}

.group:hover .group-hover\:scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

@media (min-width: 640px){
  .sm\:flex-row{
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1.2;
  }

  .md\:text-7xl{
    font-size: 4.5rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px){
  .lg\:order-1{
    order: 1;
  }

  .lg\:order-2{
    order: 2;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Header Logo Watermark Styling */
header .flex img {
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.3;
    filter: grayscale(0.2);
    transition: opacity 0.3s ease;
}

header .flex img:hover {
    opacity: 0.5;
}

header .flex span {
    font-size: 1.125rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    header .flex img {
        max-width: 60px;
        height: 16px;
        opacity: 0.25;
    }
    
    header .flex span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header .flex img {
        max-width: 50px;
        height: 14px;
        opacity: 0.2;
    }
    
    header .flex span {
        font-size: 0.875rem;
  }
}

/* DDK-i Modern Chatbot Styles */
/* Modern Chat Button */
.chat-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 30px !important;
    left: auto !important;
    width: auto;
    min-width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0066cc 100%);
    color: white;
    border: 2px solid rgba(0, 212, 255, 0.3);
    cursor: pointer;
    font-size: 28px;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 153, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
    animation: buttonFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.chat-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.chat-button:hover::before {
    left: 100%;
}

@keyframes buttonFloat {
    0% {
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.6);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    }
}

.chat-icon {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-button-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.chat-button-ddk {
    color: white;
    font-weight: 700;
}

.chat-button-accent {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    margin-left: 2px;
}

.chat-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.6);
}

.chat-button:active {
    transform: scale(0.95);
}

/* Bot Icon Styling */
.bot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: robotPulse 2s ease-in-out infinite;
}

.bot-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes robotPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Stylish Button Text Highlighting */
.btn-primary span span {
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 30px rgba(0, 212, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    letter-spacing: 0.1em;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(0, 212, 255, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(0, 212, 255, 1),
            0 0 25px rgba(0, 212, 255, 0.8),
            0 0 35px rgba(0, 212, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Chat Window */
.chat-window {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    left: auto !important;
    width: 380px;
    height: 580px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(25, 25, 55, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.active {
    display: flex;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0f0f23 100%);
    color: white;
    padding: 24px 28px 24px 24px;
    border-radius: 18px 18px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.chat-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding-right: 4px;
}

.bot-title-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: 20px;
}

.bot-icon {
    font-size: 32px;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: botPulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

@keyframes botPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bot-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 40px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.bot-title-accent {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.6));
    margin-left: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.bot-status {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin-right: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Futuristic Animations */
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes holographic-glow {
    0%, 100% { 
        text-shadow: 
            0 0 5px rgba(0, 212, 255, 0.5),
            0 0 10px rgba(0, 212, 255, 0.3),
            0 0 15px rgba(0, 212, 255, 0.2);
    }
    50% { 
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(0, 212, 255, 0.4);
    }
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 99.7%; }
}

@keyframes holographic-overlay {
    0%, 100% { 
        background: linear-gradient(45deg, 
            transparent 30%, 
            rgba(0, 212, 255, 0.1) 50%, 
            transparent 70%);
        transform: translateX(-100%);
    }
    50% { 
        background: linear-gradient(45deg, 
            transparent 20%, 
            rgba(0, 212, 255, 0.2) 50%, 
            transparent 80%);
        transform: translateX(100%);
    }
}

/* Futuristic Elements */
.grid-pattern {
    animation: grid-move 20s linear infinite;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 80%; animation-delay: -2s; }
.particle-3 { top: 60%; left: 20%; animation-delay: -4s; }
.particle-4 { top: 80%; left: 70%; animation-delay: -6s; }
.particle-5 { top: 30%; left: 50%; animation-delay: -1s; }
.particle-6 { top: 70%; left: 90%; animation-delay: -3s; }

.scan-lines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.1) 2px,
        rgba(0, 212, 255, 0.1) 4px
    );
    animation: scan-line 3s linear infinite;
}

.holographic-text {
    position: relative;
    z-index: 2;
}

.holographic-glow {
    animation: holographic-glow 2s ease-in-out infinite;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: holographic-overlay 3s ease-in-out infinite;
    pointer-events: none;
}

.progress-container {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 212, 255, 0.8), 
        rgba(0, 212, 255, 1), 
        rgba(0, 212, 255, 0.8));
    border-radius: 4px;
    animation: progress-fill 3s ease-out 1s forwards;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.progress-value {
    color: rgba(0, 212, 255, 1);
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Futuristic Process Grid */
.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    height: 600px;
    position: relative;
}

/* Mobile Responsive Process Grid */
@media (max-width: 768px) {
    .process-flow-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        height: auto;
        padding: 0 12px;
    }
    
    .process-card {
        width: 100%;
        padding: 20px;
        margin-bottom: 0;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .process-hub {
        order: -1;
        margin-bottom: 24px;
        align-self: center;
    }
    
    .card-title {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 12px;
        word-wrap: break-word;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 16px;
        flex-grow: 1;
        word-wrap: break-word;
    }
    
    .phase-number {
        font-size: 22px;
    }
    
    .phase-icon {
        width: 32px;
        height: 32px;
    }
    
    .hub-core {
        width: 90px;
        height: 90px;
    }
    
    .hub-text {
        font-size: 11px;
    }
    
    .hub-subtitle {
        font-size: 9px;
    }
    
    .hub-connections {
        display: none;
    }
    
    .card-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }
    
    .duration, .status {
        font-size: 12px;
        white-space: nowrap;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .process-flow-grid {
        padding: 0 8px;
        gap: 16px;
    }
    
    .process-card {
        padding: 16px;
        min-height: 120px;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .phase-number {
        font-size: 20px;
    }
    
    .phase-icon {
        width: 28px;
        height: 28px;
    }
    
    .hub-core {
        width: 80px;
        height: 80px;
    }
    
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .duration, .status {
        font-size: 11px;
    }
}

.process-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.process-card:hover::before {
    left: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.phase-number {
    font-size: 24px;
    font-weight: bold;
    color: rgba(0, 212, 255, 1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.phase-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 212, 255, 1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    font-size: 12px;
    color: rgba(0, 212, 255, 0.8);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.status.active {
    background: rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 1);
}

.status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: rgba(251, 191, 36, 1);
}

/* Grid Positioning */
.consultation-card { grid-column: 1; grid-row: 1; }
.design-card { grid-column: 3; grid-row: 1; }
.development-card { grid-column: 1; grid-row: 3; }
.testing-card { grid-column: 3; grid-row: 3; }
.deployment-card { grid-column: 2; grid-row: 2; }

/* Central Hub */
.process-hub {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hub-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: hub-pulse 3s ease-in-out infinite;
}

.hub-icon {
    color: rgba(0, 212, 255, 1);
    margin-bottom: 4px;
}

.hub-text {
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.hub-subtitle {
    font-size: 10px;
    color: rgba(0, 212, 255, 0.8);
    text-align: center;
}

.hub-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.connection {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 212, 255, 0.8), transparent);
    transform-origin: bottom center;
    animation: connection-pulse 2s ease-in-out infinite;
}

.connection-1 { top: 0; left: 50%; transform: translateX(-50%) rotate(0deg); animation-delay: 0s; }
.connection-2 { top: 0; left: 50%; transform: translateX(-50%) rotate(72deg); animation-delay: -0.4s; }
.connection-3 { top: 0; left: 50%; transform: translateX(-50%) rotate(144deg); animation-delay: -0.8s; }
.connection-4 { top: 0; left: 50%; transform: translateX(-50%) rotate(216deg); animation-delay: -1.2s; }
.connection-5 { top: 0; left: 50%; transform: translateX(-50%) rotate(288deg); animation-delay: -1.6s; }

@keyframes hub-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

@keyframes connection-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Holographic Grid */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 15s linear infinite;
}

.grid-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-particles::before,
.grid-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.grid-particles::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.grid-particles::after {
    top: 70%;
    right: 25%;
    animation-delay: -3s;
}

/* Futuristic Technology Stack */
.tech-title {
    position: relative;
    z-index: 2;
}

.tech-glow {
    animation: holographic-glow 2s ease-in-out infinite;
}

.tech-holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: holographic-overlay 3s ease-in-out infinite;
    pointer-events: none;
}

.tech-performance-meter {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.performance-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.performance-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 212, 255, 0.8), 
        rgba(0, 212, 255, 1), 
        rgba(0, 212, 255, 0.8));
    border-radius: 4px;
    animation: progress-fill 3s ease-out 1s forwards;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.performance-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.performance-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.performance-value {
    color: rgba(0, 212, 255, 1);
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Neural Network Background */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: neural-pulse 3s ease-in-out infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 30%; right: 20%; animation-delay: -0.5s; }
.node-3 { top: 60%; left: 25%; animation-delay: -1s; }
.node-4 { top: 70%; right: 15%; animation-delay: -1.5s; }
.node-5 { top: 40%; left: 50%; animation-delay: -2s; }
.node-6 { top: 80%; right: 50%; animation-delay: -2.5s; }

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), transparent);
    animation: connection-flow 4s ease-in-out infinite;
}

.conn-1 { top: 20%; left: 15%; width: 200px; transform: rotate(15deg); animation-delay: 0s; }
.conn-2 { top: 30%; right: 20%; width: 150px; transform: rotate(-20deg); animation-delay: -1s; }
.conn-3 { top: 60%; left: 25%; width: 180px; transform: rotate(25deg); animation-delay: -2s; }
.conn-4 { top: 70%; right: 15%; width: 160px; transform: rotate(-15deg); animation-delay: -3s; }

/* Data Streams */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(0, 212, 255, 0.8), 
        transparent);
    animation: stream-flow 6s linear infinite;
}

.stream-1 { left: 10%; animation-delay: 0s; }
.stream-2 { left: 50%; animation-delay: -2s; }
.stream-3 { right: 10%; animation-delay: -4s; }

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 25s linear infinite;
}

/* Futuristic Tech Cards */
.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Mobile Responsive Tech Showcase */
@media (max-width: 768px) {
    .tech-showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        padding: 0 16px;
    }
    
    .futuristic-card {
        padding: 20px;
        margin-bottom: 0;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .tech-icon-container {
        align-self: flex-start;
    }
    
    .tech-category-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .tech-status {
        align-self: flex-end;
    }
    
    .tech-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    .tech-item:last-child {
        border-bottom: none;
    }
    
    .tech-name {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .tech-label {
        font-size: 16px;
        font-weight: 600;
    }
    
    .tech-feature {
        font-size: 14px;
        align-self: flex-start;
    }
    
    .progress-bar-small {
        height: 4px;
    }
}

/* Extra small mobile screens for tech showcase */
@media (max-width: 480px) {
    .tech-showcase-grid {
        padding: 0 12px;
        gap: 16px;
    }
    
    .futuristic-card {
        padding: 16px;
    }
    
    .tech-category-title {
        font-size: 18px;
    }
    
    .tech-label {
        font-size: 15px;
    }
    
    .tech-feature {
        font-size: 13px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-glow {
        width: 50px;
        height: 50px;
    }
    
    .tech-item {
        padding: 10px 0;
    }
}

.futuristic-card {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1 !important;
}

.futuristic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.futuristic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.futuristic-card:hover::before {
    left: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tech-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 212, 255, 1);
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    animation: icon-glow-pulse 2s ease-in-out infinite;
}

.tech-category-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.tech-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

.status-indicator.active {
    background: rgba(34, 197, 94, 1);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.status-text {
    font-size: 12px;
    color: rgba(34, 197, 94, 1);
    font-weight: 500;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.futuristic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.futuristic-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(4px);
}

.tech-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tech-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.tech-progress {
    width: 80px;
}

.progress-bar-small {
    width: 100%;
    height: 3px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), rgba(0, 212, 255, 1));
    border-radius: 2px;
    animation: progress-fill-small 2s ease-out forwards;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
}

.tech-feature {
    font-size: 12px;
    color: rgba(0, 212, 255, 1);
    font-weight: 500;
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

/* Animations */
@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes connection-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes stream-flow {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes icon-glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes progress-fill-small {
    0% { width: 0%; }
    100% { width: var(--progress-width, 90%); }
}

/* Compact Technology Stack Layout */
.tech-showcase-grid {
    margin-bottom: 1rem !important;
}

/* Reduce gap between tech stack and business integrations */
.tech-showcase-grid + .text-center {
    margin-top: 1rem !important;
}

/* Enhanced Business Integrations with Smooth Animations */
.integration-grid {
    perspective: 1000px;
}

.integration-card {
    position: relative;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: visible;
    transform-style: preserve-3d;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.integration-card:hover::before {
    left: 100%;
}

.integration-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.1);
}

.integration-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    z-index: 2;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 212, 255, 1);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.integration-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.integration-card:hover .integration-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    animation: integration-pulse 2s ease-in-out infinite;
}

.integration-title-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.integration-card:hover .integration-title-text {
    color: rgba(0, 212, 255, 1);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.integration-features {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    padding-bottom: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: feature-slide-in 0.6s ease forwards;
    min-height: 48px;
    word-wrap: break-word;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    padding-left: 8px;
    transform: translateX(0);
}

.feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.feature-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item:hover .feature-text {
    color: rgba(0, 212, 255, 1);
}

.integration-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
    padding-top: 16px;
    min-height: 40px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

.status-text {
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
}

.integration-arrow {
    color: rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-arrow {
    color: rgba(0, 212, 255, 1);
    transform: translateX(4px);
}

/* Animations */
@keyframes integration-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.6;
    }
}

@keyframes feature-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes status-pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .integration-card {
        padding: 20px;
        margin-bottom: 16px;
        min-height: 320px;
        display: flex;
        flex-direction: column;
    }
    
    .integration-card:hover {
        transform: translateY(-4px);
    }
    
    .integration-icon {
        width: 50px;
        height: 50px;
    }
    
    .integration-title-text {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .integration-features {
        flex-grow: 1;
        margin-bottom: 16px;
    }
    
    .feature-item {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .feature-text {
        font-size: 13px;
        line-height: 1.3;
        word-wrap: break-word;
        flex: 1;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .integration-footer {
        margin-top: auto;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .integration-card {
        padding: 16px;
        min-height: 300px;
    }
    
    .integration-title-text {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .feature-item {
        padding: 8px 0;
        min-height: 40px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .integration-icon {
        width: 45px;
        height: 45px;
    }
}

/* Fix Technology Stack Text Opacity */
.tech-category-title {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.tech-label {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3) !important;
}

.tech-feature {
    color: rgb(0, 212, 255) !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5) !important;
}

.status-text {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}

.futuristic-item {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.tech-item {
    opacity: 1 !important;
}

.tech-list {
    opacity: 1 !important;
}

.card-header {
    opacity: 1 !important;
}

.tech-icon-container {
    opacity: 1 !important;
}

.tech-status {
    opacity: 1 !important;
}

/* Global override for technology section */
.tech-showcase-grid * {
    opacity: 1 !important;
}

.tech-showcase-grid .opacity-20,
.tech-showcase-grid .opacity-30,
.tech-showcase-grid .opacity-40,
.tech-showcase-grid .opacity-50,
.tech-showcase-grid .opacity-60,
.tech-showcase-grid .opacity-70,
.tech-showcase-grid .opacity-80,
.tech-showcase-grid .opacity-90 {
    opacity: 1 !important;
}

/* AI Assistant & Holographic Model Styles */
.ai-feature-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.ai-feature-card:hover::before {
    left: 100%;
}

.ai-feature-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.ai-icon-container {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Sophisticated Humanoid Robot Design */
.realistic-robot {
    width: 400px;
    height: 600px;
    position: relative;
    margin: 0 auto;
    perspective: 1000px;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.1); /* Temporary background for debugging */
    border: 2px solid rgba(0, 212, 255, 0.5); /* Temporary border for debugging */
}

/* Porcelain-like Head */
.robot-head {
    width: 180px;
    height: 200px;
    position: relative;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 90px 90px 80px 80px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 5px 25px rgba(255, 255, 255, 0.95),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.5);
    border: none;
    transform: perspective(1000px) rotateX(-2deg) rotateY(3deg);
    position: relative;
    overflow: hidden;
    z-index: 15;
}

/* Porcelain-like finish */
.robot-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

/* Exposed internal components on left side */
.robot-head::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 30px;
    height: 160px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px 0 0 15px;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Robot Headset */
.robot-headset {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
}

.headset-band {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #1a1a1a, #333333);
    border-radius: 4px;
    position: absolute;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.headset-ear {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-radius: 12px;
    position: absolute;
    top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.headset-ear.left-ear {
    left: 5px;
}

.headset-ear.right-ear {
    right: 5px;
}

.headset-mic {
    width: 2px;
    height: 25px;
    background: #1a1a1a;
    position: absolute;
    left: 15px;
    top: 35px;
    border-radius: 1px;
}

/* Sophisticated Face */
.robot-face {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
}

/* Human-like Eyes - Horizontal Positioning */
.robot-eyes {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.robot-eye {
    width: 28px;
    height: 18px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 14px 14px 12px 12px;
    position: relative;
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.4),
        0 0 50px rgba(0, 212, 255, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.8),
        inset 0 -1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.robot-eye.left-eye {
    order: 1;
}

.robot-eye.right-eye {
    order: 2;
}

/* Human-like iris */
.robot-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #00d4ff 20%, #0099cc 60%, #006699 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.eye-pupil {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #000000, #333333);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.eye-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 60%);
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: eyeGlow 4s ease-in-out infinite alternate;
}

@keyframes eyeGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Eye Interaction Effects */
.robot-eye:hover {
    box-shadow: 0 0 25px #00d4ff, 0 0 50px #00d4ff;
}

/* Subtle Nose */
.robot-nose {
    width: 10px;
    height: 14px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 5px 5px 7px 7px;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Subtle Mouth */
.robot-mouth {
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, #cccccc, #aaaaaa);
    border-radius: 2px;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Exposed Mechanical Neck */
.robot-neck {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
}

.neck-segment {
    width: 100%;
    height: 10px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 5px;
    margin-bottom: 3px;
    box-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Add mechanical details to neck segments */
.neck-segment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 1px;
}

.neck-segment:nth-child(2) {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    box-shadow: 
        0 0 12px #00ff00,
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

/* Add exposed wiring */
.robot-neck::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -8px;
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #ff0000, #0000ff, #ffff00, #ff00ff);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Porcelain-like Torso */
.robot-torso {
    width: 160px;
    height: 180px;
    position: relative;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 35px 35px 30px 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 5px 25px rgba(255, 255, 255, 0.95),
        inset 0 -2px 10px rgba(0, 0, 0, 0.05),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    border: none;
    transform: perspective(1000px) rotateX(-1deg) rotateY(2deg);
    position: relative;
    overflow: hidden;
}

/* Porcelain-like finish for torso */
.robot-torso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 50% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.torso-plate {
    width: 95%;
    height: 35px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #333333);
    border-radius: 18px;
    margin: 15px auto;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.chest-plate {
    background: linear-gradient(135deg, #00ff00, #00cc00, #009900);
    box-shadow: 
        0 0 30px #00ff00, 
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 255, 0, 0.4);
}

/* Add mechanical details to plates */
.torso-plate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 1px;
}

/* Porcelain-like Arms */
.robot-arms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.robot-arm {
    position: absolute;
    top: 80px;
    width: 25px;
    height: 110px;
    transition: all 0.4s ease;
    transform-origin: top center;
}

.robot-arm.left-arm {
    left: -35px;
}

.robot-arm.right-arm {
    right: -35px;
}

.arm-segment {
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 14px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 4px 10px rgba(255, 255, 255, 0.95),
        inset 0 -1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Add porcelain-like finish to arms */
.arm-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 75% 85%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.upper-arm {
    height: 50px;
    margin-bottom: 10px;
}

.forearm {
    height: 45px;
    margin-bottom: 10px;
}

.arm-joint {
    width: 18px;
    height: 14px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #333333);
    border-radius: 7px;
    margin: 0 auto 10px;
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.elbow {
    background: linear-gradient(135deg, #00ff00, #00cc00, #009900);
    box-shadow: 
        0 0 18px #00ff00, 
        0 5px 10px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 255, 0, 0.4);
}

/* Porcelain-like Hands */
.robot-hand {
    width: 32px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 16px 16px 12px 12px;
    position: relative;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 4px 10px rgba(255, 255, 255, 0.95),
        inset 0 -1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    border: none;
    overflow: hidden;
}

/* Add porcelain-like finish to hands */
.robot-hand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 65% 85%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.finger {
    width: 6px;
    height: 20px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.finger:nth-child(1) { left: 5px; }
.finger:nth-child(2) { left: 12px; }
.finger:nth-child(3) { left: 19px; }
.finger:nth-child(4) { left: 26px; }

.thumb {
    width: 6px;
    height: 14px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #f0f0f0);
    border-radius: 3px;
    position: absolute;
    top: 14px;
    left: -5px;
    transform: rotate(-30deg);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.95),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

/* Interactive Effects */
.robot-eye:hover {
    box-shadow: 0 0 35px #00ff00, 0 0 70px #00ff00;
}

.robot-arm:hover {
    box-shadow: 0 0 20px #00ff00;
}

/* Robot Base/Stand */
.robot-base {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    z-index: 1;
}

.base-platform {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f8f8, #e0e0e0);
    border-radius: 30px 30px 10px 10px;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.base-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 240, 240, 0.6));
    border-radius: 30px 30px 10px 10px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.base-glow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: baseGlow 3s ease-in-out infinite;
}

@keyframes baseGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Ensure all robot elements are visible */
.robot-head, .robot-torso, .robot-arms, .robot-eye, .robot-hand {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== REFERRAL PROGRAM STYLES ===== */

/* Referral Gradient Text */
.text-gradient-referral {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981, #f59e0b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

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

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Holographic Grid for Referral */
.holographic-grid-referral {
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Referral Cards */
.referral-card {
    position: relative;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.referral-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(139, 92, 246, 0.2);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.referral-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Existing Client Card */
.existing-client-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(15, 15, 35, 0.9));
    border-color: rgba(16, 185, 129, 0.3);
}

.existing-client-card:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(16, 185, 129, 0.3);
}

/* New Client Card */
.new-client-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(15, 15, 35, 0.9));
    border-color: rgba(59, 130, 246, 0.3);
}

.new-client-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(59, 130, 246, 0.3);
}

/* Card Content */
.card-content {
    padding: 32px;
    position: relative;
    z-index: 2;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.existing-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.new-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.existing-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.new-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Benefit Highlight */
.benefit-highlight {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.benefit-text {
    display: block;
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.benefit-item span {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Referral Buttons */
.referral-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.existing-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.existing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.new-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.new-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.step-description {
    color: #d1d5db;
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .referral-card {
        margin-bottom: 24px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .benefit-amount {
        font-size: 2.5rem;
    }
    
    .step-card {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Mobile Responsive - Sophisticated Humanoid */
@media (max-width: 768px) {
    .ai-hologram-container {
        height: 500px;
    }
    
    .holographic-model {
        width: 300px;
        height: 450px;
    }
    
    .realistic-robot {
        width: 280px;
        height: 420px;
    }
    
    .robot-base {
        width: 150px;
        height: 45px;
        bottom: -35px;
    }
    
    .base-glow {
        width: 170px;
        height: 15px;
    }
    
    .robot-head {
        width: 140px;
        height: 160px;
        margin-bottom: 30px;
    }
    
    .robot-torso {
        width: 130px;
        height: 150px;
        margin-bottom: 30px;
    }
    
    .robot-arm {
        width: 20px;
        height: 90px;
    }
    
    .robot-eye {
        width: 26px;
        height: 16px;
    }
    
    .robot-hand {
        width: 26px;
        height: 32px;
    }
    
    .finger {
        width: 5px;
        height: 16px;
    }
    
    .thumb {
        width: 5px;
        height: 12px;
    }
}

.ai-icon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.ai-status-panel {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.ai-status-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: scan-line 2s ease-in-out infinite;
}

.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    position: relative;
}

.status-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
    animation: pulse-glow 2s ease-in-out infinite;
}

.ai-performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    min-width: 120px;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 3px;
    position: relative;
    animation: progress-fill 2s ease-out;
}

.metric-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.metric-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #00d4ff;
}

/* Holographic Display */
.ai-hologram-container {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.holographic-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
}

.holographic-model {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 450px;
    height: 650px;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 0, 0, 0.1); /* Temporary red background for debugging */
    border: 1px solid rgba(255, 0, 0, 0.3); /* Temporary red border for debugging */
}

.model-silhouette {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.2));
    border-radius: 50px 50px 20px 20px;
    clip-path: polygon(30% 0%, 70% 0%, 80% 20%, 85% 40%, 80% 60%, 75% 80%, 70% 100%, 30% 100%, 25% 80%, 20% 60%, 15% 40%, 20% 20%);
    animation: holographic-glow 3s ease-in-out infinite;
}

.model-head {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(0, 153, 204, 0.3));
    border-radius: 50% 50% 40% 40%;
}

.model-face {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
}

.model-eyes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.eye {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
    animation: eye-blink 4s ease-in-out infinite;
}

.model-mouth {
    width: 20px;
    height: 4px;
    background: #00d4ff;
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 0 8px #00d4ff;
}

.model-hair {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.2));
    border-radius: 50% 50% 0 0;
    clip-path: polygon(0% 100%, 20% 0%, 40% 20%, 60% 0%, 80% 20%, 100% 0%, 100% 100%);
}

.model-body {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 120px;
}

.model-torso {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.2));
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.model-arms {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
}

.arm {
    width: 15px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.2));
    border-radius: 8px;
    animation: arm-move 3s ease-in-out infinite;
}

.left-arm {
    animation-delay: -1.5s;
}

/* Holographic Effects */
.holographic-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.1) 2px,
        rgba(0, 212, 255, 0.1) 4px
    );
    animation: scan-move 2s linear infinite;
    z-index: 3;
}

.holographic-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 6px #00d4ff;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: -1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: -2s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 40%;
    animation-delay: -3s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 20%;
    animation-delay: -1.5s;
}

.model-data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #00d4ff, transparent);
    animation: data-flow 3s ease-in-out infinite;
}

.data-stream:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.data-stream:nth-child(2) {
    left: 50%;
    animation-delay: -1s;
}

.data-stream:nth-child(3) {
    right: 20%;
    animation-delay: -2s;
}

/* AI Interface */
.ai-interface {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}

.interface-panel {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.panel-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00d4ff;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #a0a0a0;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

.data-label {
    color: #a0a0a0;
}

.data-value {
    color: #00d4ff;
    font-weight: 500;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes eye-blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

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

@keyframes scan-move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes data-flow {
    0% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(100%); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Advanced Futuristic Contact Page Styles */

/* Neural Network Pattern */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8), transparent);
    border-radius: 50%;
    animation: neural-pulse 3s ease-in-out infinite;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.6), transparent);
    animation: connection-flow 4s ease-in-out infinite;
}

/* Data Streams */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.8), transparent);
    animation: stream-flow 6s linear infinite;
}

.stream-1 {
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    left: 40%;
    animation-delay: -1.5s;
}

.stream-3 {
    left: 60%;
    animation-delay: -3s;
}

.stream-4 {
    left: 80%;
    animation-delay: -4.5s;
}

/* Holographic Grid */
.holographic-grid {
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

/* Scan Lines */
.scan-lines {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: scan-line 8s linear infinite;
}

/* Holographic Text Effects */
.holographic-text {
    position: relative;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 212, 255, 0.1);
    animation: holographic-glow 3s ease-in-out infinite alternate;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 212, 255, 0.1) 50%,
        transparent 70%
    );
    animation: holographic-overlay 4s ease-in-out infinite;
    pointer-events: none;
}

/* Futuristic Buttons */
.futuristic-button-container {
    position: relative;
}

.futuristic-button {
    position: relative;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.futuristic-button:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.call-button {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    color: #00d4ff;
}

.whatsapp-button {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    border-color: rgba(37, 211, 102, 0.8);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.button-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    animation: icon-glow-pulse 2s ease-in-out infinite;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.futuristic-button:hover .button-glow {
    left: 100%;
}

/* Futuristic Scroll Indicator */
.futuristic-scroll-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-arrow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.scroll-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    border-radius: 50%;
    animation: icon-glow-pulse 2s ease-in-out infinite;
}

.scroll-text {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    animation: holographic-glow 3s ease-in-out infinite alternate;
}

/* Enhanced Animations */
@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes connection-flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes stream-flow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes holographic-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(0, 212, 255, 0.5),
            0 0 20px rgba(0, 212, 255, 0.3),
            0 0 30px rgba(0, 212, 255, 0.1);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(0, 212, 255, 0.8),
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 40px rgba(0, 212, 255, 0.2);
    }
}

@keyframes holographic-overlay {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes icon-glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Fix Business Integrations Text Opacity */
.integration-card h4 {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.integration-card li {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.integration-card .text-text-primary {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.integration-card .text-text-secondary {
    color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.close-button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 0;
    position: relative;
    z-index: 2;
    margin-right: 4px;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Chat Messages - WhatsApp Style */
.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #0a0a0a;
    position: relative;
    max-height: none;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
}

.chat-messages::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

.message {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 18px;
    animation: messageSlideIn 0.4s ease-out;
    word-wrap: break-word;
    line-height: 1.4;
    position: relative;
    margin-bottom: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* WhatsApp-style Bot Messages */
.message.bot {
    background: #2a2a2a;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    margin-right: auto;
    max-width: 70%;
}

/* WhatsApp-style User Messages */
.message.user {
    background: #005c4b;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    max-width: 70%;
}

/* Message Timestamps */
.message::after {
    content: attr(data-time);
    position: absolute;
    bottom: -18px;
    right: 8px;
    font-size: 11px;
    color: #8696a0;
    opacity: 0.8;
}

.message.user::after {
    right: 8px;
}

.message.bot::after {
    left: 8px;
}

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

.message.bot {
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.message.user {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Welcome Message in Chat Body */
.welcome-message-container {
    text-align: center;
    padding: 10px;
    margin-bottom: 6px;
}

.welcome-message {
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.4;
    max-width: 70%;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.question-text {
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    max-width: 70%;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Support Information Styling */
.support-info {
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    margin-top: 6px;
    margin-bottom: 8px;
    max-width: 70%;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.4;
}

.support-info p {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 6px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(2px);
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 11px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Choice Buttons */
.choice-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 8px;
    justify-content: center;
    align-items: center;
}

.choice-btn {
    background: #005c4b;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    flex: 1;
    max-width: 150px;
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.choice-btn:hover::before {
    left: 100%;
}

.choice-btn:hover {
    background: #006b5a;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.choice-btn:active {
    transform: translateY(0);
}

/* Client Information Styling - Full Width */
.client-info {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 16px;
    padding: 20px;
    margin: 8px 0;
    border: 2px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: visible;
    min-width: 100%;
}

.client-info h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.client-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.client-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-height: 50px;
}

.client-info-item:last-child {
    border-bottom: none;
}

.client-info-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-info-value {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-height: 40px;
    display: flex;
    align-items: center;
    word-break: normal;
    white-space: normal;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word;
    line-height: 1.4;
    min-width: 0;
}

.client-info-value.empty {
    color: #64748b;
    font-style: italic;
}

.client-info-value.status-active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.2) 100%);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.client-info-value.status-pending {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.client-info-value.status-completed {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.client-info-value.mobile-number {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.client-info-value.mobile-number:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* Service Information Display */
.service-info {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 16px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-info h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-info p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    text-align: center;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 8px 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding-left: 32px;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
}

.service-details li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
    transition: all 0.2s ease;
}

/* Forms */
.form-container {
    padding: 4px 16px 8px 16px;
    background: rgba(26, 26, 46, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
}

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    outline: none;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-input:focus {
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Message Styling Improvements - Full Width */
.message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    animation: fadeInUp 0.3s ease-out;
    width: 100%;
    max-width: 100%;
}

.message.bot-message {
    width: 100%;
    max-width: 100%;
}

/* Client Info Message - Full Width Without Avatar */
.message.client-info-message {
    display: block;
    width: 100%;
    max-width: 100%;
}

.message.client-info-message .message-avatar {
    display: none;
}

.message.client-info-message .message-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
}

/* Service Info Message - Full Width Without Avatar */
.message.service-info-message {
    display: block;
    width: 100%;
    max-width: 100%;
}

.message.service-info-message .message-avatar {
    display: none;
}

.message.service-info-message .message-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #67e8f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.message-avatar::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

/* Remove all potential watermarks from chat interface */
.chat-window *::before,
.chat-window *::after,
.chat-messages *::before,
.chat-messages *::after,
.message *::before,
.message *::after {
    background-image: none !important;
    content: none !important;
}

/* Specifically target any remaining watermark elements */
.chat-window::before,
.chat-window::after,
.chat-messages::before,
.chat-messages::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

/* Nuclear option - remove ALL pseudo-elements from chat interface */
.chat-window *,
.chat-messages *,
.message *,
.welcome-message-container *,
.choice-buttons * {
    position: relative;
}

.chat-window *::before,
.chat-window *::after,
.chat-messages *::before,
.chat-messages *::after,
.message *::before,
.message *::after,
.welcome-message-container *::before,
.welcome-message-container *::after,
.choice-buttons *::before,
.choice-buttons *::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.bot-message .message-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

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

/* Green looping animation for homepage banner */
@keyframes greenLoop {
    0% {
        background: linear-gradient(45deg, rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.4));
        transform: scale(1) rotate(0deg);
    }
    25% {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.6), rgba(16, 185, 129, 0.5));
        transform: scale(1.05) rotate(90deg);
    }
    50% {
        background: linear-gradient(225deg, rgba(34, 197, 94, 0.6), rgba(16, 185, 129, 0.4), rgba(34, 197, 94, 0.6));
        transform: scale(1.1) rotate(180deg);
    }
    75% {
        background: linear-gradient(315deg, rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.5));
        transform: scale(1.05) rotate(270deg);
    }
    100% {
        background: linear-gradient(45deg, rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.4));
        transform: scale(1) rotate(360deg);
    }
}

.green-loop-animation {
    animation: greenLoop 6s ease-in-out infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
    border-radius: 0;
    opacity: 1;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.4), rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.4));
}

.bot-message .message-content::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

.user-message .message-content {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: #6366f1;
}

.message-time {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 8px;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 160px);
        bottom: 60px;
        right: 20px;
        left: 20px;
        border-radius: 20px;
    }


    .chat-header {
        padding: 20px 28px 20px 20px;
        border-radius: 20px 20px 0 0;
    }

    .bot-title-section {
        margin-right: 16px;
    }

    .bot-title {
        font-size: 24px;
        height: 36px;
    }

    .bot-title-accent {
        font-size: 28px;
        transform: scale(1.1);
    }

    .bot-icon {
        font-size: 28px;
        width: 36px;
        height: 36px;
    }

    .header-controls {
        gap: 12px;
    }

    .bot-status {
        font-size: 11px;
        margin-right: 6px;
    }

    .language-toggle {
        padding: 3px 6px;
        font-size: 9px;
    }

    .close-button {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-right: 2px;
    }

    .choice-btn {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 12px;
    }

    .form-container {
        padding: 6px 16px 12px 16px;
    }
}

/* Desktop responsive */
@media (min-width: 1024px) {
    .chat-window {
        width: 380px;
        height: 580px;
        bottom: 100px;
        right: 30px;
        left: auto;
    }
    
    .chat-button {
        bottom: 20px;
        right: 30px;
        width: auto;
        min-width: 80px;
        height: 80px;
    }
}

/* Tablet responsive */
@media (max-width: 768px) {
    .chat-window {
        width: 90vw;
        height: 75vh;
        bottom: 100px;
        right: 5vw;
        left: auto;
        max-width: 400px;
        max-height: 600px;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
        width: auto;
        min-width: 70px;
        height: 70px;
        font-size: 24px;
        padding: 0 16px;
        gap: 6px;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .chat-window {
        width: 95vw;
        height: 80vh;
        bottom: 100px;
        right: 2.5vw;
        left: auto;
        max-width: 400px;
        max-height: 600px;
    }


    .chat-header {
        padding: 16px 24px 16px 16px;
        min-height: 70px;
    }

    .header-content {
        min-height: 32px;
    }

    .bot-title-section {
        gap: 8px;
        margin-right: 12px;
    }

    .bot-title {
        font-size: 22px;
        height: 32px;
    }

    .bot-title-accent {
        font-size: 26px;
        transform: scale(1.05);
    }

    .bot-icon {
        font-size: 24px;
        width: 32px;
        height: 32px;
    }

    .bot-icon svg {
        width: 28px;
        height: 28px;
    }

    .chat-button {
        bottom: 20px;
        right: 20px;
        width: auto;
        min-width: 60px;
        height: 60px;
        font-size: 24px;
        padding: 0 12px;
        gap: 4px;
        /* Mobile touch improvements */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .chat-icon {
        width: 20px;
        height: 20px;
    }

    .chat-button-text {
        font-size: 13px;
    }

    .header-controls {
        gap: 8px;
    }

    .bot-status {
        font-size: 10px;
        margin-right: 4px;
    }

    .language-toggle {
        padding: 3px 5px;
        font-size: 8px;
    }

    .close-button {
        width: 18px;
        height: 18px;
        font-size: 9px;
        margin-right: 2px;
    }

    .client-info {
        padding: 20px;
        margin: 12px 0;
    }

    .client-info h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .client-info-grid {
        gap: 14px;
    }

    .client-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 0;
    }

    .client-info-label {
        min-width: auto;
        font-size: 13px;
        color: #64748b;
        width: 100%;
        text-align: left;
    }

    .client-info-value {
        width: 100%;
        font-size: 15px;
        min-height: 44px;
        padding: 12px 16px;
    }

    .support-info {
        padding: 8px;
        margin-top: 6px;
    }

    .support-info p {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .contact-item {
        padding: 4px 6px;
    }

    .contact-text {
        font-size: 10px;
    }
}

/* Smooth scrolling */
.chat-messages {
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar - WebKit browsers (Chrome, Safari, Edge) */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 4px 0;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.5);
}

.chat-messages::-webkit-scrollbar-thumb:active {
    background: rgba(0, 212, 255, 0.7);
}

/* Firefox scrollbar */
.chat-messages {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.3) rgba(255, 255, 255, 0.1);
}

/* Ensure scrollbar is always visible when content overflows */
.chat-messages {
    overflow-y: auto;
    scrollbar-gutter: auto;
}

/* Additional scrollbar improvements */
.chat-messages:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
}

/* Make scrollbar more visible on mobile */
@media (max-width: 768px) {
    .chat-messages::-webkit-scrollbar {
        width: 10px;
    }
    
    .chat-messages::-webkit-scrollbar-thumb {
        background: rgba(0, 212, 255, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
}

/* Ultra Smooth Mobile Animations and Scrolling Utilities */

/* Mobile-optimized smooth scrolling container */
@media (max-width: 768px) {
  .smooth-scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-snap-type: y proximity;
  }
  
  /* Mobile parallax effects */
  .mobile-parallax {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  
  /* Mobile-optimized glass effects */
  .mobile-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Mobile button animations */
  .mobile-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
  }
  
  .mobile-btn:active {
    transform: scale(0.95) translateZ(0);
  }
  
  /* Mobile card animations */
  .mobile-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .mobile-card:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Mobile text animations */
  .mobile-text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-text-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile section transitions */
  .mobile-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Mobile navigation smoothness */
  .mobile-nav {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Mobile scroll indicators */
  .mobile-scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .mobile-scroll-indicator:hover {
    opacity: 1;
  }
  
  /* Mobile loading animations */
  .mobile-loading {
    animation: mobilePulse 1.5s ease-in-out infinite;
  }
  
  @keyframes mobilePulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.05);
    }
  }
  
  /* Mobile smooth reveal animations */
  .mobile-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile stagger animations */
  .mobile-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-stagger > *:nth-child(1) { transition-delay: 0.1s; }
  .mobile-stagger > *:nth-child(2) { transition-delay: 0.2s; }
  .mobile-stagger > *:nth-child(3) { transition-delay: 0.3s; }
  .mobile-stagger > *:nth-child(4) { transition-delay: 0.4s; }
  .mobile-stagger > *:nth-child(5) { transition-delay: 0.5s; }
  .mobile-stagger > *:nth-child(6) { transition-delay: 0.6s; }
  
  .mobile-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile smooth scroll to top */
  .mobile-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .mobile-scroll-top:hover {
    background: rgba(0, 212, 255, 1);
    transform: scale(1.1) translateZ(0);
  }
  
  /* Mobile performance optimizations */
  .mobile-optimized {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    will-change: transform;
  }
  
  /* Mobile smooth transitions for all interactive elements */
  a, button, input, textarea, select {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Mobile smooth scrolling for all containers */
  .overflow-auto, .overflow-y-auto, .overflow-x-auto {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Additional mobile scrolling optimizations */
  * {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optimize scrolling performance */
  .mobile-section {
    contain: layout style paint;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  /* Reduce repaints during scroll */
  .hero-section, .mobile-section {
    will-change: auto;
  }
  
  /* Optimize text rendering for mobile */
  body, html {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Disable expensive effects on mobile */
  .holographic-glow, .shadow-glow, .neural-connection {
    display: none !important;
  }
  
  /* Optimize business card section for mobile */
  .mobile-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    transition: none !important;
  }
  
  .mobile-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Disable complex animations in business section */
  .animate-scroll, .hover\\:shadow-glow {
    animation: none !important;
    transition: none !important;
  }
  
  /* Optimize business section container */
  .mobile-section[style*="contain"] {
    contain: layout style paint;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
  }
  
  /* Simplify business card grid */
  .grid.grid-cols-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    contain: layout;
  }
  
  /* Remove expensive effects from business cards */
  .glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* Mobile timeline optimizations */
  .timeline-content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .timeline-node {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Disable timeline animations on mobile */
  .animate-pulse-glow {
    animation: none !important;
  }
  
  /* Optimize timeline spacing */
  .space-y-12 > * + * {
    margin-top: 1rem !important;
  }
  
  /* Ensure timeline section is visible */
  .mobile-section {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  /* Force DDK TECH Story section visibility on desktop */
  section {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: auto !important;
  }
  
  /* Ensure the title and subtitle are visible */
  section h2,
  section p {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  /* Override any GSAP or other animations that might hide content */
  section * {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Force text elements to be visible */
  section .text-text-primary,
  section .text-gradient,
  section .text-white {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline !important;
  }
  
  /* Ensure desktop timeline elements are visible */
  .timeline-content.inline-block {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .bg-gradient-to-br {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Ensure desktop timeline nodes are visible */
  .timeline-node {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Force desktop timeline visibility */
  .hidden.md\\:block {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
  
  /* Ensure timeline cards are visible */
  .w-1\\/2 .timeline-content {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Simplify gradients for better performance */
  .bg-gradient-to-br, .bg-gradient-to-r, .bg-gradient-to-t {
    background: linear-gradient(135deg, var(--tw-gradient-stops)) !important;
  }
}

/* Futuristic Technology Center Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

@keyframes gradient-x {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes expand-width {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fade-in-up {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fade-in-up-delayed {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    50% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes tech-glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(0, 191, 255, 0.3);
        border-color: rgba(0, 191, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
        border-color: rgba(0, 191, 255, 0.6);
    }
}

@keyframes neural-pulse {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-float-slow {
    animation: float-slow 10s ease-in-out infinite;
    animation-delay: 4s;
}

.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 3s ease infinite;
}

.animate-expand-width {
    animation: expand-width 2s ease-out 1s forwards;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

.animate-fade-in-up-delayed {
    animation: fade-in-up-delayed 1.5s ease-out forwards;
}

.animate-tech-glow {
    animation: tech-glow 2s ease-in-out infinite;
}

.animate-neural-pulse {
    animation: neural-pulse 4s ease-in-out infinite;
}

/* Hover Effects for Tech Cards */
.tech-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
}