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

:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFBFC;
  --bg-tertiary: #F7F9FC;
  --accent-blue: #0066FF;
  --accent-azure: #00C2FF;
  --accent-violet: #7B61FF;
  --accent-emerald: #10B981;
  
  --text-main: #0A0F1D;
  --text-muted: #4A5568;
  --text-light: #94A3B8;
  
  --border-color: rgba(226, 232, 240, 0.8);
  --border-glow: rgba(0, 102, 255, 0.15);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 20px 60px rgba(0, 102, 255, 0.05);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.01);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Border Radius */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Canvas Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 140px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-azure) 50%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-silk-blue {
  background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.03) 0%, rgba(0, 194, 255, 0.02) 90%);
}

.bg-silk-purple {
  background: radial-gradient(circle at 90% 80%, rgba(123, 97, 255, 0.03) 0%, rgba(0, 194, 255, 0.01) 90%);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0052cc 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.25);
  background: linear-gradient(135deg, #0052cc 0%, var(--accent-blue) 100%);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(0, 102, 255, 0.04);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Header & Sticky Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Logo Setup */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
}

.logo-k {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-azure));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.logo-k::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 80%);
  animation: rotateGlow 8s linear infinite;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-subtitle {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-blue);
  margin-top: 3px;
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
  cursor: pointer;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-azure));
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
  width: 100%;
}

/* Mega Menu */
.has-mega-menu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 10%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 999;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega-item-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mega-item-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.mega-item-link:hover .mega-item-icon {
  background: rgba(0, 102, 255, 0.08);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.mega-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.mega-item-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Navbar Buttons & Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-search {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.btn-search:hover {
  background: var(--bg-secondary);
  color: var(--text-main);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-main);
  cursor: pointer;
}

/* Responsive Navbar Styling */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-actions .btn-demo {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #FFFFFF;
  z-index: 998;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: var(--transition-normal);
  overflow-y: auto;
  border-top: 1px solid var(--border-color);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-menu-link:hover {
  color: var(--accent-blue);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Animated 3D Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 15%;
  left: -5%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

.floating-card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

.floating-card .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 14px;
}

.floating-card-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .floating-cards {
    display: none;
  }
}

/* KPI Cards */
.kpi-section {
  position: relative;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kpi-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-azure));
  opacity: 0;
  transition: var(--transition-normal);
}

.kpi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

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

.kpi-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
  line-height: 1;
}

.kpi-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.kpi-desc {
  font-size: 13px;
  color: var(--text-muted);
}

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

/* Sections General Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(0, 102, 255, 0.05);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid & Cards - General */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Premium Feature / Info Cards */
.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 100% 100%, rgba(0, 102, 255, 0.02) 0%, transparent 60%);
  z-index: -1;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.2);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-card-icon {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-azure) 100%);
  color: #FFFFFF;
  transform: rotate(10deg);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* AI Capabilities Section & Grid */
.ai-section {
  background-color: var(--bg-tertiary);
  position: relative;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.ai-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-item {
  display: flex;
  gap: 20px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
}

.ai-item:hover {
  transform: translateX(8px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.ai-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 102, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.ai-item-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ai-item-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Interactive Infographic */
.infographic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.info-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  transition: var(--transition-normal);
}

.info-node:hover {
  border-color: var(--accent-blue);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.info-node-center {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

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

.info-node-1 { top: 10%; left: 15%; }
.info-node-2 { top: 10%; right: 15%; }
.info-node-3 { bottom: 10%; left: 15%; }
.info-node-4 { bottom: 10%; right: 15%; }
.info-node-5 { top: 40%; left: 5%; }
.info-node-6 { top: 40%; right: 5%; }

/* SVG connector lines mapping underneath nodes */
.info-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 1024px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

/* Technology Stack Grid */
.tech-section {
  background: #FFFFFF;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.tech-logo-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-normal);
  text-align: center;
}

.tech-logo-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.tech-logo-card i, .tech-logo-card span.tech-icon {
  font-size: 28px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.tech-logo-card:hover i, .tech-logo-card:hover span.tech-icon {
  color: var(--accent-blue);
}

.tech-logo-card span.tech-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Why Choose Us Section & Matrix */
.why-section {
  background-color: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.why-item:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.why-icon {
  color: var(--accent-emerald);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}

.why-text h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 14px;
}

.why-comparison {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.why-comparison h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.why-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.why-comparison-table th {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-light);
}

.why-comparison-table td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.why-comparison-table tr:last-child td {
  border-bottom: none;
}

.why-comparison-table .tick {
  color: var(--accent-emerald);
  font-weight: bold;
}

.why-comparison-table .cross {
  color: #EF4444;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Development Process Timeline */
.process-section {
  background: #FFFFFF;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  padding-bottom: 40px;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 10px;
  text-align: center;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
}

.timeline-step:hover .timeline-icon, .timeline-step.active .timeline-icon {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.15);
  transform: scale(1.1);
}

.timeline-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 12px;
  max-width: 180px;
  margin: 0 auto;
}

/* Fill animation on timeline progress bar */
.timeline-progress {
  position: absolute;
  top: 30px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-violet));
  z-index: 1;
  width: 0%;
  transition: width 1.5s ease-in-out;
}

@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
    padding-left: 30px;
  }
  .timeline::after {
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  .timeline-progress {
    left: 30px;
    top: 0;
    width: 2px;
    height: 0%;
  }
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
  }
  .timeline-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .timeline-content p {
    max-width: 100%;
    margin: 0;
  }
}

/* Testimonial Carousel */
.testimonial-section {
  background-color: var(--bg-secondary);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 20px 40px;
}

.testimonial-slide q {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
  display: block;
  margin-bottom: 30px;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 13px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--accent-blue);
  width: 24px;
  border-radius: 5px;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.cta-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 40px 24px;
  }
  .cta-box h2 {
    font-size: 30px;
  }
}

/* Footer Section */
footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info p {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-blue);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--text-light);
}

.footer-bottom-link:hover {
  color: var(--accent-blue);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCTS PAGE STYLING */
.prod-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 30%, rgba(0, 102, 255, 0.02) 0%, transparent 70%);
  text-align: center;
}

.prod-explorer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 100px;
}

.prod-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-normal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
}

.prod-tab-btn i {
  font-size: 18px;
}

.prod-tab-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-blue);
  color: var(--text-main);
  transform: translateX(5px);
}

.prod-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-azure) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}

.prod-tab-btn.active:hover {
  transform: none;
}

/* Showcase Display */
.prod-display {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  min-height: 500px;
  display: none;
}

.prod-display.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.prod-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.prod-info h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.prod-tagline {
  font-size: 16px;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 24px;
}

.prod-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.prod-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.prod-feature-item i {
  color: var(--accent-blue);
}

/* Mock Demos */
.prod-demo-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 380px;
  position: relative;
}

.prod-demo-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-dot:nth-child(1) { background: #FF5F56; }
.demo-dot:nth-child(2) { background: #FFBD2E; }
.demo-dot:nth-child(3) { background: #27C93F; }

.demo-title {
  font-size: 12px;
  color: var(--text-light);
  font-family: monospace;
}

.prod-demo-content {
  padding: 24px;
  height: calc(100% - 45px);
  overflow-y: auto;
}

/* Specific Demo Mockups */
/* Kriti AI Chat Mock */
.chat-mock {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
}

.chat-bubble.user {
  background: var(--accent-blue);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-bubble.ai {
  background: #FFFFFF;
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.chat-bubble.ai .thinking {
  color: var(--text-light);
  font-size: 11px;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 4px;
  margin-bottom: 6px;
}

/* Coding Agent Editor Mock */
.editor-mock {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #E2E8F0;
  background: #0F172A;
  height: 100%;
  margin: -24px;
  padding: 20px;
}

.editor-line {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.line-num {
  color: #475569;
  text-align: right;
  width: 20px;
  user-select: none;
}

.code-keyword { color: #F43F5E; }
.code-func { color: #38BDF8; }
.code-str { color: #34D399; }
.code-comment { color: #64748B; }

.editor-terminal {
  margin-top: 16px;
  border-top: 1px solid #334155;
  padding-top: 12px;
  color: #38BDF8;
}

/* Dashboard Mock */
.dash-mock {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-stat {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.dash-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
}

.dash-stat-lbl {
  font-size: 11px;
  color: var(--text-light);
}

.dash-chart {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 140px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
}

.dash-chart-bar {
  width: 18px;
  background: var(--accent-blue);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 0;
  transition: height 1s ease-out;
}

/* UFW/Firewall Mock */
.fw-mock {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fw-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.fw-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.fw-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.fw-logs {
  background: #1E293B;
  color: #00FF66;
  font-family: monospace;
  font-size: 11px;
  border-radius: 8px;
  padding: 12px;
  height: 160px;
  overflow-y: auto;
}

.fw-log-line {
  margin-bottom: 6px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .prod-explorer {
    grid-template-columns: 1fr;
  }
  .prod-display-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Industries Matrix */
.ind-section {
  background: var(--bg-secondary);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ind-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-normal);
}

.ind-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-soft);
}

.ind-card i {
  font-size: 20px;
  color: var(--accent-blue);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-card h4 {
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT PAGE STYLING */
.about-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.about-visual {
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-soft);
}

.value-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--accent-blue);
}

.value-card p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Leadership Profiles */
.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-violet));
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.team-img-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(123, 97, 255, 0.05));
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-blue);
  margin: 0 auto 24px;
  transition: var(--transition-normal);
}

.team-card:hover .team-img-placeholder {
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.team-role:hover {
  color: var(--accent-azure);
}

.team-bio {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Careers Section */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.job-card:hover {
  transform: translateX(5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-soft);
}

.job-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.job-details {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.job-details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* CONTACT & BLOG PAGE STYLING */
.contact-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 100px;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.contact-form-tab {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
}

.contact-form-tab.active {
  color: var(--accent-blue);
}

.contact-form-tab.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-blue);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  background: var(--bg-secondary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 102, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info-text a:hover {
  color: var(--accent-blue);
}

/* Office Map Placeholder */
.office-map {
  height: 240px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.map-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.2);
  animation: pulse 2s infinite;
}

.map-node.delhi {
  top: 45%;
  left: 48%;
}

.map-label {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  top: calc(45% - 30px);
  left: calc(48% - 35px);
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  font-size: 18px;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blog Grid & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(123, 97, 255, 0.03));
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(0, 102, 255, 0.15);
  transition: var(--transition-normal);
}

.blog-card:hover .blog-img-placeholder {
  color: rgba(0, 102, 255, 0.25);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 13px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-light);
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* Scroll Animation Trigger Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Custom cursor glow */
.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.04) 0%, rgba(123, 97, 255, 0.02) 50%, transparent 70%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -2;
  transition: transform 0.1s ease;
  border-radius: 50%;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 550px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Chatbot Floating Widget */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: var(--font-body);
}

.chatbot-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-violet) 100%);
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-normal);
}

.chatbot-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

.chatbot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  animation: chatPulse 2s infinite;
  pointer-events: none;
}

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

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  height: 480px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-azure) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.chatbot-header-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.chatbot-header-info span {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chatbot-close:hover {
  color: var(--text-main);
}

.chatbot-messages {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-msg.bot {
  background: var(--bg-tertiary);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-color);
}

.chat-msg.user {
  background: var(--accent-blue);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg.typing {
  color: var(--text-light);
  font-style: italic;
  background: none;
  border: none;
  padding: 0;
}

.chatbot-suggestions {
  padding: 0 20px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chat-suggest-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-suggest-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: #FFFFFF;
}

.chatbot-input-area {
  padding: 12px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  align-items: center;
  background: #FFFFFF;
}

.chatbot-input-area input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 13px;
  background: var(--bg-secondary);
  outline: none;
  transition: var(--transition-fast);
}

.chatbot-input-area input:focus {
  background: #FFFFFF;
  border-color: var(--accent-blue);
}

.chatbot-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.chatbot-send-btn:hover {
  transform: scale(1.05);
  background: #0052cc;
}

@media (max-width: 480px) {
  .chatbot-window {
    width: 300px;
    height: 400px;
  }
}

/* Card Hover Glow effect definitions */
.feature-card, .kpi-card, .value-card, .team-card, .job-card, .blog-card, .why-comparison, .prod-sidebar, .contact-form-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before, .kpi-card::before, .value-card::before, .team-card::before, .job-card::before, .blog-card::before, .why-comparison::before, .prod-sidebar::before, .contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(0, 102, 255, 0.05), transparent 80%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* Ensure contents stay on top of hover background */
.feature-card *, .kpi-card *, .value-card *, .team-card *, .job-card *, .blog-card *, .why-comparison *, .prod-sidebar *, .contact-form-card * {
  position: relative;
  z-index: 1;
}



