/* Modern Design System - Skilforgr */
:root {
  /* Typography */
  --font-primary: "Indie Flower", cursive, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Indie Flower", cursive, ui-monospace, SFMono-Regular, Menlo, monospace;
  
  /* Color Palette - Educational Theme */
  --color-primary: #7c3aed; /* Vibrant Purple */
  --color-secondary: #14b8a6; /* Teal */
  --color-accent: #f97316; /* Orange */
  --color-background: #fef3f2; /* Warm light */
  --color-surface: #ffffff;
  --color-surface-light: #fde4e3; /* Warm light pink */
  --color-text: #1e1b4b; /* Deep indigo */
  --color-text-muted: #6366f1; /* Indigo 500 */
  --color-text-light: #818cf8; /* Indigo 400 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7c3aed, #a78bfa);
  --gradient-secondary: linear-gradient(135deg, #14b8a6, #5eead4);
  --gradient-accent: linear-gradient(135deg, #f97316, #fb923c);
  --gradient-dark: linear-gradient(135deg, #fef3f2, #fde4e3);
  --gradient-hero: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(20,184,166,0.08));
  --gradient-surface: linear-gradient(180deg, #ffffff, #fef3f2);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 2px 8px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 8px 20px rgba(124, 58, 237, 0.16);
  --shadow-xl: 0 16px 40px rgba(124, 58, 237, 0.2);
  --shadow-glow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  --shadow-glow-secondary: 0 0 0 4px rgba(20, 184, 166, 0.15);
  --shadow-glow-accent: 0 0 0 4px rgba(249, 115, 22, 0.15);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--gradient-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Modern Navigation */
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-glow);
  transition: var(--transition-normal);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition-normal);
}

.nav-brand:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition-fast);
}

/* Hero Section - Education Theme */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(20, 184, 166, 0.2) 0%, transparent 50%);
  z-index: 1;
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.geometric-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(249, 115, 22, 0.1));
  backdrop-filter: blur(20px);
  animation: float-rotate 15s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), transparent);
}

.shape-2 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: 10%;
  animation-delay: 3s;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), transparent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 15%;
  animation-delay: 6s;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), transparent);
}

.shape-4 {
  width: 180px;
  height: 180px;
  bottom: 5%;
  right: 8%;
  animation-delay: 2s;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), transparent);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

@keyframes float-rotate {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% { 
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% { 
    transform: translateY(-15px) translateX(-20px) rotate(180deg);
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  }
  75% { 
    transform: translateY(20px) translateX(10px) rotate(270deg);
    border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight-text {
  background: linear-gradient(135deg, #14b8a6, #a78bfa, #f97316);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
  position: relative;
  display: inline-block;
}

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

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #a78bfa, #f97316);
  border-radius: 2px;
  animation: expand-line 2s ease-out 1s both;
}

@keyframes expand-line {
  from { width: 0; }
  to { width: 100%; }
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary-modern,
.btn-secondary-modern {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #7c3aed, #14b8a6);
  color: white;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
  border: 2px solid transparent;
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #14b8a6, #f97316);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-primary-modern:hover::before {
  left: 0;
}

.btn-primary-modern:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.6);
}

.btn-primary-modern:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}



/* Tech Grid - Education Cards */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  animation: fadeInRight 1s ease-out 0.8s both;
}

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

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: scale(0);
}

.tech-item:hover::before {
  transform: scale(1);
}

.tech-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.tech-item-1 { animation-delay: 0.9s; }
.tech-item-2 { animation-delay: 1s; }
.tech-item-3 { animation-delay: 1.1s; }
.tech-item-4 { animation-delay: 1.2s; }

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed, #14b8a6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.tech-item:hover .tech-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.tech-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.tech-item span {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
}


/* Section Styles */
.features-modern,
.faq-modern,
.how-it-works-modern {
  padding: var(--space-2xl) 0;
  position: relative;
}

.about-container,
.features-container,
.faq-container,
.how-it-works-container,
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 5;
}

/* About Container Specific Styles */
.about-container h1,
.about-container h2,
.about-container h3,
.about-container h4,
.about-container h5,
.about-container h6 {
  color: #ffffff !important;
}

.about-container p {
  color: rgba(184, 197, 214, 0.8) !important;
}

.about-container span {
  color: #ffffff !important;
}

.about-container div {
  color: inherit !important;
}

/* Contact Container Specific Styles */
.contact-container h1,
.contact-container h2,
.contact-container h3,
.contact-container h4,
.contact-container h5,
.contact-container h6 {
  color: #ffffff !important;
}

.contact-container p {
  color: rgba(184, 197, 214, 0.8) !important;
}

.contact-container span {
  color: #ffffff !important;
}

.contact-container div {
  color: inherit !important;
}

/* Force visibility for all elements in about and contact sections */
.about-modern *,
.about-container *,
.contact-modern *,
.contact-container * {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Specific text elements */
.about-modern .section-title-modern,
.about-container .section-title-modern,
.contact-modern .section-title-modern,
.contact-container .section-title-modern {
  color: #ffffff !important;
  visibility: visible !important;
}

.about-modern .section-description-modern,
.about-container .section-description-modern,
.contact-modern .section-description-modern,
.contact-container .section-description-modern {
  color: rgba(184, 197, 214, 0.8) !important;
  visibility: visible !important;
}

.features-header,
.faq-header,
.how-it-works-header,
.contact-containe,
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Force display for all content */
.about-modern,
.about-container,
.contact-modern,
.contact-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force text visibility */
.about-modern .stat-number,
.about-modern .stat-label,
.about-modern .feature-showcase-item,
.contact-modern .btn-primary-modern {
  color: #ffffff !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.contact-modern .input-modern,
.contact-modern .textarea-modern {
  color: var(--color-text) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.section-description-modern {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* About Section - Company Profile */
.about-modern {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}


.about-modern h1,
.about-modern h2,
.about-modern h3,
.about-modern h4,
.about-modern h5,
.about-modern h6 {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-modern p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.about-modern span {
  color: #ffffff !important;
}

.about-modern div {
  color: inherit !important;
}

.about-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease-out;
}

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

/* About dark cards */
.about-modern .tech-stack-container {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(167, 139, 250, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.about-modern .tech-stack-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  animation: rotate-slow 20s linear infinite;
}

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

.about-modern .tech-item {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(167, 139, 250, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.about-modern .tech-item:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.4);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateY(-8px) scale(1.05);
}

.about-modern .tech-item i {
  color: #14b8a6;
  font-size: 2rem;
  filter: drop-shadow(0 4px 10px rgba(20, 184, 166, 0.5));
  transition: all 0.3s ease;
}

.about-modern .tech-item:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #5eead4;
}



/* Stats Column */
.about-stats-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.stat-item {
  background: var(--gradient-surface);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.12), transparent);
  transition: var(--transition-slow);
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border-color: var(--color-primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-mono);
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.stat-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.stat-icon i {
  font-size: 0.8rem;
  color: white;
}

/* Tech Stack */
.tech-stack-container {
  background: var(--gradient-surface);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.tech-stack-container h3 {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  text-align: center;
  font-size: 1.2rem;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.tech-item:hover {
  transform: translateY(-3px);
  background: rgba(20, 184, 166, 0.25);
  box-shadow: var(--shadow-glow-secondary);
}

.tech-item i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.tech-item span {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* Features Column */
.about-features-column {
  display: flex;
  flex-direction: column;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.feature-showcase-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--gradient-surface);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


.feature-showcase-item:hover::before {
  transform: scaleY(1);
}

.feature-showcase-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-visual {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-large {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.feature-icon-large i {
  font-size: 1.5rem;
  color: white;
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.feature-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.feature-progress {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(124, 58, 237, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  width: 0;
  transition: width 2s ease-in-out;
}

.feature-progress span {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  min-width: 80px;
}

/* Animations */
.feature-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: pulse 2s infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: networkPulse 2s infinite;
}

.network-node.node-1 {
  top: 20px;
  left: 20px;
}

.network-node.node-2 {
  top: 20px;
  right: 20px;
  animation-delay: 0.5s;
}

.network-node.node-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.network-connection {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
}

@keyframes networkPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.security-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.shield-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  animation: shieldRotate 3s infinite linear;
}

.shield-layer.layer-1 {
  animation-delay: 0s;
}

.shield-layer.layer-2 {
  animation-delay: 1s;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.shield-layer.layer-3 {
  animation-delay: 2s;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
}

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

/* Process Timeline */
.about-process {
  margin-top: var(--space-2xl);
  padding-bottom: 4rem;
}

.about-process h3 {
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  font-size: 1.5rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 1;
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  box-shadow: var(--shadow-glow);
}

.timeline-marker i {
  font-size: 1.2rem;
  color: white;
}

.timeline-content h4 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.timeline-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-content-modern h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-content-modern p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Data Visualization */
.data-visualization {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--gradient-secondary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.data-circle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.data-circle-2 {
  top: 50%;
  right: 20%;
  animation-delay: 0.7s;
}

.data-circle-3 {
  bottom: 20%;
  left: 50%;
  animation-delay: 1.4s;
}

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

.circle-content {
  text-align: center;
  color: var(--color-text);
}

.circle-content i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.circle-content span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.line {
  position: absolute;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
  animation: drawLine 3s ease-in-out infinite;
}

.line-1 {
  top: 35%;
  left: 35%;
  width: 30%;
  animation-delay: 0s;
}

.line-2 {
  top: 60%;
  right: 35%;
  width: 25%;
  animation-delay: 1s;
}

.line-3 {
  bottom: 35%;
  left: 45%;
  width: 20%;
  animation-delay: 2s;
}

@keyframes drawLine {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Features Section - Course Cards */
.features-modern {
  background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.features-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(124,58,237,0.1)"/></svg>');
  opacity: 0.3;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.feature-modern {
  background: white;
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
  cursor: pointer;
}

.feature-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #7c3aed, #14b8a6, #f97316);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.feature-modern:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.feature-modern::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(0);
}

.feature-modern:hover::after {
  opacity: 1;
  transform: scale(1);
}

.feature-modern:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon-modern {
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-modern:hover .feature-icon-modern {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.feature-icon-modern i {
  font-size: 2.5rem;
  color: white;
}

.feature-modern h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.feature-modern p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-tags-modern {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tag-modern {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.tag-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

/* FAQ Section - Questions & Answers */
.faq-modern {
  background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-modern::before {
  content: '?';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 300px;
  color: rgba(124, 58, 237, 0.03);
  font-weight: 800;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.faq-accordion-modern {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item-modern {
  background: white;
  border: 2px solid transparent;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 25px rgba(124, 58, 237, 0.08);
}

.faq-item-modern:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-5px);
}

.faq-item-modern.active {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.faq-question {
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(20, 184, 166, 0.08);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.faq-icon i {
  color: white;
  font-size: 0.9rem;
}

.faq-item-modern.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item-modern.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
/* How It Works / CTA Section - Learning Path */
.how-it-works-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #fef3f2 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(124, 58, 237, 0.02) 10px,
    rgba(124, 58, 237, 0.02) 20px
  );
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #14b8a6, #f97316);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.2;
}

.step-modern {
  background: white;
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.08);
  cursor: pointer;
}

.step-modern.featured {
  border-color: rgba(124, 58, 237, 0.3);
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.step-modern:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.4);
}

.step-modern.featured:hover {
  transform: scale(1.1) translateY(-20px);
}

.step-number-modern {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  animation: bounce-number 2s ease-in-out infinite;
}

@keyframes bounce-number {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.step-icon-modern {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #14b8a6, #5eead4);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 35px rgba(20, 184, 166, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.step-icon-modern::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 25px;
  background: linear-gradient(135deg, #14b8a6, #f97316);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-modern:hover .step-icon-modern::before {
  opacity: 1;
  animation: rotate-border 3s linear infinite;
}

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

.step-modern:hover .step-icon-modern {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 15px 45px rgba(20, 184, 166, 0.5);
}

.step-icon-modern i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.step-modern h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.step-modern p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.step-features-modern {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.step-feature-modern {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(20, 184, 166, 0.1));
  color: var(--color-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}

.step-feature-modern:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Contact Section - Get In Touch */
.contact-modern {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}



.contact-modern h1,
.contact-modern h2,
.contact-modern h3,
.contact-modern h4,
.contact-modern h5,
.contact-modern h6 {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-modern p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-modern span {
  color: #ffffff !important;
}

.contact-modern div {
  color: inherit !important;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease-out;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.contact-form-modern {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.form-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 10;
}

.form-group-modern {
  position: relative;
  z-index: 10;
}

.input-modern,
.textarea-modern {
  width: 100%;
  padding: var(--space-md);
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  color: #1f2937;
  font-size: 1rem;
  transition: var(--transition-normal);
  box-shadow: none;
  pointer-events: auto;
  cursor: text;
}

.input-modern:focus,
.textarea-modern:focus {
  outline: none;
  border-color: #7c3aed;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.input-modern::placeholder,
.textarea-modern::placeholder {
  color: var(--color-text-muted);
}

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

.btn-submit-modern {
  background: var(--gradient-primary);
  color: white !important;
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer !important;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
  width: 100%;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  cursor: pointer !important;
}

.btn-submit-modern:active {
  transform: translateY(0);
  cursor: pointer !important;
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-card-modern {
  background: var(--gradient-surface);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.info-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.info-icon-modern {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-glow);
}

.info-icon-modern i {
  font-size: 1.5rem;
  color: white;
}

.info-card-modern h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.info-card-modern p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-card-modern {
  background: var(--gradient-surface);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.contact-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.contact-icon-modern {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.contact-icon-modern i {
  font-size: 1.5rem;
  color: white;
}

.contact-card-modern h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.contact-card-modern p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.contact-card-modern p:last-child {
  margin-bottom: 0;
}

/* Testimonials Section - Success Stories */
.testimonials-modern {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
  animation: pulse-bg 10s ease-in-out infinite;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-title-modern,
.testimonials-header .section-description-modern {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(20px);
  overflow: hidden;
  cursor: pointer;
}

.testimonial-modern::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 150px;
  color: rgba(124, 58, 237, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-modern:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(124, 58, 237, 0.4);
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 5px rgba(251, 191, 36, 0.5));
  animation: star-glow 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.4s; }

@keyframes star-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.testimonial-modern:hover .author-avatar {
  transform: rotate(360deg) scale(1.1);
}

.author-avatar i {
  font-size: 2rem;
  color: white;
}

.author-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer - Modern Design */
.footer-modern {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #7c3aed, #14b8a6, #f97316) 1;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section {
  position: relative;
  z-index: 1;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #14b8a6);
  border-radius: 2px;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
  transform: translateX(10px);
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7c3aed, #14b8a6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-link i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-8px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.5);
}

.social-link:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.95rem;
}

/* Cookie Popup */
#cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 400px;
  background: var(--gradient-secondary);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-normal);
}

#cookie-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.popup-message p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.popup-message a {
  color: var(--color-primary);
  text-decoration: none;
}

.popup-message a:hover {
  text-decoration: underline;
}

#cookie-popup button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

#cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1e1b4b;
    backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
    transform: translateX(-100%);
    z-index: 1000;
    display: flex;
    gap: var(--space-xl);
    height: 500px;
  }
  
  .nav-menu.active {
    transform: translateX(0);
    height: 500px;
  }
  
  .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .nav-link:hover::before {
    left: 100%;
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: white;
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: white;
  }
  
  .bar {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
  }
  
  .bar:nth-child(2) {
    margin: 6px 0;
  }
  
  /* Remove pseudo overlay and extra close icon on mobile */
  .nav-menu::before,
  .nav-menu::after {
    content: none;
  }
  
  /* Mobile menu animations */
  .nav-menu .nav-link {
    animation: slideInUp 0.6s ease forwards;
    animation-fill-mode: both;
  }
  
  .nav-menu .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu .nav-link:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu .nav-link:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu .nav-link:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Mobile menu backdrop */
 */
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .feature-showcase-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-visual {
    margin-bottom: var(--space-md);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 var(--space-md);
  }
  
  .hero-content,
  .about-container,
  .features-container,
  .faq-container,
  .how-it-works-container,
  .contact-container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
    width: 100%;
    height: 100%;
  background: var(--color-background);
    display: flex;
    align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition-slow);
}

#preloader::before {
  content: '';
  width: 60px;
  height: 60px;
  border: 4px solid rgba(20, 184, 166, 0.25);
  border-top: 4px solid var(--color-primary);
    border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }