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

       :root {
           --bg-color-dark: #050505;
           --bg-color-indigo: #0A0A2A;
           --accent-cyan: #00F0FF;
           --accent-magenta: #FF00FF;
           --accent-yellow: #FAFF00;
           --text-primary: rgba(255, 255, 255, 0.9);
           --text-secondary: rgba(255, 255, 255, 0.7);
       }

       body {
           font-family: 'Inter', sans-serif;
           background: linear-gradient(135deg, var(--bg-color-dark) 0%, var(--bg-color-indigo) 100%);
           color: var(--text-primary);
           height: 100vh;
           overflow-x: hidden;
           cursor: none;
           /* Hide default cursor */
       }

       /* Custom Cursor */
       .cursor {
           position: fixed;
           width: 12px;
           height: 12px;
           background-color: var(--accent-cyan);
           border-radius: 50%;
           pointer-events: none;
           mix-blend-mode: screen;
           z-index: 9999;
           box-shadow: 0 0 15px var(--accent-cyan);
           transform: translate(-50%, -50%);
           transition: width 0.2s, height 0.2s, background-color 0.2s;
       }

       .cursor-trail {
           position: fixed;
           width: 6px;
           height: 6px;
           background-color: var(--accent-cyan);
           border-radius: 50%;
           pointer-events: none;
           opacity: 0.5;
           z-index: 9998;
           mix-blend-mode: screen;
           transition: opacity 0.8s ease;
       }

       .cursor.active {
           width: 28px;
           height: 28px;
           background-color: rgba(0, 240, 255, 0.3);
       }

       /* Define CSS variables if not already defined */
       :root {
           --accent-cyan: #00f0ff;
           --accent-yellow: #ffeb3b;
           --text-primary: #ffffff;
       }

       .orbital-nav {
           position: fixed;
           width: 100px;
           height: 100px;
           border: 1px solid rgba(0, 240, 255, 0.2);
           border-radius: 50%;
           pointer-events: none;
           z-index: 999;
           /* Add initial position */
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           transition: all 0.3s ease;
       }

       .nav-node {
           position: absolute;
           width: 10px;
           height: 10px;
           background-color: var(--accent-cyan);
           border-radius: 50%;
           cursor: pointer;
           pointer-events: auto;
           box-shadow: 0 0 10px var(--accent-cyan);
           transition: all 0.3s ease;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .nav-node:hover {
           width: 18px;
           height: 18px;
       }

       .nav-node:hover .nav-label {
           opacity: 1;
           transform: translateY(0);
       }

       .nav-label {
           position: absolute;
           color: var(--text-primary);
           font-family: 'Space Grotesk', sans-serif;
           font-size: 14px;
           white-space: nowrap;
           opacity: 0;
           transform: translateY(10px);
           transition: all 0.3s ease;
           pointer-events: none;
       }

       /* Home Node */
       .nav-node:nth-child(1) {
           top: -5px;
           left: 45px;
           background-color: var(--accent-yellow);
           box-shadow: 0 0 15px var(--accent-yellow);
           width: 12px;
           height: 12px;
       }

       .nav-node:nth-child(1) .nav-label {
           top: -25px;
       }

       /* Projects Node */
       .nav-node:nth-child(2) {
           top: 45px;
           right: -5px;
       }

       .nav-node:nth-child(2) .nav-label {
           left: 15px;
       }

       /* Skills Node */
       .nav-node:nth-child(3) {
           bottom: -5px;
           left: 45px;
       }

       .nav-node:nth-child(3) .nav-label {
           bottom: -25px;
       }

       /* Experience Node */
       .nav-node:nth-child(4) {
           top: 45px;
           left: -5px;
       }

       .nav-node:nth-child(4) .nav-label {
           right: 15px;
       }

       /* Personal Space Link */
       .personal-space-link {
           position: fixed;
           top: 20px;
           right: 20px;
           width: 40px;
           height: 40px;
           background-color: rgba(255, 0, 255, 0.2);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           z-index: 100;
           cursor: pointer;
           transition: all 0.3s ease;
           border: 1px solid rgba(255, 0, 255, 0.3);
           box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
       }

       .personal-space-link:hover {
           transform: scale(1.1);
           box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
       }

       .personal-space-link i {
           color: var(--accent-magenta);
           font-size: 18px;
       }

       /* Particle Background */
       #particles-js {
           position: absolute;
           width: 100%;
           height: 100%;
           top: 0;
           left: 0;
           z-index: 1;
       }

       /* Grid Lines */
       .grid-lines {
           position: absolute;
           width: 100%;
           height: 100%;
           top: 0;
           left: 0;
           z-index: 2;
           opacity: 0.15;
           overflow: hidden;
       }

       .horizontal-line {
           position: absolute;
           width: 100%;
           height: 1px;
           background-color: var(--accent-cyan);
           animation: pulseLine 4s infinite alternate;
       }

       @keyframes pulseLine {
           0% {
               opacity: 0.1;
           }

           50% {
               opacity: 0.3;
           }

           100% {
               opacity: 0.1;
           }
       }

       /* Hero Content - Mobile Responsive */
       .hero-container {
           position: relative;
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: flex-start;
           height: 100vh;
           min-height: 600px;
           /* Ensure minimum height on small screens */
           padding: 0 10%;
           z-index: 10;
       }

       .terminal-container {
           font-family: 'JetBrains Mono', monospace;
           color: var(--accent-cyan);
           font-size: 16px;
           margin-bottom: 15px;
           opacity: 0;
           animation: fadeIn 0.5s forwards;
           animation-delay: 0.5s;
       }

       .terminal-line {
           display: block;
           position: relative;
           margin-bottom: 8px;
           overflow: hidden;
           white-space: nowrap;
           opacity: 0;
       }

       .name-container {
           margin: 20px 0;
       }

       .name {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 72px;
           font-weight: 700;
           color: var(--text-primary);
           text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
           letter-spacing: -1px;
       }

       .name span {
           display: inline-block;
           opacity: 0;
           transform: translateY(20px);
           animation: fadeUp 0.5s forwards;
       }

       .roles-container {
           overflow: hidden;
           height: auto;
           /* Changed from fixed height */
           margin-bottom: 10px;
           /* pad10% */
       }

       .roles {
           font-family: 'Inter', sans-serif;
           font-size: 24px;
           font-weight: 400;
           color: var(--text-secondary);
           opacity: 0;
           display: flex;
           flex-wrap: wrap;
           gap: 8px;

       }

       .role-text {
           display: inline;
       }

       .role-frontend {
           color: var(--accent-cyan);
       }

       .role-backend {
           color: var(--accent-yellow);
       }

       .role-ui {
           color: var(--accent-magenta);
       }

       /* CTA Buttons */
       .cta-container {
           display: flex;
           gap: 20px;
           opacity: 0;
           transform: translateY(20px);
           animation: fadeUp 0.5s forwards;
           animation-delay: 3.2s;
       }

       .btn-primary,
       .btn-secondary {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 16px;
           padding: 15px 30px;
           border-radius: 4px;
           cursor: pointer;
           transition: all 0.3s ease;
           text-decoration: none;
           display: inline-flex;
           align-items: center;
           justify-content: center;
           border: none;
       }

       .btn-primary {
           background-color: var(--accent-cyan);
           color: var(--bg-color-dark);
           font-weight: 600;
           letter-spacing: 1px;
           box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
           position: relative;
           overflow: hidden;
           gap: 8px;
           /* Add gap for icon spacing */
       }

       .btn-primary i {
           margin-right: 5px;
       }

       .btn-primary {
           background-color: var(--accent-cyan);
           color: var(--bg-color-dark);
           font-weight: 600;
           letter-spacing: 1px;
           box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
           position: relative;
           overflow: hidden;
       }

       .btn-primary:hover {
           transform: translateY(-3px);
           box-shadow: 0 10px 25px rgba(0, 240, 255, 0.7);
       }

       .btn-secondary {
           background-color: var(--accent-cyan);
           color: var(--bg-color-dark);
           font-weight: 600;
           letter-spacing: 1px;
           box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
           position: relative;
           overflow: hidden;
       }

       .btn-secondary:hover {
           transform: translateY(-3px);
           box-shadow: 0 10px 25px rgba(0, 240, 255, 0.7);
       }

       /* 3D Sphere */
       .sphere-container {
           position: absolute;
           right: 10%;
           top: -5%;

           transform: translateY(-50%);
           width: 400px;
           height: 400px;
           opacity: 0;
           animation: fadeIn 1s forwards;
           animation-delay: 3s;
       }

       /* Stats Banner */
       .stats-banner {
           position: absolute;
           bottom: 80px;
           left: 10%;
           right: 10%;
           display: flex;
           justify-content: space-between;
           padding: 15px 30px;
           background: rgba(10, 10, 42, 0.3);
           backdrop-filter: blur(10px);
           border-radius: 8px;
           border: 1px solid rgba(0, 240, 255, 0.1);
           opacity: 0;
           transform: translateY(20px);
           animation: fadeUp 0.5s forwards;
           animation-delay: 3.5s;
       }

       .stat-item {
           display: flex;
           flex-direction: column;
           align-items: center;
           gap: 5px;
       }

       .stat-number {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 28px;
           font-weight: 700;
           color: var(--accent-cyan);
       }

       .stat-label {
           font-size: 14px;
           color: var(--text-secondary);
           display: flex;
           align-items: center;
           gap: 5px;
       }

       .stat-icon {
           font-size: 16px;
           color: var(--accent-yellow);
       }

       /* Scroll Indicator */
       .scroll-indicator {
           position: absolute;
           bottom: 30px;
           left: 50%;
           transform: translateX(-50%);
           display: flex;
           flex-direction: column;
           align-items: center;
           gap: 10px;
           opacity: 0;
           animation: fadeIn 0.5s forwards, bounceArrow 2s infinite;
           animation-delay: 4s, 4.5s;

       }

       /* Tablet (iPad) - 768px to 1024px */
       @media (max-width: 1024px) {
           .hero-container {
               padding: 0 5%;
           }

           .name {
               font-size: 72px;
           }

           .sphere-container {
               width: 350px;
               height: 350px;
               right: 5%;
           }

           .stats-banner {
               left: 5%;
               right: 5%;
           }
       }

       /* Mobile Landscape & Small Tablets - 481px to 768px */
       @media (max-width: 768px) {
           .hero-container {
               align-items: center;
               text-align: center;
               padding: 60px 20px 80px;
               height: auto;
               min-height: 100vh;
           }

           .terminal-container {
               font-size: 14px;
           }

           .name {
               font-size: 56px;
           }

           .roles {
               font-size: 12px;
               justify-content: center;
           }

           /* Stack sphere below content on tablets */
           .sphere-container {
               position: relative;
               right: auto;
               top: auto;
               transform: none;
               margin: 40px auto;
               width: 280px;
               height: 280px;
               order: 4;
               /* Place after CTA buttons */
           }

           .cta-container {
               flex-direction: row;
               flex-wrap: wrap;
               justify-content: center;
               width: 100%;
               max-width: 400px;
               margin: 20px auto;
           }

           .btn-primary,
           .btn-secondary {
               flex: 1;
               min-width: 160px;
               font-size: 14px;
               padding: 12px 20px;
           }

           .stats-banner {
               position: relative;
               bottom: auto;
               left: auto;
               right: auto;
               margin-top: 40px;
               flex-wrap: wrap;
               gap: 20px;
               padding: 20px;
           }

           .stat-item {
               flex: 1;
               min-width: 100px;
           }

           .stat-number {
               font-size: 24px;
           }

           .stat-label {
               font-size: 12px;
           }

           .scroll-indicator {
               display: none;
               /* Hide on mobile as page scrolls */
           }
       }

       /* Mobile Portrait - 320px to 480px */
       @media (max-width: 480px) {
           .hero-container {
               padding: 40px 15px 60px;
               height: 100vh;
           }

           .terminal-container {
               font-size: 12px;
               /* margin-top: 10px; */
               margin-bottom: 10px;
           }

           .terminal-line {
               margin-bottom: 5px;
           }

           .name-container {
               margin: 15px 0;
           }

           .name {
               font-size: 52px;
               letter-spacing: -0.5px;
           }
 .roles-container {
     height: auto;
     padding: 44px;
 }
           .roles {
               font-size: 16px;
               flex-direction: row;
               gap: 5px;
           }

           /* Hide separator pipes on mobile */
           .roles span:not(.role-frontend):not(.role-backend):not(.role-ui) {
               display: none;
           }

           .cta-container {
               flex-direction: column;
               gap: 15px;
               margin-top: 30px;
           }

           .btn-primary,
           .btn-secondary {
               width: 100%;
               min-width: unset;
               font-size: 14px;
               padding: 15px 25px;
           }

           .sphere-container {
               width: 200px;
               height: 200px;
               margin: 10px auto;
           }

           /* #sphere-canvas{
                width: 100%;
                height: 100%;
           } */

           .stats-banner {
               flex-direction: column;
               gap: 15px;
               margin-top: 30px;
               padding: 15px;
           }

           .stat-item {
               width: 100%;
               flex-direction: row;
               justify-content: space-between;
               padding: 10px 0;
               border-bottom: 1px solid rgba(255, 255, 255, 0.1);
           }

           .stat-item:last-child {
               border-bottom: none;
           }

           .stat-number {
               font-size: 22px;
           }

           .stat-label {
               font-size: 14px;
           }
       }

       /* Very Small Screens - Below 320px */
       @media (max-width: 320px) {
           .name {
               font-size: 36px;
           }

           .roles-container {
               height: auto;
               padding: 60px;
           }

           .roles {
               font-size: 14px;
           }

           .sphere-container {
               width: 180px;
               height: 180px;
           }

           .btn-primary,
           .btn-secondary {
               font-size: 13px;
               padding: 12px 20px;
           }
       }

       /* Landscape Mode Adjustments */
       @media (max-height: 600px) and (orientation: landscape) {
           .hero-container {
               min-height: auto;
               padding: 20px 5%;
           }

           .name {
               font-size: 48px;
           }

           .sphere-container {
               width: 200px;
               height: 200px;
           }

           .stats-banner {
               position: relative;
               margin-top: 20px;
           }

           .scroll-indicator {
               display: none;
           }
       }

       /* Fix for iOS Safari */
       @supports (-webkit-touch-callout: none) {
           .hero-container {
               min-height: -webkit-fill-available;

           }
       }

       /* Animations remain the same */
       @keyframes fadeIn {
           to {
               opacity: 1;
           }
       }

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

       @keyframes bounceArrow {

           0%,
           20%,
           50%,
           80%,
           100% {
               transform: translateY(0);
           }

           40% {
               transform: translateY(-10px);
           }

           60% {
               transform: translateY(-5px);
           }
       }

       /* About Section Styles */
       .about-section {
           min-height: 100vh;
           padding: 80px 10%;
           position: relative;
           overflow: hidden;
           background: linear-gradient(180deg, var(--bg-color-indigo) 0%, var(--bg-color-dark) 100%);
       }

       .section-grid {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 60px;
           height: 100%;
       }

       .section-header {
           display: flex;
           align-items: center;
           margin-bottom: 40px;
       }

       .section-title-container {
           display: flex;
           align-items: center;
       }

       .section-number {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 24px;
           font-weight: 700;
           color: var(--accent-cyan);
           opacity: 0.7;
           margin-right: 15px;
       }

       .section-title {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 42px;
           font-weight: 700;
           color: var(--text-primary);
           margin: 0;
       }

       .section-line {
           height: 1px;
           background-color: var(--accent-cyan);
           opacity: 0.3;
           flex-grow: 1;
           margin-left: 20px;
       }

       /* Profile Styles */
       .profile-container {
           display: flex;
           align-items: center;
           margin-bottom: 30px;
       }

       .profile-image-wrapper {
           position: relative;
           width: 120px;
           height: 120px;
           margin-right: 20px;
       }

       .profile-image {
           width: 100%;
           height: 100%;
           overflow: hidden;
           position: relative;
           border-radius: 4px;
       }

       .glitch-image {
           width: 100%;
           height: 100%;
           object-fit: cover;
           position: relative;
           z-index: 1;
       }

       .image-glitch-effect {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0, 240, 255, 0.3);
           mix-blend-mode: overlay;
           opacity: 0;
           z-index: 2;
       }

       .profile-frame {
           position: absolute;
           top: -5px;
           left: -5px;
           right: -5px;
           bottom: -5px;
           border: 1px solid var(--accent-cyan);
           border-radius: 4px;
           z-index: 0;
       }

       .profile-info {
           flex-grow: 1;
       }

       .profile-name {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 24px;
           font-weight: 600;
           color: var(--text-primary);
           margin: 0 0 5px 0;
       }

       .profile-title {
           font-family: 'Inter', sans-serif;
           font-size: 16px;
           color: var(--accent-cyan);
           margin: 0;
       }

       /* Bio Text */
       .bio-text {
           margin-bottom: 30px;
       }

       .bio-paragraph {
           font-family: 'Inter', sans-serif;
           font-size: 16px;
           line-height: 1.6;
           color: var(--text-secondary);
           margin-bottom: 20px;
       }

       .highlight {
           color: var(--text-primary);
           font-weight: 500;
           position: relative;
       }

       .highlight::after {
           content: '';
           position: absolute;
           left: 0;
           bottom: 0;
           width: 100%;
           height: 2px;
           background: linear-gradient(90deg, var(--accent-cyan), transparent);
           opacity: 0.5;
       }

       /* Education Info */
       .education-info {
           margin-top: 25px;
           padding: 15px;
           background: rgba(10, 10, 42, 0.3);
           border-radius: 8px;
           border-left: 2px solid var(--accent-cyan);
       }

       .edu-item {
           display: flex;
           align-items: center;
       }

       .edu-icon {
           width: 40px;
           height: 40px;
           display: flex;
           align-items: center;
           justify-content: center;
           background: rgba(0, 240, 255, 0.1);
           border-radius: 50%;
           margin-right: 15px;
           color: var(--accent-cyan);
       }

       .edu-details h4 {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 18px;
           font-weight: 600;
           margin: 0 0 5px 0;
           color: var(--text-primary);
       }

       .edu-details p {
           font-size: 14px;
           margin: 0;
           color: var(--text-secondary);
       }

       /* CTA Buttons */
       .cta-buttons {
           display: flex;
           gap: 15px;
           margin-top: 30px;
       }

       .btn {
           font-family: 'Space Grotesk', sans-serif;
           padding: 12px 24px;
           border-radius: 4px;
           font-size: 16px;
           font-weight: 500;
           cursor: pointer;
           transition: all 0.3s ease;
           text-decoration: none;
           display: inline-flex;
           align-items: center;
           justify-content: center;
       }

       .btn-secondary {
           background-color: var(--accent-cyan);
           color: var(--bg-color-dark);
           border: none;
           box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
       }

       .btn-secondary:hover {
           transform: translateY(-3px);
           box-shadow: 0 5px 20px rgba(0, 240, 255, 0.5);
       }

       .btn-outline {
           background-color: transparent;
           color: var(--text-primary);
           border: 1px solid var(--accent-cyan);
       }

       .btn-outline:hover {
           background-color: rgba(0, 240, 255, 0.1);
           transform: translateY(-3px);
       }

       /* Neural Network Skills */
       .skills-network-container {
           position: relative;
           height: 100%;
           display: flex;
           flex-direction: column;
       }

       .network-header {
           margin-bottom: 20px;
       }

       .network-header h3 {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 24px;
           font-weight: 600;
           color: var(--text-primary);
           margin: 0 0 5px 0;
       }

       .network-header p {
           font-size: 14px;
           color: var(--text-secondary);
           margin: 0;
       }

       .network-visualization {
           flex-grow: 1;
           position: relative;
           border: 1px solid rgba(0, 240, 255, 0.2);
           border-radius: 8px;
           overflow: hidden;
           min-height: 400px;
           background: rgba(5, 5, 5, 0.3);
       }

       #skills-canvas {
           width: 100%;
           height: 100%;
           position: absolute;
           top: 0;
           left: 0;
       }

       .network-legend {
           display: flex;
           justify-content: center;
           margin-top: 15px;
           gap: 20px;
       }

       .legend-item {
           display: flex;
           align-items: center;
       }

       .legend-color {
           width: 12px;
           height: 12px;
           border-radius: 50%;
           margin-right: 8px;
       }

       .legend-text {
           font-size: 14px;
           color: var(--text-secondary);
       }

       .skill-details {
           margin-top: 20px;
           padding: 15px;
           background: rgba(10, 10, 42, 0.3);
           border-radius: 8px;
       }

       .skill-details p {
           font-size: 14px;
           color: var(--text-secondary);
           margin: 0 0 10px 0;
           text-align: center;
       }

       #selected-skill {
           text-align: center;
       }

       .skill-name {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 18px;
           font-weight: 600;
           color: var(--accent-cyan);
           margin-bottom: 5px;
       }

       .skill-description {
           font-size: 14px;
           color: var(--text-secondary);
       }

       /* Animation classes */
       .fade-in {
           opacity: 0;
           transform: translateY(20px);
           transition: opacity 0.5s ease, transform 0.5s ease;
       }

       .fade-in.visible {
           opacity: 1;
           transform: translateY(0);
       }

       /* Responsive Styles */
       @media (max-width: 1200px) {
           .section-grid {
               gap: 40px;
           }

           .section-title {
               font-size: 36px;
           }
       }

       @media (max-width: 992px) {
           .section-grid {
               grid-template-columns: 1fr;
           }

           .skills-network-container {
               margin-top: 40px;
           }

           .network-visualization {
               height: 350px;
           }
       }

       @media (max-width: 768px) {
           .about-section {
               padding: 60px 5%;
           }

           .profile-container {
               flex-direction: column;
               align-items: flex-start;
           }

           .profile-image-wrapper {
               margin-bottom: 20px;
               margin-right: 0;
           }

           .cta-buttons {
               flex-direction: column;
           }

           .btn {
               width: 100%;
           }
       }

       /* Projects Section: Digital Terrain */
       /* Projects Section */





       /* Enhanced Projects Section */
       .projects-section {
           padding: 100px 0;
           background: var(--bg-color-indig);
           position: relative;
           overflow: hidden;
       }

       /* Subtle background pattern */
       .projects-section::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-image:
               radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
               radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
           pointer-events: none;
       }

       .projects-section .container {
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
           position: relative;
           z-index: 1;
       }

       /* Enhanced Filter Buttons */
       .project-filters {
           display: flex;
           justify-content: center;
           flex-wrap: wrap;
           gap: 12px;
           margin-bottom: 60px;
           padding: 0 20px;
       }

       .filter-btn {
           background: rgba(255, 255, 255, 0.02);
           border: 1px solid rgba(255, 255, 255, 0.1);
           color: var(--text-secondary);
           padding: 12px 28px;
           border-radius: 30px;
           cursor: pointer;
           font-size: 14px;
           font-weight: 500;
           font-family: 'Space Grotesk', sans-serif;
           position: relative;
           overflow: hidden;
           transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
           backdrop-filter: blur(10px);
       }

       .filter-btn::before {
           content: '';
           position: absolute;
           top: 50%;
           left: 50%;
           width: 0;
           height: 0;
           border-radius: 50%;
           background: rgba(0, 240, 255, 0.3);
           transform: translate(-50%, -50%);
           transition: width 0.6s ease, height 0.6s ease;
       }

       .filter-btn:hover {
           transform: translateY(-2px);
           box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
           border-color: rgba(0, 240, 255, 0.5);
           color: var(--text-primary);
       }

       .filter-btn:hover::before {
           width: 100%;
           height: 100%;
       }

       .filter-btn.active {
           background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.1));
           color: var(--accent-cyan);
           border-color: var(--accent-cyan);
           box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
       }

       /* Enhanced Projects Grid */
       .projects-grid {
           display: grid;
           grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
           gap: 30px;
           padding: 0 10px;
       }

       /* Enhanced Project Card */
       .project-card {
           background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
           border: 1px solid rgba(255, 255, 255, 0.08);
           border-radius: 16px;
           padding: 30px;
           cursor: pointer;
           position: relative;
           overflow: hidden;
           transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
           backdrop-filter: blur(10px);
       }

       .project-card::before {
           content: '';
           position: absolute;
           top: -50%;
           left: -50%;
           width: 200%;
           height: 200%;
           background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
           opacity: 0;
           transition: opacity 0.5s ease;
           pointer-events: none;
       }

       .project-card::after {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: linear-gradient(135deg, transparent 0%, rgba(0, 240, 255, 0.05) 100%);
           opacity: 0;
           transition: opacity 0.4s ease;
           pointer-events: none;
       }

       .project-card:hover {
           transform: translateY(-8px) scale(1.02);
           box-shadow:
               0 20px 40px rgba(0, 0, 0, 0.3),
               0 0 60px rgba(0, 240, 255, 0.1);
           border-color: rgba(0, 240, 255, 0.3);
           background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
       }

       .project-card:hover::before {
           opacity: 1;
       }

       .project-card:hover::after {
           opacity: 1;
       }

       /* Card content animation */
       .project-card h3 {
           color: var(--text-primary);
           font-size: 22px;
           font-weight: 600;
           margin-bottom: 12px;
           font-family: 'Space Grotesk', sans-serif;
           transition: all 0.3s ease;
           position: relative;
       }

       .project-card:hover h3 {
           color: var(--accent-cyan);
           transform: translateX(5px);
       }

       /* Category badges with glow */
       .project-card-category {
           display: inline-block;
           font-size: 12px;
           font-weight: 500;
           padding: 6px 16px;
           border-radius: 20px;
           margin-bottom: 20px;
           position: relative;
           transition: all 0.3s ease;
       }

       .project-card.frontend .project-card-category {
           background: rgba(0, 240, 255, 0.15);
           color: var(--accent-cyan);
           box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
       }

       .project-card.fullstack .project-card-category {
           background: rgba(250, 255, 0, 0.15);
           color: var(--accent-yellow);
           box-shadow: 0 0 20px rgba(250, 255, 0, 0.2);
       }

       .project-card.tools .project-card-category {
           background: rgba(255, 0, 255, 0.15);
           color: var(--accent-magenta);
           box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
       }

       .project-card:hover .project-card-category {
           transform: scale(1.05);
       }

       /* Description with better typography */
       .project-card p {
           color: var(--text-secondary);
           font-size: 15px;
           line-height: 1.8;
           margin-bottom: 20px;
           transition: color 0.3s ease;
       }

       .project-card:hover p {
           color: rgba(255, 255, 255, 0.8);
       }

       /* Tech stack with animations */
       .project-card-tech {
           display: flex;
           flex-wrap: wrap;
           gap: 10px;
           margin-top: auto;
       }

       .tech-item {
           font-size: 12px;
           color: var(--text-secondary);
           background: rgba(255, 255, 255, 0.05);
           padding: 5px 14px;
           border-radius: 15px;
           border: 1px solid rgba(255, 255, 255, 0.08);
           transition: all 0.3s ease;
           position: relative;
           overflow: hidden;
       }

       .tech-item::before {
           content: '';
           position: absolute;
           top: 50%;
           left: 0;
           width: 0;
           height: 100%;
           background: rgba(0, 240, 255, 0.1);
           transform: translateY(-50%);
           transition: width 0.3s ease;
       }

       .project-card:hover .tech-item {
           border-color: rgba(0, 240, 255, 0.2);
           color: var(--text-primary);
       }

       .project-card:hover .tech-item::before {
           width: 100%;
       }

       /* Enhanced Modal */
       .project-modal {
           display: none;
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           z-index: 9999;
           animation: modalFadeIn 0.3s ease;
       }

       @keyframes modalFadeIn {
           from {
               opacity: 0;
           }

           to {
               opacity: 1;
           }
       }

       .project-modal.active {
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .modal-backdrop {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0, 0, 0, 0.85);
           backdrop-filter: blur(10px);
           animation: backdropFadeIn 0.3s ease;
       }

       @keyframes backdropFadeIn {
           from {
               backdrop-filter: blur(0px);
           }

           to {
               backdrop-filter: blur(10px);
           }
       }

       .modal-box {
           position: relative;
           background: linear-gradient(135deg, rgba(10, 10, 42, 0.98) 0%, rgba(5, 5, 30, 0.98) 100%);
           border: 1px solid rgba(0, 240, 255, 0.2);
           border-radius: 20px;
           padding: 40px;
           max-width: 650px;
           width: 90%;
           max-height: 85vh;
           overflow-y: auto;
           box-shadow:
               0 25px 50px rgba(0, 0, 0, 0.5),
               0 0 100px rgba(0, 240, 255, 0.1);
           animation: modalSlideIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
       }

       @keyframes modalSlideIn {
           from {
               transform: translateY(30px) scale(0.95);
               opacity: 0;
           }

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

       /* Modal scrollbar styling */
       .modal-box::-webkit-scrollbar {
           width: 6px;
       }

       .modal-box::-webkit-scrollbar-track {
           background: rgba(255, 255, 255, 0.05);
           border-radius: 3px;
       }

       .modal-box::-webkit-scrollbar-thumb {
           background: rgba(0, 240, 255, 0.3);
           border-radius: 3px;
       }

       .modal-box::-webkit-scrollbar-thumb:hover {
           background: rgba(0, 240, 255, 0.5);
       }

       .modal-close {
           position: absolute;
           top: 20px;
           right: 20px;
           background: rgba(255, 255, 255, 0.05);
           border: 1px solid rgba(255, 255, 255, 0.1);
           color: var(--text-secondary);
           font-size: 24px;
           width: 40px;
           height: 40px;
           border-radius: 50%;
           cursor: pointer;
           display: flex;
           align-items: center;
           justify-content: center;
           transition: all 0.3s ease;
           z-index: 1;
       }

       .modal-close:hover {
           background: rgba(255, 0, 0, 0.2);
           border-color: rgba(255, 0, 0, 0.3);
           color: #ff4444;
           transform: rotate(90deg);
       }

       .modal-title {
           font-size: 28px;
           font-weight: 600;
           color: var(--text-primary);
           margin-bottom: 15px;
           font-family: 'Space Grotesk', sans-serif;
           animation: slideInLeft 0.5s ease;
       }

       @keyframes slideInLeft {
           from {
               transform: translateX(-20px);
               opacity: 0;
           }

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

       .modal-category {
           display: inline-block;
           font-size: 14px;
           font-weight: 500;
           padding: 8px 20px;
           border-radius: 25px;
           margin-bottom: 25px;
           animation: slideInLeft 0.5s ease 0.1s both;
       }

       .modal-body {
           animation: fadeIn 0.5s ease 0.2s both;
       }

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

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

       .modal-desc {
           color: var(--text-secondary);
           line-height: 1.8;
           margin-bottom: 25px;
           font-size: 16px;
       }

       .modal-tech h4,
       .modal-features h4 {
           color: var(--text-primary);
           font-size: 18px;
           font-weight: 600;
           margin-bottom: 15px;
           font-family: 'Space Grotesk', sans-serif;
           position: relative;
           padding-left: 20px;
       }

       .modal-tech h4::before,
       .modal-features h4::before {
           content: '';
           position: absolute;
           left: 0;
           top: 50%;
           transform: translateY(-50%);
           width: 4px;
           height: 20px;
           background: var(--accent-cyan);
           border-radius: 2px;
       }

       .modal-tech {
           margin-bottom: 25px;
       }

       .modal-tech-list {
           display: flex;
           flex-wrap: wrap;
           gap: 12px;
       }

       .modal-tech-list .tech-item {
           background: rgba(0, 240, 255, 0.1);
           border: 1px solid rgba(0, 240, 255, 0.2);
           color: var(--accent-cyan);
           padding: 8px 18px;
           border-radius: 20px;
           font-size: 14px;
           transition: all 0.3s ease;
       }

       .modal-tech-list .tech-item:hover {
           background: rgba(0, 240, 255, 0.2);
           transform: translateY(-2px);
           box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
       }

       .modal-features ul {
           list-style: none;
           padding: 0;
           margin: 0;
       }

       .modal-features li {
           color: var(--text-secondary);
           padding: 12px 0;
           padding-left: 30px;
           position: relative;
           line-height: 1.6;
           font-size: 15px;
           border-bottom: 1px solid rgba(255, 255, 255, 0.05);
           transition: all 0.3s ease;
       }

       .modal-features li:last-child {
           border-bottom: none;
       }

       .modal-features li::before {
           content: '▸';
           position: absolute;
           left: 0;
           color: var(--accent-cyan);
           font-size: 18px;
           transition: all 0.3s ease;
       }

       .modal-features li:hover {
           color: var(--text-primary);
           padding-left: 35px;
       }

       .modal-features li:hover::before {
           left: 5px;
       }

       .modal-links {
           display: flex;
           gap: 20px;
           margin-top: 35px;
           padding-top: 30px;
           border-top: 1px solid rgba(255, 255, 255, 0.1);
       }

       .modal-btn {
           flex: 1;
           padding: 14px 28px;
           border-radius: 10px;
           text-decoration: none;
           font-size: 15px;
           font-weight: 500;
           text-align: center;
           transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
           position: relative;
           overflow: hidden;
       }

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

       .modal-btn:hover::before {
           left: 100%;
       }

       .demo-btn {
           background: linear-gradient(135deg, var(--accent-cyan), rgba(0, 240, 255, 0.8));
           color: var(--bg-color-dark);
           box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
       }

       .demo-btn:hover {
           transform: translateY(-2px);
           box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
       }

       .github-btn {
           background: transparent;
           color: var(--text-primary);
           border: 2px solid rgba(255, 255, 255, 0.2);
       }

       .github-btn:hover {
           background: rgba(255, 255, 255, 0.05);
           border-color: rgba(255, 255, 255, 0.3);
           transform: translateY(-2px);
       }




/* Enhanced Modal - Desktop Row Layout */
.modal-box {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 42, 0.98) 0%, rgba(5, 5, 30, 0.98) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 1200px;
    /* Increased for row layout */
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 240, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Modal Header */
.modal-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.modal-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Content Container - Row Layout for Desktop */
.modal-content-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left Side - Demo Preview */
.modal-demo-section {
    flex: 1.2;
    min-width: 0;
}

.demo-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px 10px 0 0;
    margin-bottom: -1px;
}

.demo-preview-header h4 {
    margin: 0;
    color: var(--accent-cyan);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-preview-header h4 i {
    font-size: 14px;
}

.preview-toggle {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.preview-toggle:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
}

.demo-preview-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.demo-iframe.loaded {
    display: block;
}

.demo-loading,
.demo-unavailable {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-secondary);
}

.demo-unavailable {
    display: none;
}

.demo-unavailable i {
    font-size: 48px;
    color: rgba(0, 240, 255, 0.3);
    margin-bottom: 15px;
}

.demo-unavailable p {
    margin: 10px 0 5px;
    font-size: 16px;
}

.demo-unavailable small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.modal-demo-section.no-demo .demo-loading {
    display: none;
}

.modal-demo-section.no-demo .demo-unavailable {
    display: block;
}

/* Right Side - Project Info */
.modal-info-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-body {
    flex: 1;
}

.modal-desc-section h4,
.modal-tech h4,
.modal-features h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-desc-section h4 i,
.modal-tech h4 i,
.modal-features h4 i {
    font-size: 14px;
    color: var(--accent-cyan);
}

.modal-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

.modal-desc-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-tech {
    margin-bottom: 20px;
}

.modal-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tech-list .tech-item {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    font-size: 14px;
}

.modal-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 16px;
}

/* Action Buttons */
.modal-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.modal-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn i {
    font-size: 14px;
}

/* Fullscreen Mode */
.modal-demo-section.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(5, 5, 30, 0.98);
}

.modal-demo-section.fullscreen .demo-preview-container {
    height: calc(100vh - 60px);
    border-radius: 0;
}

.modal-demo-section.fullscreen .demo-preview-header {
    border-radius: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-box {
        max-width: 900px;
        padding: 25px;
    }

    .demo-preview-container {
        height: 400px;
    }
}

@media (max-width: 768px) {

    /* Switch to column layout on mobile */
    .modal-content-container {
        flex-direction: column;
        gap: 20px;
    }

    .modal-box {
        padding: 20px;
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .modal-title {
        font-size: 24px;
    }

    .demo-preview-container {
        height: 300px;
    }

    .modal-demo-section,
    .modal-info-section {
        width: 100%;
    }

    .modal-links {
        flex-direction: column;
        gap: 10px;
    }

    .modal-btn {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .modal-box {
        padding: 15px;
        border-radius: 15px;
        max-height: 95vh;
    }

    .modal-title {
        font-size: 20px;
    }

    .demo-preview-container {
        height: 250px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .modal-desc {
        font-size: 14px;
    }

    .modal-tech-list .tech-item {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Loading spinner animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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












       
       /* Loading Animation */
       .project-card {
           opacity: 0;
           animation: cardFadeIn 0.6s ease forwards;
       }

       .project-card:nth-child(1) {
           animation-delay: 0.1s;
       }

       .project-card:nth-child(2) {
           animation-delay: 0.2s;
       }

       .project-card:nth-child(3) {
           animation-delay: 0.3s;
       }

       .project-card:nth-child(4) {
           animation-delay: 0.4s;
       }

       .project-card:nth-child(5) {
           animation-delay: 0.5s;
       }

       .project-card:nth-child(6) {
           animation-delay: 0.6s;
       }

       .project-card:nth-child(7) {
           animation-delay: 0.7s;
       }

       .project-card:nth-child(8) {
           animation-delay: 0.8s;
       }

       @keyframes cardFadeIn {
           from {
               opacity: 0;
               transform: translateY(30px);
           }

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

       /* Filter animation */
       .project-card.hidden {
           animation: cardFadeOut 0.3s ease forwards;
       }

       @keyframes cardFadeOut {
           to {
               opacity: 0;
               transform: scale(0.9);
               pointer-events: none;
           }
       }

       /* Responsive Design */
       @media (max-width: 1024px) {
           .projects-grid {
               grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
               gap: 25px;
           }
       }

       @media (max-width: 768px) {
           .projects-section {
               padding: 60px 0;
           }

           .project-filters {
               gap: 8px;
               margin-bottom: 40px;
           }

           .filter-btn {
               padding: 10px 20px;
               font-size: 13px;
           }

           .projects-grid {
               grid-template-columns: 1fr;
               gap: 20px;
               padding: 0;
           }

           .project-card {
               padding: 25px;
           }

           .project-card h3 {
               font-size: 20px;
           }

           .modal-box {
               width: 95%;
               max-height: 90vh;
               padding: 30px 25px;
               margin: 20px;
           }

           .modal-close {
               top: 15px;
               right: 15px;
               width: 35px;
               height: 35px;
               font-size: 20px;
           }

           .modal-title {
               font-size: 24px;
               margin-bottom: 12px;
           }

           .modal-links {
               flex-direction: column;
               gap: 15px;
           }

           .modal-btn {
               width: 100%;
               padding: 12px 24px;
           }
       }

       @media (max-width: 480px) {
           .projects-section .container {
               padding: 0 15px;
           }

           .filter-btn {
               padding: 8px 16px;
               font-size: 12px;
           }

           .project-card {
               padding: 20px;
               border-radius: 12px;
           }

           .project-card h3 {
               font-size: 18px;
               margin-bottom: 10px;
           }

           .project-card p {
               font-size: 14px;
               margin-bottom: 15px;
           }

           .tech-item {
               font-size: 11px;
               padding: 4px 10px;
           }

           .modal-box {
               padding: 25px 20px;
               border-radius: 15px;
           }

           .modal-title {
               font-size: 22px;
           }

           .modal-desc {
               font-size: 14px;
           }

           .modal-tech h4,
           .modal-features h4 {
               font-size: 16px;
           }

           .modal-features li {
               font-size: 14px;
               padding: 10px 0;
               padding-left: 25px;
           }
       }

       /* Smooth scrolling for modal */
       .modal-box {
           scroll-behavior: smooth;
       }

       /* Accessibility */
       .project-card:focus,
       .filter-btn:focus,
       .modal-btn:focus {
           outline: 2px solid var(--accent-cyan);
           outline-offset: 3px;
       }

       /* Performance optimization */
       .project-card,
       .filter-btn,
       .modal-btn {
           will-change: transform;
       }

       /* Disable animations for reduced motion preference */
       @media (prefers-reduced-motion: reduce) {

           .project-card,
           .filter-btn,
           .modal-btn,
           .modal-box {
               animation: none !important;
               transition: none !important;
           }

           .project-card:hover {
               transform: none !important;
           }
       }

       /* Dark mode enhancements */
       @media (prefers-color-scheme: dark) {
           .modal-box {
               background: linear-gradient(135deg, rgba(5, 5, 25, 0.98) 0%, rgba(10, 10, 35, 0.98) 100%);
           }
       }

       /* High contrast mode */
       @media (prefers-contrast: high) {
           .project-card {
               border: 2px solid rgba(255, 255, 255, 0.3);
           }

           .filter-btn {
               border: 2px solid rgba(255, 255, 255, 0.4);
           }
       }






       /* Experience & Certifications Section */
       .experience-section {
           padding: 100px 0;
           background: var(--bg-color-indig);
           position: relative;
           overflow: hidden;
       }

       /* Background decoration */
       .experience-section::before {
           content: '';
           position: absolute;
           top: 0;
           right: -20%;
           width: 40%;
           height: 100%;
           background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
           pointer-events: none;
       }

       .experience-section .container {
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
           position: relative;
           z-index: 1;
       }

       /* Tab Navigation */
       .exp-tabs {
           display: flex;
           justify-content: center;
           gap: 20px;
           margin-bottom: 60px;
       }

       .tab-btn {
           background: rgba(255, 255, 255, 0.02);
           border: 1px solid rgba(255, 255, 255, 0.1);
           color: var(--text-secondary);
           padding: 15px 35px;
           border-radius: 30px;
           cursor: pointer;
           font-size: 16px;
           font-weight: 500;
           font-family: 'Space Grotesk', sans-serif;
           display: flex;
           align-items: center;
           gap: 10px;
           transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
           position: relative;
           overflow: hidden;
       }

       .tab-btn i {
           font-size: 18px;
       }

       .tab-btn::before {
           content: '';
           position: absolute;
           bottom: 0;
           left: 0;
           width: 0;
           height: 3px;
           background: var(--accent-cyan);
           transition: width 0.4s ease;
       }

       .tab-btn:hover {
           transform: translateY(-2px);
           border-color: rgba(0, 240, 255, 0.3);
           color: var(--text-primary);
       }

       .tab-btn.active {
           background: rgba(0, 240, 255, 0.1);
           color: var(--accent-cyan);
           border-color: var(--accent-cyan);
           box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
       }

       .tab-btn.active::before {
           width: 100%;
       }

       /* Tab Content */
       .tab-content {
           position: relative;
       }

       .tab-panel {
           display: none;
           animation: tabFadeIn 0.5s ease;
       }

       .tab-panel.active {
           display: block;
       }

       @keyframes tabFadeIn {
           from {
               opacity: 0;
               transform: translateY(20px);
           }

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

       /* Timeline Styles */
       .timeline {
           position: relative;
           padding-left: 50px;
           max-width: 800px;
           margin: 0 auto;
       }

       .timeline-line {
           position: absolute;
           left: 20px;
           top: 0;
           bottom: 0;
           width: 2px;
           background: linear-gradient(to bottom, var(--accent-cyan), rgba(0, 240, 255, 0.2));
       }

       .timeline-item {
           position: relative;
           margin-bottom: 50px;
           opacity: 0;
           animation: timelineItemFadeIn 0.6s ease forwards;
       }

       .timeline-item:nth-child(2) {
           animation-delay: 0.1s;
       }

       .timeline-item:nth-child(3) {
           animation-delay: 0.2s;
       }

       .timeline-item:nth-child(4) {
           animation-delay: 0.3s;
       }

       @keyframes timelineItemFadeIn {
           to {
               opacity: 1;
               transform: translateX(0);
           }

           from {
               opacity: 0;
               transform: translateX(-20px);
           }
       }

       .timeline-dot {
           position: absolute;
           left: -31px;
           top: 5px;
           width: 16px;
           height: 16px;
           background: var(--accent-cyan);
           border: 3px solid var(--bg-color-dark);
           border-radius: 50%;
           box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
           z-index: 1;
       }

       .timeline-content {
           background: rgba(255, 255, 255, 0.02);
           border: 1px solid rgba(255, 255, 255, 0.08);
           border-radius: 12px;
           padding: 25px;
           transition: all 0.3s ease;
           position: relative;
           overflow: hidden;
       }

       .timeline-content::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
           opacity: 0;
           transition: opacity 0.3s ease;
       }

       .timeline-content:hover {
           transform: translateY(-5px);
           border-color: rgba(0, 240, 255, 0.3);
           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
       }

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

       .timeline-date {
           color: var(--accent-cyan);
           font-size: 14px;
           font-weight: 500;
           margin-bottom: 10px;
       }

       .timeline-title {
           color: var(--text-primary);
           font-size: 22px;
           font-weight: 600;
           margin-bottom: 5px;
           font-family: 'Space Grotesk', sans-serif;
       }

       .timeline-company {
           color: var(--text-secondary);
           font-size: 18px;
           font-weight: 400;
           margin-bottom: 15px;
       }

       .timeline-description {
           color: var(--text-secondary);
           line-height: 1.8;
           margin-bottom: 20px;
       }

       .timeline-tech {
           display: flex;
           flex-wrap: wrap;
           gap: 10px;
       }

       .timeline-tech .tech-tag {
           background: rgba(255, 255, 255, 0.05);
           border: 1px solid rgba(255, 255, 255, 0.1);
           color: var(--text-secondary);
           padding: 5px 15px;
           border-radius: 20px;
           font-size: 13px;
           transition: all 0.3s ease;
       }

       .timeline-content:hover .tech-tag {
           border-color: rgba(0, 240, 255, 0.3);
           color: var(--text-primary);
       }

       /*
/* Certifications Grid */
       .cert-grid {
           display: grid;
           grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
           gap: 30px;
       }

       .cert-card {
           background: rgba(255, 255, 255, 0.02);
           border: 1px solid rgba(255, 255, 255, 0.08);
           border-radius: 16px;
           padding: 30px;
           text-align: center;
           transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
           position: relative;
           overflow: hidden;
           opacity: 0;
           animation: certCardFadeIn 0.6s ease forwards;
       }

       .cert-card:nth-child(1) {
           animation-delay: 0.1s;
       }

       .cert-card:nth-child(2) {
           animation-delay: 0.2s;
       }

       .cert-card:nth-child(3) {
           animation-delay: 0.3s;
       }

       .cert-card:nth-child(4) {
           animation-delay: 0.4s;
       }

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

           from {
               opacity: 0;
               transform: translateY(30px);
           }
       }

       .cert-card::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           height: 4px;
           background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
           transform: translateX(-100%);
           transition: transform 0.6s ease;
       }

       .cert-card:hover::before {
           transform: translateX(0);
       }

       .cert-card:hover {
           transform: translateY(-10px);
           border-color: rgba(0, 240, 255, 0.3);
           box-shadow:
               0 20px 40px rgba(0, 0, 0, 0.3),
               0 0 40px rgba(0, 240, 255, 0.1);
           background: rgba(255, 255, 255, 0.03);
       }

       .cert-icon {
           width: 80px;
           height: 80px;
           margin: 0 auto 20px;
           background: rgba(0, 240, 255, 0.1);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           font-size: 36px;
           color: var(--accent-cyan);
           transition: all 0.3s ease;
           position: relative;
       }

       .cert-icon::after {
           content: '';
           position: absolute;
           width: 100%;
           height: 100%;
           border: 2px solid var(--accent-cyan);
           border-radius: 50%;
           opacity: 0;
           transform: scale(1.2);
           transition: all 0.3s ease;
       }

       .cert-card:hover .cert-icon {
           transform: rotateY(360deg);
           box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
       }

       .cert-card:hover .cert-icon::after {
           opacity: 0.5;
           transform: scale(1.4);
       }

       .cert-title {
           color: var(--text-primary);
           font-size: 20px;
           font-weight: 600;
           margin-bottom: 10px;
           font-family: 'Space Grotesk', sans-serif;
       }

       .cert-issuer {
           color: var(--accent-cyan);
           font-size: 16px;
           margin-bottom: 5px;
       }

       .cert-date {
           color: var(--text-secondary);
           font-size: 14px;
           margin-bottom: 20px;
       }

       .cert-skills {
           display: flex;
           flex-wrap: wrap;
           gap: 8px;
           justify-content: center;
           margin-bottom: 20px;
       }

       .cert-skills span {
           background: rgba(255, 255, 255, 0.05);
           border: 1px solid rgba(255, 255, 255, 0.1);
           color: var(--text-secondary);
           padding: 4px 12px;
           border-radius: 15px;
           font-size: 12px;
           transition: all 0.3s ease;
       }

       .cert-card:hover .cert-skills span {
           border-color: rgba(0, 240, 255, 0.2);
           color: var(--text-primary);
       }

       .cert-link {
           display: inline-flex;
           align-items: center;
           gap: 8px;
           color: var(--accent-cyan);
           text-decoration: none;
           font-size: 14px;
           font-weight: 500;
           padding: 8px 20px;
           border: 1px solid var(--accent-cyan);
           border-radius: 20px;
           transition: all 0.3s ease;
           position: relative;
           overflow: hidden;
       }

       .cert-link::before {
           content: '';
           position: absolute;
           top: 0;
           left: -100%;
           width: 100%;
           height: 100%;
           background: var(--accent-cyan);
           transition: left 0.3s ease;
           z-index: -1;
       }

       .cert-link:hover {
           color: var(--bg-color-dark);
       }

       .cert-link:hover::before {
           left: 0;
       }

       .cert-link i {
           font-size: 12px;
           transition: transform 0.3s ease;
       }

       .cert-link:hover i {
           transform: translateX(3px);
       }

       /* Responsive Design */
       @media (max-width: 1024px) {
           .timeline {
               padding-left: 40px;
           }

           .cert-grid {
               grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
               gap: 25px;
           }
       }

       @media (max-width: 768px) {
           .experience-section {
               padding: 60px 0;
           }

           .exp-tabs {
               flex-direction: column;
               width: 100%;
               max-width: 300px;
               margin: 0 auto 40px;
               gap: 15px;
           }

           .tab-btn {
               width: 100%;
               justify-content: center;
               padding: 12px 25px;
           }

           .timeline {
               padding-left: 30px;
           }

           .timeline-line {
               left: 15px;
           }

           .timeline-dot {
               left: -26px;
               width: 14px;
               height: 14px;
           }

           .timeline-content {
               padding: 20px;
           }

           .timeline-title {
               font-size: 20px;
           }

           .timeline-company {
               font-size: 16px;
           }

           .cert-grid {
               grid-template-columns: 1fr;
               gap: 20px;
           }

           .cert-card {
               padding: 25px;
           }
       }

       @media (max-width: 480px) {
           .experience-section .container {
               padding: 0 15px;
           }

           .section-title {
               font-size: 28px;
           }

           .tab-btn {
               font-size: 14px;
               padding: 10px 20px;
           }

           .timeline {
               padding-left: 20px;
           }

           .timeline-line {
               left: 10px;
           }

           .timeline-dot {
               left: -21px;
               width: 12px;
               height: 12px;
           }

           .timeline-content {
               padding: 18px;
           }

           .timeline-title {
               font-size: 18px;
           }

           .timeline-company {
               font-size: 15px;
           }

           .timeline-description {
               font-size: 14px;
           }

           .cert-icon {
               width: 60px;
               height: 60px;
               font-size: 28px;
           }

           .cert-title {
               font-size: 18px;
           }

           .cert-issuer {
               font-size: 15px;
           }
       }

       /* Animations for section entrance */
       .experience-section {
           opacity: 0;
           animation: sectionFadeIn 0.8s ease forwards;
       }

       @keyframes sectionFadeIn {
           to {
               opacity: 1;
           }
       }

       /* Hover glow effect */
       .timeline-item:hover .timeline-dot {
           transform: scale(1.3);
           box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
       }

       /* Loading skeleton for dynamic content */
       .skeleton {
           background: linear-gradient(90deg,
                   rgba(255, 255, 255, 0.05) 25%,
                   rgba(255, 255, 255, 0.1) 50%,
                   rgba(255, 255, 255, 0.05) 75%);
           background-size: 200% 100%;
           animation: loading 1.5s infinite;
       }

       @keyframes loading {
           0% {
               background-position: 200% 0;
           }

           100% {
               background-position: -200% 0;
           }
       }
















       /* Stream Particles */
       .stream-particle {
           position: absolute;
           background: var(--accent-cyan);
           border-radius: 50%;
           opacity: 0.6;
           pointer-events: none;
       }

       /* Responsive Styles */
       @media (max-width: 992px) {
           .experience-terminal {
               width: 90%;
               max-width: 450px;
           }
       }

       @media (max-width: 768px) {
           .experience-section {
               padding: 60px 0 80px;
           }

           .data-stream {
               height: 800px;
           }

           .experience-card {
               width: 280px;
           }

           .experience-terminal {
               width: 90%;
               max-width: 350px;
           }
       }

       @media (max-width: 576px) {
           .data-stream {
               height: 900px;
           }

           .experience-card {
               width: 250px;
           }

           .experience-terminal {
               width: 100%;
               position: fixed;
               top: 50%;
               left: 50%;
               transform: translate(-50%, -50%) scale(0.9);
           }

           .experience-item.expanded .experience-terminal {
               transform: translate(-50%, -50%) scale(1);
           }

           .year-markers {
               padding: 0 20px;
           }
       }



       /* Contact Section: Digital Portal */
       .contact-section {
           position: relative;
           min-height: 100vh;
           background: linear-gradient(to top, #050505 0%, #0A0A2A 100%);
           padding: 80px 0 0;
           overflow: hidden;
       }

       .portal-container {
           position: relative;
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
       }

       /* Section Header */
       .contact-header {
           margin-bottom: 60px;
           padding: 0 10%;
       }

       /* Digital Portal */
       .digital-portal {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 30px;
           margin-bottom: 80px;
       }

       /* Portal Panels */
       .portal-panel {
           background: rgba(10, 10, 42, 0.7);
           backdrop-filter: blur(10px);
           border-radius: 10px;
           overflow: hidden;
           border: 1px solid rgba(0, 240, 255, 0.2);
           box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
           transition: all 0.3s ease;
       }

       .portal-panel:hover {
           border-color: rgba(0, 240, 255, 0.4);
           box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
       }

       .panel-header {
           background: rgba(5, 5, 5, 0.8);
           padding: 15px 20px;
           display: flex;
           justify-content: space-between;
           align-items: center;
           border-bottom: 1px solid rgba(0, 240, 255, 0.3);
       }

       .panel-title {
           display: flex;
           align-items: center;
           gap: 10px;
           color: var(--accent-cyan);
           font-family: 'Space Grotesk', sans-serif;
           font-size: 16px;
           font-weight: 600;
       }

       .panel-title i {
           font-size: 14px;
       }

       .connection-status {
           display: flex;
           align-items: center;
           gap: 8px;
       }

       .status-indicator {
           width: 8px;
           height: 8px;
           background: #28CA41;
           border-radius: 50%;
           animation: pulse 2s infinite;
       }

       .status-text {
           font-size: 14px;
           color: var(--text-secondary);
       }

       .panel-body {
           padding: 25px;
       }

       /* Contact Form */
       .contact-form {
           display: flex;
           flex-direction: column;
           gap: 20px;
       }

       .form-group {
           position: relative;
       }

       .input-wrapper {
           position: relative;
       }

       .input-wrapper label {
           position: absolute;
           top: 0;
           left: 0;
           font-family: 'Space Grotesk', sans-serif;
           font-size: 14px;
           color: var(--text-secondary);
           pointer-events: none;
           transition: all 0.3s ease;
       }

       .input-wrapper input,
       .input-wrapper textarea {
           width: 100%;
           background: transparent;
           border: none;
           outline: none;
           padding: 25px 0 10px;
           color: var(--text-primary);
           font-family: 'Inter', sans-serif;
           font-size: 16px;
           resize: none;
       }

       .input-line {
           position: absolute;
           bottom: 0;
           left: 0;
           width: 100%;
           height: 1px;
           background: rgba(0, 240, 255, 0.3);
           transition: all 0.3s ease;
       }

       .input-wrapper input:focus+.input-line,
       .input-wrapper textarea:focus+.input-line,
       .input-wrapper input:valid+.input-line,
       .input-wrapper textarea:valid+.input-line {
           height: 2px;
           background: var(--accent-cyan);
       }

       .input-wrapper input:focus~label,
       .input-wrapper textarea:focus~label,
       .input-wrapper input:valid~label,
       .input-wrapper textarea:valid~label {
           top: -5px;
           font-size: 12px;
           color: var(--accent-cyan);
       }

       .input-validation {
           position: absolute;
           right: 0;
           top: 50%;
           transform: translateY(-50%);
           opacity: 0;
           transition: all 0.3s ease;
           color: #28CA41;
       }

       .input-wrapper input:valid~.input-validation,
       .input-wrapper textarea:valid~.input-validation {
           opacity: 1;
       }

       .form-footer {
           margin-top: 10px;
           display: flex;
           justify-content: flex-end;
       }

       /* Portal Button */
       .portal-btn {
           position: relative;
           display: flex;
           align-items: center;
           gap: 10px;
           background: rgba(0, 240, 255, 0.1);
           border: 1px solid rgba(0, 240, 255, 0.3);
           border-radius: 5px;
           padding: 12px 20px;
           color: var(--text-primary);
           font-family: 'Space Grotesk', sans-serif;
           font-size: 16px;
           font-weight: 500;
           cursor: pointer;
           transition: all 0.3s ease;
           overflow: hidden;
       }

       .portal-btn::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;
       }

       .portal-btn:hover {
           background: rgba(0, 240, 255, 0.2);
           transform: translateY(-3px);
           box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
       }

       .portal-btn:hover::before {
           left: 100%;
       }

       .btn-icon {
           display: flex;
           align-items: center;
           justify-content: center;
           width: 24px;
           height: 24px;
           background: rgba(0, 240, 255, 0.2);
           border-radius: 50%;
           transition: all 0.3s ease;
       }

       .portal-btn:hover .btn-icon {
           background: var(--accent-cyan);
           color: var(--bg-color-dark);
       }

       /* Contact Info */
       .contact-info {
           margin-bottom: 30px;
       }

       .info-item {
           display: flex;
           align-items: flex-start;
           gap: 15px;
           margin-bottom: 20px;
       }

       .info-icon {
           display: flex;
           align-items: center;
           justify-content: center;
           width: 40px;
           height: 40px;
           background: rgba(0, 240, 255, 0.1);
           border-radius: 50%;
           color: var(--accent-cyan);
           font-size: 16px;
           transition: all 0.3s ease;
       }

       .info-item:hover .info-icon {
           background: rgba(0, 240, 255, 0.3);
           transform: scale(1.1);
       }

       .info-content {
           flex-grow: 1;
       }

       .info-label {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 14px;
           color: var(--text-secondary);
           margin-bottom: 5px;
       }

       .info-text {
           font-size: 16px;
           color: var(--text-primary);
           word-break: break-word;
       }

       /* Social Networks */
       .social-networks {
           margin-top: 30px;
       }

       .networks-title {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 16px;
           font-weight: 600;
           color: var(--accent-cyan);
           margin-bottom: 20px;
       }

       .network-links {
           display: grid;
           grid-template-columns: repeat(2, 1fr);
           gap: 20px;
       }

       .network-node {
           position: relative;
           display: flex;
           flex-direction: column;
           align-items: center;
           text-decoration: none;
           transition: all 0.3s ease;
           padding: 15px;
           border-radius: 8px;
       }

       .network-node::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(255, 255, 255, 0.05);
           border-radius: 8px;
           opacity: 0;
           transition: all 0.3s ease;
           z-index: -1;
       }

       .network-node:hover::before {
           opacity: 1;
       }

       .node-icon {
           display: flex;
           align-items: center;
           justify-content: center;
           width: 50px;
           height: 50px;
           border-radius: 50%;
           margin-bottom: 10px;
           font-size: 22px;
           position: relative;
           z-index: 1;
       }

       .node-pulse {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           width: 50px;
           height: 50px;
           border-radius: 50%;
           z-index: 0;
       }

       .node-label {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 14px;
           color: var(--text-secondary);
           transition: all 0.3s ease;
       }

       .network-node:hover .node-label {
           color: var(--text-primary);
       }

       /* Network node styling variations */
       .network-node.github .node-icon {
           background: rgba(255, 255, 255, 0.1);
           color: var(--text-primary);
       }

       .network-node.github:hover .node-icon {
           background: #333;
           color: white;
       }

       .network-node.github .node-pulse {
           box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
           animation: pulse-white 2s infinite;
       }

       .network-node.linkedin .node-icon {
           background: rgba(0, 119, 181, 0.2);
           color: #0077B5;
       }

       .network-node.linkedin:hover .node-icon {
           background: #0077B5;
           color: white;
       }

       .network-node.linkedin .node-pulse {
           box-shadow: 0 0 0 rgba(0, 119, 181, 0.4);
           animation: pulse-linkedin 2s infinite;
       }

       .network-node.twitter .node-icon {
           background: rgba(29, 161, 242, 0.2);
           color: #1DA1F2;
       }

       .network-node.twitter:hover .node-icon {
           background: #1DA1F2;
           color: white;
       }

       .network-node.twitter .node-pulse {
           box-shadow: 0 0 0 rgba(29, 161, 242, 0.4);
           animation: pulse-twitter 2s infinite;
       }

       .network-node.email .node-icon {
           background: rgba(0, 240, 255, 0.2);
           color: var(--accent-cyan);
       }

       .network-node.email:hover .node-icon {
           background: var(--accent-cyan);
           color: var(--bg-color-dark);
       }

       .network-node.email .node-pulse {
           box-shadow: 0 0 0 rgba(0, 240, 255, 0.4);
           animation: pulse-cyan 2s infinite;
       }

       /* Pulse animations for social nodes */
       @keyframes pulse-white {
           0% {
               box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
           }

           70% {
               box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
           }

           100% {
               box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
           }
       }

       @keyframes pulse-linkedin {
           0% {
               box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.4);
           }

           70% {
               box-shadow: 0 0 0 15px rgba(0, 119, 181, 0);
           }

           100% {
               box-shadow: 0 0 0 0 rgba(0, 119, 181, 0);
           }
       }

       @keyframes pulse-twitter {
           0% {
               box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.4);
           }

           70% {
               box-shadow: 0 0 0 15px rgba(29, 161, 242, 0);
           }

           100% {
               box-shadow: 0 0 0 0 rgba(29, 161, 242, 0);
           }
       }

       @keyframes pulse-cyan {
           0% {
               box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
           }

           70% {
               box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
           }

           100% {
               box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
           }
       }

       /* Form Submission Modal */
       .submission-modal {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(5, 5, 5, 0.9);
           backdrop-filter: blur(10px);
           display: flex;
           align-items: center;
           justify-content: center;
           z-index: 1000;
           opacity: 0;
           visibility: hidden;
           transition: all 0.3s ease;
       }

       .submission-modal.active {
           opacity: 1;
           visibility: visible;
       }

       .modal-content {
           background: rgba(10, 10, 42, 0.8);
           border: 1px solid rgba(0, 240, 255, 0.3);
           border-radius: 10px;
           padding: 30px;
           width: 90%;
           max-width: 400px;
           text-align: center;
           box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
           transform: scale(0.9);
           transition: all 0.3s ease;
       }

       .submission-modal.active .modal-content {
           transform: scale(1);
       }

       .modal-icon {
           width: 80px;
           height: 80px;
           background: rgba(40, 202, 65, 0.2);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           margin: 0 auto 20px;
           color: #28CA41;
           font-size: 36px;
       }

       .modal-message h3 {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 24px;
           font-weight: 600;
           color: var(--text-primary);
           margin-bottom: 10px;
       }

       .modal-message p {
           font-size: 16px;
           color: var(--text-secondary);
           margin-bottom: 20px;
       }

       .modal-close-btn {
           background: rgba(0, 240, 255, 0.1);
           border: 1px solid rgba(0, 240, 255, 0.3);
           border-radius: 5px;
           padding: 12px 20px;
           color: var(--text-primary);
           font-family: 'Space Grotesk', sans-serif;
           font-size: 16px;
           font-weight: 500;
           cursor: pointer;
           transition: all 0.3s ease;
       }

       .modal-close-btn:hover {
           background: rgba(0, 240, 255, 0.2);
           transform: translateY(-3px);
       }

       /* Footer */
       .portfolio-footer {
           background: rgba(5, 5, 5, 0.9);
           padding: 40px 0;
           border-top: 1px solid rgba(0, 240, 255, 0.1);
       }

       .footer-content {
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
           display: flex;
           justify-content: space-between;
           align-items: center;
           flex-wrap: wrap;
           gap: 20px;
       }

       .footer-logo {
           font-family: 'Space Grotesk', sans-serif;
           font-size: 28px;
           font-weight: 700;
           color: var(--accent-cyan);
           background: rgba(0, 240, 255, 0.1);
           width: 50px;
           height: 50px;
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           border: 1px solid rgba(0, 240, 255, 0.3);
       }

       .footer-text {
           text-align: center;
       }

       .footer-text p {
           font-size: 14px;
           color: var(--text-secondary);
           margin: 5px 0;
       }

       .footer-links {
           display: flex;
           gap: 20px;
       }

       .footer-link {
           color: var(--text-secondary);
           text-decoration: none;
           font-size: 14px;
           transition: all 0.3s ease;
       }

       .footer-link:hover {
           color: var(--accent-cyan);
       }

       .personal-link {
           text-align: center;
           margin-top: 30px;
       }

       .personal-space-btn {
           display: inline-flex;
           align-items: center;
           gap: 10px;
           background: rgba(255, 0, 255, 0.1);
           border: 1px solid rgba(255, 0, 255, 0.3);
           border-radius: 30px;
           padding: 10px 20px;
           color: var(--accent-magenta);
           font-family: 'Space Grotesk', sans-serif;
           font-size: 14px;
           text-decoration: none;
           transition: all 0.3s ease;
       }

       .personal-space-btn:hover {
           background: rgba(255, 0, 255, 0.2);
           transform: translateY(-3px);
           box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
       }

       .personal-space-btn .btn-icon {
           background: rgba(255, 0, 255, 0.2);
       }

       .personal-space-btn:hover .btn-icon {
           background: var(--accent-magenta);
           color: var(--bg-color-dark);
       }

       /* Responsive Styles */
       @media (max-width: 992px) {
           .digital-portal {
               grid-template-columns: 1fr;
               gap: 40px;
           }
       }

       @media (max-width: 768px) {
           .contact-section {
               padding: 60px 0 0;
           }

           .footer-content {
               flex-direction: column;
               text-align: center;
           }
       }

       @media (max-width: 576px) {
           .panel-header {
               flex-direction: column;
               align-items: flex-start;
               gap: 10px;
           }

           .connection-status {
               align-self: flex-end;
           }

           .network-links {
               grid-template-columns: 1fr;
           }
       }