@font-face {
  font-family: 'Caros Soft';
  src: url('./fonts/CarosSoft-Regular.ttf') format('truetype');
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Language Switcher Styles */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.lang-btn {
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-menu {
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.lang-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(25, 118, 210, 0.1);
  color: #1976d2;
  transform: translateX(5px);
}

/* Accessibility Widget */
.accessibility-widget {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
}

.widget-container {
  position: relative;
  display: inline-block;
  padding: 15px;
  border: 3px solid transparent;
  border-radius: 50%;
  cursor: move;
  transition: border-color 0.2s ease;
}

.widget-container:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.accessibility-widget.dragging .widget-container {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}


.access-btn {
  background: rgba(25, 118, 210, 0.9);
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.access-btn:hover {
  background: rgba(25, 118, 210, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.access-menu {
  position: absolute;
  top: 60px;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 250px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 20px;
}

.access-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.access-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.access-option:last-child {
  border-bottom: none;
}

.access-option label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-right: 10px;
}

.access-slider {
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.access-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1976d2;
  cursor: pointer;
}

.access-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1976d2;
  cursor: pointer;
  border: none;
}

.access-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #1976d2;
}

.access-select {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  min-width: 120px;
}

.access-select:focus {
  outline: 2px solid #1976d2;
  border-color: #1976d2;
}

#font-size-value {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}

/* Accessibility Features */
.high-contrast {
  filter: contrast(150%) brightness(120%);
}

.high-contrast * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

.high-contrast a {
  color: #ffff00 !important;
}

.high-contrast button {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.reduced-motion * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

.screen-reader-mode {
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.screen-reader-mode * {
  outline: 2px solid #1976d2 !important;
}

.focus-indicators *:focus {
  outline: 3px solid #1976d2 !important;
  outline-offset: 2px !important;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1976d2;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  font-weight: bold;
}

.skip-link:focus {
  top: 6px;
}

/* High contrast focus indicators */
.high-contrast .focus-indicators *:focus {
  outline: 3px solid #ffff00 !important;
  outline-offset: 2px !important;
}

/* Large cursor */
.large-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M4 4L4 28L12 20L16 20L20 16L12 16L4 4Z" fill="black" stroke="white" stroke-width="2"/></svg>'), auto !important;
}

/* Underline links */
.underline-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

/* Reading guide */
.reading-guide {
  position: relative;
}

.reading-guide::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  z-index: 9999;
  pointer-events: none;
}

/* Text to speech highlight */
.text-to-speech-highlight {
  background-color: #ffff00 !important;
  color: #000 !important;
  padding: 2px 4px !important;
  border-radius: 3px !important;
}

/* Keyboard navigation */
.keyboard-nav *:focus {
  outline: 3px solid #1976d2 !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.3) !important;
}

/* Enhanced accessibility features */
.accessibility-enhanced {
  font-family: 'Arial', sans-serif !important;
  line-height: 1.6 !important;
  letter-spacing: 0.5px !important;
}

/* High contrast mode enhancements */
.high-contrast .accessibility-enhanced {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.high-contrast .accessibility-enhanced a {
  color: #ffff00 !important;
  text-decoration: underline !important;
}

.high-contrast .accessibility-enhanced button {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.high-contrast .accessibility-enhanced input {
  background-color: #000 !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

/* Negative colors */
.negative-colors {
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Grayscale */
.grayscale {
  filter: grayscale(100%) !important;
}

/* Sepia */
.sepia {
  filter: sepia(100%) !important;
}

/* Combined filters */
.negative-colors.grayscale {
  filter: invert(1) hue-rotate(180deg) grayscale(100%) !important;
}

.negative-colors.sepia {
  filter: invert(1) hue-rotate(180deg) sepia(100%) !important;
}

.grayscale.sepia {
  filter: grayscale(100%) sepia(100%) !important;
}

.negative-colors.grayscale.sepia {
  filter: invert(1) hue-rotate(180deg) grayscale(100%) sepia(100%) !important;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .language-switcher {
  right: auto;
  left: 20px;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-option:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .accessibility-widget {
  left: auto;
  right: 20px;
}

[dir="rtl"] .access-menu {
  left: auto;
  right: 0;
}

/* SEO Improvements */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Better heading hierarchy for SEO */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Image optimization for SEO */
img {
  max-width: 100%;
  height: auto;
}

/* Skip to content for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1976d2;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

body {
  font-family: 'Caros Soft', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  scroll-behavior: smooth;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features .container {
  position: relative;
  z-index: 2;
}

/* Navigation */
.navbar {
  background: #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #3b82f6;
}

.login-btn {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: #ffffff;
  color: #0a0a0a;
}

/* Hamburger menu (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ffffff;
}

@media(max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 250px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.show { 
    display: flex; 
  }
  .menu-toggle { 
    display: block; 
  }
  .login-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: url('./images/BG.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-content-centered h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slogan {
  font-size: 1.4rem;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.description {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  text-transform: none;
  letter-spacing: 0.5px;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}


/* Sections */
.features, .contact, .testimonials, .technology {
  padding: 100px 0;
}

.features {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

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

.features-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.technology {
  background: #0f0f0f;
}

.solution-statement {
  padding: 80px 0;
  background: #000000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.solution-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.solution-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  margin: 0 0 60px 0;
  line-height: 1.2;
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.key-features {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item:hover .feature-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.feature-icon {
  margin-right: 25px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.feature-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}


.testimonials {
  background: #0a0a0a;
}

.contact {
  background: #0f0f0f;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-header p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Dashboard */
.feature-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.dashboard-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
  font-size: 2rem;
  margin-right: 15px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}

.card-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-status.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.card-content {
  margin-top: 15px;
}

.metric {
  font-size: 1.3rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 8px;
}

.description {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Problem Statement */
.problem-statement {
  max-width: 1200px;
  margin: 40px auto;
}

.problem-items-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.problem-items {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.worry-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.worried-woman-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.25;
}

.problem-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.problem-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.problem-item:hover .problem-icon {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.problem-item:hover .problem-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.problem-icon {
  font-size: 2rem;
  margin-right: 20px;
  min-width: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  font-family: 'Arial', sans-serif;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

.problem-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.problem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.problem-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.problem-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

.problem-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 500;
}

/* Workflow Diagram */
.workflow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-5px);
}

.step-icon {
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workflow-step:hover .step-icon::before {
  opacity: 1;
}

.workflow-step:hover .step-icon {
  transform: scale(1.1);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.workflow-step:hover .step-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.step-text {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}

.step-arrow {
  font-size: 1.8rem;
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  animation: pulse 2s infinite;
}

.step-arrow.down {
  bottom: -20px;
}

.step-arrow.up {
  top: -20px;
}

.step-arrow.right {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}





/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Contact Interface */
.contact-interface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 50px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #94a3b8;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

/* Technology Section */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.tech-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tech-description {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.contact-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-link:hover {
  text-decoration: none;
  color: inherit;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 8px;
}

.info-value {
  font-size: 1rem;
  color: #e2e8f0;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 10px;
}

.notification-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.notification-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.notification-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.notification-message {
  font-weight: 500;
  font-size: 0.95rem;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 15px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.notification-close:hover {
  opacity: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
footer {
  background: #0a0a0a;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3b82f6;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1rem;
}

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

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #94a3b8;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #3b82f6;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-centered h1 {
    font-size: 2.5rem;
  }
  
  .slogan {
    font-size: 1.2rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .hero-logo {
    height: 60px;
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .feature-dashboard {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .workflow-diagram {
    gap: 25px;
    max-width: 500px;
  }
  
  .workflow-step {
    max-width: 350px;
  }
  
  .problem-statement {
    max-width: 100%;
    margin: 30px 20px;
  }
  
  .problem-items-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .problem-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .problem-item {
    flex-direction: row;
    text-align: left;
    padding: 15px;
    font-size: 0.9rem;
    width: 90%;
    margin: 0 auto;
  }
  
  .worry-image {
    flex: none;
    order: -1;
  }
  
  .worried-woman-img {
    width: 100%;
  }
  
  .problem-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .problem-icon {
    margin-right: 0;
    margin-bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .problem-icon img {
    width: 25px;
    height: 25px;
  }
  
  .problem-text {
    font-size: 1rem;
  }
  
  .solution-statement {
    padding: 60px 0;
  }
  
  .solution-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .key-features {
    max-width: 100%;
    margin: 0 20px;
    gap: 20px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .feature-icon img {
    width: 45px;
    height: 45px;
  }
  
  .feature-content {
    gap: 8px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  
  .step-line {
    display: none;
  }
  
  
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .tech-card {
    padding: 25px;
  }
  
  .tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .tech-title {
    font-size: 1.2rem;
  }
  
  .tech-description {
    font-size: 0.95rem;
  }
  
  .contact-info {
    flex-direction: column;
  }
  
  .info-card {
    min-width: auto;
  }
  
  .contact-interface {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content-centered h1 {
    font-size: 2rem;
  }
  
  .slogan {
    font-size: 1rem;
  }
  
  .description {
    font-size: 0.9rem;
  }
  
  .hero-logo {
    height: 50px;
    margin-bottom: 25px;
  }
}