/* Ultra Modern Landing Page Styles */
.landing-page {
  min-height: 100vh;
  background: #0a0a0a;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #7b2cbf 0%, transparent 70%);
  bottom: -300px;
  left: -300px;
  animation-delay: 5s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-main {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.5); }
}

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

.badge-text {
  color: #00d4ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 50%, #4ecdc4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
}

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

.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
  text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.25rem;
  color: #8a8aa0;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.highlight {
  color: #00d4ff;
  font-weight: 600;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-primary {
  background: linear-gradient(135deg, #00d4ff, #0099ff);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

.cta-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon,
.cta-secondary:hover .cta-icon {
  transform: translateX(5px);
}

/* Floating Dashboard */
.floating-dashboard {
  background: rgba(20, 20, 35, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  position: relative;
  z-index: 10;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #8a8aa0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.metric-mini {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #7b2cbf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-text {
  display: block;
  font-size: 0.75rem;
  color: #8a8aa0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.mini-chart {
  margin-top: 1rem;
  opacity: 0.9;
}

/* Showcase Section */
.showcase-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

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

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

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

.title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #8a8aa0;
}

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

.showcase-card {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 20, 35, 0.9), rgba(30, 30, 50, 0.9));
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.showcase-card:hover .card-glow {
  opacity: 1;
}

.showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.card-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #00d4ff, #7b2cbf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.showcase-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.showcase-card p {
  color: #8a8aa0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  color: #00d4ff;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-link {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 1rem;
}

/* Stats Showcase */
.stats-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
  position: relative;
  z-index: 2;
}

.stats-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #7b2cbf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #8a8aa0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Skills Visualization */
.skills-visualization {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.skills-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
}

.skill-orb {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.orb-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #00d4ff 0deg, #7b2cbf 180deg, rgba(255, 255, 255, 0.1) 180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 10s linear infinite;
}

.orb-inner::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  background: #0a0a0a;
  border-radius: 50%;
  z-index: 1;
}

.skill-percent {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.skill-name {
  color: #8a8aa0;
  font-weight: 600;
  text-align: center;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #8a8aa0;
  margin-bottom: 3rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact-btn i {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  
  .floating-dashboard {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 3rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
