/* Julius Stukes Jr. - Portfolio Stylesheet */

/* --- Custom Variables & Theme Configuration --- */
:root {
  /* Color Palette - Bright, Fun, Modern Light Theme */
  --bg-color: #f7f6fc;
  --text-main: #1f1b2d;
  --text-muted: #6b6382;
  --text-dark: #07021a;
  
  --primary: #008f7a;         /* Deep Teal for light mode contrast */
  --primary-rgb: 0, 143, 122;
  --secondary: #c2005f;       /* Deep Hot Pink for light mode contrast */
  --secondary-rgb: 194, 0, 95;
  --accent: #b09100;          /* Deep Yellow/Gold for light mode contrast */
  --accent-rgb: 176, 145, 0;
  
  --gradient-neon: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-warm: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  --gradient-cool: linear-gradient(135deg, #7b2cbf 0%, var(--primary) 100%);
  
  /* Glassmorphism Configuration for Light Mode */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(20, 12, 45, 0.08);
  --glass-border-glow: rgba(0, 143, 122, 0.25);
  --glass-shadow: 0 8px 32px 0 rgba(20, 12, 45, 0.05);
  --backdrop-filter: blur(16px) saturate(180%);

  /* Campaign Themes */
  --jalloh-color: #1d4ed8;     /* Royal Campaign Blue */
  --narcisse-color: #db2777;   /* Vibrant Campaign Pink */

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* --- Decorative Glowing Blobs --- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  animation: blob-float 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background-color: var(--secondary);
  top: 15%;
  left: -100px;
  animation-duration: 25s;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background-color: var(--primary);
  top: 45%;
  right: -150px;
  animation-duration: 28s;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background-color: #7b2cbf;
  bottom: 10%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.15);
  }
  100% {
    transform: translate(-40px, -70px) scale(0.9);
  }
}

/* --- Glassmorphism Base Component --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-filter);
  -webkit-backdrop-filter: var(--backdrop-filter);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.glass-card.hover-glow:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 10px 40px -10px rgba(var(--primary-rgb), 0.25);
  transform: translateY(-6px);
}

/* --- Utility Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 0.95rem;
  border: none;
}

.btn-primary {
  background: var(--gradient-neon);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary {
  background: rgba(20, 12, 45, 0.04);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(20, 12, 45, 0.08);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* --- Typography / Sections Layout --- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  background: linear-gradient(120deg, var(--text-main) 30%, var(--primary) 70%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Header / Navigation Bar --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(247, 246, 252, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 6px 0;
  background: rgba(247, 246, 252, 0.85);
  box-shadow: 0 4px 30px rgba(20, 12, 45, 0.08);
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.logo-accent {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  color: var(--secondary);
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

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

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

.highlight-nav {
  color: var(--accent);
  background: rgba(254, 228, 64, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(254, 228, 64, 0.2);
}

.highlight-nav:hover {
  color: #fff;
  background: rgba(254, 228, 64, 0.25);
}

.highlight-nav::after {
  display: none;
}

.nav-link.nav-newsletter {
  color: var(--secondary);
  border: 1px solid rgba(var(--secondary-rgb), 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(var(--secondary-rgb), 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.nav-link.nav-newsletter:hover {
  color: #fff !important;
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.2);
  transform: translateY(-1px);
}

.nav-link.nav-newsletter::after {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 0, 127, 0.15) 0%, rgba(0, 245, 212, 0.15) 100%);
  color: var(--primary);
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 245, 212, 0.2);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main) 40%, var(--primary) 75%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.typing-text {
  color: var(--accent);
  font-weight: 700;
  border-right: 3px solid var(--accent);
  padding-right: 4px;
  animation: typing-caret 0.8s infinite steps(1);
}

@keyframes typing-caret {
  50% { border-color: transparent; }
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-socials {
  display: flex;
  gap: 20px;
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(20, 12, 45, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.hero-socials a:hover {
  color: var(--primary);
  background: rgba(0, 245, 212, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* Premium Visual Card in Hero */
.premium-hero-card {
  border-left: 3px solid var(--primary);
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.card-title-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-body {
  padding: 24px;
}

.tech-lines {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.tech-line-item span {
  color: var(--secondary);
  font-weight: 600;
}

.mini-graph {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 80px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.graph-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  height: var(--val);
  transition: height 1s ease;
}

.graph-bar.animate-bar {
  background: var(--gradient-neon);
}

.graph-bar.animate-bar-2 {
  background: var(--gradient-warm);
}

.tech-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.pulse-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 245, 212, 0.1);
  color: var(--primary);
}

.status-msg {
  color: var(--text-muted);
}

/* --- Featured Campaigns Section --- */
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.campaign-card {
  border-top: none;
}

.campaign-color-header {
  height: 8px;
  width: 100%;
}

.jalloh-header-bg {
  background: linear-gradient(90deg, #1e40af, var(--jalloh-color));
}

.narcisse-header-bg {
  background: linear-gradient(90deg, #db2777, var(--narcisse-color));
}

.campaign-body {
  padding: 40px;
}

.campaign-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.campaign-candidate-name {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.campaign-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.campaign-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.highlight-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
}

.campaign-description {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

.campaign-impact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.impact-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- Campaign AI Sandbox Widget --- */
.sandbox-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  height: 600px;
}

.sandbox-controls {
  border-right: 1px solid var(--glass-border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(20, 12, 45, 0.02);
}

.controls-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.controls-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.preset-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: auto;
}

.preset-btn {
  background: rgba(20, 12, 45, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.preset-btn:hover {
  background: rgba(20, 12, 45, 0.06);
  border-color: rgba(var(--primary-rgb), 0.2);
  color: var(--text-main);
}

.preset-btn.active {
  background: rgba(var(--primary-rgb), 0.08);
  border-color: var(--primary);
  color: var(--text-main);
}

.btn-icon {
  font-size: 1.2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 245, 212, 0.1);
  transition: var(--transition-smooth);
}

.preset-btn.active .btn-icon {
  background: var(--primary);
  color: var(--text-dark);
}

.btn-label-wrap {
  display: flex;
  flex-direction: column;
}

.btn-preset-title {
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-preset-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.system-logs-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
}

.logs-header {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.logs-list {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.log-item.complete i {
  color: var(--primary);
}

.log-item.pending i {
  color: var(--accent);
}

.log-item.running i {
  color: var(--secondary);
}

/* Console Window */
.sandbox-console {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.console-header {
  background: rgba(7, 2, 26, 0.4);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.console-dots {
  display: flex;
  gap: 6px;
}

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

.console-dots .dot.red { background-color: #ff5f56; }
.console-dots .dot.yellow { background-color: #ffbd2e; }
.console-dots .dot.green { background-color: #27c93f; }

.console-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.console-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: var(--primary);
}

.console-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  background: #0a0618;
  color: #e5e0fa;
}

.prompt-display {
  margin-bottom: 16px;
}

.prompt-prefix {
  color: var(--secondary);
}

.prompt-text {
  color: #fff;
}

.pipeline-loader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.generation-output-container {
  flex: 1;
  overflow-y: auto;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.generation-output {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: #e5e0fa;
  line-height: 1.6;
}

.output-heading {
  color: var(--primary);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 8px;
  display: block;
}

.output-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

/* --- Core Expertise Section --- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.expertise-card {
  padding: 40px 30px;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.ai-color {
  background: rgba(0, 245, 212, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 245, 212, 0.2);
}

.comms-color {
  background: rgba(255, 0, 127, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(255, 0, 127, 0.2);
}

.creative-color {
  background: rgba(254, 228, 64, 0.1);
  color: var(--accent);
  border: 1px solid rgba(254, 228, 64, 0.2);
}

.analytics-color {
  background: rgba(123, 44, 191, 0.1);
  color: #a855f7;
  border: 1px solid rgba(123, 44, 191, 0.2);
}

.expertise-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.expertise-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.skills-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skills-bullets li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.skills-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 0.75rem;
}

/* --- Professional Experience Timeline --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 50%, #7b2cbf 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item.left-item {
  left: 0;
  padding-right: 40px;
}

.timeline-item.right-item {
  left: 50%;
  padding-left: 40px;
  justify-content: flex-start;
}

.timeline-dot {
  position: absolute;
  top: 25px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 3px solid var(--primary);
  z-index: 10;
}

.left-item .timeline-dot {
  right: -9px;
}

.right-item .timeline-dot {
  left: -9px;
}

.timeline-item:hover .timeline-dot {
  background-color: var(--secondary);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.timeline-content {
  padding: 30px;
  width: 100%;
}

.timeline-content.highlight-item {
  border-left: 3px solid var(--accent);
}

.time-stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.timeline-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-bullets li {
  font-size: 0.85rem;
  color: var(--text-main);
  position: relative;
  padding-left: 14px;
}

.timeline-bullets li::before {
  content: '•';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  top: -2px;
}

/* --- Details / Combined Section --- */
.details-section {
  background: rgba(20, 12, 45, 0.02);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.details-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.details-block {
  padding: 30px;
}

.details-block h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.block-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.block-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.text-accent {
  color: var(--accent);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tag-badge {
  background: rgba(254, 228, 64, 0.08);
  border: 1px solid rgba(254, 228, 64, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Tech Stack Panel styling */
.tech-stack-column {
  padding: 40px;
}

.tech-stack-column h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.tech-category {
  margin-bottom: 24px;
}

.tech-category:last-child {
  margin-bottom: 0;
}

.tech-category h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--primary);
  padding-left: 8px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  transition: var(--transition-smooth);
}

.tech-tags span:hover {
  background: rgba(0, 245, 212, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Contact Form Section --- */
.contact-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 0;
  overflow: hidden;
}

.contact-info-panel {
  padding: 50px;
  background: linear-gradient(180deg, rgba(123, 44, 191, 0.15) 0%, rgba(7, 2, 26, 0.15) 100%);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 245, 212, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(0, 245, 212, 0.15);
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-text a, .detail-text strong {
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.detail-text a:hover {
  color: var(--primary);
}

/* Contact Form Panel */
.contact-form-panel {
  padding: 50px;
  position: relative;
  background: rgba(4, 1, 15, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(20, 12, 45, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-group select option {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  background: rgba(20, 12, 45, 0.04);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.15);
}

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px dashed var(--primary);
  animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 245, 212, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

.success-content h3 {
  font-size: 1.6rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.success-content p {
  color: var(--text-muted);
  max-width: 320px;
  font-size: 0.9rem;
}

/* --- Footer --- */
.main-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(4, 1, 15, 0.9);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtitle {
    justify-content: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .campaign-grid {
    grid-template-columns: 1fr;
  }
  
  .sandbox-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .sandbox-controls {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .sandbox-console {
    height: 450px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card-wrap {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(7, 2, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--glass-border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    justify-content: flex-start;
  }
  
  .timeline-item.left-item {
    left: 0;
    padding-right: 0;
    padding-left: 45px;
  }
  
  .timeline-item.right-item {
    left: 0;
    padding-left: 45px;
  }
  
  .timeline-dot {
    left: 11px !important;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* --- Gallery Section --- */
.gallery-section {
  background: rgba(7, 2, 26, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--glass-border);
}

.gallery-info h4 {
  font-size: 1.15rem;
  color: var(--primary);
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

  }
}

/* --- Video Showcase Section --- */
.video-showcase-section {
  background: rgba(20, 12, 45, 0.02);
  border-top: 1px solid var(--glass-border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.video-card {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  padding: 16px;
}

.iframe-container {
  width: 100%;
  min-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20, 12, 45, 0.02);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
}

.iframe-container iframe {
  margin: 0 !important;
  border-radius: 12px !important;
  border: none !important;
}

.video-info {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-info h4 {
  font-size: 1.15rem;
  color: var(--text-main);
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}


