/* CSS Variables for Theme System */
:root {
  /* Dark Theme (Default) */
  --bg-primary: #111214;
  --bg-secondary: #18191c;
  --bg-tertiary: #232428;
  --text-primary: #eaeaea;
  --text-secondary: #888;
  --text-muted: #666;
  --accent-green: #b6ff3c;
  --accent-purple: #7c2fff;
  --border-color: rgba(182, 255, 60, 0.1);
  --border-hover: rgba(182, 255, 60, 0.3);
  --card-bg: rgba(35, 36, 40, 0.3);
  --card-hover: rgba(35, 36, 40, 0.5);
  --shadow-color: rgba(0, 0, 0, 0.18);
  --glow-color: rgba(124, 47, 255, 0.1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Light Theme - Dark & White with Green Accents */
[data-theme="light"] {
  --bg-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
  --bg-secondary: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  --bg-tertiary: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #cccccc;
  --accent-green: #00ff88;
  --accent-secondary: #88ff00;
  --accent-tertiary: #00ffaa;
  --border-color: rgba(255, 255, 255, 0.2);
  --border-hover: rgba(0, 255, 136, 0.5);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-hover: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.8);
  --glow-color: rgba(0, 255, 136, 0.3);
  --white-effect: rgba(255, 255, 255, 0.1);
  --success-color: #00ff88;
  --warning-color: #ffaa00;
  --info-color: #ffffff;
}

/* Header Variables */
:root {
  --header-bg: var(--bg-secondary);
  --nav-bg: var(--bg-tertiary);
  --nav-active: var(--accent-green);
  --nav-hover: var(--accent-green);
  --nav-text: var(--text-primary);
  --logo-dot: var(--accent-green);
  --email-bg: var(--accent-purple);
  --email-text: #fff;
}

/* Light Theme Header Overrides */
[data-theme="light"] {
  --email-text: #ffffff;
}

/* Light Theme Professional Button Styles */
[data-theme="light"] .hero-hire-btn {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  color: #000000;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

[data-theme="light"] .hero-hire-btn:hover {
  background: linear-gradient(135deg, #00ff66, var(--accent-green));
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px) scale(1.02);
}

[data-theme="light"] .hero-hire-icon {
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-green);
  transition: all 0.3s ease;
}

[data-theme="light"] .hero-hire-btn:hover .hero-hire-icon {
  background: rgba(0, 0, 0, 1);
  color: #ffffff;
  transform: scale(1.1);
}

/* Light Theme Contact Form Styles with Dark/Green Theme */
[data-theme="light"] .submit-btn {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  color: #000000;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

[data-theme="light"] .submit-btn:hover {
  background: linear-gradient(135deg, #00ff66, var(--accent-green));
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.6);
  transform: translateY(-3px);
}

[data-theme="light"] .form-group.focused .form-control {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
  background: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
  background: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .form-control {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

[data-theme="light"] .form-control:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

/* Light Theme Section Backgrounds with Expert Color Flow */
[data-theme="light"] body {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
  position: relative;
}

[data-theme="light"] body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

[data-theme="light"] .services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

[data-theme="light"] .about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
}

[data-theme="light"] .projects-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
}

[data-theme="light"] .contact-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

/* Light Theme Professional Footer with Expert Colors */
[data-theme="light"] .site-footer {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  border-top: 2px solid rgba(203, 213, 224, 0.8);
  position: relative;
}

[data-theme="light"] .footer-email {
  color: var(--accent-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

[data-theme="light"] .footer-email:hover {
  color: var(--accent-green);
  text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Light Theme Status Indicators */
[data-theme="light"] .status-indicator {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

[data-theme="light"] .availability-status {
  color: var(--text-secondary);
}

/* Light Theme Cards and Boxes with Expert UI/UX Colors */
[data-theme="light"] .contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px var(--shadow-color);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .contact-card:hover {
  background: var(--card-hover);
  border-color: var(--accent-green);
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 255, 136, 0.3);
}

[data-theme="light"] .highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 24px var(--shadow-color);
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .highlight-card:hover {
  background: var(--card-hover);
  border-color: var(--accent-green);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
  transform: translateY(-3px);
}

[data-theme="light"] .project-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px var(--shadow-color);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .project-card:hover {
  background: var(--card-hover);
  border-color: var(--accent-green);
  box-shadow: 0 12px 48px rgba(0, 255, 136, 0.4);
  transform: translateY(-3px);
}

/* Light Theme Icons with Dark/Green Colors */
[data-theme="light"] .contact-icon {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

[data-theme="light"] .contact-icon:hover {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  color: #000000;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.5);
  transform: scale(1.05);
}

[data-theme="light"] .highlight-icon {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  filter: none;
  transition: all 0.3s ease;
}

[data-theme="light"] .highlight-icon:hover {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.25);
  transform: scale(1.1);
}

[data-theme="light"] .service-icon {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

[data-theme="light"] .service-icon:hover {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}

[data-theme="light"] .service-icon svg {
  color: #ffffff;
  filter: none;
}

/* Light Theme Header with Glass Effect */
[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 4px 24px var(--shadow-color);
}

[data-theme="light"] .theme-toggle {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  backdrop-filter: blur(15px);
}

/* Light Theme Text with High Contrast */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: var(--text-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

[data-theme="light"] .hero-title {
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

[data-theme="light"] .hero-tagline {
  color: var(--text-secondary);
  font-weight: 600;
}

[data-theme="light"] .hero-desc {
  color: var(--text-muted);
  font-weight: 500;
  background: var(--card-bg);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

/* Light Theme Tech Stack with Enhanced Styling */
[data-theme="light"] .tech-item {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  backdrop-filter: blur(15px);
}

[data-theme="light"] .tech-item:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-color);
}

[data-theme="light"] .tech-item span {
  color: var(--text-primary);
  font-weight: 600;
}

/* Light Theme Social and Navigation Links with Professional Colors */
[data-theme="light"] .nav-menu a {
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu a.active {
  color: var(--accent-green);
  text-shadow: 0 1px 3px rgba(0, 255, 136, 0.4);
}

[data-theme="light"] .social-btn {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  backdrop-filter: blur(15px);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .social-btn:hover {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  color: #000000;
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

/* Light Theme Contact Details */
[data-theme="light"] .contact-detail {
  color: var(--text-primary);
  font-weight: 700;
}

[data-theme="light"] .contact-desc {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Light Theme Project Filters and Timeline with Dark/Green Colors */
[data-theme="light"] .filter-btn {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  backdrop-filter: blur(15px);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .filter-btn:hover {
  background: linear-gradient(135deg, #1a1a1a, #000000);
  color: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

[data-theme="light"] .filter-btn.active {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  color: #000000;
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

[data-theme="light"] .timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px var(--shadow-color);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .timeline-content:hover {
  background: var(--card-hover);
  border-color: var(--accent-green);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
  transform: translateY(-3px);
}

[data-theme="light"] .service-details h3 {
  color: var(--text-primary);
  font-weight: 700;
}

[data-theme="light"] .service-details p {
  color: var(--text-secondary);
  font-weight: 500;
}

[data-theme="light"] .service-details li {
  color: var(--text-muted);
  font-weight: 500;
}

[data-theme="light"] .service-cta {
  color: var(--accent-blue);
  font-weight: 600;
  text-shadow: none;
  transition: all 0.3s ease;
}

[data-theme="light"] .service-cta:hover {
  color: var(--accent-green);
  text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Light Theme Footer Enhancements with Professional Colors */
[data-theme="light"] .footer-logo .logo-text {
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: none;
}

[data-theme="light"] .footer-tagline {
  color: var(--text-secondary);
  font-weight: 500;
}

[data-theme="light"] .footer-nav a {
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

[data-theme="light"] .footer-nav a:hover {
  color: var(--accent-green);
}

[data-theme="light"] .social-icon {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .social-icon:hover {
  background: linear-gradient(135deg, var(--accent-green), #00ff66);
  border-color: var(--accent-green);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

[data-theme="light"] .social-icon svg {
  color: var(--text-primary);
  transition: all 0.3s ease;
}

[data-theme="light"] .social-icon:hover svg {
  color: #000000;
}

/* Modern cyberpunk-inspired theme with enhanced visual effects */
:root {
  --primary: #00f2ff;
  --secondary: #ff00e5;
  --dark: #0a0b14;
  --light: #e6e6ff;
  --accent: #7000ff;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg-primary);
  color: var(--nav-text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.site-header {
  background: var(--header-bg);
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(182, 255, 60, 0.1);
  animation: headerSlideDown 0.6s ease-out;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: transform 0.3s ease;
}
.logo-area:hover {
  transform: scale(1.05);
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%, #b6ff3c 60%, #7c2fff 100%);
  box-shadow: 0 0 12px #b6ff3c44, 0 0 24px #7c2fff22;
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(182, 255, 60, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, 50%) rotate(45deg);
  }
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  text-transform: lowercase;
}
.logo-dot {
  color: var(--logo-dot);
  font-size: 1.7rem;
  font-weight: 900;
}
.nav-menu {
  display: flex;
  gap: 10px;
  background: none;
}
.nav-menu a {
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 22px;
  border-radius: 20px;
  background: var(--nav-bg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  outline: none;
  border: 2px solid transparent;
  margin: 0 2px;
  overflow: hidden;
}
.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(182, 255, 60, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.nav-menu a:hover::before {
  left: 100%;
}
.nav-menu a.active {
  color: var(--nav-active);
  background: rgba(35, 36, 40, 0.95);
  border: 2px solid var(--nav-active);
  box-shadow: 0 0 15px rgba(182, 255, 60, 0.2);
}
.nav-menu a:focus,
.nav-menu a:hover {
  color: var(--nav-active);
  background: #232428ee;
  border: 2px solid var(--nav-active);
  box-shadow: 0 0 0 2px #b6ff3c33;
}
.header-email {
  background: var(--email-bg);
  color: var(--email-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 2px 16px #7c2fff44;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.header-email::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
}
.header-email:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-1px);
}

.theme-toggle-inner {
  position: relative;
  width: 20px;
  height: 20px;
}

.sun-icon,
.moon-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="light"] .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: var(--accent-green);
}

[data-theme="light"] .moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

/* --- HERO SECTION --- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background: linear-gradient(120deg, var(--bg-secondary) 60%, var(--bg-tertiary) 100%);
  padding-top: 120px;
  transition: background 0.3s ease;
}
.hero-content {
  display: flex;
  align-items: center; /* Centering vertically */
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
}
.hero-content.new-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 1100px;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centering horizontally */
  gap: 32px;
  min-width: 200px;
  text-align: center; /* Ensuring text is centered */
}
.hero-skills {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.hero-skills .skill-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--glow-color);
}
.hero-skills li {
  font-size: 1.08rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
.hero-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.hero-socials-center {
  justify-content: center;
  width: 100%;
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.hero-socials a img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) brightness(1.5);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.hero-socials a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}
.social-btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 18px;
  background: #232428;
  color: #b6ff3c;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px #b6ff3c22;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.social-btn.instagram:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
  transform: translateY(-2px) scale(1.05);
}
.social-btn.linkedin:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
  transform: translateY(-2px) scale(1.05);
}
.social-btn.x:hover {
  background: #222;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.social-btn.github:hover {
  background: #333;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  min-width: 220px;
}
.hero-right.new-hero-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(24,25,28,0.7);
  border-radius: 32px;
  box-shadow: 0 4px 32px #7c2fff22;
  padding: 40px 36px 36px 36px;
}
.hero-image {
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 5px solid #b6ff3c;
  box-shadow: 0 4px 32px #7c2fff33, 0 0 0 8px #232428;
  background: #232428;
  transition: box-shadow 0.3s, border 0.3s;
  z-index: 1;
  display: block;
}
.hero-image img:hover {
  box-shadow: 0 8px 48px #b6ff3c55, 0 0 0 12px #7c2fff;
  border: 5px solid #7c2fff;
}
.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0;
  text-shadow: 0 2px 16px #7c2fff33;
  text-align: center;
}
.hero-animate {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b6ff3c;
  min-height: 2.2em;
  margin: 0;
  letter-spacing: 0.04em;
  animation: fadeIn 1.2s;
  text-align: center;
}
.hero-tagline {
  font-size: 1.08rem;
  color: #eaeaea;
  margin: 0 0 10px 0;
  max-width: 420px;
  line-height: 1.6;
  text-align: center;
}
.hero-desc {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hero-hire-btn {
  display: flex;
  align-items: center;
  background: var(--accent-green);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 10px 28px 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 16px var(--glow-color);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 8px;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  gap: 10px;
}
.hero-hire-btn:hover {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 47, 255, 0.3);
  transform: translateY(-2px) scale(1.04);
}
.hero-hire-icon {
  font-size: 1.3em;
  color: var(--bg-primary);
  background: #fff;
  border-radius: 50%;
  padding: 4px 6px;
  margin-right: 4px;
  box-shadow: 0 2px 8px var(--glow-color);
  transition: background 0.2s, color 0.2s;
}
.hero-hire-btn:hover .hero-hire-icon {
  background: var(--accent-green);
  color: var(--accent-purple);
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 38px auto 0 auto;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 700px;
  justify-content: flex-start;
}
.star {
  color: #ffb800;
  font-size: 1.2em;
  margin-right: 6px;
}
.hero-tech {
  display: flex;
  gap: 10px;
  margin-left: 18px;
}
.hero-tech img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 8px #23242833;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-tech img:hover {
  box-shadow: 0 4px 16px #b6ff3c55;
  transform: scale(1.08);
}

/* Contact Section Styles */
.contact-section {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0b14 0%, #111214 50%, #0f1018 100%);
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(182, 255, 60, 0.08) 0%, rgba(124, 47, 255, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  animation: contactGlow 8s ease-in-out infinite alternate;
}

.contact-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(182, 255, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 60, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes contactGlow {
  0% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  100% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182, 255, 60, 0.1);
  border: 1px solid rgba(182, 255, 60, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: #b6ff3c;
  margin-bottom: 24px;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #b6ff3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.title-highlight {
  background: linear-gradient(45deg, #b6ff3c, #7c2fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  position: relative;
  background: rgba(35, 36, 40, 0.6);
  border: 1px solid rgba(182, 255, 60, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(182, 255, 60, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(182, 255, 60, 0.05), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
}

.contact-card:hover .card-glow {
  opacity: 1;
  transform: rotate(45deg) translate(20%, 20%);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, #7c2fff, #b6ff3c);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 1.1rem;
  color: #b6ff3c;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-desc {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b6ff3c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-cta:hover {
  gap: 12px;
  color: #fff;
}

.contact-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.contact-cta:hover svg {
  transform: translateX(3px);
}

/* Social Links Grid */
.social-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: rgba(182, 255, 60, 0.1);
  border-color: rgba(182, 255, 60, 0.3);
  color: #b6ff3c;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* Availability Status */
.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b6ff3c;
  font-size: 0.9rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #b6ff3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid rgba(182, 255, 60, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 60, 0.5), transparent);
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.form-header p {
  color: #888;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(35, 36, 40, 0.8);
  border: 1px solid rgba(182, 255, 60, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #b6ff3c;
  box-shadow: 0 0 0 3px rgba(182, 255, 60, 0.1);
  background: rgba(35, 36, 40, 0.95);
}

.form-control::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  font-size: 1rem;
  background: rgba(35, 36, 40, 0.95);
  padding: 0 6px;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-170%) scale(0.85);
  color: #b6ff3c;
  left: 14px;
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #232428;
  color: #fff;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-top: 20px;
}

textarea.form-control ~ .form-label {
  top: 24px;
  transform: none;
}

textarea.form-control:focus ~ .form-label,
textarea.form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-170%) scale(0.85);
  top: 4px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #7c2fff, #b6ff3c);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 47, 255, 0.4);
}

.btn-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: 0.6s;
  opacity: 0;
}

.submit-btn:hover .btn-background {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Button States */
.submit-btn.loading {
  background: linear-gradient(45deg, #666, #888);
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading .btn-icon {
  animation: spin 1s linear infinite;
}

.submit-btn.success {
  background: linear-gradient(45deg, #4ade80, #22c55e);
  transform: scale(1.05);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form Group Focus State */
.form-group.focused .form-control {
  border-color: #b6ff3c;
  box-shadow: 0 0 0 3px rgba(182, 255, 60, 0.1);
}

/* Contact Footer */
.contact-footer {
  margin-top: 60px;
  text-align: center;
}

.response-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.response-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: rgba(35, 36, 40, 0.3);
  border: 1px solid rgba(182, 255, 60, 0.1);
  border-radius: 16px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.response-item:hover {
  background: rgba(35, 36, 40, 0.5);
  border-color: rgba(182, 255, 60, 0.3);
  transform: translateY(-3px);
}

.response-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.response-item span {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.response-item small {
  color: #888;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 40px;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form-wrapper {
    padding: 24px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .response-info {
    gap: 16px;
  }
  
  .response-item {
    min-width: 100px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 20px 16px;
  }
  
  .contact-form-wrapper {
    padding: 20px 16px;
  }
  
  .submit-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

.submit-btn:hover .submit-icon {
  transform: translateX(5px);
}

/* Footer Styles - Compact & Professional */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0a0b14 0%, #111214 50%, #0f1018 100%);
  border-top: 1px solid rgba(182, 255, 60, 0.08);
  overflow: hidden;
  margin-top: 0;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(124, 47, 255, 0.04) 0%, rgba(182, 255, 60, 0.02) 50%, transparent 70%);
  filter: blur(60px);
  animation: footerGlow 15s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  0% { opacity: 0.3; transform: translateX(-50%) scale(0.8); }
  100% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 20px;
  position: relative;
  z-index: 1;
}

/* Main Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, #7c2fff, #b6ff3c);
  border-radius: 8px;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 2px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.logo-dot {
  color: #b6ff3c;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  font-weight: 400;
}

/* Center Navigation */
.footer-center {
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: #b6ff3c;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #7c2fff, #b6ff3c);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

/* Right Section */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-contact-info {
  text-align: right;
  margin-bottom: 8px;
}

.footer-email {
  display: block;
  color: #b6ff3c;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #7c2fff;
}

.footer-location {
  color: #888;
  font-size: 0.85rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(35, 36, 40, 0.6);
  border: 1px solid rgba(182, 255, 60, 0.1);
  border-radius: 8px;
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(182, 255, 60, 0.1);
  border-color: rgba(182, 255, 60, 0.3);
  color: #b6ff3c;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 60, 0.15), transparent);
  margin-bottom: 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 0.85rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #b6ff3c;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-left,
  .footer-right {
    align-items: center;
  }
  
  .footer-nav {
    gap: 24px;
  }
  
  .footer-contact-info {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-container {
    padding: 30px 20px 16px;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-content {
    gap: 24px;
  }
}

.heart {
  color: #ff6b6b;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-container {
    padding: 60px 24px 0;
  }
  
  .footer-header {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .footer-cta-section {
    text-align: left;
  }
  
  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 50px 20px 0;
  }
  
  .footer-header {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
  
  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  
  .stat-item {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-meta {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 16px 0;
  }
  
  .footer-cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .contact-item {
    padding: 10px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 4px;
  }
  
  .separator {
    display: none;
  }
}

/* Hero Highlights Section */
.hero-highlights {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.highlights-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(120deg, #b6ff3c, #7c2fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.highlight-card {
  background: rgba(35, 36, 40, 0.7);
  border: 1px solid rgba(182, 255, 60, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(182, 255, 60, 0.1), rgba(124, 47, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 47, 255, 0.2);
  border-color: rgba(182, 255, 60, 0.3);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, #b6ff3c, #7c2fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(182, 255, 60, 0.3));
}

.highlight-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.highlight-desc {
  color: #eaeaea;
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.9;
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #18191c 0%, #232428 100%);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.about-right-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-tech-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: rgba(18, 18, 20, 0.8);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(182, 255, 60, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(182, 255, 60, 0.1);
}

.about-image {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 4px solid rgba(182, 255, 60, 0.3);
  box-shadow: 0 0 30px rgba(124, 47, 255, 0.3);
  transition: all 0.3s ease;
  display: block;
}

.about-image:hover img {
  transform: scale(1.05);
  border-color: rgba(124, 47, 255, 0.5);
  box-shadow: 0 0 40px rgba(182, 255, 60, 0.3);
}

.tech-stack {
  display: grid;
  gap: 25px;
}

.tech-category {
  background: rgba(35, 36, 40, 0.6);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(124, 47, 255, 0.1);
}

.tech-category h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #b6ff3c;
  display: inline-block;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(35, 36, 40, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  transform: translateY(-3px);
  background: rgba(182, 255, 60, 0.1);
  box-shadow: 0 5px 15px rgba(124, 47, 255, 0.15);
}

.tech-item img {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.tech-item:hover img {
  transform: scale(1.1);
}

.tech-item span {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #b6ff3c; /* Strong fallback color */
  background: linear-gradient(120deg, #b6ff3c, #7c2fff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: left;
  position: relative;
  display: block;
}

.about-description {
  color: #eaeaea;
  font-size: 1.1rem;
  line-height: 1.8;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.about-description p {
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--accent-green);
  font-weight: 600;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #000000, #0a0a0a);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.1) 0%, transparent 30%),
             radial-gradient(circle at 80% 70%, rgba(132, 94, 194, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.services-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #4a90e2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.services-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 60px;
  font-size: 1.2rem;
}

/* Timeline Core */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, 
    rgba(74, 144, 226, 0.3), 
    rgba(132, 94, 194, 0.3),
    rgba(74, 144, 226, 0.3));
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseTimeline 2s infinite;
}

@keyframes pulseTimeline {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* Enhanced Timeline Content */
.timeline-content {
  padding: 30px;
  background: rgba(15, 15, 20, 0.8);
  border-radius: 15px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(74, 144, 226, 0.05);
  transform-origin: center;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      rgba(74, 144, 226, 0.02) 0px,
      rgba(74, 144, 226, 0.02) 1px,
      transparent 1px,
      transparent 10px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(132, 94, 194, 0.02) 0px,
      rgba(132, 94, 194, 0.02) 1px,
      transparent 1px,
      transparent 10px
    );
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.03) 0%, transparent 50%) 0 0,
    radial-gradient(circle at 50% 50%, rgba(132, 94, 194, 0.03) 0%, transparent 50%) 50px 50px;
  background-size: 100px 100px;
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
  animation: subtleFloat 1.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes subtleFloat {
  0% {
    background-position: 0% 0%;
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: 100% 100%;
    opacity: 0.5;
  }
}

.timeline-content:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Enhanced background effects */
.timeline-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent),
    linear-gradient(180deg, transparent, rgba(132, 94, 194, 0.1), transparent);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: shiftingLight 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shiftingLight {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

.timeline-content:hover::after {
  opacity: 1;
}

.timeline-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #4a90e2, #845ec2);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.2); }
  100% { transform: translateY(-50%) scale(1); }
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

/* Enhanced Service Icons */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4a90e2, #845ec2);
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
  transition: all 0.5s ease;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent,
    rgba(74, 144, 226, 0.5),
    transparent 60%
  );
  animation: rotateConic 4s linear infinite;
}

@keyframes rotateConic {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.timeline-content:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Enhanced List Items */
.service-details li {
  padding-left: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.service-details li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #4a90e2;
  font-size: 1.2em;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.timeline-content:hover .service-details li {
  color: #fff;
  transform: translateX(5px);
}

.timeline-content:hover .service-details li::before {
  opacity: 1;
  color: #845ec2;
  transform: scale(1.2);
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0a0a, #000000);
  position: relative;
  overflow: hidden;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.projects-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #4a90e2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.projects-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(182, 255, 60, 0.2);
  background: rgba(15, 15, 20, 0.6);
  color: #eaeaea;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(182, 255, 60, 0.1),
    transparent
  );
  transition: 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(182, 255, 60, 0.1);
  color: #b6ff3c;
  border-color: rgba(182, 255, 60, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(182, 255, 60, 0.1);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 15, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(182, 255, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-image {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: rgba(0, 0, 0, 0.2);
}

.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.project-tech-stack {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.project-tech-stack img {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(15, 15, 20, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(182, 255, 60, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.project-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 20, 0.9) 0%,
    rgba(15, 15, 20, 0.95) 100%
  );
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2px;
}

.project-info h3::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #b6ff3c;
  transition: height 0.3s ease;
}

.project-info p {
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0.8;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: auto;
}

.project-tags span {
  padding: 6px 12px;
  background: rgba(182, 255, 60, 0.08);
  color: #b6ff3c;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(182, 255, 60, 0.2);
  transition: all 0.3s ease;
}

.project-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.project-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 6px;
}

.project-link.demo {
  background: #7c2fff;
  color: white;
  border: 1px solid rgba(124, 47, 255, 0.3);
}

.project-link.github {
  background: rgba(182, 255, 60, 0.08);
  color: #b6ff3c;
  border: 1px solid rgba(182, 255, 60, 0.2);
}

/* Card Hover Effects */
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(182, 255, 60, 0.3);
  box-shadow: 0 8px 30px rgba(182, 255, 60, 0.1);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-tech-stack img {
  transform: translateY(-5px);
  border-color: rgba(182, 255, 60, 0.4);
  box-shadow: 0 5px 15px rgba(182, 255, 60, 0.15);
}

.project-card:hover .project-info h3::before {
  height: 80%;
}

.project-card:hover .project-tags span {
  background: rgba(182, 255, 60, 0.12);
  transform: translateY(-1px);
}

.project-link:hover {
  transform: translateY(-2px);
}

.project-link.demo:hover {
  background: #8f4fff;
  border-color: rgba(124, 47, 255, 0.5);
  box-shadow: 0 5px 15px rgba(124, 47, 255, 0.2);
}

.project-link.github:hover {
  background: rgba(182, 255, 60, 0.12);
  border-color: rgba(182, 255, 60, 0.4);
  box-shadow: 0 5px 15px rgba(182, 255, 60, 0.1);
}

.project-link:hover .arrow {
  transform: translateX(3px);
}

/* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Add responsive styles for project cards */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .project-card {
    border-radius: 15px;
  }
  
  .project-info h3 {
    font-size: 1.3rem;
  }
  
  .project-info p {
    font-size: 0.9rem;
  }
  
  .project-tags span {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .project-link {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
  
  /* Hero Image Responsive Styles */
  .hero-image img {
    width: 160px;
    height: 160px;
    border: 4px solid #b6ff3c;
  }
  
  /* About Image Responsive Styles */
  .about-image img {
    width: 160px;
    height: 160px;
    border: 3px solid rgba(182, 255, 60, 0.3);
  }
  
  /* About Title Mobile Optimization */
  .about-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #b6ff3c;
    -webkit-text-fill-color: #b6ff3c;
  }
  
  /* About Description Mobile Responsive */
  .about-description {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    padding: 0 10px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(182, 255, 60, 0.5) rgba(35, 36, 40, 0.3);
  }
  
  .about-description::-webkit-scrollbar {
    width: 6px;
  }
  
  .about-description::-webkit-scrollbar-track {
    background: rgba(35, 36, 40, 0.3);
    border-radius: 3px;
  }
  
  .about-description::-webkit-scrollbar-thumb {
    background: rgba(182, 255, 60, 0.5);
    border-radius: 3px;
  }
  
  .about-description::-webkit-scrollbar-thumb:hover {
    background: rgba(182, 255, 60, 0.7);
  }
  
  .about-description p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }
  
  .about-text-content {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Mobile Optimization for Smaller Screens */
@media (max-width: 480px) {
  .hero-image img {
    width: 140px;
    height: 140px;
    border: 3px solid #b6ff3c;
    box-shadow: 0 4px 24px #7c2fff33, 0 0 0 6px #232428;
  }
  
  .about-image img {
    width: 140px;
    height: 140px;
    border: 3px solid rgba(182, 255, 60, 0.3);
    box-shadow: 0 0 25px rgba(124, 47, 255, 0.3);
  }
  
  /* About Title Mobile Optimization */
  .about-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #b6ff3c;
    -webkit-text-fill-color: #b6ff3c;
    letter-spacing: 1.5px;
  }
  
  /* About Description Mobile Responsive */
  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 15px;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(182, 255, 60, 0.5) rgba(35, 36, 40, 0.3);
  }
  
  .about-description::-webkit-scrollbar {
    width: 5px;
  }
  
  .about-description::-webkit-scrollbar-track {
    background: rgba(35, 36, 40, 0.3);
    border-radius: 3px;
  }
  
  .about-description::-webkit-scrollbar-thumb {
    background: rgba(182, 255, 60, 0.5);
    border-radius: 3px;
  }
  
  .about-description::-webkit-scrollbar-thumb:hover {
    background: rgba(182, 255, 60, 0.7);
  }
  
  .about-description p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  
  .about-text-content {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 10px;
  }
}

/* Ultra Compact Mobile Screens */
@media (max-width: 375px) {
  .hero-image {
    margin-bottom: 15px;
  }
  
  .hero-image img {
    width: 120px;
    height: 120px;
    border: 3px solid #b6ff3c;
    box-shadow: 0 3px 20px #7c2fff33, 0 0 0 5px #232428;
  }
  
  .about-image img {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(182, 255, 60, 0.4);
    box-shadow: 0 0 20px rgba(124, 47, 255, 0.4);
  }
  
  /* About Title Mobile Optimization */
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #b6ff3c;
    -webkit-text-fill-color: #b6ff3c;
    letter-spacing: 1px;
  }
  
  /* About Description Mobile Responsive */
  .about-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    padding: 0 20px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(182, 255, 60, 0.5) rgba(35, 36, 40, 0.3);
    border: 1px solid rgba(182, 255, 60, 0.1);
    border-radius: 8px;
    background: rgba(35, 36, 40, 0.2);
  }
  
  .about-description::-webkit-scrollbar {
    width: 4px;
  }
  
  .about-description::-webkit-scrollbar-track {
    background: rgba(35, 36, 40, 0.3);
    border-radius: 2px;
  }
  
  .about-description::-webkit-scrollbar-thumb {
    background: rgba(182, 255, 60, 0.6);
    border-radius: 2px;
  }
  
  .about-description::-webkit-scrollbar-thumb:hover {
    background: rgba(182, 255, 60, 0.8);
  }
  
  .about-description p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
  }
  
  .about-text-content {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
  }
}

/* Extra Small Screens */
@media (max-width: 320px) {
  .hero-image img {
    width: 100px;
    height: 100px;
    border: 2px solid #b6ff3c;
    box-shadow: 0 2px 16px #7c2fff33, 0 0 0 4px #232428;
  }
  
  .about-image img {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(182, 255, 60, 0.4);
    box-shadow: 0 0 16px rgba(124, 47, 255, 0.4);
  }
  
  /* About Title Mobile Optimization */
  .about-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: center;
    color: #b6ff3c;
    -webkit-text-fill-color: #b6ff3c;
    letter-spacing: 0.5px;
  }
  
  /* About Description Mobile Responsive */
  .about-description {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
    padding: 15px 25px;
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(182, 255, 60, 0.5) rgba(35, 36, 40, 0.3);
    border: 1px solid rgba(182, 255, 60, 0.15);
    border-radius: 10px;
    background: rgba(35, 36, 40, 0.3);
    margin: 10px 0;
  }
  
  .about-description::-webkit-scrollbar {
    width: 3px;
  }
  
  .about-description::-webkit-scrollbar-track {
    background: rgba(35, 36, 40, 0.3);
    border-radius: 2px;
  }
  
  .about-description::-webkit-scrollbar-thumb {
    background: rgba(182, 255, 60, 0.7);
    border-radius: 2px;
  }
  
  .about-description::-webkit-scrollbar-thumb:hover {
    background: rgba(182, 255, 60, 0.9);
  }
  
  /* Add scroll indicator */
  .about-text-content::after {
    content: "⟨ Scroll to read more ⟩";
    display: block;
    font-size: 0.65rem;
    color: rgba(182, 255, 60, 0.6);
    text-align: center;
    margin-top: 5px;
    animation: fadeInOut 2s ease-in-out infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  
  .about-description p {
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
  }
  
  .about-text-content {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  
  /* Highlight Text Mobile Optimization */
  .highlight-text {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.85rem;
  }
  
  /* About Content Container Mobile */
  .about-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-image img {
    width: 200px;
    height: 200px;
    border: 5px solid #b6ff3c;
    box-shadow: 0 5px 40px #7c2fff33, 0 0 0 10px #232428;
  }
  
  .about-image img {
    width: 200px;
    height: 200px;
    border: 4px solid rgba(182, 255, 60, 0.3);
    box-shadow: 0 0 35px rgba(124, 47, 255, 0.3);
  }
  
  /* About Text Tablet Responsive */
  .about-title {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
  }
  
  .about-description {
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 0 20px;
    /* Remove scroll restrictions for tablets */
    max-height: none;
    overflow: visible;
  }
  
  /* Remove scroll indicator for tablets */
  .about-text-content::after {
    display: none;
  }
  
  .about-description p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
  }
}

/* Large Desktop Enhancement */
@media (min-width: 1200px) {
  .hero-image img {
    width: 220px;
    height: 220px;
    border: 6px solid #b6ff3c;
    box-shadow: 0 6px 48px #7c2fff33, 0 0 0 12px #232428;
  }
  
  .about-image img {
    width: 220px;
    height: 220px;
    border: 5px solid rgba(182, 255, 60, 0.3);
    box-shadow: 0 0 40px rgba(124, 47, 255, 0.3);
  }
  
  /* About Text Large Desktop */
  .about-title {
    font-size: 2.8rem;
    margin-bottom: 2.2rem;
  }
  
  .about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    /* Remove scroll restrictions for large desktop */
    max-height: none;
    overflow: visible;
    padding: 0;
  }
  
  /* Remove scroll indicator for large desktop */
  .about-text-content::after {
    display: none;
  }
  
  .about-description p {
    margin-bottom: 1.7rem;
    font-size: 1.2rem;
  }
}
