/* ===================================
   ORIVANTA.IN - FINAL FIXED STYLES.CSS
   NO Purple/Blue Hover Animations
   =================================== */

/* CSS Reset & Base - FIXED */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f23 100%);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}

/* ===================================
   VARIABLES
   =================================== */
:root {
  /* Background Colors */
  --bg-primary: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f23 100%);
  --bg-secondary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.1);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-body: rgba(255, 255, 255, 1);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-subtle: rgba(255, 255, 255, 0.5);
  
  /* Accent Colors */
  --accent-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-cyan: #00f2fe;
  --accent-pink: #f5576c;
  --accent-success: #43e97b;
  
  /* Single Color Values */
  --purple-blue: #667eea;
  --purple-dark: #764ba2;
  
  /* Borders & Effects */
  --border-default: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(102, 126, 234, 0.5);
  --glow-primary: rgba(102, 126, 234, 0.25);
  --glow-cyan: rgba(0, 242, 254, 0.25);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Mobile-First Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 2.5rem;
  --spacing-mega: 3rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  --glass-blur: blur(10px);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--glow-primary);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Spacing Override */
@media (min-width: 768px) {
  :root {
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-mega: 6rem;
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px var(--glow-primary);
  }
}

/* ===================================
   CONTAINER SYSTEM
   =================================== */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 2rem;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}



/* Add to your main CSS file */
html, body {
    /* Prevent horizontal scrolling */
    overflow-x: hidden;
    max-width: 100%;
    
    /* Prevent swipe navigation gestures */
    overscroll-behavior-x: none;
    overscroll-behavior-y: contain;
    
    /* Prevent mobile zoom and pan */
    touch-action: pan-y pinch-zoom;
}

/* Prevent form inputs from breaking layout */
* {
    box-sizing: border-box;
}

/* Fix mobile form viewport issues */
@media screen and (max-width: 768px) {
    body {
        position: relative;
        width: 100%;
    }
    
    .contact__form, .form__input, .form__select, .form__textarea {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ===================================
   GLASSMORPHISM - NO HOVER ANIMATIONS
   =================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  /* REMOVED: transition property to prevent hover animations */
}

/* COMPLETELY REMOVED: All hover effects */
.glass-card:hover {
  /* NO background changes */
  /* NO border changes */
  /* NO transforms */
  /* NO glow effects */
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  word-wrap: break-word;
  hyphens: auto;
}

.hero__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
}

@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 4rem;
  }
}

@media (min-width: 1400px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.title__gradient {
  background: var(--accent-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  text-align: center;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 992px) {
  .section__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1200px) {
  .section__title {
    font-size: 3rem;
  }
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .section__badge {
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }
}

.hero__subtitle,
.section__description {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 576px) {
  .hero__subtitle,
  .section__description {
    font-size: 1.125rem;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .hero__subtitle,
  .section__description {
    font-size: 1.25rem;
    max-width: 700px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .hero__subtitle,
  .section__description {
    font-size: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .hero__subtitle,
  .section__description {
    font-size: 1.5rem;
  }
}

/* ===================================
   BUTTON SYSTEM - NO HOVER ANIMATIONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  /* REMOVED: transition to prevent hover animations */
  position: relative;
  overflow: hidden;
  min-height: 44px;
  gap: var(--spacing-xs);
  width: auto;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

.btn--primary {
  background: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--purple-blue);
}

/* COMPLETELY REMOVED: All button hover effects */
.btn--primary:hover {
  /* NO background changes */
  /* NO transforms */
  /* NO glow effects */
}

.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

/* COMPLETELY REMOVED: Glass button hover effects */
.btn--glass:hover {
  /* NO background changes */
  /* NO border changes */
  /* NO transforms */
}

.btn--large {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  min-height: 48px;
}

@media (min-width: 768px) {
  .btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    min-height: 56px;
  }
}

/* ===================================
   NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-default);
  z-index: 1000;
  transition: var(--transition-normal);
}

.scroll-header {
  background: rgba(12, 12, 12, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .nav {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .nav {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .nav {
    height: 80px;
  }
}

.nav__logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease; /* Smooth hover effects */
}

.nav__logo:hover {
    transform: scale(1.05); /* Slight hover growth */
}

@media (min-width: 768px) {
    .nav__logo {
        height: 52px;
        max-width: 240px;
    }
}


.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  overflow-y: auto;
}

.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  list-style: none;
  text-align: center;
  padding: var(--spacing-lg);
}

.nav__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  padding: var(--spacing-sm);
}

@media (min-width: 768px) {
  .nav__link {
    font-size: 1rem;
  }
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-normal);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-normal);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__close:hover {
  color: var(--accent-cyan);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

@media (min-width: 768px) {
  .nav__actions {
    gap: var(--spacing-sm);
  }
}

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.125rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.nav__toggle:hover {
  color: var(--accent-cyan);
}



/* Desktop Navigation */
@media (min-width: 768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    overflow-y: visible;
  }
  
  .nav__list {
    flex-direction: row;
    gap: var(--spacing-xl);
    padding: 0;
  }
  
  .nav__link {
    color: var(--text-secondary);
  }
  
  .nav__close,
  .nav__toggle {
    display: none;
  }
}

/* ===================================
   HERO SECTION - NO HOVER ANIMATIONS
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  margin-top: 70px;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 80px;
  }
}

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

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at top right, rgba(0, 242, 254, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 15s infinite linear;
}

@media (min-width: 768px) {
  .particle {
    width: 2px;
    height: 2px;
    opacity: 0.6;
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl) 0;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-mega);
    padding: var(--spacing-mega) 0;
  }
}

.hero__content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .hero__content {
    text-align: left;
    padding: 0;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  animation: slideInUp 1s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .hero__badge {
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
}

.badge__icon {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .badge__icon {
    font-size: 1.2rem;
  }
}

/* Trust Cards - NO HOVER ANIMATIONS */
.hero__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 576px) {
  .hero__trust {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

@media (min-width: 768px) {
  .hero__trust {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
}

.trust__card {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  opacity: 0;
  animation: slideInUp 0.6s ease-out forwards;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .trust__card {
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    font-size: 1rem;
  }
}

.trust__card:nth-child(2) { animation-delay: 0.2s; }
.trust__card:nth-child(3) { animation-delay: 0.4s; }

.trust__icon {
  width: 36px;
  height: 36px;
  background: var(--accent-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .trust__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

.trust__content {
  text-align: left;
  min-width: 0;
}

.trust__title {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .trust__title {
    font-size: 1rem;
    line-height: 1.4;
  }
}

.trust__text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .trust__text {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

/* Hero Actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  animation: slideInUp 1s ease-out 0.6s both;
  width: 100%;
}

@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
  }
}

@media (min-width: 768px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

/* Hero Visual Elements - NO HOVER ANIMATIONS */
.hero__visual {
  position: relative;
  animation: fadeIn 1.5s ease-out 0.8s both;
  padding: var(--spacing-lg) var(--spacing-sm);
}

@media (min-width: 768px) {
  .hero__visual {
    padding: 0;
  }
}

.visual__container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .visual__container {
    max-width: 500px;
  }
}

@media (min-width: 1200px) {
  .visual__container {
    max-width: 600px;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 576px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

@media (min-width: 768px) {
  .tech-grid {
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1200px) {
  .tech-grid {
    gap: var(--spacing-xl);
  }
}

.grid__item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  text-align: center;
  cursor: pointer;
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
  /* REMOVED: transition to prevent hover animations */
}

@media (min-width: 768px) {
  .grid__item {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
  }
}

.grid__item:nth-child(n) { animation-delay: calc(var(--i, 0) * 0.1s); }
.grid__item:nth-child(1) { --i: 1; }
.grid__item:nth-child(2) { --i: 2; }
.grid__item:nth-child(3) { --i: 3; }
.grid__item:nth-child(4) { --i: 4; }
.grid__item:nth-child(5) { --i: 5; }
.grid__item:nth-child(6) { --i: 6; }

.grid__item i {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  margin-bottom: var(--spacing-xs);
  display: block;
}

@media (min-width: 768px) {
  .grid__item i {
    font-size: 1.5rem;
  }
}

.grid__item span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .grid__item span {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* COMPLETELY REMOVED: All grid item hover effects */
.grid__item:hover {
  /* NO background changes */
  /* NO border changes */
  /* NO transforms */
  /* NO glow effects */
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .connection-lines {
    display: block;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  z-index: 2;
  animation: bounce 2s infinite;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .scroll-indicator {
    bottom: 2rem;
    font-size: 1rem;
  }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .scroll-mouse {
    width: 28px;
    height: 48px;
    border-radius: 24px;
    padding: 8px 0;
  }
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 1px;
  animation: scrollWheel 2s infinite;
}

@media (min-width: 768px) {
  .scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 2px;
  }
}

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

@media (min-width: 768px) {
  @keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

@media (min-width: 768px) {
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
  }
}

/* ===================================
   SERVICES PREVIEW - NO HOVER ANIMATIONS
   =================================== */
.services-preview {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
  position: relative;
}

@media (min-width: 768px) {
  .services-preview {
    padding: var(--spacing-mega) 0;
  }
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-default), transparent);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .section__header {
    margin-bottom: var(--spacing-mega);
    padding: 0;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xxl);
  }
}

.service__card {
  position: relative;
  padding: var(--spacing-lg);
  /* REMOVED: transition to prevent hover animations */
  opacity: 0;
  transform: translateY(30px);
}

@media (min-width: 768px) {
  .service__card {
    padding: var(--spacing-xl);
  }
}

.service__card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

.service__glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--accent-primary);
  border-radius: var(--radius-lg);
  opacity: 0;
  filter: blur(15px);
  /* REMOVED: transition to prevent hover animations */
  z-index: -1;
}

@media (min-width: 768px) {
  .service__glow {
    filter: blur(20px);
  }
}

.service__icon {
  width: 56px;
  height: 56px;
  background: var(--accent-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  /* REMOVED: transition to prevent hover animations */
}

@media (min-width: 768px) {
  .service__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
  }
}

/* COMPLETELY REMOVED: All service card hover effects */
.service__card:hover {
  /* NO background changes */
  /* NO transforms */
}

.service__card:hover .service__icon {
  /* NO transforms */
}

.service__card:hover .service__glow {
  /* NO opacity changes */
}

.service__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .service__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
  }
}

.service__description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .service__description {
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
  }
}

.service__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .service__features {
    margin-bottom: var(--spacing-lg);
  }
}

.feature {
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

@media (min-width: 768px) {
  .feature {
    font-size: 0.8rem;
  }
}

.service__link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  /* REMOVED: transition to prevent hover animations */
}

@media (min-width: 768px) {
  .service__link {
    font-size: 0.95rem;
  }
}

.service__link:hover {
  color: var(--text-primary);
  /* NO gap animation */
}

/* ===================================
   WHY CHOOSE SECTION - NO HOVER ANIMATIONS
   =================================== */
.why-choose {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-choose {
    padding: var(--spacing-mega) 0;
  }
}

.why-choose__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .why-choose__content {
    padding: 0;
  }
}

.advantages__list {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  display: grid;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .advantages__list {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
  }
}

.advantage__item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  /* REMOVED: transition to prevent hover animations */
  opacity: 0;
  transform: translateX(-30px);
}

@media (min-width: 768px) {
  .advantage__item {
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }
}

.advantage__item.animate {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-out;
}

/* COMPLETELY REMOVED: All advantage item hover effects */
.advantage__item:hover {
  /* NO background changes */
  /* NO transforms */
}

.advantage__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .advantage__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
  }
}

.advantage__content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .advantage__content h4 {
    font-size: 1.25rem;
  }
}

.advantage__content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .advantage__content p {
    font-size: 1rem;
  }
}

/* ===================================
   CTA SECTION - NO HOVER ANIMATIONS
   =================================== */
.cta-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .cta-section {
    padding: var(--spacing-mega) 0;
  }
}

.cta__content {
  max-width: 90%;
  margin: 0 auto;
  padding: var(--spacing-lg);
  position: relative;
}

@media (min-width: 768px) {
  .cta__content {
    max-width: 800px;
    padding: var(--spacing-xxl);
  }
}

.cta__glow {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(ellipse, var(--glow-primary) 0%, transparent 70%);
  opacity: 0;
  /* REMOVED: transition to prevent hover animations */
  z-index: -1;
}

.cta__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .cta__title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1200px) {
  .cta__title {
    font-size: 3rem;
  }
}

.cta__description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta__description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
  }
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .cta__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-lg);
  }
}

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
}

@media (min-width: 768px) {
  .cta__contact {
    flex-direction: row;
    gap: var(--spacing-xl);
    width: auto;
  }
}

.contact__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  font-size: 0.9rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact__item {
    font-size: 1rem;
    justify-content: flex-start;
  }
}

.contact__item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-normal);
}

.contact__item a:hover {
  color: var(--accent-cyan);
}

.contact__item i {
  color: var(--accent-cyan);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0c0c0c;
  color: var(--text-secondary);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  text-align: center;
  border-top: 1px solid var(--border-default);
}

@media (min-width: 768px) {
  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
}

.footer__content {
  display: grid;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .footer__content {
    gap: var(--spacing-lg);
  }
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
  }
}

.footer__brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer__brand {
    text-align: left;
  }
}

.footer__logo {
  height: 45px; /* Same as nav logo */
  width: auto;
  max-width: 200px; /* Same as nav logo */
  object-fit: contain;
  
  margin-bottom: var(--spacing-sm);
  transition: all 0.3s ease; /* Same smooth effects */
}

.footer__logo:hover {
  transform: scale(1.05); /* Same hover effect as nav */
}

@media (min-width: 768px) {
  .footer__logo {
    height: 52px; /* Same as nav logo desktop size */
    max-width: 240px; /* Same as nav logo desktop size */
  }
}


.footer__description {
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0 auto var(--spacing-md);
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer__description {
    max-width: 300px;
    margin: 0 0 var(--spacing-lg);
    font-size: 1rem;
  }
}

.footer__social {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__social {
    justify-content: flex-start;
  }
}

.social__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  /* REMOVED: transition to prevent hover animations */
}

@media (min-width: 768px) {
  .social__link {
    width: 44px;
    height: 44px;
  }
}

.social__link:hover {
  color: var(--text-primary);
  /* NO background changes */
  /* NO transforms */
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  text-align: center;
}

@media (min-width: 576px) {
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer__links {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .footer__title {
    font-size: 1.125rem;
  }
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--spacing-xs);
}

.footer__list a {
  color: var(--text-secondary);
  text-decoration: none;
  /* REMOVED: transition to prevent hover animations */
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  justify-content: center;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer__list a {
    justify-content: flex-start;
    font-size: 1rem;
  }
}

.footer__list a:hover {
  color: var(--accent-cyan);
  /* NO transforms */
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-default);
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-top: var(--spacing-lg);
    font-size: 1rem;
  }
}

/* ===================================
   ANIMATIONS & KEYFRAMES
   =================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (min-width: 768px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

@media (min-width: 768px) {
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

@media (min-width: 768px) {
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particle {
    display: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --border-default: rgba(255, 255, 255, 0.3);
    --text-secondary: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.15);
  }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav__link:focus,
.service__link:focus,
.social__link:focus {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Scroll Reveal Classes */
.reveal-up { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: all 0.6s ease-out;
}

.reveal-left { 
  opacity: 0; 
  transform: translateX(-30px); 
  transition: all 0.6s ease-out;
}

.reveal-right { 
  opacity: 0; 
  transform: translateX(30px); 
  transition: all 0.6s ease-out;
}

.reveal-scale { 
  opacity: 0; 
  transform: scale(0.95); 
  transition: all 0.6s ease-out;
}

.revealed { 
  opacity: 1; 
  transform: translate(0, 0) scale(1); 
}

/* Print Styles */
@media print {
  .header,
  .nav__toggle,
  .hero__particles,
  .connection-lines,
  .scroll-indicator {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero__title,
  .section__title {
    color: black !important;
  }
}

/* Loading States */
body.loaded .hero__content {
  animation: fadeInUp 1s ease-out;
}

body.loaded .tech-grid .grid__item {
  animation: scaleIn 0.6s ease-out forwards;
}

body.loaded .trust__card {
  animation: slideInUp 0.6s ease-out forwards;
}

/* Mobile Navigation - Keep Book Demo visible normally, hide only when hamburger menu is open */
@media screen and (max-width: 767px) {
    
    /* Normal state - Book Demo button is visible */
    .nav__actions .btn--primary {
        display: inline-block;
    }
    
    /* ONLY when hamburger menu is open - hide Book Demo button */
    body.menu-open .nav__actions .btn--primary,
    .nav__menu.show-menu ~ .nav__actions .btn--primary {
        display: none;
    }
    
    /* Make sure hamburger toggle is always visible */
    .nav__toggle {
        display: block !important;
    }
    
    /* Ensure the nav__actions container stays in place */
    .nav__actions {
        display: flex !important;
        align-items: center;
        gap: 1rem;
    }
}
