/* /var/www/html/company-profile/assets/css/style.css */
/* Modern Futuristic Design System for NexaTech Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --primary: #6366f1;
  --secondary: #ec4899;
  --accent: #06b6d4;
  --dark-bg: #070913;
  --card-bg: rgba(15, 23, 42, 0.75);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: #070913;
  color: #f8fafc;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070913;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6366f1;
}

/* Ambient glow blobs */
.glow-blob-1 {
  position: absolute;
  top: -8%;
  left: 20%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(0,0,0,0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow-blob-2 {
  position: absolute;
  top: 35%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
}

.glow-blob-3 {
  position: absolute;
  bottom: 12%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Glassmorphism Styles */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(99, 102, 241, 0.2);
}

.glass-nav {
  background: rgba(7, 9, 19, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradients */
.text-gradient-primary {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Device Frame for React Native Live Preview */
.device-frame {
  position: relative;
  width: 320px;
  height: 640px;
  background: #090d16;
  border: 10px solid #1e293b;
  border-radius: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(99, 102, 241, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.device-frame .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: #1e293b;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-frame .notch .speaker {
  width: 36px;
  height: 4px;
  background: #475569;
  border-radius: 2px;
}

.device-frame .notch .camera {
  width: 6px;
  height: 6px;
  background: #0f172a;
  border: 1.5px solid #334155;
  border-radius: 50%;
  margin-left: 8px;
}

.device-frame .screen-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #0b0f19;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}

.device-frame .screen-content::-webkit-scrollbar {
  display: none;
}

/* Float Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

.animate-float-delayed {
  animation: float 7s ease-in-out infinite 1.5s;
}

/* Infinite Marquee */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 2rem;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 2rem;
  animation: scrollX 28s linear infinite;
}

@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Background Grid */
.bg-grid {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
