@charset "UTF-8";
/* CSS Custom Properties (Variables) */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #06b6d4;
  --accent-color: #f59e0b;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --card-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 0.75rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max-width: 1200px;
  --section-padding: 5rem 0; }

/* Dark Mode Variables */
[data-theme="dark"] {
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-light: #94a3b8;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b; }

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

html {
  scroll-behavior: smooth;
  font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden; }

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem; }

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

a:hover {
  color: var(--primary-dark); }

/* Section Styles */
section {
  padding: var(--section-padding); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }

.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; }

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary); }

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition); }

[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1); }

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: var(--transition); }

.logo:hover {
  transform: translateY(-2px); }

.logo-svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  transition: var(--transition); }

.logo:hover .logo-svg {
  transform: rotate(10deg); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem; }

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0; }

.nav-link.active {
  color: var(--primary-color); }

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem; }

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden; }

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: var(--transition); }

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4); }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5); }

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color); }

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px); }

.btn-full {
  width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition); }

.btn-link:hover {
  color: var(--primary-dark);
  transform: translateX(3px); }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary); }

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

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  animation: floatGradient 20s ease-in-out infinite; }

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.1;
  animation: floatShape 15s ease-in-out infinite; }

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s; }

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation-delay: 5s; }

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 10s; }

@keyframes floatGradient {
  0%, 100% {
    transform: rotate(0deg) scale(1); }
  50% {
    transform: rotate(180deg) scale(1.1); } }
@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg); }
  33% {
    transform: translate(30px, -30px) rotate(120deg); }
  66% {
    transform: translate(-20px, 20px) rotate(240deg); } }
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  animation: slideInLeft 0.8s ease; }

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1); }
  50% {
    opacity: 0.5;
    transform: scale(1.5); } }
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease 0.2s both; }

.title-line {
  display: block; }

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 3s ease-in-out infinite; }

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; } }
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: slideInLeft 0.8s ease 0.4s both; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: slideInLeft 0.8s ease 0.6s both; }

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: slideInLeft 0.8s ease 0.8s both; }

.stat-item {
  text-align: center; }

.stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem; }

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease 0.6s both; }

.hero-image-container {
  position: relative;
  height: 500px;
  perspective: 1000px; }

.hero-code-editor {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 280px;
  background: var(--bg-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-lg);
  transform: rotateY(-5deg) rotateX(5deg);
  animation: floatEditor 6s ease-in-out infinite; }

@keyframes floatEditor {
  0%, 100% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(0px); }
  50% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-20px); } }
.editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius) var(--border-radius) 0 0; }

.editor-dots {
  display: flex;
  gap: 0.5rem; }

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

.dot-red {
  background: #ff5f56; }

.dot-yellow {
  background: #ffbd2e; }

.dot-green {
  background: #27c93f; }

.editor-title {
  color: var(--text-light);
  font-size: 0.875rem; }

.editor-content {
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5; }

.code-line {
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.code-tag {
  color: #ff79c6; }

.code-text {
  color: #f8f8f2; }

.code-indent {
  margin-left: 1rem; }

.hero-design-preview {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 200px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-lg);
  transform: rotateY(5deg) rotateX(-5deg);
  animation: floatPreview 6s ease-in-out infinite 2s; }

[data-theme="dark"] .hero-design-preview {
  background: var(--bg-secondary); }

@keyframes floatPreview {
  0%, 100% {
    transform: rotateY(5deg) rotateX(-5deg) translateY(0px); }
  50% {
    transform: rotateY(5deg) rotateX(-5deg) translateY(-20px); } }
.preview-header {
  padding: 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius) var(--border-radius) 0 0; }

.preview-dots {
  display: flex;
  gap: 0.25rem;
  justify-content: center; }

.preview-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--text-light); }

.preview-content {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem; }

.preview-box {
  height: 40px;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.8; }

.box-1 {
  grid-column: span 2; }

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: var(--card-shadow);
  color: var(--primary-color); }

[data-theme="dark"] .floating-element {
  background: var(--bg-secondary); }

.elem-1 {
  top: 20px;
  left: 20px;
  animation: floatElement 4s ease-in-out infinite; }

.elem-2 {
  top: 200px;
  right: 0;
  animation: floatElement 4s ease-in-out infinite 1s; }

.elem-3 {
  bottom: 100px;
  right: 100px;
  animation: floatElement 4s ease-in-out infinite 2s; }

@keyframes floatElement {
  0%, 100% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(-15px) rotate(180deg); } }
.floating-element svg {
  width: 24px;
  height: 24px;
  stroke-width: 2; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer; }

.scroll-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em; }

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative; }

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite; }

@keyframes scrollWheel {
  0% {
    top: 10px;
    opacity: 1; }
  100% {
    top: 25px;
    opacity: 0; } }
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0px); }
  50% {
    transform: translateX(-50%) translateY(-10px); } }
/* About Page Styles */
.about-hero, .portfolio-hero, .services-hero, .contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden; }

.about-hero-content, .portfolio-hero-content, .services-hero-content, .contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto; }

.about-hero h1, .portfolio-hero h1, .services-hero h1, .contact-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem; }

.about-hero-subtitle, .portfolio-hero-subtitle, .services-hero-subtitle, .contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary); }

.our-story {
  padding: 5rem 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center; }

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary); }

.story-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8; }

.timeline {
  position: relative;
  padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color); }

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--bg-primary); }

.timeline-year {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.125rem; }

.timeline-content h3 {
  margin: 0.5rem 0;
  color: var(--text-primary); }

.mission-values {
  padding: 5rem 0;
  background: var(--bg-secondary); }

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

.value-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

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

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  color: white; }

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2; }

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary); }

.team {
  padding: 5rem 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem; }

.team-member {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg); }

.member-image {
  height: 300px;
  overflow: hidden; }

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

.team-member:hover .member-image img {
  transform: scale(1.05); }

.member-info {
  padding: 2rem; }

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary); }

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem; }

.member-bio {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.875rem; }

.member-social {
  display: flex;
  gap: 1rem; }

.member-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition); }

.member-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px); }

.member-social svg {
  width: 20px;
  height: 20px; }

.tech-stack {
  padding: 5rem 0;
  background: var(--bg-secondary); }

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

.tech-category {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow); }

.tech-category h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center; }

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

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  transition: var(--transition); }

.tech-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow); }

.tech-icon {
  font-size: 1.25rem; }

/* Portfolio Page Styles */
.filter-section {
  padding: 2rem 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-secondary); }

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

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition); }

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px); }

.view-toggle {
  display: flex;
  gap: 0.5rem; }

.view-btn {
  padding: 0.5rem;
  background: var(--bg-secondary);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-primary); }

.view-btn:hover,
.view-btn.active {
  background: var(--primary-color);
  color: white; }

.view-btn svg {
  width: 20px;
  height: 20px; }

.portfolio-section {
  padding: 3rem 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem; }

.portfolio-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  background: var(--bg-primary);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0; }

.portfolio-item.hidden {
  display: none; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg); }

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 300px; }

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1); }

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease; }

.portfolio-item:hover .portfolio-overlay {
  opacity: 1; }

.portfolio-categories {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem; }

.category-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600; }

.portfolio-info h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem; }

.portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem; }

.portfolio-link {
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition); }

.portfolio-link:hover {
  transform: translateX(5px); }

.load-more-container {
  text-align: center; }

.load-more-container .btn {
  min-width: 200px; }

.portfolio-stats {
  padding: 5rem 0;
  background: var(--bg-secondary); }

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

.stat-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem; }

.stat-label {
  color: var(--text-secondary);
  font-weight: 600; }

.testimonials {
  padding: 5rem 0; }

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

.testimonial-item {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg); }

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem; }

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem; }

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover; }

.author-name {
  font-weight: 700;
  color: var(--text-primary); }

.author-title {
  color: var(--text-secondary);
  font-size: 0.875rem; }

/* Services Page Styles */
.main-services {
  padding: 5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem; }

.service-card.main-service {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-lg);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color); }

.service-card.main-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem; }

.service-icon.large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0; }

.service-icon.large svg {
  width: 40px;
  height: 40px;
  stroke-width: 2; }

.service-header h2 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 0; }

.service-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8; }

.service-features {
  list-style: none;
  margin-bottom: 2rem; }

.service-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid var(--bg-secondary); }

.service-features li:last-child {
  border-bottom: none; }

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.125rem; }

.service-cta {
  display: flex;
  gap: 1rem;
  align-items: center; }

.additional-services {
  padding: 5rem 0;
  background: var(--bg-secondary); }

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

.additional-service {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-lg); }

.additional-service .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  color: white; }

.additional-service .service-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2; }

.additional-service h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary); }

.additional-service p {
  color: var(--text-secondary);
  font-size: 0.875rem; }

.pricing {
  padding: 5rem 0; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem; }

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px; }

.switch input {
  opacity: 0;
  width: 0;
  height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-secondary);
  transition: 0.4s;
  border-radius: 30px; }

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%; }

input:checked + .slider {
  background-color: var(--primary-color); }

input:checked + .slider:before {
  transform: translateX(30px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto; }

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative; }

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3); }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.pricing-header {
  text-align: center;
  margin-bottom: 2rem; }

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem; }

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem; }

.currency {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600; }

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary); }

.period {
  color: var(--text-secondary); }

.pricing-description {
  color: var(--text-secondary);
  text-align: center; }

.pricing-features {
  list-style: none;
  margin-bottom: 2rem; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-secondary);
  color: var(--text-secondary); }

.pricing-features li:last-child {
  border-bottom: none; }

.pricing-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0; }

.included svg {
  color: var(--primary-color); }

.not-included svg {
  color: var(--accent-color); }

.process {
  padding: 5rem 0;
  background: var(--bg-secondary); }

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

.process-step {
  text-align: center;
  position: relative; }

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1; }

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary); }

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6; }

/* Contact Page Styles */
.contact-section {
  padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start; }

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary); }

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.8; }

.contact-details {
  margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  transition: var(--transition); }

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow); }

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  flex-shrink: 0; }

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2; }

.contact-item div span {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem; }

.contact-item div a {
  color: var(--primary-color); }

.social-links-section {
  text-align: center; }

.social-links-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition); }

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px); }

.social-links svg {
  width: 24px;
  height: 24px; }

.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-lg); }

.contact-form {
  max-width: 100%;
  color: lightblue; }

.contact-form h3 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text-primary); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; }

.form-group {
  position: relative;
  margin-bottom: 1.5rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-primary);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color); }

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none; }

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  background: var(--bg-secondary);
  padding: 0 0.5rem;
  color: var(--primary-color); }

.form-group select {
  cursor: pointer;
  padding-right: 2.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem; }

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem; }

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0; }

.checkbox-group label {
  position: static;
  font-size: 0.875rem;
  color: var(--text-secondary); }

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light); }

.success-message {
  text-align: center;
  padding: 2rem; }

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem; }

.faq-section {
  padding: 5rem 0;
  background: var(--bg-secondary); }

.faq-container {
  max-width: 800px;
  margin: 0 auto; }

.faq-item {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition); }

.faq-item.active {
  box-shadow: var(--card-shadow-lg); }

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

.faq-question:hover {
  background: var(--bg-secondary); }

.faq-question h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.125rem; }

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--primary-color); }

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8; }

.map-section {
  padding: 0;
  position: relative; }

.map-container {
  position: relative;
  height: 400px;
  overflow: hidden; }

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow-lg);
  text-align: center;
  z-index: 1; }

.map-info h3 {
  margin-bottom: 1rem;
  color: var(--text-primary); }

.map-info p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary); }

.map-placeholder {
  width: 100%;
  height: 100%; }

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-secondary);
  padding: 3rem 0 1.5rem; }

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

.footer-brand .logo {
  margin-bottom: 1rem; }

.footer-brand p {
  color: var(--text-light); }

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

.footer-column h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.125rem; }

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

.footer-column ul li {
  margin-bottom: 0.5rem; }

.footer-column a {
  color: var(--text-light);
  transition: var(--transition); }

.footer-column a:hover {
  color: var(--primary-light); }

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

.footer-bottom .social-links a {
  background: rgba(255, 255, 255, 0.1); }

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

.mb-0 {
  margin-bottom: 0; }

.mt-0 {
  margin-top: 0; }

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* Loading Animation */
.loading {
  position: relative;
  overflow: hidden; }

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite; }

@keyframes loading {
  to {
    left: 100%; } }
/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 0; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease; }

  .nav-menu.active {
    right: 0; }

  .hamburger {
    display: flex;
    z-index: 1001; }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }

  .hamburger.active span:nth-child(2) {
    opacity: 0; }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px); }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem; }

  .hero-title {
    font-size: 2.5rem; }

  .hero-buttons {
    justify-content: center; }

  .hero-visual {
    display: none; }

  .about-hero h1, .portfolio-hero h1, .services-hero h1, .contact-hero h1 {
    font-size: 2rem; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .values-grid,
  .team-grid,
  .tech-categories,
  .portfolio-grid,
  .stats-grid,
  .testimonials-slider,
  .services-grid,
  .additional-grid,
  .pricing-grid {
    grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .pricing-card.featured {
    transform: scale(1); }

  .form-row {
    grid-template-columns: 1fr; }

  .filter-controls {
    flex-direction: column;
    align-items: stretch; }

  .filter-buttons {
    justify-content: center; }

  .process-steps {
    grid-template-columns: 1fr; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .footer-links {
    grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center; } }
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem; }

  .section-title {
    font-size: 1.75rem; }

  .contact-form-wrapper {
    padding: 2rem; }

  .pricing-card {
    padding: 1.5rem; }

  .amount {
    font-size: 2rem; } }
