/* Technology Page Styles */
.technology {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.tech-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--primary-gradient);
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.tech-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.tech-hero-title {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.tech-hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-medium);
}

.tech-section {
  padding: var(--space-xl) 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  perspective: 1000px;
}

.tech-card {
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform var(--transition-medium);
}

.tech-card:hover {
  transform: translateZ(20px) rotateX(10deg) rotateY(10deg);
}

.tech-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  transition: all var(--transition-medium);
}

.tech-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.tech-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-blue);
  color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  opacity: 0;
  transform: rotateY(180deg);
  transition: all var(--transition-medium);
  backface-visibility: hidden;
}

.tech-card:hover .tech-info {
  opacity: 1;
}

.tech-name {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.tech-description {
  font-size: 0.875rem;
  text-align: center;
}

.tech-categories {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.tech-category {
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tech-category.active {
  background-color: var(--accent-blue);
  color: white;
}

.tech-category:hover {
  background-color: var(--primary-medium);
}

.tech-category.active:hover {
  background-color: var(--neon-highlight);
}

.parallax-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: var(--space-xl) 0;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.parallax-item {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.parallax-item:hover {
  transform: scale(1.1);
}

.parallax-item img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

