@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #030712;
  --bg-secondary: #0b1528;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-blue: #3b82f6;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --glass-bg: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(6, 182, 212, 0.2);
  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --phone-width: 280px;
  --phone-height: 570px;
}

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

/* Hide native cursor on devices with mice */
@media (pointer: fine) {

  html,
  body,
  a,
  button,
  select,
  input,
  textarea,
  .btn,
  .app-icon-wrapper,
  .back-arrow,
  .project-link,
  .submit-btn,
  .pay-btn {
    cursor: none !important;
  }
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
}

/* Background Dotted Grid Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: -1;
}

/* Background Canvas & Glows */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Antigravity Interactive Spotlight Glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px),
      rgba(99, 102, 241, 0.12) 0%,
      rgba(6, 182, 212, 0.06) 40%,
      transparent 80%);
  mix-blend-mode: screen;
}

/* Custom Cursors - Desktop Only */
.custom-cursor-dot,
.custom-cursor-ring {
  display: none;
}

@media (pointer: fine) {

  .custom-cursor-dot,
  .custom-cursor-ring {
    display: block;
  }
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(6, 182, 212, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.25s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}

/* Cursor Hover states */
.custom-cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(139, 92, 246, 0.8);
  background-color: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.custom-cursor-dot.hover {
  background-color: var(--accent-purple);
  width: 4px;
  height: 4px;
}

.glow-bg {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  top: -10%;
  right: -10%;
}

.glow-2 {
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-3 {
  top: 40%;
  right: 10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Layout & Typography */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(3, 7, 18, 0.6);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo i {
  color: #3DDC84;
  /* Android Green */
  font-size: 1.8rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.nav-btn {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--accent-cyan);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: var(--text-primary) !important;
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
  color: #fff !important;
}

section {
  min-height: 100vh;
  padding: 8rem 5% 4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  font-family: var(--font-mono);
}

.section-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Common */
.glass-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.03),
      transparent);
  transform: skewX(-25deg);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.glass-card:hover::before {
  left: 150%;
}

.glass-card:hover {
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 30px -5px rgba(6, 182, 212, 0.12);
  transform: translateY(-6px);
}

/* HERO SECTION */
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  width: fit-content;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-info h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-mono);
}

.typing-text {
  color: var(--accent-cyan);
  border-right: 2px solid var(--accent-cyan);
  animation: blink 0.75s step-end infinite;
  white-space: nowrap;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #000;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
  filter: brightness(1.1);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan);
}

/* SMARTPHONE SIMULATOR */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.smartphone {
  width: var(--phone-width);
  height: var(--phone-height);
  background: #020617;
  border: 12px solid #1e293b;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(6, 182, 212, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease;
  transform-style: preserve-3d;
}

/* Phone Bezel elements */
.smartphone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #1e293b;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

/* Punch-hole camera */
.phone-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #090d16;
  z-index: 11;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.4);
}

/* Speaker line */
.phone-speaker {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 10px;
  background: #334155;
  z-index: 11;
}

/* Screen area */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #030712;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
  user-select: none;
}

/* Status Bar */
.phone-status-bar {
  height: 25px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 9px;
  color: #94a3b8;
  z-index: 9;
  background: rgba(3, 7, 18, 0.3);
}

.status-right {
  display: flex;
  gap: 4px;
}

/* Screen Contents */
.screen-content {
  flex: 1;
  display: none;
  flex-direction: column;
  animation: fadeIn 0.4s ease forwards;
  overflow-y: auto;
  scrollbar-width: none;
}

.screen-content::-webkit-scrollbar {
  display: none;
}

.screen-content.active {
  display: flex;
}

/* Screen 1: Home App Launcher */
.home-header {
  padding: 15px 12px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-greet {
  font-size: 11px;
  color: #94a3b8;
}

.home-title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-profile-pic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  padding: 2px;
}

.home-profile-pic-inner {
  background: #020617;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px 15px;
}

.app-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-icon-wrapper:hover .app-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(6, 182, 212, 0.3);
}

.app-label {
  font-size: 9px;
  color: #cbd5e1;
  text-align: center;
  font-weight: 500;
}

/* App Specific Styling */
.app-pay {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.app-chat {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.app-cloud {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.app-fit {
  background: linear-gradient(135deg, #10b981, #047857);
}

/* Sim Screen Header */
.app-header {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  font-size: 12px;
  font-weight: 600;
}

.back-arrow {
  cursor: pointer;
  font-size: 14px;
  color: #94a3b8;
  padding: 2px 5px;
}

.back-arrow:hover {
  color: #fff;
}

/* Pay App Simulator */
.pay-card {
  background: #1e293b;
  margin: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pay-item-title {
  font-size: 13px;
  font-weight: 700;
}

.pay-item-desc {
  font-size: 9px;
  color: #94a3b8;
  margin: 4px 0 10px;
}

.pay-amount {
  font-size: 16px;
  font-weight: 800;
  color: #38bdf8;
}

.pay-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 8px;
  width: 100%;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.pay-btn:hover {
  background: #1d4ed8;
}

.razorpay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 20px;
}

.razorpay-modal {
  background: #0f172a;
  border-radius: 12px;
  border: 1px solid #0284c7;
  padding: 15px;
  width: 100%;
  text-align: center;
}

.rp-header {
  font-size: 11px;
  font-weight: bold;
  color: #0284c7;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rp-success-icon {
  font-size: 30px;
  color: #10b981;
  margin-bottom: 10px;
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Chat App Simulator */
.chat-messages {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
}

.message {
  max-width: 80%;
  padding: 6px 10px;
  border-radius: 12px;
  line-height: 1.4;
  word-wrap: break-word;
}

.msg-in {
  background: #1e293b;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.msg-out {
  background: #ea580c;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-top: 1px solid #1e293b;
  background: #0f172a;
}

.chat-input {
  flex: 1;
  background: #1e293b;
  border: none;
  border-radius: 15px;
  padding: 6px 12px;
  color: white;
  font-size: 10px;
}

.chat-send {
  background: #ea580c;
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Cloud App Simulator */
.cloud-console {
  flex: 1;
  background: #020617;
  padding: 10px;
  font-family: monospace;
  font-size: 9px;
  color: #10b981;
  overflow-y: auto;
}

.cloud-line {
  margin-bottom: 5px;
  line-height: 1.3;
}

.cloud-line span.cyan {
  color: #06b6d4;
}

.cloud-line span.purple {
  color: #a78bfa;
}

/* Fit App Simulator */
.fit-dashboard {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-stat {
  background: #0f172a;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid #10b981;
}

.fit-stat-label {
  font-size: 10px;
  color: #94a3b8;
}

.fit-stat-val {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
}

.fit-chart {
  height: 80px;
  border: 1px dashed #334155;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px;
  background: rgba(16, 185, 129, 0.05);
}

.fit-bar {
  width: 12px;
  background: #10b981;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  animation: heightGrow 1s ease forwards;
}

/* TECH STACKS SECTION */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.skill-category {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-category h3 {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
}

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

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
}

.skill-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
  border-radius: 10px;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2.5rem;
  margin: 4rem 0;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* EXPERIENCE & HIGHLIGHTS */
.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.timeline-content {
  padding: 1.5rem;
  width: 100%;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.timeline-tag {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: #c084fc;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.timeline-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PROJECT CARDS */
.projects-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-thumbnail {
  height: 180px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.project-thumbnail-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.project-card:hover .project-thumbnail-icon {
  transform: scale(1.15) rotate(5deg);
}

.project-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tags span {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.project-name {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.project-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.project-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
  cursor: pointer;
}

.project-link:hover {
  gap: 0.5rem;
}

/* CONTACT SECTION */
.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.contact-detail-text p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.contact-form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-weight: 500;
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--glass-border);
  background: #020617;
  padding: 2rem 5%;
  text-align: center;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

/* KEYFRAMES & ANIMATIONS */
@keyframes blink {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--accent-cyan);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes scaleUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes heightGrow {
  from {
    height: 0;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-info {
    align-items: center;
  }

  .hero-desc {
    margin: 0 auto;
  }

  .phone-mockup-wrapper {
    margin-top: 2rem;
  }

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

@media (max-width: 768px) {
  nav ul {
    display: none;
    /* simple responsive burger or hidden navbar for design */
  }

  .hero-info h1 {
    font-size: 3rem;
  }

  .hero-info h2 {
    font-size: 1.5rem;
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
  }
}