/* Advanced CSS Reset & Variables */
:root {
  --primary: #000000;
  --secondary: #ffffff;
  --accent: #ff6b35;
  --dark: #ffffff;
  --darker: #f8f9fa;
  --light: #000000;
  --gray: #f1f3f4;
  --gray-light: #e8eaed;
  --success: #ff6b35;
  --warning: #ff6b35;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--gray));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--gray));
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-logo img {
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.7));
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.7));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 1));
  }
}

.code-bracket {
  color: var(--accent);
}

.brand-text {
  color: var(--light);
  margin: 0 0.5rem;
  font-family: 'Black Ops One', 'Orbitron', var(--font-mono);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
  letter-spacing: 3px;
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: var(--gray);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  animation: loading 2s ease-out forwards;
}

.loading-text {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

@keyframes loading {
  to { width: 100%; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-dark);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo img {
  transition: var(--transition);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.5));
}

.logo-main {
  font-family: 'Black Ops One', 'Orbitron', var(--font-mono);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-tagline {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-bracket {
  color: var(--accent);
}

.logo-text {
  color: var(--light);
  margin: 0 0.25rem;
}

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

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

.nav-menu a:not(.cta-btn)::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:not(.cta-btn):hover::before {
  width: 100%;
}

.cta-btn {
  background: var(--gradient-primary) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--border-radius);
  color: var(--dark) !important;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInNav 0.5s ease forwards;
  }
  
  .nav-menu.active li {
    animation-delay: calc(var(--i) * 0.1s);
  }
  
  .nav-menu li:nth-child(1) { --i: 1; }
  .nav-menu li:nth-child(2) { --i: 2; }
  .nav-menu li:nth-child(3) { --i: 3; }
  .nav-menu li:nth-child(4) { --i: 4; }
  .nav-menu li:nth-child(5) { --i: 5; }
  .nav-menu li:nth-child(6) { --i: 6; }
  
  .nav-menu a {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  body.nav-open {
    overflow: hidden;
  }
}

@keyframes slideInNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  max-width: 100%;
}

.hero-image {
  display: flex;
  align-items: center;
  margin-top:-250px;
  justify-content: center;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text-line {
  display: block;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

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

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

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

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  text-align: center;
    display: inline-flex;
  align-items: center;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: var(--primary);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

/* Section Styles */
section {
  padding: 8rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-tag {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-preview {
  background: var(--gray);
  position: relative;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(20px);
}

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

.service-card p {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.service-tech {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Projects Section */
.featured-projects {
  background: var(--dark);
}

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

.project-card {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.project-image {
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  position: relative;
}

.project-tech-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
}

.tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tech-stack span {
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--light);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.project-metrics span {
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-cta {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Testimonials */
.testimonials {
  background: var(--gray);
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

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

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.author-rating {
  color: var(--warning);
  margin-top: 0.5rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--primary);
  color: var(--dark);
}

.testimonial-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--primary);
}

/* CTA Footer */
.cta-footer {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><text y=\"50\" font-size=\"10\" fill=\"%2300f5ff\" opacity=\"0.1\">01010101</text></svg>') repeat;
  animation: matrix-fall 10s linear infinite;
}

@keyframes matrix-fall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem;
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2300f5ff" d="M6 9L1.5 4.5h9z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark);
  color: var(--light);
  padding: 0.5rem;
  border: none;
}

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

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.form-group input:focus + .input-line,
.form-group select:focus + .input-line,
.form-group textarea:focus + .input-line {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--gray);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  text-align: center;
}

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

.footer-brand .logo img {
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.4));
}

.footer-brand p {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
  text-align: center;
}

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

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section a {
  display: block;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent);
}

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

.footer-tech {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tech i {
  color: var(--accent);
}

/* Footer Newsletter & Stats Styles */
.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  color: var(--light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.footer-newsletter input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.footer-newsletter button {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.footer-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

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

.footer-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.footer-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.25rem;
}

.footer-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.footer-contact i {
  color: var(--accent);
  width: 16px;
}

.footer-section a i {
  margin-right: 0.5rem;
  color: var(--accent);
  width: 16px;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .footer-stats {
    gap: 1rem;
  }
  .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

  
  .footer-newsletter {
    flex-direction: column;
  }
  
  .footer-newsletter button {
    align-self: flex-start;
    min-width: auto;
    padding: 0.75rem 1.5rem;
  }
}

/* Page Hero Styles */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

/* Services Page Styles */
.services-advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  transition: left 0.5s ease;
}

.service-detail-card:hover::before {
  left: 0;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

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

.service-code {
  font-family: var(--font-mono);
  color: var(--primary);
  font-size: 0.8rem;
  opacity: 0.8;
}

.service-features {
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(0, 0, 0, 0.9);
}

.feature i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.step-connector {
  display: none;
}

.step-content {
  width: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step-content h3 {
  color: var(--light);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #000000;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.step-tech {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.step-tech span {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Services Page Enhancements */
.service-pricing {
  margin: 1rem 0;
  text-align: center;
}

.price-tag {
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Technologies Section */
.technologies-section {
  padding: 8rem 0;
  background: var(--gray);
}

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

.tech-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
}

.tech-category h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.tech-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: var(--transition);
}

.tech-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-icon:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px currentColor);
}

.tech-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.tech-icon span {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* Brand-specific colors for tech icons */
.tech-icon:has(.fa-react) i {
  color: #61DAFB;
}

.tech-icon:has(.fa-vuejs) i {
  color: #4FC08D;
}

.tech-icon:has(.fa-js-square) i {
  color: #F7DF1E;
}

.tech-icon:has(.fa-html5) i {
  color: #E34F26;
}

.tech-icon:has(.fa-node-js) i {
  color: #339933;
}

.tech-icon:has(.fa-python) i {
  color: #3776AB;
}

.tech-icon:has(.fa-database) i {
  color: #47A248;
}

.tech-icon:has(.fa-server) i {
  color: #336791;
}

.tech-icon:has(.fa-mobile-alt) i {
  color: #02569B;
}

.tech-icon:has(.fa-apple) i {
  color: #000000;
}

.tech-icon:has(.fa-android) i {
  color: #3DDC84;
}

.tech-icon:has(.fa-aws) i {
  color: #FF9900;
}

.tech-icon:has(.fa-docker) i {
  color: #2496ED;
}

.tech-icon:has(.fa-github) i {
  color: #181717;
}

.tech-icon:has(.fa-cloud) i {
  color: #000000;
}

/* Fallback for browsers that don't support :has() */
.tech-icon[data-tech="react"] i { color: #61DAFB; }
.tech-icon[data-tech="vue"] i { color: #4FC08D; }
.tech-icon[data-tech="javascript"] i { color: #F7DF1E; }
.tech-icon[data-tech="html5"] i { color: #E34F26; }
.tech-icon[data-tech="nodejs"] i { color: #339933; }
.tech-icon[data-tech="python"] i { color: #3776AB; }
.tech-icon[data-tech="mongodb"] i { color: #47A248; }
.tech-icon[data-tech="postgresql"] i { color: #336791; }
.tech-icon[data-tech="react-native"] i { color: #61DAFB; }
.tech-icon[data-tech="flutter"] i { color: #02569B; }
.tech-icon[data-tech="ios"] i { color: #000000; }
.tech-icon[data-tech="android"] i { color: #3DDC84; }
.tech-icon[data-tech="aws"] i { color: #FF9900; }
.tech-icon[data-tech="docker"] i { color: #2496ED; }
.tech-icon[data-tech="github"] i { color: #181717; }
.tech-icon[data-tech="vercel"] i { color: #000000; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-code {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.delivery-time {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Portfolio Styles */
.portfolio-filters {
  padding: 2rem 0;
  background: var(--gray);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: var(--font-mono);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

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

.portfolio-item {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gradient-secondary);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Browser Mockup */
.browser-mockup {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

.browser-header {
  background: #f0f0f0;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.browser-dots {
  display: flex;
  gap: 0.25rem;
}

.browser-dots::before,
.browser-dots::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-dots::after {
  background: #ffbd2e;
}

.browser-url {
  background: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #666;
  flex: 1;
  text-align: center;
}

.browser-content {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.mockup-hero {
  height: 60px;
  background: rgba(255,255,255,0.9);
  margin: 1rem;
  border-radius: 4px;
}

.mockup-sections {
  height: 100px;
  background: rgba(255,255,255,0.7);
  margin: 1rem;
  border-radius: 4px;
}

/* Mobile Mockup */
.mobile-mockup {
  width: 180px;
  height: 320px;
  background: #000;
  border-radius: 20px;
  padding: 1rem 0.5rem;
  position: relative;
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header {
  height: 60px;
  background: var(--gradient-primary);
}

.app-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-card {
  height: 40px;
  background: #f5f5f5;
  border-radius: 8px;
}

.app-nav {
  height: 50px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

/* E-commerce Mockup */
.ecommerce-mockup {
  width: 100%;
  max-width: 280px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.shop-header {
  height: 50px;
  background: var(--gradient-primary);
}

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

.product-card {
  height: 80px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #eee;
}

/* Design Mockup */
.design-mockup {
  width: 100%;
  max-width: 300px;
}

.design-screens {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.design-screens > div {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.screen-1 {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.screen-2 {
  width: 100px;
  height: 140px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.screen-3 {
  width: 80px;
  height: 120px;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Brand Mockup */
.brand-mockup {
  width: 100%;
  max-width: 280px;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.logo-showcase {
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.brand-elements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.color-palette {
  height: 30px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd23f, #06d6a0, #118ab2);
  border-radius: 4px;
}

.typography {
  height: 25px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #eee;
}

.brand-assets {
  height: 35px;
  background: #f1f3f4;
  border-radius: 4px;
}

/* Web App Mockup */
.webapp-mockup {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dashboard-header {
  height: 50px;
  background: #2c3e50;
}

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

.widget {
  height: 60px;
  background: #ecf0f1;
  border-radius: 6px;
  border: 1px solid #bdc3c7;
}

.chart-area {
  grid-column: 1 / -1;
  height: 80px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-radius: 6px;
  margin-top: 0.5rem;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.95), rgba(255, 107, 53, 0.9));
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-info h3 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

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

.portfolio-metrics {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.portfolio-metrics span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.portfolio-tech {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.portfolio-tech span {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff !important;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.view-case-study {
  background: var(--gradient-primary);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-case-study:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Case Study Styles */
.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.project-timeline {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
}

.timeline-item {
  margin-bottom: 0.75rem;
  color: #000000;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.timeline-item strong {
  color: var(--accent);
}

.case-study-results {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

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

.result-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.result-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.case-study-mockup {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-browser {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  max-width: 400px;
}

.featured-browser .browser-header {
  background: #f0f0f0;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ddd;
}

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

.featured-browser .browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}

.featured-browser .browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.featured-browser .browser-dots span:nth-child(3) {
  background: #28ca42;
}

.featured-browser .browser-url {
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #666;
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
}

.dashboard-preview {
  height: 300px;
  background: #f8f9fa;
  padding: 1.5rem;
}

.dash-header {
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-card {
  height: 60px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dash-chart {
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.advanced-contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

.method-info h4 {
  margin-bottom: 0.25rem;
}

.method-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.process-steps {
  margin-top: 1rem;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

/* FAQ Styles */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Active Navigation State */
.nav-menu a.active {
  color: var(--accent);
}

.nav-menu a.active::before {
  width: 100%;
}

.logo {
  text-decoration: none;
  color: inherit;
}

/* Navigation Link Styles */
.nav-link {
  position: relative;
}

.nav-link:not(.cta-btn):hover {
  color: var(--accent);
}

.cta-btn.active {
  background: linear-gradient(135deg, #ff8c42, #ff6b35) !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5) !important;
}

/* About Page Styles */
.about-story {
  padding: 8rem 0;
  background: var(--gray);
}

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

.story-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

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

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

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.certifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
}

.certifications h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.cert-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tech-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tech-showcase .tech-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.tech-showcase .tech-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.tech-showcase .tech-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.development-process {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.development-process h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.process-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 0.5rem;
}

/* Team Section */
.team-section {
  padding: 8rem 0;
}

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

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.member-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 107, 53, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-image:hover .member-overlay {
  opacity: 1;
}

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

.member-social a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: var(--transition);
}

.member-social a:hover {
  transform: scale(1.2);
}

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

.member-skills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.member-skills span {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--gray);
}

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

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

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

/* Insights Page Styles */
.insights-filters {
  padding: 2rem 0;
  background: var(--gray);
}

.featured-insight {
  padding: 8rem 0;
}

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

.insight-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.insight-category {
  background: var(--gradient-primary);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

.insight-date {
  color: rgba(255, 255, 255, 0.7);
}

.insight-tags {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.insight-tags span {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
}

.insight-mockup {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visualization {
  position: relative;
  width: 200px;
  height: 200px;
}

.ai-node {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: absolute;
  animation: pulse 2s infinite;
}

.ai-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.ai-node:nth-child(2) { bottom: 0; left: 0; }
.ai-node:nth-child(3) { bottom: 0; right: 0; }

.ai-connection {
  position: absolute;
  height: 2px;
  background: var(--primary);
  opacity: 0.6;
}

.ai-connection:nth-child(4) {
  top: 30px;
  left: 50%;
  width: 100px;
  transform: rotate(45deg);
}

.ai-connection:nth-child(5) {
  top: 30px;
  right: 50%;
  width: 100px;
  transform: rotate(-45deg);
}

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

/* Insights Grid */
.insights-grid-section {
  padding: 8rem 0;
  background: var(--gray);
}

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

.insight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

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

.insight-image {
  height: 200px;
  background: var(--gradient-secondary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.insight-content {
  padding: 2rem;
}

.insight-content .insight-meta {
  margin-bottom: 1rem;
}

.read-time {
  color: rgba(255, 255, 255, 0.6);
}

.insight-content h3 {
  margin-bottom: 1rem;
  color: var(--light);
}

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

/* Newsletter Section */
.newsletter-section {
  padding: 8rem 0;
}

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

.subscribe-form {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.subscribe-form .form-group {
  flex: 1;
}

.subscribe-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1rem;
  color: var(--light);
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo img {
    height: 40px !important;
  }

    .hero-image {
  align-items: center;
  margin-top: 100px;
  justify-content: center;
}

  .loading-logo img {
    height: 60px !important;
  }
  
  .footer-brand .logo img {
    height: 50px !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .services-grid,
  .projects-showcase,
  .services-advanced-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-grid,
  .case-study-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .case-study-results {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .story-content,
  .featured-content,
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .tech-showcase {
    grid-template-columns: 1fr;
  }
  
  .process-flow {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  
  .cert-badges {
    justify-content: center;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .project-preview {
    padding: 1rem;
  }
  
  .browser-mockup,
  .mobile-mockup,
  .ecommerce-mockup,
  .webapp-mockup {
    transform: scale(0.8);
  }
  
  .design-screens {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .case-study-results {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: var(--primary);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: var(--secondary);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 14%, 15%, 49%, 50%, 99%, 100% {
    transform: translate(0);
  }
  15%, 49% {
    transform: translate(-2px, -1px);
  }
}

@keyframes glitch-2 {
  0%, 20%, 21%, 62%, 63%, 99%, 100% {
    transform: translate(0);
  }
  21%, 62% {
    transform: translate(2px, 1px);
  }
}

/* From Uiverse.io by kennyotsu */ 
.card-id567 {
  width: 190px;
  height: 190px;
  background: rgb(22, 22, 22);
  color: white;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease;
  animation: 8s thumb-thumb infinite;
}

.card-id567 svg path {
  transition: 300ms ease;
  opacity: 0;
}

.bold-567 {
  font-weight: bold;
}

.creator-points {
  width: 3.25rem;
  height: 3rem;
  color: rgb(167 139 250);
    /* w-5 h-5 mr-2 text-indigo-400 */
}

.blurry-splash {
  position: absolute;
  inset: 0;
  width: 60px;
  margin: 0 auto;
  height: 60px;
  border-radius: 1rem;
  z-index: -1;
  opacity: 70%;
  filter: blur(15px);
  background: linear-gradient(
      120deg, rgba(167, 139, 250, 0.24)
      , rgba(167, 139, 250, 0.384), rgba(167, 139, 250, 0.226));
}

.prompt-id567 {
  position: absolute;
  color: rgb(173, 173, 173);
  text-align: center;
}

.really-small-text {
  text-align: center;
  width: 100%;
  position: absolute;
  font-size: 8px;
  margin-top: 28px;
  opacity: 0.5;
}

.card-id567:hover {
  cursor: none;
  background-color: white;
}

.card-id567:hover .prompt-id567 {
  transition: 300ms ease;
  opacity: 0;
}

.token-container {
  animation: 2s spinny-token-yayyy infinite;
  margin-bottom: 10px;
}

.prompt-id567 svg path {
  stroke: none;
  opacity: 1;
}

.card-id567:hover svg path {
  opacity: 1;
}

@keyframes spinny-token-yayyy {
  0% {
    transform: perspective(200px) rotateY(0deg);
  }

  100% {
    transform: perspective(200px) rotateY(360deg);
  }
}

@keyframes thumb-thumb {
  0%, 10%, 100% {
    transform: scale(100%);
  }

  5% {
    transform: scale(103%);
  }

  7% {
    transform: scale(97%);
  }
}