.project-hero-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-link {
  color: #d4d4d4;
  text-decoration: none;
  transition: var(--transition-normal);
}

.breadcrumb-link:hover {
  color: #60a5fa;
}

.breadcrumb-item.active {
  color: #60a5fa;
}

.project-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.project-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #0a0a0a;
  flex-shrink: 0;
}

.project-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.project-subtitle {
  font-size: 1.2rem;
  color: #d4d4d4;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.project-badge.success {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid #4ade80;
}

.project-badge.date {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  border: 1px solid #60a5fa;
}

.project-badge.company {
  background: rgba(192, 132, 252, 0.2);
  color: #c084fc;
  border: 1px solid #c084fc;
}

.project-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-normal);
}

.stat-item:hover {
  border-color: #60a5fa;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #d4d4d4;
  font-weight: 600;
}

.project-details-section {
  padding: 4rem 0;
  background: #0a0a0a;
}

.project-image-container {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.25);
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-normal);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  cursor: pointer;
}

.project-image-container:hover .image-overlay {
  opacity: 1;
}

.project-image-container:hover .project-image {
  transform: scale(1.05);
}

.overlay-content {
  text-align: center;
  color: #ffffff;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #60a5fa;
}

.project-section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.section-content {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  padding: 2rem;
}

.architecture-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.arch-component {
  flex: 1;
  min-width: 200px;
  text-align: center;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: var(--transition-normal);
}

.arch-component:hover {
  transform: translateY(-5px);
  border-color: #60a5fa;
}

.component-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #0a0a0a;
}

.component-info h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.component-info p {
  color: #d4d4d4;
  margin: 0;
}

.arch-arrow {
  font-size: 1.5rem;
  color: #60a5fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #0a0a0a;
}

.feature-card h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #d4d4d4;
  margin: 0;
}

.implementation-nav .nav-link {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #d4d4d4;
  border-radius: 8px 8px 0 0;
  margin-right: 0.5rem;
  transition: var(--transition-normal);
}

.implementation-nav .nav-link.active,
.implementation-nav .nav-link:hover {
  background: #60a5fa;
  color: #0a0a0a;
  border-color: #60a5fa;
}

.implementation-content {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 0 12px 12px 12px;
  padding: 2rem;
  margin-top: -1px;
}

.code-preview {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
}

.code-preview code {
  color: #f5f5f5;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-normal);
}

.sidebar-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.25);
}

.sidebar-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 8px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-content strong {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-content span {
  color: #d4d4d4;
}

.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.4);
  border-radius: 8px;
}

.challenge-icon {
  width: 40px;
  height: 40px;
  background: rgba(251, 146, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  flex-shrink: 0;
}

.challenge-text strong {
  color: #fb923c;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.challenge-text p {
  color: #d4d4d4;
  margin: 0;
  font-size: 0.9rem;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 8px;
  color: #d4d4d4;
  transition: var(--transition-normal);
}

.tech-item:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60a5fa;
  color: #ffffff;
}

.tech-item i {
  font-size: 1.2rem;
  color: #60a5fa;
}

.related-projects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-project {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

.related-project:hover {
  background: rgba(96, 165, 250, 0.15);
  border-color: #60a5fa;
  transform: translateX(5px);
  color: inherit;
  text-decoration: none;
}

.related-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.related-content h5 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.related-content p {
  color: #d4d4d4;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.results-section {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 20px;
  padding: 4rem 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.result-card {
  text-align: center;
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-normal);
}

.result-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #60a5fa;
  box-shadow: 0 15px 40px rgba(96, 165, 250, 0.3);
}

.result-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: #0a0a0a;
}

.result-number {
  font-size: 3rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.result-description {
  color: #d4d4d4;
  line-height: 1.5;
  font-size: 0.9rem;
}

.project-cta-section {
  padding: 4rem 0;
  background: #0f0f0f;
}

.cta-card {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(192, 132, 252, 0.05));
  opacity: 0.5;
  pointer-events: none;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #60a5fa, #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #0a0a0a;
  animation: ctaPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

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

.cta-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-description {
  color: #d4d4d4;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-header {
    flex-direction: column;
    text-align: center;
  }

  .project-icon-large {
    align-self: center;
  }

  .architecture-diagram {
    flex-direction: column;
  }

  .arch-arrow {
    transform: rotate(90deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
    margin-top: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quantum-btn {
    width: 100%;
    max-width: 300px;
  }
}

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

  .stat-number,
  .result-number {
    font-size: 2rem;
  }

  .project-hero-section {
    padding: 6rem 0 3rem;
  }

  .section-content {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }
}