@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/* styles.css */
:root {
    --primary: rgb(80, 1, 80);
    --secondary: #4B0082;
    --accent: #9400D3;
    --neon: #ff00ff;
    --cyber-blue: #00ffff;
    --bg-dark: #0a0a0a;
    --grid-color: rgba(138, 43, 226, 0.1);
    --scanner-color: rgba(0, 255, 255, 0.1);
}

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

body {
    background: var(--bg-dark);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    
    min-height: 100vh;
    min-height: -webkit-fill-available;
}



html {
    height: -webkit-fill-available;
}

.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(45deg, rgba(10,10,10,0.98), rgba(75,0,130,0.95));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Cyber Grid */
.cyber-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    inset: 0;
}

.grid-lines.horizontal {
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 49px,
        var(--grid-color) 50px
    );
}

.grid-lines.vertical {
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 49px,
        var(--grid-color) 50px
    );
}

/* Scanner Effect */
.cyber-scanner {
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent,
        var(--cyber-blue),
        transparent
    );
    filter: blur(1px);
    animation: scan 3s linear infinite;
}

.cyber-scanner.reverse {
    animation: scan-reverse 4s linear infinite;
    opacity: 0.5;
}

/* Main Content */
.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(15px, 3vh, 30px);
    width: min(90%, 600px);
    z-index: 1;
}

/* Hexagon Frame */
.hex-container {
    position: absolute;
    inset: -20px;
    animation: rotate 20s linear infinite;
}

.hex-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: pulse 2s ease-in-out infinite;
}

.hex-border:nth-child(2) {
    transform: scale(1.1);
    border-color: var(--accent);
    animation-delay: -0.6s;
}

.hex-border:nth-child(3) {
    transform: scale(1.2);
    border-color: var(--cyber-blue);
    animation-delay: -1.2s;
}

/* Text Styles */
.text-glitch-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(5px, 1vh, 10px);
}

.glitch-text {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: purple;
    position: relative;
    text-shadow: 
        2px 2px var(--accent),
        -2px -2px var(--cyber-blue);
    opacity: 0;
    transform: translateY(20px);
}

/* Domain Box */
.domain-container {
    position: relative;
    margin-top: clamp(10px, 2vh, 20px);
}

.domain-box {
    padding: clamp(8px, 2vw, 20px);
    border: 2px solid var(--primary);
    background: rgba(138, 43, 226, 0.1);
    border-radius: 4px;
    position: relative;
    width: min(95%, 300px);
    backdrop-filter: blur(5px);
}

.typing-text {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--cyber-blue);
    text-align: center;
    animation: typing 2s steps(20) 1s forwards,
               blink-caret 0.75s step-end infinite;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* Loading Interface */
.loading-container {
    width: min(90%, 300px);
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--primary);
    padding: 15px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.interface-header {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: var(--cyber-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loading-bar {
    width: 100%;
    height: clamp(3px, 0.8vh, 4px);
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--cyber-blue));
    box-shadow: 0 0 10px var(--cyber-blue);
}

/* Animations */
@keyframes scan {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}

@keyframes scan-reverse {
    from { transform: translateY(100vh); }
    to { transform: translateY(-100vh); }
}

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

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

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-right-color: transparent }
    50% { border-right-color: var(--cyber-blue) }
}

/* Responsive Design */
@media (max-width: 480px) {
    .preloader-content {
        gap: 15px;
        padding: 20px;
    }

    .hex-container {
        inset: -10px;
    }

    .tech-details {
        font-size: 0.7rem;
    }
}

@media (max-height: 600px) {
    .preloader-content {
        gap: 10px;
    }

    .loading-container {
        padding: 10px;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .domain-box,
    .loading-container {
        -webkit-tap-highlight-color: transparent;
    }
}

/* end of preloader */

/* Hide default cursor */
html, body {
    cursor: none;
  }
  
  body::before {
    content: '';
    position: fixed;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, purple 40%, rgba(138, 43, 226, 0) 70%);
    border: 2px solid #8a2be2;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
  }
  
  /* Position the custom cursor based on CSS variables */
  body::before {
    left: calc(var(--mouse-x) - 12.5px);
    top: calc(var(--mouse-y) - 12.5px);
  }
  
  body {
    --mouse-x: 50%;
    --mouse-y: 50%;
  }
  

/* Scrollbar styles for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #1a1a1d;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #6a0dad, #8a2be2);
    border-radius: 10px;
    border: 2px solid #1a1a1d;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8a2be2, #b19cd9);
  }
  
  /* Scrollbar styles for Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: rgb(94, 0, 94) #000000;
  }
  
  /* Optional smooth scrolling for a futuristic feel */
  html {
    scroll-behavior: smooth;
  }

  
:root {
    --bg-color: 
    --text-color: #333;
    --main-color: purple;
    --white-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .2);
}

*::selection {
    background: purple;
    color: white;
}

.dark-mode {
    --bg-color: #0b061f;
    --text-color: #fdfdfd;
    --shadow-color: rgba(0, 0, 0, .7);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}


/* header navbar */
:root {
    --main-color: green;
    --accent-color: #00ff88;
    --dark-bg: #0a192f;
    --navy-bg: #112240;
    --text-color: #8892b0;
    --white-color: #e6f1ff;
    --glass-bg: rgba(23, 64, 17, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 7%;
    background: rgba(33, 10, 47, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.header.sticky {
    padding: 1rem 7%;
    background: var(--glass-bg);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 2.5rem;
    color: purple;
    font-weight: 700;
    font-family: 'Fira Code', monospace;
    text-shadow: 0 0 10px rgb(0, 0, 0);
    
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navbar a {
    position: relative;
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    font-family: 'Fira Code', monospace;
    transition: all 0.3s ease;
}

.navbar a::before {
    content: '< ';
    color: var(--main-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar a::after {
    content: ' />';
    color: var(--main-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar a:hover::before,
.navbar a:hover::after,
.navbar a.active::before,
.navbar a.active::after {
    opacity: 1;
}

.navbar a:hover,
.navbar a.active {
    color: rgb(179, 0, 179);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#darkMode-icon {
    font-size: 2.4rem;
    color: var(--main-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

#darkMode-icon:hover {
    color: var(--accent-color);
    transform: rotate(360deg);
}

#menu-icon {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border: 1px solid var(--main-color);
    border-radius: 5px;
}

#menu-icon span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--main-color);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    header {
        padding: 1.3rem 4%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        transition: all 0.4s ease;
        border-left: 1px solid rgba(100, 255, 218, 0.1);
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .navbar a {
        display: block;
        font-size: 1.8rem;
        margin: 1rem 0;
    }

    #menu-icon.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-icon.open span:nth-child(2) {
        opacity: 0;
    }

    #menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .navbar {
        width: 100%;
    }
}


/* Home section */
/* styles.css */
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: rgba(0, 255, 136, 0.1);
    --secondary: #4a00e0;
    
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
    --cyber-gradient: linear-gradient(45deg, var(--primary), var(--secondary));
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

/* Base Styles */
.cyber-hero {
    min-height: 100vh;
    background: rgba(128, 128, 128, 0);
    position: relative;
    overflow: hidden;
    padding: 20rem 0;
}

.cyber-grid {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            rgba(0, 255, 136, 0.03) 1px, 
            transparent 1px),
        linear-gradient(
            rgba(0, 255, 136, 0.03) 1px, 
            transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top;
    animation: gridMove 20s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Status Display */
.dev-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(27, 1, 1, 0.089);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

/* Terminal Styling */
.terminal-intro {
    background: rgba(0, 0, 0, 0.041) !important;
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    font-family: var(--font-mono);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-controls span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-controls span:nth-child(1) { background: #ff5f56; }
.terminal-controls span:nth-child(2) { background: #ffbd2e; }
.terminal-controls span:nth-child(3) { background: #27c93f; }

.terminal-body {
    padding: 1rem;
    line-height: 1.6;
}

.terminal-body .line {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.terminal-body .success {
    color: var(--primary);
}

/* Main Content Styling */
.cyber-glitch {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    position: relative;
    text-shadow: 
        2px 2px var(--primary),
        -2px -2px var(--secondary);
    margin-bottom: 1rem;
}

.title-badge {
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
    background: purple;
    color: var(--bg-dark);
    border-radius: 4px;
    vertical-align: super;
    margin-left: 1rem;
}

/* Continuing styles.css */

/* Role Carousel */
.role-carousel {
    margin: 2rem 0;
    overflow: hidden;
    color: white !important;
}

.roles {
    display: flex;
    gap: 1rem;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: purple !important;;
    border-radius: 50px;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.role-item.active {
    opacity: 1;
    background: purple !important;
    color: var(--primary);
    transform: scale(1.05);
}

.role-item i {
    font-size: 1.2rem;
    ;
}





/* about */
/* Tech Matrix Styling */
.tech-matrix {
    margin: 3rem 0;
    
}

.matrix-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.tech-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--primary);
}

.tech-details {
    flex: 1;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.548);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--cyber-gradient);
    transition: width 1s ease;
}

/* CTA Buttons */
.cyber-button {
    position: relative;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-borders {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cyber-button.primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

/* Profile Frame */
.profile-frame {
    position: relative;
    background: rgba(0, 0, 0, 0.075);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}

.frame-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    animation: scan 2s linear infinite;
}

.profile-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.frame-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    
}

.data-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.623);
    border-radius: 8px;
    color: black;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .profile-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .cyber-glitch {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .cyber-hero {
        padding: 1rem;
    }

    .cyber-glitch {
        font-size: 3rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .frame-data {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(40px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}
/* Enhanced Tech Matrix Styling */
.tech-matrix {
    margin: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.matrix-title {
    font-size: 1.5rem;
    color: purple;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    
}

.tech-card {
    background: rgba(128, 0, 128, 0.137);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.tech-card:hover {
    background: rgba(162, 0, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Enhanced CTA Section */
.cta-group {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
   ;
}


.cyber-button {
    position: relative;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 200px;
    text-align: center;
}

.cyber-button.primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cyber-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cyber-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.cyber-button.primary:hover {
    background: var(--primary-dark);
}

.cyber-button.secondary:hover {
    background: rgba(0, 255, 136, 0.1);
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-matrix {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .cyber-button {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .tech-card {
        padding: 1rem;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .matrix-title {
        font-size: 1.2rem;
    }
}


/* about */

:root {
    --cyber-green: #00ff00;
    --cyber-blue: #0ff;
    --cyber-pink: #ff00ff;
    --bg-dark: #000;
    --text-color: #fff;
    --panel-bg: rgba(0, 20, 0, 0.8);
    --terminal-bg: rgba(0, 0, 0, 0.9);
}



/* Base Styles */
body {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hack Interface Styles */
.hack-interface {
    position: relative;
    min-height: 50vh;
    padding: 2rem;
    overflow: hidden;
   
}

.matrix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

/* Container Styles */
.hack-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Terminal Header */
.terminal-header2 {
    background: rgba(255, 255, 255, 0.123);
    padding: 0.5rem 1rem;
    border: 1px solid var(--cyber-green);
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-controls .ctrl-btn {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.terminal-controls .ctrl-btn:nth-child(1) { background: #ff5f56; }
.terminal-controls .ctrl-btn:nth-child(2) { background: #ffbd2e; }
.terminal-controls .ctrl-btn:nth-child(3) { background: #27c93f; }

/* Boot Sequence */
.boot-sequence {
    padding: 1rem;
    background: var(--terminal-bg);
    border: 1px solid var(--cyber-green);
    border-top: none;
    font-size: 0.9rem;
}

.boot-line {
    display: block;
    margin: 0.5rem 0;
    color: var(--cyber-green);
    opacity: 0;
    transform: translateY(10px);
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Profile Card */
.profile-card {
    background: rgba(0, 0, 0, 0.438);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
}

.profile-img-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-img-wrapper img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid var(--cyber-green);
}

.profile-status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--terminal-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(255, 255, 255);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--cyber-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Info Section */
.info-section {
    background: rgba(43, 255, 0, 0.144);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
}

/* Skill Matrix */
.skill-matrix {
    margin: 2rem 0;
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-chip {
    background: rgba(255, 255, 255, 0.247);
    border: 1px solid var(--cyber-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: purple;
    transition: width 1s ease-in-out;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes typeWriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hack-interface {
        padding: 1rem;
    }
    
    .terminal-header {
        font-size: 0.8rem;
    }
    
    .skill-chips {
        gap: 0.5rem;
    }
}

/* Enhanced Button Styles */


.cyber-button {
    position: relative;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--cyber-green);
    border-radius: 8px;
    color: var(--cyber-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px; /* Space to position below text */
}

.cyber-button:hover {
    background: var(--cyber-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--cyber-green), 0 0 40px var(--cyber-green);
}

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

.cyber-button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .cyber-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .terminal-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .skill-chip {
        width: calc(50% - 0.5rem);
    }
}



/* terminal */
.terminal-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--terminal-bg);
    border-top: 1px solid var(--cyber-green);
}

.prompt {
    color: var(--cyber-green);
    margin-right: 10px;
}

.terminal-input input {
    flex: 1;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
}

.terminal-input input:focus {
    outline: none;
}

.terminal-response {
    padding: 10px;
    color: var(--cyber-green);
}






/* services */

:root {
    --tech-bg: #0a0a0f;
    --tech-primary: purple;
    --tech-secondary: #0051ff;
    --tech-accent: #ff00ea;
    --tech-text: #ffffff;
    --tech-dark: #141419;
    --tech-glow: 0 0 10px var(--tech-primary);
}



.tech-gridser {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
    
}

.tech-boxser {
    position: relative;
    transition: transform 0.3s ease;
}

.tech-contentser {
    background: rgba(0, 0, 0, 0.301);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 128, 0, 0.336);
    backdrop-filter: blur(10px);
    position: relative;
}

.tech-headerser {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 242, 0.1);
}

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

.tech-dotsser span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.tech-titleser {
    font-family: monospace;
    color: var(--cyber-green);
    font-size: 0.9rem;
    text-shadow: var(--tech-glow);
}

.tech-bodyser {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.tech-bodyser h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--tech-primary);
    text-shadow: var(--tech-glow);
}

.tech-bodyser p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tech-listser {
    list-style: none;
    margin-bottom: 2rem;
}

.tech-listser li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.tech-listser i {
    color: var(--tech-primary);
    font-size: 1.2rem;
}

.tech-btnser {
    background: transparent;
    border: 2px solid var(--tech-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-btnser::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: 0.5s;
}

.tech-btnser:hover {
    background: var(--tech-primary);
    color: var(--tech-dark);
    box-shadow: var(--tech-glow);
}

.tech-btnser:hover::before {
    left: 100%;
}

.tech-scanlineser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(21, 255, 0, 0.1) 50%,
        transparent 100%
    );
    animation: scanline 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-contentser:hover .tech-scanlineser {
    opacity: 1;
}

@keyframes scanlineser {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .tech-servicesser {
        padding: 3rem 1rem;
    }
    
    .tech-gridser {
        grid-template-columns: 1fr;
    }
    
    .tech-bodyser h3 {
        font-size: 1.5rem;
    }
    
    .tech-bodyser p {
        font-size: 0.9rem;
    }
}

/* Hover Effects and Animations */
.tech-boxser:hover {
    transform: translateY(-5px);
}

.tech-contentser:hover {
    border-color: var(--tech-primary);
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.1);
}

.tech-dotsser span:nth-child(1) { background: #ff3e3e; }
.tech-dotsser span:nth-child(2) { background: #ffbe3e; }
.tech-dotsser span:nth-child(3) { background: #3eff5b; }






/* portfolio */
:root {
    --cyb-primary: #00ff00;
    --cyb-secondary: #ff00ff;
    --cyb-bg: #000000;
    --cyb-text: #ffffff;
    --cyb-accent: #00ffff;
    --cyb-border: rgba(0, 255, 0, 0.3);
    --cyb-card-bg: rgba(0, 0, 0, 0.8);
    --cyb-gradient: linear-gradient(135deg, var(--cyb-primary), var(--cyb-secondary));
    --cyb-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    --cyb-glow: 0 0 15px var(--cyb-primary);
    --cyb-transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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



.cyb-portfolio {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Background Effects */
.cyb-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cyb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.cyb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

/* Terminal Styles */
.cyb-terminal {
    background: var(--cyb-card-bg);
    border: 1px solid var(--cyb-border);
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: var(--cyb-shadow);
    animation: terminalGlow 2s infinite alternate;
}

.cyb-terminal-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(209, 209, 209, 0.103);
    border-bottom: 1px solid var(--cyb-border);
}

.cyb-terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.cyb-terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyb-primary);
    transition: var(--cyb-transition);
}


.cyb-terminal-buttons span:nth-child(1) { background: #ff3e3e; }
.cyb-terminal-buttons span:nth-child(2) { background: #ffbe3e; }
.cyb-terminal-buttons span:nth-child(3) { background: #3eff5b; }

.cyb-terminal-buttons span:hover {
    opacity: 1;
    transform: scale(1.2);
}

.cyb-terminal-title {
    color: var(--cyb-primary);
    font-size: 0.9rem;
    text-transform: lowercase;
}

.cyb-terminal-body {
    padding: 1.5rem;
    font-size: 0.9rem;
}

.cyb-command-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cyb-prompt {
    color: var(--cyb-accent);
}

.cyb-command {
    color: var(--cyb-primary);
}

.cyb-cursor {
    width: 8px;
    height: 16px;
    background: var(--cyb-primary);
    animation: blink 1s infinite;
}

/* Heading Styles */
.cyb-heading-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.cyb-heading {
    font-size: 3rem;
    color: var(--cyb-primary);
    text-shadow: var(--cyb-glow);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.cyb-glitch-text {
    position: relative;
    display: inline-block;
    animation: glitchText 3s infinite;
}

.cyb-glitch-text::before,
.cyb-glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.cyb-glitch-text::before {
    color: var(--cyb-secondary);
    animation: glitchOffset 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.cyb-glitch-text::after {
    color: var(--cyb-accent);
    animation: glitchOffset 2s infinite reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.cyb-heading-decorations {
    margin-top: 1rem;
}

.cyb-decode-text {
    color: var(--cyb-accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: decodeText 2s infinite;
}

.cyb-tech-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cyb-tech-item {
    background: rgba(0, 255, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--cyb-primary);
    border: 1px solid var(--cyb-border);
    transition: var(--cyb-transition);
}

.cyb-tech-item:hover {
    background: var(--cyb-primary);
    color: var(--cyb-bg);
    transform: translateY(-2px);
    box-shadow: var(--cyb-glow);
}

/* Stats Section */
.cyb-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.cyb-stat {
    text-align: center;
    padding: 2rem;
    background: var(--cyb-card-bg);
    border: 1px solid var(--cyb-border);
    border-radius: 8px;
    min-width: 200px;
    transition: var(--cyb-transition);
}

.cyb-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--cyb-glow);
}

.cyb-stat-number {
    font-size: 3rem;
    color: var(--cyb-primary);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: var(--cyb-glow);
}

.cyb-stat-label {
    font-size: 0.9rem;
    color: var(--cyb-accent);
}

/* Filter System */
.cyb-filter-system {
    margin-bottom: 4rem;
}

.cyb-filter-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cyb-filter-label {
    color: var(--cyb-accent);
    font-size: 0.9rem;
}

.cyb-status-indicator {
    color: var(--cyb-primary);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--cyb-primary);
    border-radius: 4px;
    animation: statusBlink 2s infinite;
}

.cyb-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cyb-filter {
    background: transparent;
    border: 1px solid var(--cyb-border);
    color: var(--cyb-text);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--cyb-transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

.cyb-filter:hover::before {
    left: 100%;
}

.cyb-filter:hover,
.cyb-filter.active {
    background: var(--cyb-primary);
    color: var(--cyb-bg);
    border-color: var(--cyb-primary);
    box-shadow: var(--cyb-glow);
}

.cyb-filter-count {
    background: rgba(0, 255, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Projects Grid */
.cyb-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cyb-project {
    background: var(--cyb-card-bg);
    border: 1px solid var(--cyb-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--cyb-transition);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.cyb-project.visible {
    opacity: 1;
    transform: translateY(0);
}

.cyb-project:hover {
    transform: translateY(-5px);
    box-shadow: var(--cyb-glow);
}

.cyb-project::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cyb-gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--cyb-transition);
    border-radius: 10px;
}

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

.cyb-project-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cyb-project-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.cyb-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cyb-project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 0, 0.2);
    backdrop-filter: blur(3px);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--cyb-transition);
}

.cyb-project:hover .cyb-project-image-overlay {
    opacity: 1;
}

.cyb-project:hover .cyb-project-image {
    transform: scale(1.05);
}

.cyb-project-links {
    display: flex;
    gap: 1rem;
}

.cyb-project-link-icon,
.cyb-project-github-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cyb-bg);
    border: 1px solid var(--cyb-primary);
    color: var(--cyb-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cyb-project:hover .cyb-project-link-icon,
.cyb-project:hover .cyb-project-github-icon {
    transform: translateY(0);
    opacity: 1;
}

.cyb-project-link-icon:hover,
.cyb-project-github-icon:hover {
    background: var(--cyb-primary);
    color: var(--cyb-bg);
    transform: translateY(-3px);
    box-shadow: var(--cyb-glow);
}

.cyb-project-title h3 {
    color: var(--cyb-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cyb-project-status {
    font-size: 0.8rem;
    color: var(--cyb-accent);
}

.cyb-tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.cyb-tech-tags span {
    background: rgba(0, 255, 0, 0.1);
    color: var(--cyb-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: var(--cyb-transition);
}

.cyb-tech-tags span:hover {
    background: var(--cyb-primary);
    color: var(--cyb-bg);
    transform: translateY(-2px);
}

.cyb-project-footer {
    margin-top: auto;
    border-top: 1px solid var(--cyb-border);
    padding-top: 1rem;
}

.cyb-project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--cyb-accent);
}

/* Load More Button */
.cyb-load-more {
    text-align: center;
}

.cyb-load-btn {
    background: transparent;
    border: 1px solid var(--cyb-primary);
    color: var(--cyb-primary);
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
    transition: var(--cyb-transition);
}

.cyb-load-btn:hover {
    background: var(--cyb-primary);
    color: var(--cyb-bg);
    transform: translateY(-3px);
    box-shadow: var(--cyb-glow);
}

.cyb-load-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cyb-loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyb-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes glitchText {
    0%, 100% { transform: none; }
    20% { transform: skewX(-15deg); }
    40% { transform: skewX(10deg); }
    60% { transform: skewX(-5deg); }
    80% { transform: skewX(5deg); }
}

@keyframes glitchOffset {
    0%, 100% { transform: none; }
    33% { transform: translateX(2px); }
    66% { transform: translateX(-2px); }
}

@keyframes decodeText {
    0% { filter: blur(2px); }
    100% { filter: blur(0); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes terminalGlow {
    0% { box-shadow: 0 0 5px var(--cyb-primary); }
    100% { box-shadow: 0 0 20px var(--cyb-primary); }
}

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

/* Media Queries */
@media (max-width: 768px) {
    .cyb-heading {
        font-size: 2rem;
    }

    .cyb-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cyb-stat {
        min-width: unset;
    }

    .cyb-projects {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cyb-container {
        padding: 0 1rem;
    }

    .cyb-filters {
        flex-direction: column;
    }

    .cyb-filter {
        width: 100%;
    }

    .cyb-project-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}






/* testimonial css */
/* Base styles and variables */
:root {
    --tst24-neon-green: rgb(0, 255, 0);
    --tst24-neon-blue: #00ccff;
    --tst24-dark-bg: #000913;
    --tst24-card-bg: rgba(1, 10, 27, 0.548);
    --tst24-accent: #ff0099;
}

/* Reset and base styles */
.tst24_wrapper {
    
    min-height: 600px;
    position: relative;
    padding: 4rem 2rem;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.tst24_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background effects */
.tst24_matrix_effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
        rgba(0, 255, 157, 0.1) 1px,
        transparent 1px),
        linear-gradient(90deg,
        rgba(0, 255, 157, 0.1) 1px,
        transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
    animation: tst24Matrix 20s linear infinite;
}

.tst24_grid_effect {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            rgba(0, 255, 157, 0.03) 1px,
            transparent 1px),
        linear-gradient(0deg,
            rgba(0, 255, 157, 0.03) 1px,
            transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: top;
    animation: tst24Grid 30s linear infinite;
    z-index: 1;
}

/* Header styles */
.tst24_header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.384);
    border: 1px solid var(--tst24-neon-green);
    border-radius: 5px;
}

.tst24_prompt {
    color: var(--tst24-neon-green);
    font-family: monospace;
    animation: tst24Blink 1s infinite;
}

.tst24_title {
    color: var(--tst24-neon-green);
    margin: 0;
    flex-grow: 1;
    font-size: 2rem;
}

.tst24_status {
    display: flex;
    gap: 1rem;
}

.tst24_status_item {
    color: var(--cyber-green);
    padding: 0.3rem 1rem;
    border: 1px solid purple;
    border-radius: 3px;
    font-size: 0.8rem;
}

/* Slider container */
.tst24_slider_container {
    width: 100%;
    position: relative;
}

/* Card styles */
.tst24_card {
    background: var(--tst24-card-bg);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

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

.tst24_glitch_effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 157, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tst24_card:hover .tst24_glitch_effect {
    opacity: 1;
}

/* Terminal styles */
.tst24_terminal {
    background: rgba(0, 0, 0, 0.596);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tst24_terminal_header {
    background: rgba(0, 0, 0, 0.9);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.tst24_controls {
    display: flex;
    gap: 0.5rem;
}

.tst24_controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tst24-neon-green);
    
}

.tst24_controls span:nth-child(1) { background: #ff3e3e; }
.tst24_controls span:nth-child(2) { background: #ffbe3e; }
.tst24_controls span:nth-child(3) { background: #3eff5b; }

.tst24_terminal_title {
    margin-left: 1rem;
    color: var(--tst24-neon-blue);
    font-family: monospace;
}

.tst24_terminal_body {
    padding: 1.5rem;
}

.tst24_quote {
    color: var(--tst24-neon-green);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Profile styles */
.tst24_profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tst24_avatar_frame {
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 2px solid var(--tst24-neon-green);
}

.tst24_avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tst24_scan_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 157, 0.5);
    animation: tst24Scan 2s linear infinite;
}

.tst24_info {
    flex-grow: 1;
}

.tst24_name {
    color: var(--tst24-neon-green);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.tst24_position {
    color: var(--tst24-neon-blue);
    font-size: 0.9rem;
}

/* Navigation styles */
.tst24_navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tst24_prev, .tst24_next {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
}

.tst24_btn_frame {
    position: absolute;
    inset: 0;
    border: 2px solid var(--tst24-neon-green);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: all 0.3s;
}

.tst24_btn_icon {
    position: relative;
    z-index: 2;
    color: var(--tst24-neon-green);
}

/* Animations */
@keyframes tst24Matrix {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

@keyframes tst24Grid {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes tst24Scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

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

/* Pagination styles */
.tst24_pagination {
    display: flex;
    gap: 0.5rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--tst24-neon-green);
    opacity: 0.5;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--tst24-neon-green);
    box-shadow: 0 0 10px var(--tst24-neon-green);
}

/* Responsive styles */
@media (max-width: 768px) {
    .tst24_header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .tst24_card {
        padding: 1rem;
    }
}

/* Base responsive styles */
:root {
    --tst24-padding-mobile: 1rem;
    --tst24-padding-tablet: 2rem;
    --tst24-padding-desktop: 4rem;
}

/* Container responsiveness */
.tst24_wrapper {
    position: relative;
    padding: 4rem 2rem 0 2rem; /* Remove bottom padding */
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Modify the container spacing */
.tst24_container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem; /* Add controlled padding at bottom */
}

/* Card responsive styles */
.tst24_card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
}

/* Terminal responsive styles */
.tst24_terminal {
    width: 100%;
    font-size: clamp(14px, 2vw, 16px);
}

.tst24_quote {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.5;
    padding: 0.5rem;
}

/* Profile section responsive */
.tst24_profile {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem 0;
}

.tst24_avatar_frame {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto;
}

.tst24_name {
    font-size: clamp(18px, 2.5vw, 24px);
}

.tst24_position {
    font-size: clamp(14px, 2vw, 16px);
}

/* Header responsive styles */
.tst24_header {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
}

.tst24_title {
    font-size: clamp(24px, 4vw, 32px);
    margin: 0.5rem 0;
}

.tst24_status {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tst24_status_item {
    font-size: clamp(12px, 1.5vw, 14px);
}

/* Navigation responsive styles */
.tst24_navigation {
    gap: 1rem;
    padding: 1rem 0;
}

.tst24_prev, .tst24_next {
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
}

/* Media Queries */
@media screen and (max-width: 360px) {
    .tst24_wrapper {
        padding: 0.5rem;
    }

    .tst24_card {
        padding: 0.75rem;
    }

    .tst24_terminal_body {
        padding: 1rem;
    }

    .tst24_navigation {
        gap: 0.5rem;
    }
}

@media screen and (min-width: 361px) and (max-width: 768px) {
    .tst24_wrapper {
        padding: var(--tst24-padding-mobile);
    }

    .tst24_header {
        padding: 1rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .tst24_wrapper {
        padding: var(--tst24-padding-tablet);
    }

    .tst24_profile {
        flex-direction: row;
        text-align: left;
    }
}

@media screen and (min-width: 1025px) {
    .tst24_wrapper {
        padding: var(--tst24-padding-desktop);
    }

    .tst24_profile {
        flex-direction: row;
        text-align: left;
    }

    .tst24_header {
        flex-direction: row;
        text-align: left;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .tst24_card:hover {
        transform: none;
    }

    .tst24_btn_frame:hover {
        border-color: var(--tst24-neon-green);
        box-shadow: none;
    }
}

/* Landscape mode optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .tst24_wrapper {
        min-height: auto;
        padding: 1rem;
    }

    .tst24_profile {
        flex-direction: row;
        gap: 1rem;
    }

    .tst24_avatar_frame {
        width: 50px;
        height: 50px;
    }
}
/* Original glitch effect styles */
.tst24_glitch_effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 157, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tst24_card:hover .tst24_glitch_effect {
    opacity: 1;
}

/* Add media query to disable glitch effect on small screens */
@media screen and (max-width: 768px) {
    .tst24_glitch_effect {
        display: none; /* Completely removes the glitch effect */
    }
    
    .tst24_card:hover .tst24_glitch_effect {
        opacity: 0; /* Ensures the effect doesn't show on hover */
    }
}









/* contact */
/* Base Styles and Custom Properties */
:root {
    --dev-primary: rgb(1, 219, 1);
    --dev-primary-dark: #00cc7d;
    --dev-bg: #0f1419;
    --dev-card-bg: #000000;
    --dev-text: #e0e0e0;
    --dev-text-dim: #8b8b8b;
    --dev-input-bg: #75757571;
    --dev-terminal-bg: #000000d0;
    --dev-error: #ff4757;
    --dev-success: #2ecc71;
    --dev-warning: #ffd32a;
    --dev-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    --dev-glow: 0 0 20px rgba(0, 255, 157, 0.15);
    --dev-border: 1px solid rgba(0, 255, 157, 0.1);
    --dev-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600;700&display=swap');

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



/* Container Styles */
.dev-contact {
    min-height: 100vh;
    padding: clamp(2rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.582);
}

.dev-contact__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.dev-contact__header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.dev-contact__title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dev-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.dev-contact__bracket {
    color: var(--dev-text-dim);
}

.dev-contact__subtitle {
    color: var(--dev-text-dim);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0;
    animation: fadeIn 0.8s 0.4s forwards;
}

.dev-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

/* Terminal Styles */
.dev-terminal {
    background: var(--dev-terminal-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--dev-shadow);
    border: var(--dev-border);
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.8s 0.2s forwards;
}

.dev-terminal__header {
    background: var(--dev-input-bg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dev-terminal__controls {
    display: flex;
    gap: 8px;
}

.dev-terminal__btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.dev-terminal__btn--red { background: #ff5f56; }
.dev-terminal__btn--yellow { background: #ffbd2e; }
.dev-terminal__btn--green { background: #27c93f; }

.dev-terminal__btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.5;
    filter: blur(2px);
}

.dev-terminal__title {
    color: var(--dev-text-dim);
    font-size: 0.9rem;
}

.dev-terminal__content {
    height: 350px;
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.9rem;
}

.dev-terminal__input-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: var(--dev-border);
}

.dev-terminal__prompt {
    color: var(--dev-primary);
}

.dev-terminal__input {
    background: none;
    border: none;
    color: var(--dev-text);
    font-family: inherit;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

/* Form Styles */
.dev-form {
    background: var(--dev-card-bg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 12px;
    box-shadow: var(--dev-shadow);
    border: var(--dev-border);
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s 0.2s forwards;
}

.dev-form__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dev-form__status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dev-primary);
    position: relative;
}

.dev-form__status-indicator::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--dev-primary);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.dev-form__status-text {
    color: var(--dev-text-dim);
    font-size: 0.9rem;
}

.dev-form__field {
    margin-bottom: 2rem;
}

.dev-form__label {
    color: var(--dev-primary);
    font-size: 0.9rem;
}

.dev-form__input-wrapper {
    position: relative;
    margin: 0.5rem 0;
}

.dev-form__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dev-text-dim);
}

.dev-form__input {
    width: 100%;
    background: var(--dev-input-bg);
    border: none;
    border-radius: 6px;
    padding: 1rem 1rem 1rem 3rem;
    color: var(--dev-text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--dev-transition);
}

.dev-form__input--textarea {
    min-height: 120px;
    resize: vertical;
    padding: 1rem;
}

.dev-form__input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dev-primary);
    transform: scaleX(0);
    transition: var(--dev-transition);
    transform-origin: left;
}

.dev-form__input:focus ~ .dev-form__input-line {
    transform: scaleX(1);
}

.dev-form__submit {
    width: 100%;
    background: var(--dev-primary);
    color: var(--dev-bg);
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--dev-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dev-form__submit:hover {
    background: rgba(0, 0, 0, 0.432);
    color: white;
}

.dev-form__submit-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dev-bg);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.dev-form__footer {
    margin-top: 2rem;
    text-align: center;
    
}

.dev-form__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dev-text-dim);
    font-size: 0.9rem;
}

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

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

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

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .dev-terminal {
        height: auto;
    }
    
    .dev-terminal__content {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dev-contact {
        padding: 1rem;
    }
    
    .dev-form {
        padding: 1.5rem;
    }
    
    .dev-terminal__header {
        padding: 0.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .dev-contact *,
    .dev-contact *::before,
    .dev-contact *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}







/* Base Styles */
.surgecode-footer {
    background: linear-gradient(180deg, #000000 0%, #0d1b2a 100%);
    color: #8892b0;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

/* Enhanced Waves */
.surgecode-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.surgecode-wave {
    position: absolute;
    opacity: 0.4;
    width: 200%;
    height: 120px;
    background: linear-gradient(45deg, #3edc00, #5fe436);
    filter: blur(1px);
}

@keyframes surgeWave {
    0% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-25%) scaleY(0.95); }
    100% { transform: translateX(-50%) scaleY(1); }
}

#surgeWave1 { animation: surgeWave 20s linear infinite; }
#surgeWave2 { animation: surgeWave 15s linear infinite reverse; top: 10px; }
#surgeWave3 { animation: surgeWave 18s linear infinite; top: 20px; }
#surgeWave4 { animation: surgeWave 12s linear infinite reverse; top: 30px; }

/* Enhanced Terminal */
.surgecode-terminal {
    background: #1d24334b;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.surgecode-terminal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(100, 255, 218, 0.1);
}

.surgecode-terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.surgecode-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.surgecode-dot:hover {
    transform: scale(1.2);
}

.surgecode-red { background: #ff5f56; }
.surgecode-yellow { background: #ffbd2e; }
.surgecode-green { background: #27c93f; }

/* Enhanced Tech Buttons */
.surgecode-tech-button {
    background: rgba(118, 255, 100, 0.05);
    border: 1px solid green;
    padding: 12px 24px;
    border-radius: 6px;
    color: green;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.surgecode-button-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.surgecode-tech-button:hover .surgecode-button-glow {
    opacity: 1;
}

.surgecode-tech-button:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.2);
}

/* Enhanced Tech Stack */
.surgecode-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.surgecode-tech-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.surgecode-tech-icon i {
    font-size: 2.2rem;
    color: green;
    transition: all 0.3s ease;
}

.surgecode-tech-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(136, 255, 100, 0.1);
    color: green;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.surgecode-tech-icon:hover i {
    transform: translateY(-5px);
    color: green;
}

.surgecode-tech-icon:hover .surgecode-tech-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Enhanced Social Icons */
.surgecode-social-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    color: green;
    margin: 0 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.surgecode-social-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid green;
    opacity: 0;
    animation: surgePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes surgePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.surgecode-social-icon:hover {
    background: green;
    color: #0a192f;
    transform: translateY(-3px);
}

.surgecode-social-icon:hover .surgecode-social-ring {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .surgecode-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }
    
    .surgecode-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .surgecode-footer {
        padding: 60px 0 30px;
    }
    
    .surgecode-wave {
        height: 60px;
    }
    
    .surgecode-tech-button {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .surgecode-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
  
    /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .surgecode-footer {
            background: linear-gradient(180deg, #000000 0%, #0f2a0d 100%);
            color: #8892b0;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
            font-family: 'JetBrains Mono', monospace;
        }

        .surgecode-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Waves */
        .surgecode-waves {
            height: 60px;
            position: relative;
            overflow: hidden;
        }

        .surgecode-wave {
            height: 40px;
            opacity: 0.2;
        }

        /* Footer Sections */
        .surgecode-footer-logo img {
            max-width: 150px;
            height: auto;
        }

        .surgecode-typing-container {
            margin: 15px 0;
            min-height: 24px;
        }

        /* Terminal */
        .surgecode-terminal {
            background: #1d2433;
            border-radius: 8px;
            padding: 12px;
            margin-top: 10px;
            font-size: 14px;
        }

        .surgecode-terminal-header {
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }

        .surgecode-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* Links Grid */
        .surgecode-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .surgecode-tech-button {
            background: rgba(100, 255, 218, 0.05);
            border: 1px solid green;
            padding: 8px 15px;
            border-radius: 4px;
            color: green;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
        }

        /* Tech Stack */
        .surgecode-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .surgecode-tech-icon {
            text-align: center;
        }

        .surgecode-tech-icon i {
            font-size: 24px;
            color: purple;
        }

        /* Footer Bottom */
        .surgecode-footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
            text-align: center;
        }

        .surgecode-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .surgecode-social-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(100, 255, 218, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .surgecode-footer-content {
                grid-template-columns: 1fr;
            }

            .surgecode-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .surgecode-tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .surgecode-footer {
                padding: 30px 15px;
            }

            .surgecode-tech-button {
                padding: 6px 12px;
                font-size: 12px;
            }

            .surgecode-tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .surgecode-terminal {
                font-size: 12px;
            }
        }