/* ==========================================
   CSS CUSTOM PROPERTIES & RESET
   ========================================== */

:root {
  /* Balanced Multi-Tone Color Palette */
  --primary-color: #0EA5E9; /* Sky Blue */
  --secondary-color: #8B5CF6; /* Violet */
  --accent-color: #06B6D4; /* Cyan */
  --accent-orange: #FF6B35; /* Refreshing Orange */
  --accent-light: #A78BFA; /* Light Violet */
  --accent-warm: #F97316; /* Warm Orange */
  
  /* Color names */
  --electric-blue: #0EA5E9;
  --violet-purple: #8B5CF6;
  --deep-cyan: #06B6D4;
  --vibrant-orange: #FF6B35;
  --light-violet: #A78BFA;
  
  /* Background colors */
  --bg-dark-start: #0A0A23;
  --bg-dark-end: #1A1A3E;
  --white: #FFFFFF;
  --text-light: #E5E5E5;
  --text-gray: #B0B0B0;
  --black: #000000;
  
  /* Light Mode Colors */
  --bg-light-start: #F8FAFC;
  --bg-light-end: #F1F5F9;
  --text-dark: #000000;
  --text-medium: #1E293B;
  --card-light: #FFFFFF;
  --border-light: #E2E8F0;
  
  /* Dynamic Colors (default to light theme) */
  --bg-primary: var(--bg-light-start);
  --bg-secondary: var(--bg-light-end);
  --text-primary: var(--black);
  --text-secondary: var(--text-medium);
  --text-muted: var(--text-medium);
  --card-bg: var(--card-light);
  --border-color: var(--border-light);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 120px 0;
  --mobile-section-padding: 80px 0;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.15);
  --shadow-neon: 0 0 20px var(--electric-blue);
  --shadow-orange: 0 0 20px var(--vibrant-orange);
  
  /* Balanced Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--violet-purple));
  --gradient-warm: linear-gradient(135deg, var(--accent-orange), var(--accent-warm));
  --gradient-cool: linear-gradient(135deg, var(--accent-color), var(--light-violet));
  --gradient-balanced: linear-gradient(135deg, var(--accent-orange), var(--primary-color), var(--violet-purple));
  --gradient-bg: linear-gradient(135deg, var(--bg-light-start), var(--bg-light-end));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: var(--bg-dark-start);
  --bg-secondary: var(--bg-dark-end);
  --text-primary: var(--white);
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-bg: linear-gradient(135deg, var(--bg-dark-start), var(--bg-dark-end));
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.2);
}

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--gradient-bg);
  overflow-x: hidden;
  transition: background var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Ensure consistent font inheritance */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Base typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* Tighter spacing for multi-line hero titles */
.hero-title .hero-title-main,
.hero-title .hero-title-accent,
.title-line {
  line-height: 0.85;
}

p, li, span {
  font-family: var(--font-body);
  line-height: 1.5;
}

/* ==========================================
   LOADING SCREEN
   ========================================== */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  overflow: hidden;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
  position: relative;
  z-index: 10;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--electric-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.8rem;
}

/* Floating Likes Animation */
.floating-likes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-like {
  position: absolute;
  font-size: 2rem;
  color: #e91e63;
  animation: floatUp 2s linear infinite;
  opacity: 0;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */

.cursor,
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9998;
  transition: transform var(--transition-fast);
}

.cursor {
  width: 20px;
  height: 20px;
  background: transparent;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor::before {
  content: '♥';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #e91e63;
  text-shadow: 0 0 10px rgba(233, 30, 99, 0.6);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.cursor-follower {
  width: 32px;
  height: 32px;
  border: 2px solid #e91e63;
  background: transparent;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.1s ease;
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}

.cursor-follower.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(233, 30, 99, 0.1);
  box-shadow: 0 0 25px rgba(233, 30, 99, 0.5);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-normal);
}

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

[data-theme="dark"] .nav {
  background: rgba(10, 10, 35, 0.95);
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(10, 10, 35, 0.98);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 4rem;
}

.nav-logo {
  flex-shrink: 0;
  min-width: fit-content;
}

.nav-logo .logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Rotating Text Animation */
.rotating-text {
  display: inline-block !important;
  position: relative;
  color: var(--neon-purple) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  animation: textRotate 0.6s ease-in-out;
  white-space: nowrap;
  font-weight: 800 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: var(--font-headings) !important;
  font-size: inherit !important;
}

@keyframes textRotate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg) scale(0.8);
  }
  50% {
    opacity: 0.5;
    transform: rotateX(-45deg) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.7rem;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.theme-toggle {
  margin-left: 0;
}

.theme-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: clamp(3.6rem, 5.5vw, 5.6rem);
  line-height: 1.0;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 2.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
}

[data-theme="dark"] .experience-hero .title-line {
  color: var(--white);
}

[data-theme="dark"] .experience-hero {
  background: linear-gradient(135deg, var(--bg-dark-start), var(--bg-dark-end)) !important;
}

[data-theme="dark"] .experience-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(161, 0, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 138, 76, 0.08) 0%, transparent 30%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.btn-gradient:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-warm {
  background: var(--gradient-warm);
  color: white;
  border: 2px solid transparent;
}

.btn-warm:hover {
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-balanced {
  background: var(--gradient-balanced);
  color: white;
  border: 2px solid transparent;
}

.btn-balanced:hover {
  background: linear-gradient(135deg, #FF8C42, #0EA5E9, #A78BFA);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #f8fafc 50%, #FFFFFF 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

#chart-background {
  width: 100%;
  height: 100%;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
}

.hero-title-main {
  display: block;
  color: #000000;
  margin-bottom: -0.03em;
  font-weight: 900;
  transform: translateY(0);
  animation: slideInDown 0.8s ease-out;
}

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

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  animation: slideInUp 0.8s ease-out 0.2s both;
  background-size: 200% 200%;
  animation: slideInUp 0.8s ease-out 0.2s both, gradientShift 6s ease infinite;
}

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

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #1f2937;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--gradient-primary);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid var(--electric-blue);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(241, 245, 249, 1) 0%, rgba(226, 232, 240, 0.8) 50%, rgba(248, 250, 252, 1) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* About Section - Perfect Grid Symmetry */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 70vh;
    position: relative;
}

.about-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 2rem;
}

.left-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.04), rgba(14, 165, 233, 0.06));
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(10px);
}

/* Personal Introduction Section */
.personal-intro {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    margin-bottom: 0;
}

.personal-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

.profile-photo {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(255, 107, 53, 0.9));
    border-radius: 50%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-photo:hover .photo-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.intro-text h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 2rem;
}

.academic-highlight {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    flex: 1;
    min-height: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.academic-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.academic-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.academic-icons i {
    font-size: 2.2rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.academic-icons i:nth-child(2) {
    animation-delay: 1s;
}

.academic-content {
    position: relative;
    z-index: 1;
}

.academic-content h4 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.degree-info {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}

.studies-details {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 107, 53, 0.06);
    border-radius: 12px;
    border-left: 4px solid var(--vibrant-orange);
}

.studies-label {
    font-weight: 600;
    color: var(--vibrant-orange);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.studies-list {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.5rem;
    margin: 0;
    opacity: 0.9;
}

.thesis-section {
    padding: 1.5rem 1.8rem;
    background: rgba(14, 165, 233, 0.06);
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    margin-top: 0;
}

.thesis-label {
    font-weight: 600;
    color: #0ea5e9;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    display: block;
}

.thesis-title {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.4rem;
    margin: 0;
}

.animated-stats {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.animated-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: #FFFFFF !important;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.stat-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(96, 165, 250, 0.3) !important;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #000000 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section - Right Side */
.about-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
}

/* Responsive Layout Fixes */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }
    
    .about-left {
        order: 1;
        padding-right: 0;
    }
    
    .about-right {
        order: 2;
        padding-left: 0;
    }
    
    .personal-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .skills-hub {
        min-height: auto;
    }
    
    .skill-groups {
        gap: 1.5rem;
    }
    
    .skill-group h4 {
        font-size: 1.3rem;
    }
    
    .skill-chips {
        gap: 0.6rem;
    }
    
    .skill-bubble {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .academic-highlight {
        padding: 2rem;
    }
    
    .animated-stats {
        padding: 2rem;
    }
    
    .skills-hub {
        padding: 2rem;
    }
}

.skills-hub {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex !important;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.04), rgba(14, 165, 233, 0.06));
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
}

.skills-hub h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
    background: var(--gradient-balanced);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.skill-groups {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.skill-group {
    margin-bottom: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.skill-group h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skill-group.warm h4 {
    color: var(--vibrant-orange);
    border-bottom-color: var(--vibrant-orange);
}

.skill-group.balanced h4 {
    background: var(--gradient-balanced);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid var(--vibrant-orange);
}

.skill-chips {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.8rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.skill-bubble {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

.skill-bubble.primary {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none;
    font-weight: 600;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

.skill-bubble.warm {
    background: linear-gradient(135deg, var(--electric-blue), var(--light-blue)) !important;
    color: #000000 !important;
    border: none;
    font-weight: 600;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

.skill-bubble.balanced {
    background: var(--gradient-balanced) !important;
    color: #000000 !important;
    border: none;
    font-weight: 600;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
}

.skill-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    border-color: var(--electric-blue);
}

.skill-bubble.primary:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.skill-bubble.warm:hover {
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.skill-bubble.balanced:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px) scale(1.02);
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-8px) scale(1.02); 
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}/* ==========================================
   PORTFOLIO SECTION
   ========================================== */

.portfolio {
  padding: var(--section-padding);
}

.portfolio-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.project-card {
  display: none;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform var(--transition-normal);
}

.project-card.active {
  display: block;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  height: 250px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-placeholder {
  font-size: 6rem;
  color: white;
  opacity: 0.7;
}

.project-content {
  padding: 3rem;
}

.project-content h3 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.project-content p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.project-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.metric {
  padding: 0.8rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--electric-blue);
}

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

.tag {
  padding: 0.6rem 1.2rem;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1.8rem;
}

.carousel-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background var(--transition-fast);
}

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

/* Portfolio CTA Button */
.portfolio-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
}

/* Portfolio Visual Grid */
.portfolio-visual-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 2rem;
  margin: 5rem 0;
  position: relative;
  z-index: 10;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  color: #000000;
}

.portfolio-item.featured {
  grid-row: 1 / 3;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.portfolio-visual {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.visual-content {
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Food Campaign Visual */
.food-campaign {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.brand-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-logo {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.campaign-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-bubble {
  background: rgba(255,255,255,0.9);
  color: #8b5cf6;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-posts {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.post-mock {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  padding: 1.5rem;
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
}

.post-mock i {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.post-mock span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Wellness Campaign Visual */
.wellness-campaign {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.wellness-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.growth-chart {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 80px;
}

.chart-bar {
  width: 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 6px;
  height: var(--height);
  animation: chartGrow 1.5s ease-out;
}

@keyframes chartGrow {
  from { height: 0; }
  to { height: var(--height); }
}

.wellness-stat {
  background: rgba(255,255,255,0.9);
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.6rem;
}

.platform-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.platform-icons i {
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.platform-icons i:hover {
  color: white;
  transform: scale(1.2);
}

/* Advocacy Campaign Visual */
.advocacy-campaign {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.advocacy-elements {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.team-visual {
  text-align: center;
}

.team-icon {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(10px);
}

.team-icon i {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.team-icon span {
  font-size: 1.1rem;
  font-weight: 600;
}

.metric-circle {
  background: rgba(255,255,255,0.9);
  color: #11998e;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

/* Fashion Campaign Visual */
.fashion-campaign {
  background: linear-gradient(135deg, #654ea3, #eaafc8);
}

.fashion-elements {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.otrium-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
}

.otrium-brand i {
  font-size: 4rem;
  opacity: 0.9;
}

.otrium-brand span {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 700;
}

.campaign-type {
  background: rgba(255,255,255,0.9);
  color: #654ea3;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.4rem;
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #FFFFFF !important;
  padding: 2rem;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FFFFFF !important;
}

.portfolio-overlay p {
  font-size: 1.6rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #FFFFFF !important;
}

.view-case-study {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-case-study:hover {
  gap: 1rem;
}

.view-case-study i {
  transition: transform 0.3s ease;
}

.view-case-study:hover i {
  transform: translateX(5px);
}

/* Portfolio CTA Button */
.portfolio-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
}

/* Portfolio Visual Grid PDF Preview */
.pdf-preview {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.pdf-preview:hover {
  transform: scale(1.05);
}

.pdf-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.pdf-cover {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.view-work-btn,
.view-experience-btn,
.view-influencer-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
}

.view-work-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.view-experience-btn {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.view-influencer-btn {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.view-work-btn::before,
.view-experience-btn::before,
.view-influencer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.view-work-btn:hover::before,
.view-experience-btn:hover::before,
.view-influencer-btn:hover::before {
  left: 100%;
}

.view-work-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.view-experience-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: #000000;
  color: #FFFFFF;
}

.view-influencer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.view-work-btn i,
.view-experience-btn i,
.view-influencer-btn i {
  transition: transform 0.3s ease;
}

.view-work-btn:hover i,
.view-experience-btn:hover i,
.view-influencer-btn:hover i {
  transform: translateX(5px);
}

.cta-subtitle {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-style: italic;
}

/* Portfolio Preview Content */
.portfolio-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-preview-img {
  transform: scale(1.05);
}

.portfolio-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.5s ease;
  opacity: 0;
  background: var(--card-bg);
  border-radius: 12px;
}

.portfolio-item:hover .portfolio-preview-video {
  transform: scale(1.05);
}

/* Video Error Fallback Styles */
.video-error-fallback {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  border-radius: 12px;
  z-index: 2;
  color: #FFFFFF !important;
}

.video-error-fallback h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #FFFFFF !important;
}

.video-error-fallback p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: #FFFFFF !important;
}

.video-error-fallback small {
  color: #FFFFFF !important;
}

.video-error-fallback i {
  color: #FFFFFF !important;
}

/* Loading state for portfolio visuals */
.portfolio-visual {
  position: relative;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.portfolio-item:hover .video-play-overlay {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pdf-preview-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(161, 0, 255, 0.1));
  color: var(--text-primary);
  text-align: center;
}

.pdf-preview-home i {
  font-size: 4rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.pdf-preview-home span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================
   PLAYGROUND SECTION
   ========================================== */

.playground {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.8) 0%, rgba(241, 245, 249, 1) 50%, rgba(248, 250, 252, 1) 100%);
  position: relative;
  overflow: hidden;
}

.playground::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.playground-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1.2rem 2.4rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.playground-content {
  display: none;
}

.playground-content.active {
  display: block;
}

/* Funnel Builder */
.funnel-builder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.funnel-sidebar h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.funnel-elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel-element {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  cursor: grab;
  transition: all var(--transition-fast);
}

.funnel-element:hover {
  transform: translateX(5px);
  background: var(--gradient-primary);
  color: white;
}

.funnel-element:active {
  cursor: grabbing;
}

.funnel-canvas h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.funnel-drop-zone {
  min-height: 400px;
  border: 2px dashed var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color var(--transition-fast);
}

.funnel-drop-zone.drag-over {
  border-color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.1);
}

.drop-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
}

.drop-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.funnel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  position: relative;
}

.funnel-item .remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
}

/* Marketing Fun Facts Styles */
.marketing-facts {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* 3D Icon Decorations */
.icon-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.icon-3d {
    position: absolute;
    font-size: 3rem;
    animation: float3d 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    transform-style: preserve-3d;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.icon-3d i {
    display: block;
    color: var(--primary-color);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(14, 165, 233, 0.3),
        0 0 20px rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
}

.icon-3d:hover i {
    color: var(--accent-2);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(249, 115, 22, 0.5),
        0 0 30px rgba(249, 115, 22, 0.3);
    transform: scale(1.1);
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 8%; animation-delay: 1s; }
.icon-3 { top: 25%; left: 3%; animation-delay: 2s; }
.icon-4 { top: 35%; right: 5%; animation-delay: 0.5s; }
.icon-5 { top: 45%; left: 7%; animation-delay: 1.5s; }
.icon-6 { top: 55%; right: 3%; animation-delay: 2.5s; }
.icon-7 { top: 65%; left: 5%; animation-delay: 3s; }
.icon-8 { top: 75%; right: 7%; animation-delay: 3.5s; }
.icon-9 { top: 85%; left: 4%; animation-delay: 4s; }
.icon-10 { top: 20%; right: 2%; animation-delay: 4.5s; }

@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(15deg) rotateY(10deg) rotateZ(5deg);
    }
    50% {
        transform: translateY(-15px) rotateX(-10deg) rotateY(15deg) rotateZ(-3deg);
    }
    75% {
        transform: translateY(-25px) rotateX(8deg) rotateY(-8deg) rotateZ(7deg);
    }
}

/* Facts Carousel */
.facts-carousel {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.fact-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.5s ease;
}

.fact-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.fact-slide.prev {
    transform: translateX(-100px) scale(0.9);
}

.fact-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(161, 0, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.fact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: all 0.3s ease;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.fact-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.fact-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.fact-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.fact-card p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.fact-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--vibrant-orange), #ff6b35);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

/* Carousel Controls */
.facts-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.facts-prev,
.facts-next {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facts-prev:hover,
.facts-next:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.facts-indicators {
    display: flex;
    gap: 0.8rem;
}

.facts-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.facts-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.marketing-jokes {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 240, 0.1));
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.marketing-jokes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.marketing-jokes h3 {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.joke-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.joke-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.joke-item.active {
    display: block;
    opacity: 1;
}

.joke-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ROI Calculator */
.roi-calculator {
  max-width: 600px;
  margin: 0 auto;
}

.roi-calculator h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.calculator-form {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.input-group label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-primary);
}

.input-group input {
  padding: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  transition: border-color var(--transition-fast);
}

.input-group input:focus {
  outline: none;
  border-color: var(--electric-blue);
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.roi-results.show {
  opacity: 1;
  transform: translateY(0);
}

.result-card {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  backdrop-filter: blur(20px);
}

.result-card h4 {
  font-family: var(--font-headings);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--electric-blue);
}

/* Marketing Quiz */
.marketing-quiz {
  max-width: 700px;
  margin: 0 auto;
}

.marketing-quiz h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.quiz-question {
  display: none;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.quiz-question.active {
  display: block;
}

.quiz-question h4 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.quiz-options {
  display: grid;
  gap: 1.5rem;
}

.quiz-option {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  font-family: var(--font-body);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.quiz-option:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(5px);
}

.quiz-option.correct {
  background: var(--deep-cyan);
  color: white;
  border-color: var(--deep-cyan);
}

.quiz-option.wrong {
  background: var(--hot-pink);
  color: white;
  border-color: var(--hot-pink);
}

.quiz-results {
  display: none;
  text-align: center;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.quiz-results.show {
  display: block;
}

.quiz-results h4 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.score-display {
  margin-bottom: 2rem;
}

.score-text {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1.8rem;
  margin-right: 1rem;
}

.score-value {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 3rem;
  color: var(--electric-blue);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 0.9) 50%, rgba(226, 232, 240, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

.contact-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: transform var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-5px);
}

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

.contact-card h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  line-height: 1.0;
}

.contact-card p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1.8rem;
}

.calendly-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.calendly-link:hover {
  color: var(--neon-purple);
}

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

.social-links h3 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 2rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.contact-form-container {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

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

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

.form-group label {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  transition: border-color var(--transition-fast);
  resize: vertical;
}

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

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  min-height: 120px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: var(--font-body);
  color: #333333;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-family: var(--font-body);
  color: #333333;
  font-size: 1.4rem;
}

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */

/* Experience Page Hero */
.experience-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(161, 0, 255, 0.08), rgba(255, 138, 76, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 12rem 0 8rem;
  transition: background 0.3s ease;
}

.experience-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 5;
}

.experience-hero .hero-title {
  font-family: var(--font-headings);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.85;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.experience-hero .title-line {
  display: block;
  color: #222;
  transition: color 0.3s ease;
}

.experience-hero .gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: 2rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.experience-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(161, 0, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 138, 76, 0.08) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s ease;
}

[data-theme="dark"] .experience-hero .title-line {
  color: #fff;
}

[data-theme="dark"] .experience-hero .hero-subtitle {
  color: #eee;
}

.quick-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.quick-stat {
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 160px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #000000;
  gap: 0.8rem;
}

.quick-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-stat .stat-number {
  display: block;
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.quick-stat .stat-label {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #000000;
  font-weight: 500;
  margin: 0;
}

/* 3D Metric Visuals */
.metric-visual {
  width: 50px;
  height: 50px;
  margin: 0;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.rocket-3d {
  background: linear-gradient(145deg, #ff6b6b, #ee5a52);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3),
              inset 2px 2px 4px rgba(255, 255, 255, 0.3),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
  transform: rotate(-45deg);
}

.rocket-3d::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(145deg, #fff, #f0f0f0);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.target-3d {
  background: linear-gradient(145deg, #0ea5e9, #0284c7);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3),
              inset 2px 2px 4px rgba(255, 255, 255, 0.3),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}

.target-3d::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.target-3d::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.chart-3d {
  background: linear-gradient(145deg, #a855f7, #9333ea);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(168, 85, 247, 0.3),
              inset 2px 2px 4px rgba(255, 255, 255, 0.3),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.chart-3d::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: linear-gradient(to top,
    rgba(255, 255, 255, 0.8) 20%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.4) 60%,
    transparent 100%);
  clip-path: polygon(10% 100%, 30% 60%, 50% 80%, 70% 40%, 90% 20%, 90% 100%);
}

.growth-3d {
  background: linear-gradient(145deg, #10b981, #059669);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3),
              inset 2px 2px 4px rgba(255, 255, 255, 0.3),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.growth-3d::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid rgba(255, 255, 255, 0.8);
}

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

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.5;
  z-index: 1;
}

.floating-icon:nth-child(1) { top: 10%; left: 1%; }
.floating-icon:nth-child(2) { top: 10%; right: 1%; }
.floating-icon:nth-child(3) { bottom: 15%; left: 1%; }
.floating-icon:nth-child(4) { bottom: 15%; right: 1%; }
.floating-icon:nth-child(5) { top: 60%; left: 1%; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* Experience Timeline */
.experience-timeline {
  padding: 12rem 0 10rem 0;
  background: linear-gradient(180deg, 
    rgba(248, 250, 252, 1) 0%, 
    rgba(241, 245, 249, 0.8) 30%,
    rgba(226, 232, 240, 0.6) 60%,
    rgba(248, 250, 252, 0.9) 100%);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

[data-theme="dark"] .experience-timeline {
  background: linear-gradient(180deg, 
    var(--bg-dark-start) 0%, 
    var(--bg-dark-end) 50%,
    var(--bg-dark-start) 100%);
}

.experience {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, var(--primary-color)15 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, var(--accent-color)15 0%, transparent 50%);
  opacity: 0.1;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border: 4px solid var(--card-bg);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px var(--primary-color)40;
}

.timeline-item.active .timeline-dot {
  background: var(--accent-2);
  box-shadow: 0 0 25px var(--accent-2)60;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 25px var(--accent-2)60;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 30px var(--accent-2)80;
  }
}

.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  margin: 0 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
              0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.03) 0%, 
    rgba(139, 92, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2),
              0 10px 40px rgba(139, 92, 246, 0.15),
              0 0 80px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.4);
}

.timeline-item:hover .timeline-content::before {
  opacity: 1;
}

[data-theme="dark"] .timeline-content {
  background: rgba(26, 26, 62, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .timeline-item:hover .timeline-content {
  background: rgba(26, 26, 62, 0.85);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3),
              0 10px 40px rgba(139, 92, 246, 0.2);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  margin-left: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: var(--card-bg);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: var(--card-bg);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.company-info h3 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  line-height: 1.0;
}

.location {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.period {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-2)15;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.role-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.achievements ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.achievements li {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.timeline-item.active .achievements li {
  opacity: 1;
  transform: translateX(0);
}

.achievements li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.achievements li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.skills-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.focus-tag {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: none;
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}

.timeline-item.active .focus-tag {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.focus-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Career Highlights Section */
.career-highlights-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, 
    rgba(241, 245, 249, 1) 0%, 
    rgba(226, 232, 240, 0.8) 50%,
    rgba(248, 250, 252, 1) 100%);
  position: relative;
  overflow: hidden;
}

.career-highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .career-highlights-section {
  background: linear-gradient(135deg, 
    var(--bg-dark-end) 0%, 
    var(--bg-dark-start) 100%);
}

.career-highlights {
  margin-top: 6rem;
  padding: 3rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.career-highlights h3 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.career-highlights h3::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

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

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.05) 0%, 
    rgba(139, 92, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.highlight-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
              0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.highlight-item:hover::before {
  opacity: 1;
}

[data-theme="dark"] .highlight-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .highlight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.35),
              0 10px 40px rgba(139, 92, 246, 0.25);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.highlight-icon i {
  font-size: 2.8rem;
  color: white;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px var(--primary-color)40;
}

.highlight-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-description {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Education Section */
.education-section {
  padding: 8rem 0;
  background: var(--bg-primary);
  position: relative;
}

.education-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.education-content {
  margin-top: 3rem;
}

.education-main {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 3.5rem 3.2rem 3rem 3.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.education-main,
.education-main * {
  color: #000000 !important;
}

.education-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.university-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.university-details h3 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.degree-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.5;
  background: transparent !important;
}

.study-period {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.location {
  display: block;
  font-size: 1.3rem;
  color: var(--text-tertiary);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.university-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -0.5rem;
}

.university-icon i {
  font-size: 3rem;
  color: white;
}

.degree-highlights {
  display: flex;
  gap: 5rem;
  justify-content: center;
  margin-top: 2rem;
}

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

.highlight-stat .stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-stat .stat-label {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.activities-section {
  margin-bottom: 4rem;
}

.activities-section h4 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
}

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

.activity-category {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.activity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.category-header i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.category-header h5 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.activity-item {
  padding: 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.activity-item.featured {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.activity-item:hover {
  transform: translateX(5px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.activity-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.activity-role {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.education-achievements h4 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
}

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

.achievement-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.achievement-item i {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: white;
  flex-shrink: 0;
}

.achievement-content h5 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.achievement-content p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Industry Expertise Section */
.industry-expertise {
  padding: 10rem 0;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 1) 0%, 
    rgba(241, 245, 249, 0.9) 50%,
    rgba(226, 232, 240, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.industry-expertise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .industry-expertise {
  background: linear-gradient(135deg, 
    var(--bg-dark-start) 0%, 
    var(--bg-dark-end) 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Industry Expertise Carousel */
.expertise-carousel {
  max-width: 500px;
  margin: 1.5rem auto 0;
  position: relative;
}

.expertise-track {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
}

.expertise-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: none;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  display: none;
}

.expertise-slide:first-child {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  display: block;
}

.expertise-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  display: block;
}

.expertise-slide.prev {
  opacity: 0;
  display: none;
}

.expertise-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.expertise-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.05) 0%, 
    rgba(139, 92, 246, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.expertise-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
              0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.expertise-item:hover::before {
  opacity: 1;
}

[data-theme="dark"] .expertise-item {
  background: rgba(26, 26, 62, 0.6);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .expertise-item:hover {
  background: rgba(26, 26, 62, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
              0 10px 40px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
  position: relative;
  z-index: 1;
}

.expertise-item:hover .expertise-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5),
              0 0 40px rgba(139, 92, 246, 0.3);
}

.expertise-icon i {
  font-size: 2.4rem;
  color: white;
}

.expertise-item h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.expertise-item p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.expertise-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.expertise-brands span {
  font-family: var(--font-body);
  font-size: 1.3rem;
  background: rgba(14, 165, 233, 0.1);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.expertise-brands span:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

[data-theme="dark"] .expertise-brands span {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

[data-theme="dark"] .expertise-brands span:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: rgba(14, 165, 233, 0.5);
}

/* Expertise Carousel Controls */
.expertise-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.8rem;
}

.expertise-prev,
.expertise-next {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.expertise-prev:hover,
.expertise-next:hover {
  background: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.expertise-prev i,
.expertise-next i {
  font-size: 1.8rem;
}

.expertise-indicators {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.expertise-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.expertise-indicators .indicator:first-child {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.expertise-indicators .indicator.active {
  background: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.expertise-indicators .indicator:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Experience CTA Section */
.experience-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  text-align: center;
}

.experience-cta .cta-content h2 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.experience-cta .cta-content p {
  font-family: var(--font-body);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
}

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

.cta-buttons .btn {
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .portfolio-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .view-work-btn,
  .view-experience-btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-dot {
    left: 2rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 6rem;
    margin-right: 1rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-left-color: transparent;
    border-right-color: var(--card-bg);
  }
  
  .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .period {
    align-self: flex-start;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }
  
  .career-highlights {
    padding: 2rem;
    margin-top: 4rem;
  }
  
  .timeline-content {
    padding: 2rem;
  }
  
  .expertise-carousel {
    max-width: 100%;
  }
  
  .expertise-track {
    min-height: 420px;
  }
  
  .expertise-item {
    padding: 2rem 1.6rem;
  }
  
  .expertise-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .expertise-icon i {
    font-size: 2.4rem;
  }
  
  .expertise-item h3 {
    font-size: 2rem;
  }
  
  .expertise-item p {
    font-size: 0.95rem;
  }
  
  .expertise-carousel-controls {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .expertise-prev,
  .expertise-next {
    width: 45px;
    height: 45px;
  }
  
  .expertise-prev i,
  .expertise-next i {
    font-size: 1.6rem;
  }
  
  .quick-stats {
    gap: 1.5rem;
  }
  
  .quick-stat {
    min-width: 120px;
    padding: 1.5rem;
  }
  
  .experience-hero .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-icon {
    display: none;
  }
  
  /* Portfolio Visual Grid Mobile */
  .portfolio-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    margin: 3rem 0;
  }
  
  .portfolio-item.featured {
    grid-row: auto;
  }
  
  .visual-content {
    padding: 2rem;
  }
  
  .brand-logos {
    justify-content: center;
  }
  
  .campaign-stats {
    justify-content: center;
  }
  
  .social-posts {
    flex-direction: column;
    gap: 1rem;
  }
  
  .platform-icons {
    gap: 1rem;
  }
  
  .platform-icons i {
    font-size: 2.4rem;
  }
  
  .advocacy-elements {
    gap: 2rem;
  }
  
  .metric-circle {
    width: 70px;
    height: 70px;
    font-size: 1.1rem;
  }
  
  .team-icon {
    width: 80px;
    height: 80px;
  }
  
  .team-icon i {
    font-size: 2rem;
  }
  
  .otrium-brand i {
    font-size: 3rem;
  }
  
  .otrium-brand span {
    font-size: 2rem;
  }
  
  /* Education Section Mobile */
  .education-main {
    padding: 2.5rem;
  }
  
  .university-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  
  .university-details h3 {
    font-size: 2.4rem;
  }
  
  .degree-title {
    font-size: 1.6rem;
  }
  
  .degree-highlights {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .highlight-stat .stat-number {
    font-size: 2.8rem;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .activity-category {
    padding: 2rem;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .category-header h5 {
    font-size: 1.6rem;
  }
  
  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .achievement-content h5 {
    font-size: 1.6rem;
  }
}

/* ==========================================
   INFLUENCER MARKETING PAGE STYLES
   ========================================== */

/* Influencer Hero Section */
.influencer-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(161, 0, 255, 0.08), rgba(255, 138, 76, 0.06));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.influencer-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(161, 0, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 138, 76, 0.08) 0%, transparent 30%);
  pointer-events: none;
}

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

.influencer-hero .hero-title {
  font-family: var(--font-headings);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.influencer-hero .title-line {
  display: block;
  color: var(--text-primary);
}

.influencer-hero .gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.influencer-hero .hero-subtitle {
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 200px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #000000;
  gap: 0.8rem;
}

.hero-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.hero-stat .stat-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  display: block;
  margin: 0;
}

.hero-stat .stat-label {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Portfolio Overview */
.portfolio-overview {
  padding: 10rem 0;
  background: linear-gradient(135deg, rgba(241, 245, 249, 1) 0%, rgba(226, 232, 240, 0.8) 50%, rgba(248, 250, 252, 1) 100%);\n  position: relative;\n  overflow: hidden;\n}\n\n.portfolio-overview::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: \n    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),\n    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);\n  pointer-events: none;\n  z-index: 0;\n}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.overview-card {
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

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

.overview-card h3 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.overview-card p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PR-Style Features */
.pr-features {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pr-feature-main {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-primary) 100%);
  padding: 4rem 3rem;
  border-radius: 25px;
  border: 2px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.pr-feature-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color)08 0%, var(--accent-color)05 100%);
  opacity: 0.5;
}

.pr-feature-main > * {
  position: relative;
  z-index: 2;
}

.pr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.pr-badge i {
  font-size: 1.2rem;
}

.pr-feature-main h3 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.pr-feature-main p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.pr-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pr-metrics .metric {
  display: inline-block;
  background: rgba(255, 140, 0, 0.1);
  color: #FF8C00;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.pr-features-grid {
  display: grid;
  gap: 2.5rem;
}

.pr-feature-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pr-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  border-color: var(--primary-color);
}

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

.feature-header i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

.feature-header h4 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.pr-feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Case Studies */
.case-studies {
  padding: 10rem 0;
  background: var(--bg-primary);
}

.case-study {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 4rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.case-study.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, 
    rgba(14, 165, 233, 0.05) 0%, 
    rgba(59, 130, 246, 0.05) 100%
  );
}

.case-study.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.case-header {
  margin-bottom: 3rem;
}

.case-header h3 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Case Details */
.case-details {
  margin-bottom: 3rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-light);
}

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

.detail-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Case Description */
.case-description {
  margin-bottom: 3rem;
}

.case-description h4 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
}

.case-description h4:first-child {
  margin-top: 0;
}

.case-description p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.case-description ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.case-description li {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.case-description li::before {
  content: '▸';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Case Links */
.case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.case-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: white;
}

.case-link i {
  font-size: 1.6rem;
}

/* Campaign Metrics */
.campaign-metrics {
  padding: 10rem 0;
  background: var(--bg-secondary);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.metric-card {
  background: #FFFFFF;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card * {
  color: #000000 !important;
}

.metric-card .metric-number {
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.metric-card .metric-detail {
  color: #333333 !important;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.metric-number {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

.metric-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.metric-detail {
  font-size: 1.3rem;
  color: #333333;
}

/* Testimonials */
.testimonials {
  padding: 10rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 4rem 3rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  color: var(--primary-color);
  font-family: serif;
  opacity: 0.3;
}

.testimonial-content p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 3rem;
}

.testimonial-author h4 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  font-size: 1.4rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 1rem;
}

.contact-link {
  font-size: 1.3rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Influencer CTA */
.influencer-cta {
  padding: 10rem 0;
  background: var(--bg-secondary);
  text-align: center;
}

.influencer-cta h2 {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.influencer-cta p {
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsiveness for Influencer Page */
@media (max-width: 768px) {
  .influencer-hero {
    padding-top: 12rem;
  }
  
  .influencer-hero .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .hero-stat {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    height: 160px;
  }
  
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .overview-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }
  
  .overview-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .overview-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .overview-card p {
    font-size: 1.2rem;
  }
  
  .case-study {
    padding: 2.5rem;
  }
  
  .case-header h3 {
    font-size: 2.4rem;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .case-description h4 {
    font-size: 1.8rem;
  }
  
  .case-description p {
    font-size: 1.4rem;
  }
  
  .case-links {
    flex-direction: column;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .metric-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
  }
  
  .metric-label {
    font-size: 1.3rem;
    color: #000000 !important;
  }
  
  .metric-detail {
    font-size: 1.1rem;
    color: #333333 !important;
  }
  
  .metric-card {
    background: #FFFFFF !important;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonial-card {
    padding: 3rem 2rem;
  }
  
  .influencer-cta h2 {
    font-size: 3rem;
  }
  
  .influencer-cta p {
    font-size: 1.6rem;
  }
}

/* ==========================================
   PERFORMANCE & MOBILE OPTIMIZATIONS
   ========================================== */

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile for better performance */
  * {
    animation-duration: 0.3s !important;
    transition-duration: 0.2s !important;
  }
  
  /* Optimize font rendering */
  html {
    font-size: 55%; /* Slightly smaller base font size */
    text-rendering: optimizeSpeed;
  }
  
  /* Simplify complex gradients on mobile */
  .skill-bubble.primary {
    background: var(--primary-color) !important;
  }
  
  /* Touch target optimization for accessibility */
  .btn, .skill-bubble, button, .nav-link {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Reduce backdrop blur on mobile for performance */
  .card, .academic-highlight, .stat-card {
    backdrop-filter: blur(4px) !important;
  }
}

/* Reduce motion for users with accessibility preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Light Mode Text Color Enforcement */
:root {
  --text-color: var(--black);
}

[data-theme="dark"] {
  --text-color: var(--white);
}

[data-theme="light"], body:not([data-theme="dark"]) {
  color: var(--black);
}

[data-theme="dark"] {
  color: var(--white);
}

[data-theme="light"] p, [data-theme="light"] span, [data-theme="light"] div, [data-theme="light"] li {
  color: var(--black);
}

[data-theme="dark"] p, [data-theme="dark"] span, [data-theme="dark"] div, [data-theme="dark"] li {
  color: var(--white) !important;
}

/* Ensure experience page text is black in light mode and white in dark mode */
[data-theme="light"] .experience-content, [data-theme="light"] .experience-description,
body:not([data-theme="dark"]) .experience-content, body:not([data-theme="dark"]) .experience-description {
  color: var(--black) !important;
}

[data-theme="dark"] .experience-content, [data-theme="dark"] .experience-description {
  color: var(--white) !important;
}

/* Additional dark mode text visibility rules */
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .company-info,
[data-theme="dark"] .location,
[data-theme="dark"] .date,
[data-theme="dark"] .description,
[data-theme="dark"] .university-details,
[data-theme="dark"] .degree-info,
[data-theme="dark"] .thesis-title {
  color: var(--white) !important;
}

/* Comprehensive dark mode text visibility - catch all */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .fact-card p,
[data-theme="dark"] .contact-card p,
[data-theme="dark"] .marketing-quiz p,
[data-theme="dark"] .roi-calculator p,
[data-theme="dark"] .portfolio-overlay p,
[data-theme="dark"] .expertise-item p,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .job-title,
[data-theme="dark"] .company-name,
[data-theme="dark"] .career-highlights p,
[data-theme="dark"] .university-name,
[data-theme="dark"] .role-description {
  color: var(--white) !important;
}

/* Ultra-comprehensive dark mode text fix - everything */
[data-theme="dark"] *:not(.orange-accent):not(.section-title):not([class*="gradient"]) {
  color: var(--white) !important;
}

/* Preserve special colored elements in dark mode */
[data-theme="dark"] .orange-accent {
  color: var(--vibrant-orange) !important;
}

[data-theme="dark"] .section-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark mode body and html background */
html[data-theme="dark"],
body[data-theme="dark"] {
  background: linear-gradient(135deg, #0A0A23 0%, #1A1A3E 100%) !important;
  color: #FFFFFF !important;
}

/* Dark mode removed - light mode only */

/* Global - Force proper light mode colors everywhere */
.nav-link,
.nav-logo,
.nav-logo *,
.logo-text,
.rotating-text,
.footer *,
.footer-brand,
.footer-brand p,
.footer-links a,
.footer-bottom p {
  color: #000000 !important;
}

/* Experience Page - Force proper light mode colors */
.experience-hero *,
.experience-timeline *,
.timeline-content *,
.company-info *,
.role-title,
.achievements,
.achievement,
.location,
.period,
.education-main,
.education-main *,
.university-details *,
.degree-info,
.thesis-title,
.career-highlights *,
.highlight-label,
.highlight-description,
.expertise-item h3 {
  color: #000000 !important;
}

.expertise-item p {
  color: #333333 !important;
}

.experience-hero .hero-subtitle,
.timeline-content .description,
.degree-info,
.thesis-title p,
.highlight-description,
.footer-brand p,
.footer-bottom p {
  color: #333333 !important;
}

/* Education section - Force white background */
.education-main {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
}

/* Re-preserve special elements */
[data-theme="dark"] .orange-accent,
[data-theme="dark"] .brand-orange,
[data-theme="dark"] .brand-green,
[data-theme="dark"] .brand-purple {
  color: var(--vibrant-orange) !important;
}

[data-theme="dark"] .brand-green {
  color: #10b981 !important;
}

[data-theme="dark"] .brand-purple {
  color: #8b5cf6 !important;
}

/* Medium weight text styles */
.studies-list, .thesis-label {
  font-weight: 500;
}

/* Orange accent styling */
.orange-accent {
  color: var(--vibrant-orange);
  text-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
}

/* Calculator Icons - Green theme */
.calculator-icons .icon-3d {
  color: #10b981;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.calc-icon-1 { top: 15%; left: 10%; animation-delay: -1s; }
.calc-icon-2 { top: 25%; right: 15%; animation-delay: -2s; }
.calc-icon-3 { top: 60%; left: 8%; animation-delay: -3s; }
.calc-icon-4 { top: 70%; right: 12%; animation-delay: -4s; }
.calc-icon-5 { top: 40%; left: 85%; animation-delay: -5s; }
.calc-icon-6 { top: 80%; left: 75%; animation-delay: -6s; }

/* Quiz Icons - Purple theme */
.quiz-icons .icon-3d {
  color: #8b5cf6;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.quiz-icon-1 { top: 20%; left: 12%; animation-delay: -1.5s; }
.quiz-icon-2 { top: 30%; right: 10%; animation-delay: -2.5s; }
.quiz-icon-3 { top: 55%; left: 5%; animation-delay: -3.5s; }
.quiz-icon-4 { top: 65%; right: 8%; animation-delay: -4.5s; }
.quiz-icon-5 { top: 45%; left: 88%; animation-delay: -5.5s; }
.quiz-icon-6 { top: 75%; left: 80%; animation-delay: -6.5s; }

/* Subtle brand color variations */
.brand-orange {
  color: var(--vibrant-orange);
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.brand-green {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.brand-purple {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.brand-orange:hover, .brand-green:hover, .brand-purple:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FINAL DARK MODE FIX - MUST BE LAST IN FILE */
[data-theme="dark"] {
  --text-color: var(--white) !important;
}

[data-theme="dark"] *,
[data-theme="dark"] p,
[data-theme="dark"] div,
[data-theme="dark"] span,
[data-theme="dark"] li,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] body,
[data-theme="dark"] html {
  color: var(--white) !important;
}

/* Experience page specific - absolute override */
body[data-theme="dark"] .timeline-content *,
body[data-theme="dark"] .company-info *,
body[data-theme="dark"] .education-main *,
body[data-theme="dark"] .university-details *,
body[data-theme="dark"] .experience-content *,
body[data-theme="dark"] .experience-description *,
body[data-theme="dark"] p,
body[data-theme="dark"] div,
body[data-theme="dark"] span {
  color: var(--white) !important;
}

/* ULTIMATE OVERRIDE - Education section MUST be light mode */
.education-main,
.university-details,
.achievements-grid,
.achievement-card {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.degree-info {
  background: transparent !important;
}

.education-main *,
.university-details *,
.degree-info *,
.thesis-title,
.thesis-title *,
.achievements-grid *,
.achievement-card * {
  color: #000000 !important;
}

.education-main .study-period,
.education-main .location,
.education-main .thesis-title p {
  color: #333333 !important;
}

/* Allow gradient on education section title */
.education-section .section-title {
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}