/* ================= GLOBAL STYLES ================= */
:root {
    /* Cyberpunk Theme (Default) */
    --neon-blue: #00f0ff;
    --neon-pink: #ff00ff;
    --neon-green: #39ff14;
    --neon-yellow: #ffff00;
    --neon-purple: #b537f2;
    --cyber-black: #0d0221;
    --cyber-dark: #0e0b16;
    --cyber-gray: #1a1a2e;
    --cyber-light: #252538;
    --text-color: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Share Tech Mono', monospace;
    
    /* Animation Speeds */
    --transition-slow: 0.5s;
    --transition-medium: 0.3s;
    --transition-fast: 0.15s;
    
    /* Glitch Parameters */
    --glitch-duration: 3s;
    --scan-duration: 2s;
}

/* Matrix Theme */
body[data-theme="matrix"] {
    --neon-blue: #00ff41;
    --neon-pink: #00ff41;
    --neon-green: #00ff41;
    --neon-yellow: #00ff41;
    --neon-purple: #39ff39;
    --cyber-black: #000000;
    --cyber-dark: #001100;
    --cyber-gray: #003300;
    --cyber-light: #004400;
    --text-color: #00ff41;
}

/* Sunset Theme */
body[data-theme="sunset"] {
    --neon-blue: #ff6b35;
    --neon-pink: #ff9f1c;
    --neon-green: #ffbf69;
    --neon-yellow: #ffd23f;
    --neon-purple: #ff8500;
    --cyber-black: #1a0e0a;
    --cyber-dark: #2d1b1b;
    --cyber-gray: #3e2723;
    --cyber-light: #4e342e;
    --text-color: #fff3e0;
}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
  }
  
  body {
    font-family: var(--font-primary);
    background-color: var(--cyber-black);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }
  
  section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  p {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  a {
    text-decoration: none;
    color: var(--neon-blue);
    transition: color var(--transition-medium);
  }
  
  a:hover {
    color: var(--neon-pink);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-primary);
  }
  
  input, textarea {
    font-family: var(--font-secondary);
  }
  
  /* ================= BACKGROUND EFFECTS ================= */
  .cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(to right, rgba(20, 20, 50, 0.15) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(20, 20, 50, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
  }
  
  .scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(0, 0, 0, 0.5) 51%
    );
    background-size: 100% 4px;
    z-index: 9998;
    opacity: 0.15;
    pointer-events: none;
    animation: scanlines var(--scan-duration) linear infinite;
  }
  
  .glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9997;
    pointer-events: none;
    opacity: 0;
    animation: glitchEffect 10s infinite;
  }
  
  @keyframes scanlines {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 0 100%;
    }
  }
  
  @keyframes glitchEffect {
    0%, 90%, 100% {
      opacity: 0;
    }
    92%, 94%, 96% {
      opacity: 0.1;
      background: rgba(255, 0, 255, 0.2);
      transform: translate3d(3px, 0, 0);
    }
    93%, 95%, 97% {
      opacity: 0.1;
      background: rgba(0, 255, 255, 0.2);
      transform: translate3d(-3px, 0, 0);
    }
  }
  
  /* ================= PRELOADER ================= */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cyber-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  }
  
  .loader {
    text-align: center;
    width: 80%;
    max-width: 400px;
  }
  
  .glitch-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    position: relative;
    animation: glitchText 2s infinite;
  }
  
  .progress-bar {
    height: 6px;
    background-color: var(--cyber-light);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    position: relative;
  }
  
  .progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: progressGlow 2s ease-in-out infinite;
  }
  
  .progress {
    height: 100%;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    width: 0%;
    border-radius: 3px;
    transition: width 0.5s ease;
    position: relative;
    z-index: 2;
  }
  
  .percentage {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--neon-green);
  }
  
  @keyframes glitchText {
    0%, 100% {
      text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
      transform: translateX(0);
    }
    92% {
      text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-green);
      transform: translateX(2px);
    }
    94% {
      text-shadow: 2px 0 var(--neon-blue), -2px 0 var(--neon-yellow);
      transform: translateX(-2px);
    }
    96% {
      text-shadow: 2px -2px var(--neon-green), -2px 2px var(--neon-blue);
      transform: translateX(0);
    }
  }
  
  @keyframes progressGlow {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  /* ================= NAVIGATION ================= */
  .cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(13, 2, 33, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-medium);
  }
  
  .cyber-nav.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(13, 2, 33, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    padding-left: 2rem;
  }
  
  .glitch-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .glitch {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-blue);
    position: relative;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  
  .glitch::before {
    color: var(--neon-pink);
    z-index: -1;
    animation: glitch-animation 0.4s infinite ease alternate-reverse;
  }
  
  .glitch::after {
    color: var(--neon-blue);
    z-index: -2;
    animation: glitch-animation 0.3s infinite ease alternate-reverse;
  }
  
  @keyframes glitch-animation {
    0% {
      transform: none;
      opacity: 0.8;
    }
    7% {
      transform: translate(-2px, -3px);
      opacity: 0.6;
    }
    10% {
      transform: none;
      opacity: 0.8;
    }
    27% {
      transform: none;
      opacity: 0.8;
    }
    30% {
      transform: translate(2px, 3px);
      opacity: 0.6;
    }
    35% {
      transform: none;
      opacity: 0.8;
    }
    52% {
      transform: none;
      opacity: 0.8;
    }
    55% {
      transform: translate(-2px, 3px);
      opacity: 0.6;
    }
    50% {
      transform: none;
      opacity: 0.8;
    }
    72% {
      transform: none;
      opacity: 0.8;
    }
    75% {
      transform: translate(2px, -3px);
      opacity: 0.6;
    }
    80% {
      transform: none;
      opacity: 0.8;
    }
    100% {
      transform: none;
      opacity: 0.8;
    }
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    padding-right: 2rem;
  }
  
  .nav-links li {
    margin: 0 1rem;
  }
  
  .nav-links a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 1px;
    transition: color var(--transition-medium);
  }
  
  .nav-links a:hover {
    color: var(--neon-pink);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transition: width var(--transition-medium);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* ================= THEME SWITCHER ================= */
  .theme-switcher {
    position: relative;
    margin: 0 1rem;
  }
  
  .theme-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
  }
  
  .theme-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
  }
  
  .theme-btn i {
    font-size: 0.9rem;
  }
  
  .theme-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(13, 2, 33, 0.95);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .theme-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .theme-option:last-child {
    border-bottom: none;
  }
  
  .theme-option:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    padding-left: 1.5rem;
  }
  
  .theme-option.active {
    background: rgba(0, 240, 255, 0.2);
    color: var(--neon-blue);
    border-left: 3px solid var(--neon-blue);
  }
  
  .theme-option i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
  }

  /* ================= ENHANCED MOBILE MENU ================= */  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 102;
    margin-right: 2rem;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
  
  .menu-toggle:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
  }
  
  .menu-toggle::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;
  }
  
  .menu-toggle:hover::before {
    left: 100%;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    position: relative;
  }
  
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neon-blue);
    border-radius: 2px;
    transition: all var(--transition-medium);
    position: relative;
  }
  
  .hamburger span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-blue);
    opacity: 0;
    transition: opacity var(--transition-medium);
  }
  
  .menu-toggle:hover .hamburger span::before {
    opacity: 1;
  }
  
  /* ================= HERO SECTION ================= */
  .hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at center, var(--cyber-gray) 0%, var(--cyber-black) 70%);
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%),
      linear-gradient(45deg, rgba(255, 0, 255, 0.05) 0%, transparent 100%);
    z-index: -1;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    align-items: center;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
  }
  
  .glitch-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  
  .glitch-title::before,
  .glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  
  .glitch-title::before {
    color: var(--neon-blue);
    z-index: -1;
    animation: glitch-title 0.8s infinite ease alternate-reverse;
  }
  
  .glitch-title::after {
    color: var(--neon-pink);
    z-index: -2;
    animation: glitch-title 0.5s infinite ease alternate-reverse;
  }
  
  @keyframes glitch-title {
    0% {
      transform: none;
      opacity: 0.8;
    }
    7% {
      transform: translate(-2px, -3px);
      opacity: 0.6;
    }
    10% {
      transform: none;
      opacity: 0.8;
    }
    27% {
      transform: none;
      opacity: 0.8;
    }
    30% {
      transform: translate(2px, 3px);
      opacity: 0.6;
    }
    35% {
      transform: none;
      opacity: 0.8;
    }
    52% {
      transform: none;
      opacity: 0.8;
    }
    55% {
      transform: translate(-2px, 3px);
      opacity: 0.6;
    }
    50% {
      transform: none;
      opacity: 0.8;
    }
    72% {
      transform: none;
      opacity: 0.8;
    }
    75% {
      transform: translate(2px, -3px);
      opacity: 0.6;
    }
    80% {
      transform: none;
      opacity: 0.8;
    }
    100% {
      transform: none;
      opacity: 0.8;
    }
  }
  
  .cyber-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  }
  
  .hero-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
    .cyber-button {
    display: inline-block;
    position: relative;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--neon-blue);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    overflow: hidden;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5), inset 0 0 10px rgba(0, 240, 255, 0.2);
    transition: all var(--transition-medium);
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  
  .cyber-button:hover {
    background-color: rgba(0, 240, 255, 0.1);
    color: white;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7), inset 0 0 20px rgba(0, 240, 255, 0.4);
  }
  
  .cyber-button:active {
    transform: translateY(2px);
  }
  
  .cyber-button-text {
    position: relative;
    z-index: 2;
  }
  
  .cyber-button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    opacity: 0;
    z-index: 1;
    transition: opacity var(--transition-medium);
  }
  
  .cyber-button:hover .cyber-button-glitch {
    opacity: 0.2;
    animation: glitch-button 0.3s infinite alternate-reverse;
  }
  
  @keyframes glitch-button {
    0% {
      transform: translateX(-10px);
      opacity: 0.1;
    }
    100% {
      transform: translateX(10px);
      opacity: 0.2;
    }
  }
    /* ================= HERO IMAGE SYSTEM ================= */
  .hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cyber-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    padding: 20px;
    box-shadow: 
      0 0 30px var(--neon-blue),
      inset 0 0 30px rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cyber-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    background: var(--cyber-black);
    z-index: 1;
  }
  
  .cyber-frame img {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
    /* Responsive hero image sizing */
  @media (max-width: 768px) {
    .hero-image {
      max-width: 280px;
      margin: 2rem auto;
    }
    
    .cyber-frame {
      padding: 15px;
    }
    
    .cyber-frame::before {
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
    }
    
    .cyber-frame img {
      width: calc(100% - 30px);
      height: calc(100% - 30px);
    }
  }
  
  @media (max-width: 480px) {
    .hero-image {
      max-width: 220px;
    }
    
    .cyber-frame {
      padding: 12px;
    }
    
    .cyber-frame::before {
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
    }
    
    .cyber-frame img {
      width: calc(100% - 24px);
      height: calc(100% - 24px);
    }
  }
  
  /* ================= ABOUT SECTION ================= */
  .about-section {
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
  }
  
  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
    .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
  }
  
  .about-text {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
  }.about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-image .cyber-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Square aspect ratio for simpler design */
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
      0 0 30px rgba(0, 240, 255, 0.4),
      inset 0 0 30px rgba(0, 240, 255, 0.1);
    transition: all var(--transition-medium);
  }
  
  .about-image .cyber-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 5px 40px rgba(0, 240, 255, 0.6),
      inset 0 0 40px rgba(0, 240, 255, 0.15);
  }
  
  .about-image .cyber-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 15px;
    background: var(--cyber-black);
    z-index: 1;
  }
  
  .about-image .cyber-frame img {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .data-points {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
  }
  
  .data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    opacity: 0.8;
    animation: pulse 2s infinite;
  }
  
  .data-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--neon-blue);
    animation: expand 2s infinite;
  }
  
  .data-label {
    position: absolute;
    background-color: rgba(13, 2, 33, 0.8);
    padding: 5px 10px;
    border: 1px solid var(--neon-blue);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--neon-blue);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
  }
  
  .data-point:hover + .data-label {
    opacity: 1;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 0.8;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.2);
    }
  }
  
  @keyframes expand {
    0%, 100% {
      width: 20px;
      height: 20px;
      opacity: 0.5;
    }
    50% {
      width: 30px;
      height: 30px;
      opacity: 0;
    }
  }
  
  .about-text {
    position: relative;
  }
  
  .about-description p {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .about-description p::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-family: var(--font-secondary);
  }
    .tech-stack {
    margin-top: 2rem;
    margin-bottom: 3rem; /* Added extra margin for gap before Download CV button */
  }
  .tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem; /* Added margin for better spacing */
    max-width: 100%;
    overflow: hidden;
  }
    .tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 120px;
    height: 120px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.9), rgba(26, 26, 46, 0.9));
    border: 2px solid var(--neon-blue);
    box-shadow: 
      0 0 15px rgba(0, 240, 255, 0.3),
      inset 0 0 15px rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
  
  .tech-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .tech-icon:hover::before {
    left: 100%;
  }
  
  .tech-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
      0 8px 25px rgba(0, 240, 255, 0.5),
      inset 0 0 25px rgba(0, 240, 255, 0.2);
    border-color: var(--neon-green);
  }
  
  .tech-icon i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
  }
  
  .tech-icon span {
    font-size: 0.7rem;
    font-family: var(--font-secondary);
    color: var(--text-color);
  }
  
  /* ================= SERVICES SECTION ================= */
  .services-section {
    background-color: var(--cyber-black);
    position: relative;
    overflow: hidden;
  }
  
  .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(13, 2, 33, 0.9) 100%);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    border-color: var(--neon-pink);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  }
  
  .service-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
  }
  
  .service-description {
    font-family: var(--font-secondary);
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    margin-top: 1.5rem;
  }
  
  .service-feature {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
  }
  
  .service-feature i {
    color: var(--neon-blue);
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }
  
  /* ================= SKILLS SECTION ================= */
  .skills-section {
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
  }
  
  .skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 30% 40%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .skills-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }
  
  .skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .skill-category {
    background-color: rgba(13, 2, 33, 0.7);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
  }
  
  .category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
  }
  
  .category-title i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
    color: var(--neon-blue);
  }
  
  .skill-item {
    margin-bottom: 1.5rem;
  }
  
  .skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  
  .skill-name {
    font-family: var(--font-secondary);
    font-weight: 700;
  }
  
  .skill-percentage {
    color: var(--neon-blue);
    font-family: var(--font-secondary);
  }
  
  .skill-bar {
    height: 6px;
    background-color: var(--cyber-light);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  
  .skill-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: progressGlow 2s ease-in-out infinite;
  }
  
  .skill-progress {
    height: 100%;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-pink));
    border-radius: 3px;
    position: relative;
    z-index: 2;
    width: 0;
    transition: width 1.5s ease;
  }
  
  /* ================= PORTFOLIO SECTION ================= */
  .portfolio-section {
    background-color: var(--cyber-black);
    position: relative;
    overflow: hidden;
  }
  
  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .filter-button {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid var(--cyber-light);
    cursor: pointer;
    transition: all var(--transition-medium);
  }
  
  .filter-button:hover, .filter-button.active {
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    grid-gap: 2rem;
    position: relative;
    z-index: 1;
  }
    .portfolio-item {
    background: var(--cyber-dark);
    border: 1px solid var(--cyber-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    border-color: var(--neon-blue);
  }

  .image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-medium);
  }
  
  .portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
    filter: brightness(0.8) contrast(1.1);
  }

  .portfolio-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
    .portfolio-title {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .portfolio-category {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .portfolio-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    opacity: 0.9;
  }
  
  .portfolio-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
  }
  
  .portfolio-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(45deg, var(--cyber-light), var(--cyber-gray));
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-medium);
    white-space: nowrap;
  }

  .portfolio-link:hover {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
  }

  .portfolio-link.primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  }

  .portfolio-link.primary:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
  }

  .portfolio-link i {
    font-size: 0.9rem;
  }
  .portfolio-link span {
    font-weight: 500;
  }
  
  /* ================= EXPERIENCE SECTION ================= */
  .experience-section {
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
  }
  
  .experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-blue), var(--neon-pink));
    transform: translateX(-50%);
  }
  
  .timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    width: 50%;
    margin-bottom: 4rem;
  }
  
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    left: 50%;
  }
  
  .timeline-dot {
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
  }
  
  .timeline-content {
    background-color: rgba(13, 2, 33, 0.7);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    position: relative;
    width: 100%;
    max-width: 400px;
    transition: all var(--transition-medium);
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.2);
  }
  
  .timeline-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--cyber-light);
    color: var(--neon-blue);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-radius: 3px;
  }
  
  .timeline-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
  }
  
  .timeline-subtitle {
    font-family: var(--font-secondary);
    color: var(--neon-blue);
    margin-bottom: 1rem;
  }
  
  .timeline-description {
    font-family: var(--font-secondary);
  }
  
  /* ================= ACHIEVEMENTS SECTION ================= */
  .achievements-section {
    background-color: var(--cyber-gray);
    position: relative;
    overflow: hidden;
  }
  
  .achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 30% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(181, 55, 242, 0.05) 0%, transparent 60%);
    z-index: 0;
  }
  
  .achievements-content {
    position: relative;
    z-index: 1;
  }
  
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .achievement-card {
    background: rgba(13, 2, 33, 0.8);
    border: 1px solid var(--neon-green);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }
  
  .achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.6s;
  }
  
  .achievement-card:hover::before {
    left: 100%;
  }
  
  .achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.2);
    border-color: var(--neon-blue);
  }
  
  .achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--cyber-black);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4);
    }
    50% {
      box-shadow: 0 0 0 20px rgba(57, 255, 20, 0);
    }
  }
  
  .achievement-info h3 {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
  }
  
  .achievement-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
  }
  
  .achievement-date {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: var(--cyber-black);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ================= TESTIMONIAL SECTION ================= */
  .testimonials-section {
    background-color: var(--cyber-black);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
  }
  
  .testimonial-slides {
    display: flex;
    transition: transform var(--transition-medium);
  }
  
  .testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
  }
  
  .testimonial-card {
    background-color: rgba(13, 2, 33, 0.7);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
    position: relative;
  }
  
  .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--neon-blue);
    opacity: 0.3;
    line-height: 1;
  }
  
  .testimonial-text {
    font-family: var(--font-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--neon-blue);
  }
  
  .author-info h4 {
    font-size: 1.1rem;
    color: var(--neon-green);
    margin-bottom: 0.3rem;
  }
  
  .author-info p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--neon-blue);
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .prev-button, .next-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-medium);
  }
  
  .prev-button:hover, .next-button:hover {
    background-color: var(--neon-blue);
    color: var(--cyber-dark);
  }
  
  .slider-indicators {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
  }
  
  .slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--cyber-light);
    cursor: pointer;
    transition: all var(--transition-medium);
  }
  
  .slider-indicator.active {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    transform: scale(1.2);
  }
  
  /* ================= BLOG SECTION ================= */
  .blog-section {
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
  }
  
  .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 80% 40%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 20% 60%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    grid-gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .blog-card {
    background-color: rgba(13, 2, 33, 0.7);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: all var(--transition-medium);
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
    border-color: var(--neon-pink);
  }
  
  .blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--cyber-light);
    color: var(--neon-blue);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 3px;
  }
  
  .blog-title {
    font-size: 1.3rem;
    color: var(--neon-green);
    margin-bottom: 0.8rem;
    transition: color var(--transition-medium);
  }
  
  .blog-card:hover .blog-title {
    color: var(--neon-blue);
  }
  
  .blog-excerpt {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .blog-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all var(--transition-medium);
  }
  
  .blog-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-medium);
  }
  
  .blog-link:hover {
    color: var(--neon-pink);
  }
  
  .blog-link:hover i {
    transform: translateX(5px);
  }
  
  .blog-cta {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  /* ================= CONTACT SECTION ================= */
  .contact-section {
    background-color: var(--cyber-black);
    position: relative;
    overflow: hidden;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 70% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 30% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    position: relative;
    z-index: 1;
  }
  
  .contact-info {
    position: relative;
  }
  
  .contact-details {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 2, 33, 0.8);
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--neon-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all var(--transition-medium);
  }
  
  .contact-item:hover .contact-icon {
    background-color: var(--neon-blue);
    color: var(--cyber-dark);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  }
  
  .contact-text {
    font-family: var(--font-secondary);
  }
  
  .contact-text h4 {
    color: var(--neon-green);
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 2, 33, 0.8);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    color: var(--neon-blue);
    font-size: 1.2rem;
    transition: all var(--transition-medium);
  }
  
  .social-link:hover {
    background-color: var(--neon-blue);
    color: var(--cyber-dark);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  }
    .contact-form-container {
    position: relative;
    background: linear-gradient(145deg, var(--cyber-dark), var(--cyber-gray));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    z-index: -1;
  }
    .cyber-input {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .cyber-input input {
    width: 100%;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--cyber-light);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all var(--transition-medium);
    z-index: 2;
    position: relative;
  }

  .cyber-input input:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 
      0 0 0 3px rgba(0, 240, 255, 0.1),
      0 0 20px rgba(0, 240, 255, 0.2);
  }
    .cyber-textarea {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .cyber-textarea textarea {
    width: 100%;
    min-height: 150px;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--cyber-light);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all var(--transition-medium);
    z-index: 2;
    position: relative;
    resize: vertical;
  }

  .cyber-textarea textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 
      0 0 0 3px rgba(0, 240, 255, 0.1),
      0 0 20px rgba(0, 240, 255, 0.2);
  }
    /* ================= MAP SECTION ================= */
  .map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  
  .map-container {
    position: relative;
    height: 100%;
    width: 100%;
  }
  
  #map {
    height: 100%;
    width: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
  }
  
  .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 2, 33, 0.3);
    pointer-events: none;
  }
  
  .radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    overflow: hidden;
  }
  
  .radar-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 240, 255, 0) 50%);
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transform-origin: center right;
    animation: radarScan 4s linear infinite;
  }
  
  @keyframes radarScan {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* ================= FOOTER ================= */
  .cyber-footer {
    background-color: var(--cyber-dark);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-links h3 {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-pink));
  }
  
  .footer-links ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: var(--text-color);
    font-family: var(--font-secondary);
    position: relative;
    padding-left: 1.2rem;
    transition: all var(--transition-medium);
  }
  
  .footer-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    transition: all var(--transition-medium);
  }
  
  .footer-links a:hover {
    color: var(--neon-blue);
  }
  
  .footer-links a:hover::before {
    left: 5px;
    color: var(--neon-pink);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  @media (max-width: 768px) {
    .footer-bottom {
      justify-content: center;
      text-align: center;
    }
  }
  
  .copyright {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
  }
  
  .back-to-top {
    display: flex;
    align-items: center;
  }
  
  .back-to-top a {
    display: flex;
    align-items: center;
    color: var(--neon-blue);
    font-family: var(--font-secondary);
    transition: all var(--transition-medium);
  }
  
  .back-to-top i {
    margin-right: 0.5rem;
    font-size: 1rem;
    transform: translateY(0);
    transition: transform var(--transition-medium);
  }
  
  .back-to-top a:hover {
    color: var(--neon-pink);
  }
  
  .back-to-top a:hover i {
    transform: translateY(-5px);
  }
  
  /* ================= MODAL ================= */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 2, 33, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
  }
  
  .modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    background-color: var(--cyber-dark);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    transition: transform var(--transition-medium);
  }
  
  .modal.active .modal-content {
    transform: translateY(0);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  }
  
  .modal-title {
    font-size: 1.5rem;
    color: var(--neon-green);
  }
  
  .close-modal {
    font-size: 2rem;
    color: var(--neon-blue);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
  }
  
  .close-modal:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
  }
  
  .modal-body {
    padding: 2rem;
  }
  
  /* ================= CUSTOM CURSOR ================= */
  .cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  body:hover .cursor {
    opacity: 1;
  }
  
  .cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 50%;
  }
  
  .cursor-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-blue);
    border-radius: 50%;
    transition: all var(--transition-medium);
  }
  
  /* ================= RESPONSIVE STYLES ================= */
  @media (max-width: 1200px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-text {
      order: 2;
    }
  
    .hero-image {
      order: 1;
      margin-bottom: 2rem;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-description {
      max-width: 100%;
    }
  
    .cta-buttons {
      justify-content: center;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      grid-gap: 3rem;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
      grid-gap: 3rem;
    }
  }
  
  @media (max-width: 992px) {
    html {
      font-size: 15px;
    }
  
    section {
      padding: 4rem 0;
    }
  
    .timeline::before {
      left: 40px;
    }
  
    .timeline-item {
      width: 100%;
      padding-right: 0;
      padding-left: 80px;
    }
  
    .timeline-item:nth-child(even) {
      left: 0;
      padding-left: 80px;
    }
  
    .timeline-dot {
      left: 30px;
      right: auto;
    }
  
    .timeline-item:nth-child(even) .timeline-dot {
      left: 30px;
    }
  
    .timeline-content {
      max-width: 100%;
    }
  
    .cursor {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 14px;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 250px;
      background-color: var(--cyber-dark);
      border-left: 1px solid var(--neon-blue);
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 80px 2rem 2rem;
      transform: translateX(100%);
      transition: transform var(--transition-medium);
      z-index: 101;
    }
  
    .nav-links.active {
      transform: translateX(0);
    }
  
    .nav-links li {
      margin: 1rem 0;
    }
  
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -8px);
    }
  
    /* Enhanced Theme Switcher for Mobile */
    .theme-switcher {
      order: -1;
      margin: 0 1rem 0 0;
    }
    
    .theme-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.7rem;
    }
    
    .theme-btn .theme-label {
      display: none;
    }
    
    .theme-dropdown {
      right: -20px;
      min-width: 160px;
    }

    /* Enhanced Mobile Footer */
    .social-links {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 1rem;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      font-size: 1.4rem;
      border-radius: 50%;
      background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
      border: none;
      color: var(--cyber-black);
      position: relative;
      overflow: hidden;
    }
    
    .social-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s;
    }
    
    .social-link:hover::before {
      left: 100%;
    }
    
    .social-link:hover {
      background: linear-gradient(45deg, var(--neon-green), var(--neon-yellow));
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    }

    /* Enhanced Achievements Grid for Mobile */
    .achievements-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .achievement-card {
      padding: 1.5rem;
    }
    
    .achievement-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }

    .section-header {
      margin-bottom: 3rem;
    }
  }
  
  @media (max-width: 576px) {
    .glitch-title {
      font-size: 2.5rem;
    }
  
    .cyber-subtitle {
      font-size: 1.3rem;
    }
  
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
  
    .blog-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .portfolio-filters {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 1rem;
    }
  }
  
  /* Extra Small Screens Optimization */
  @media (max-width: 320px) {
    .glitch-title {
      font-size: 1.8rem;
    }
    
    .cyber-subtitle {
      font-size: 1.1rem;
    }
    
    .portfolio-item {
      border-radius: 6px;
    }
    
    .portfolio-info {
      padding: 1rem;
    }
    
    .portfolio-links {
      gap: 0.4rem;
    }
    
    .portfolio-link {
      padding: 0.7rem 0.8rem;
      font-size: 0.75rem;
    }
    
    .contact-form-container {
      padding: 1.5rem 1rem;
      border-radius: 8px;
    }
    
    .container {
      padding: 0 0.8rem;
    }
  }
  
  /* ================= ADDITIONAL RESPONSIVE IMPROVEMENTS ================= */
  
  /* Global Mobile Overflow Prevention */
  @media (max-width: 768px) {
    * {
      box-sizing: border-box;
    }
    
    .container {
      max-width: 100%;
      overflow-x: hidden;
      padding: 0 1rem;
    }
    
    .about-section .container {
      padding: 0 0.75rem;
    }
    
    /* Prevent any element from exceeding viewport width */
    .about-content,
    .tech-icons,
    .tech-stack,
    .cyber-button {
      max-width: 100%;
      overflow-x: hidden;
    }
  }
  
  /* Mobile-first base styles improvements */
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
    
    section {
      padding: 4rem 0;
    }
    
    .glitch-title {
      font-size: 2rem;
      line-height: 1.1;
    }
    
    .cyber-subtitle {
      font-size: 1.1rem;
    }
    
    .hero-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
    
    .hero-image {
      order: -1;
      max-width: 250px;
      margin: 0 auto;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
      .cyber-button {
      width: 100%;
      max-width: 280px;
      padding: 1rem;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      margin: 0 auto;
      display: block;
      text-align: center;
    }
    
    .about-content {
      flex-direction: column;
      gap: 2rem;
      padding: 0 1rem;
    }
    
    .about-text {
      padding: 0 0.5rem;
    }
    
    .about-image {
      max-width: 300px;
      margin: 0 auto;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .skills-categories {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .contact-content {
      flex-direction: column;
      gap: 2rem;
    }
    
    .data-points {
      display: none; /* Hide complex data points on very small screens */
    }
    
    .tech-icons {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.8rem;
      margin: 1rem 0.5rem;
      max-width: calc(100% - 1rem);
    }
      .tech-icon {
      width: 100%;
      max-width: 90px;
      height: 90px;
      min-width: 70px;
    }
    
    .tech-icon i {
      font-size: 1.5rem;
    }
    
    .tech-icon span {
      font-size: 0.6rem;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
  }
  
  /* Tablet specific optimizations */
  @media (min-width: 481px) and (max-width: 768px) {
    .hero-content {
      gap: 3rem;
    }
    
    .hero-image {
      max-width: 350px;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-categories {
      grid-template-columns: repeat(2, 1fr);
    }    .tech-icons {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      max-width: 100%;
    }
      .tech-icon {
      max-width: 100px;
      height: 100px;
    }
  }
  
  /* Large tablet and small desktop */
  @media (min-width: 769px) and (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /* Enhanced hover states for touch devices */
  @media (hover: none) and (pointer: coarse) {
    .portfolio-item:hover {
      transform: none; /* Disable hover effects on touch devices */
    }
    
    .service-card:hover {
      transform: none;
    }
    
    .cursor {
      display: none; /* Hide custom cursor on touch devices */
    }
  }
  
  /* Extra small devices (phones in portrait, less than 400px) */
  @media (max-width: 399px) {
    .container {
      padding: 0 0.5rem;
    }
      .tech-icons {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      margin: 1rem 0.25rem;
    }
      .tech-icon {
      max-width: 80px;
      height: 80px;
      min-width: 60px;
    }
    
    .tech-icon i {
      font-size: 1.2rem;
    }
    
    .tech-icon span {
      font-size: 0.55rem;
    }
    
    .cyber-button {
      font-size: 0.8rem;
      padding: 0.8rem 1rem;
      max-width: 250px;
    }
    
    .about-content {
      grid-gap: 1.5rem;
      padding: 0 0.5rem;
    }
    
    .tech-stack {
      margin-top: 1.5rem;
      margin-bottom: 2rem;
    }
  }
  
  /* Improved accessibility and performance */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    
    .scanlines,
    .glitch-overlay,
    .cyber-grid {
      animation: none;
    }
  }
  
  /* High DPI display optimizations */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cyber-frame img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
  }
  
  /* Landscape orientation on mobile */
  @media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
      padding: 2rem 0;
    }
    
    .hero-content {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-image {
      max-width: 200px;
    }
    
    section {
      padding: 3rem 0;
    }
  }
  
  /* Extra small screens */
  @media (max-width: 320px) {
    .glitch-title {
      font-size: 1.8rem;
    }
    
    .cyber-subtitle {
      font-size: 1.1rem;
    }
    
    .portfolio-item {
      border-radius: 6px;
    }
    
    .portfolio-info {
      padding: 1rem;
    }
    
    .portfolio-links {
      gap: 0.4rem;
    }
    
    .portfolio-link {
      padding: 0.7rem 0.8rem;
      font-size: 0.75rem;
    }
    
    .contact-form-container {
      padding: 1.5rem 1rem;
      border-radius: 8px;
    }
    
    .container {
      padding: 0 0.8rem;
    }
  }
  
  /* ================= FINAL OPTIMIZATIONS ================= */
  
  /* Ensure contact section visibility */
  .contact-details {
    min-height: 200px; /* Ensure container has minimum height even if JS fails */
  }
  
  .contact-item {
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Enhanced circular frame optimization */
  .cyber-frame {
    aspect-ratio: 1;
    width: 100%;
    max-width: 400px;
    position: relative;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
      0 0 30px var(--neon-blue),
      inset 0 0 30px rgba(0, 240, 255, 0.1);
  }
  
  .cyber-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    background: var(--cyber-black);
    z-index: 1;
  }
  
  .cyber-frame img {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    border-radius: 50%;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
    object-position: center;
  }
  
  /* Footer final optimizations */
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 576px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .copyright {
      order: 2;
    }
    
    .back-to-top {
      order: 1;
    }
  }

  /* Portfolio Cards Mobile Optimization */
    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .portfolio-item {
      margin-bottom: 1rem;
    }
    
    .image-container {
      height: 180px;
    }
    
    .portfolio-info {
      padding: 1.25rem;
    }
    
    .portfolio-title {
      font-size: 1.2rem;
      margin-bottom: 0.4rem;
    }
    
    .portfolio-category {
      font-size: 0.8rem;
      margin-bottom: 0.8rem;
    }
    
    .portfolio-description {
      font-size: 0.85rem;
      margin-bottom: 1.2rem;
    }
    
    .portfolio-links {
      gap: 0.5rem;
      flex-direction: column;
    }
    
    .portfolio-link {
      padding: 0.8rem 1rem;
      font-size: 0.8rem;
      justify-content: center;
      text-align: center;
    }

    /* Contact Form Mobile Optimization */
    .contact-form-container {
      padding: 2rem 1.5rem;
      margin: 0 -0.5rem;
    }
    
    .cyber-input input,
    .cyber-textarea textarea {
      padding: 1rem 0.8rem;
      font-size: 0.9rem;
    }
