@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Inter:wdth@75..125&family=Inter:ital@0..1&display=swap');

:root {
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #7a5fff;
    --dark: #0a0a1a;
    --light: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .tech-font {
    font-family: 'Orbitron', sans-serif;
}

#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#three-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
opacity: 0.3;
}
.section {
    min-height: 100vh;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    background-color: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2);
}

.btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--accent), #9d4edd);
    color: white;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.nav-link {
    position: relative;
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active::after {
    width: 100%;
    left: 0;
}

.glow {
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}


.grid-bg {
    background-image: 
        linear-gradient(rgba(0, 242, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.project-card {
    overflow: hidden;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    z-index: -1;
    border-radius: 10px;
    background-size: 400%;
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.tech-tag {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    color: var(--primary);
}

.neural-border {
    position: relative;
}

.neural-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--secondary), transparent, var(--accent), transparent);
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 10px;
    animation: animate 20s linear infinite;
}

.neural-border:hover::after {
    opacity: 1;
}

@keyframes animate {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
*, ::before, ::after{
    --tw-border-spacing-x:0;
    --tw-border-spacing-y:0;
    --tw-translate-x:0;
    --tw-translate-y:0;
    --tw-rotate:0;
    --tw-skew-x:0;
    --tw-skew-y:0;
    --tw-scale-x:1;
    --tw-scale-y:1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness:proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width:0px;
    --tw-ring-offset-color:#fff;
    --tw-ring-color:rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow:0 0 #0000;
    --tw-ring-shadow:0 0 #0000;
    --tw-shadow:0 0 #0000;
    --tw-shadow-colored:0 0 #0000;
    --tw-blur: ;--tw-brightness: ;
    --tw-contrast: ;--tw-grayscale: ;
    --tw-hue-rotate: ;--tw-invert: ;
    --tw-saturate: ;--tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: 
}
::backdrop{
    --tw-border-spacing-x:0;
    --tw-border-spacing-y:0;
    --tw-translate-x:0;
    --tw-translate-y:0;
    --tw-rotate:0;
    --tw-skew-x:0;
    --tw-skew-y:0;
    --tw-scale-x:1;
    --tw-scale-y:1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness:proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: 
;--tw-ring-inset: ;
--tw-ring-offset-width:0px;
--tw-ring-offset-color:#fff;
--tw-ring-color:rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow:0 0 #0000;
--tw-ring-shadow:0 0 #0000;
--tw-shadow:0 0 #0000;
--tw-shadow-colored:0 0 #0000;
--tw-blur: ;
--tw-brightness: ;
--tw-contrast: ;
--tw-grayscale: ;
--tw-hue-rotate: ;
--tw-invert: ;
--tw-saturate: ;
--tw-sepia: ;
--tw-drop-shadow: ;
--tw-backdrop-blur: ;
--tw-backdrop-brightness: ;
--tw-backdrop-contrast: ;
--tw-backdrop-grayscale: ;
--tw-backdrop-hue-rotate: ;
--tw-backdrop-invert: ;
--tw-backdrop-opacity: ;
--tw-backdrop-saturate: ;
--tw-backdrop-sepia: ;
--tw-contain-size: ;
--tw-contain-layout: ;
--tw-contain-paint: ;
--tw-contain-style: }
/* ! tailwindcss v3.4.16 | MIT License | https://tailwindcss.com */
*,::after,::before{
    box-sizing:border-box;
    border-width:0;
    border-style:solid;
    border-color:#e5e7eb}
    ::after,::before{
        --tw-content:''
    }
    :host,html{
        line-height:1.5;
        -webkit-text-size-adjust:100%;
        -moz-tab-size:4;
        tab-size:4;
        font-family:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-feature-settings:normal;
        font-variation-settings:normal;
        -webkit-tap-highlight-color:transparent
    }
    body{
        margin:0;line-height:inherit
    }
    hr{
        height:0;color:inherit;
        border-top-width:1px
    }
    abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: inherit;
        font-weight: inherit;
    }
    
    a {
        color: inherit;
        text-decoration: inherit;
    }
    
    b, strong {
        font-weight: bolder;
    }
    
    code, kbd, pre, samp {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        font-feature-settings: normal;
        font-variation-settings: normal;
        font-size: 1em;
    }
    
    small {
        font-size: 80%;
    }
    
    sub, sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }
    
    sub {
        bottom: -0.25em;
    }
    
    sup {
        top: -0.5em;
    }
    
    table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse;
    }
    
    button, input, optgroup, select, textarea {
        font-family: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        font-size: 100%;
        font-weight: inherit;
        line-height: inherit;
        letter-spacing: inherit;
        color: inherit;
        margin: 0;
        padding: 0;
    }
    
    button, select {
        text-transform: none;
    }
    
    button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
        -webkit-appearance: button;
        background-color: transparent;
        background-image: none;
    }
    
    :-moz-focusring {
        outline: auto;
    }
    
    :-moz-ui-invalid {
        box-shadow: none;
    }
    
    progress {
        vertical-align: baseline;
    }
    
    ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
        height: auto;
    }
    
    [type=search] {
        -webkit-appearance: textfield;
        outline-offset: -2px;
    }
    
    ::-webkit-search-decoration {
        -webkit-appearance: none;
    }
    
    ::-webkit-file-upload-button {
        -webkit-appearance: button;
        font: inherit;
    }
    
    summary {
        display: list-item;
    }
    
    blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
        margin: 0;
    }
    
    fieldset {
        margin: 0;
        padding: 0;
    }
    
    legend {
        padding: 0;
    }
    
    menu, ol, ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    dialog {
        padding: 0;
    }
    
    textarea {
        resize: vertical;
    }
    
    input::placeholder, textarea::placeholder {
        opacity: 1;
        color: #9ca3af;
    }
    
    [role=button], button {
        cursor: pointer;
    }
    
    :disabled {
        cursor: default;
    }
    
    audio, canvas, embed, iframe, img, object, svg, video {
        display: block;
        vertical-align: middle;
    }
    
    img, video {
        max-width: 100%;
        height: auto;
    }
    
    [hidden]:where(:not([hidden=until-found])) {
        display: none;
    }
    
    .container {
        width: 100%;
    }
    
    @media (min-width: 640px) {
        .container {
            max-width: 640px;
        }
    }
    
    @media (min-width: 768px) {
        .container {
            max-width: 768px;
        }
    }
    
    @media (min-width: 1024px) {
        .container {
            max-width: 1024px;
        }
    }
    
    @media (min-width: 1280px) {
        .container {
            max-width: 1280px;
        }
    }
    
    @media (min-width: 1536px) {
        .container {
            max-width: 1536px;
        }
    }
    
    .fixed {
        position: fixed;
    }
    
    .absolute {
        position: absolute;
    }
    
    .relative {
        position: relative;
    }
    
    .inset-0 {
        inset: 0px;
    }
    
    .bottom-0 {
        bottom: 0px;
    }
    
    .left-0 {
        left: 0px;
    }
    
    .right-4 {
        right: 1rem;
    }
    
    .top-0 {
        top: 0px;
    }
    
    .top-4 {
        top: 1rem;
    }
    
    .z-40 {
        z-index: 40;
    }
    
    .z-50 {
        z-index: 50;
    }
    
    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }
    
    .mb-1 {
        margin-bottom: 0.25rem;
    }
    
    .mb-10 {
        margin-bottom: 2.5rem;
    }
    
    .mb-12 {
        margin-bottom: 3rem;
    }
    
    .mb-2 {
        margin-bottom: 0.5rem;
    }
    
    .mb-3 {
        margin-bottom: 0.75rem;
    }
    
    .mb-4 {
        margin-bottom: 1rem;
    }
    
    .mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .mb-8 {
        margin-bottom: 2rem;
    }
    
    .ml-1 {
        margin-left: 0.25rem;
    }
    
    .mr-3 {
        margin-right: 0.75rem;
    }
    
    .mr-4 {
        margin-right: 1rem;
    }
    
    .mt-1 {
        margin-top: 0.25rem;
    }
    
    .mt-12 {
        margin-top: 3rem;
    }
    
    .mt-16 {
        margin-top: 4rem;
    }
    
    .mt-2 {
        margin-top: 0.5rem;
    }
    
    .mt-6 {
        margin-top: 1.5rem;
    }
    
    .mt-8 {
        margin-top: 2rem;
    }
    
    .block {
        display: block;
    }
    
    .inline-block {
        display: inline-block;
    }
    
    .flex {
        display: flex;
    }
    
    .grid {
        display: grid;
    }
    
    .hidden {
        display: none;
    }
    
    .h-12 {
        height: 3rem;
    }
    
    .h-16 {
        height: 4rem;
    }
    
    .h-24 {
        height: 6rem;
    }
    
    .h-3 {
        height: 0.75rem;
    }
    
    .h-32 {
        height: 8rem;
    }
    
    .h-4 {
        height: 1rem;
    }
    
    .h-48 {
        height: 12rem;
    }
    
    .h-5 {
        height: 1.25rem;
    }
    
    .h-6 {
        height: 1.5rem;
    }
    
    .h-8 {
        height: 2rem;
    }
    
    .h-full {
        height: 100%;
    }
    
    .w-12 {
        width: 3rem;
    }
    
    .w-16 {
        width: 4rem;
    }
    
    .w-24 {
        width: 6rem;
    }
    
    .w-3 {
        width: 0.75rem;
    }
    
    .w-32 {
        width: 8rem;
    }
    
    .w-4 {
        width: 1rem;
    }
    
    .w-48 {
        width: 12rem;
    }
    
    .w-5 {
        width: 1.25rem;
    }
    
    .w-6 {
        width: 1.5rem;
    }
    
    .w-8 {
        width: 2rem;
    }
    
    .w-full {
        width: 100%;
    }
    
    .max-w-2xl {
        max-width: 42rem;
    }
    
    .max-w-3xl {
        max-width: 48rem;
    }
    
    .max-w-4xl {
        max-width: 56rem;
    }
    
    .flex-shrink-0 {
        flex-shrink: 0;
    }
    
    @keyframes bounce {
        0%, 100% {
            transform: translateY(-25%);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        }
        50% {
            transform: none;
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        }
    }
    
    .animate-bounce {
        animation: bounce 1s infinite;
    }
    
    .grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .flex-col {
        flex-direction: column;
    }
    
    .flex-wrap {
        flex-wrap: wrap;
    }
    
    .items-center {
        align-items: center;
    }
    
    .justify-center {
        justify-content: center;
    }
    
    .justify-between {
        justify-content: space-between;
    }
    
    .gap-12 {
        gap: 3rem;
    }
    
    .gap-2 {
        gap: 0.5rem;
    }
    
    .gap-4 {
        gap: 1rem;
    }
    
    .gap-6 {
        gap: 1.5rem;
    }
    
    .gap-8 {
        gap: 2rem;
    }
    
    .space-x-4 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1rem * var(--tw-space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
    }
    
    .space-x-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
    
    .space-y-1 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
    }
    
    .space-y-4 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
    
    .space-y-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
    }
    
    .space-y-8 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(2rem * var(--tw-space-y-reverse));
    }
    
    .overflow-hidden {
        overflow: hidden;
    }
    
    .rounded-full {
        border-radius: 9999px;
    }
    
    .rounded-md {
        border-radius: 0.375rem;
    }
    
    .border {
        border-width: 1px;
    }
    
    .border-t {
        border-top-width: 1px;
    }
    
    .border-gray-700 {
        --tw-border-opacity: 1;
        border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
    }
    
    .bg-blue-500 {
        --tw-bg-opacity: 1;
        background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
    }
    
    .bg-gray-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
    }
    
    .bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
    }
    
    .bg-opacity-50 {
        --tw-bg-opacity: 0.5;
    }
    
    .bg-opacity-80 {
        --tw-bg-opacity: 0.8;
    }
    
    .bg-opacity-95 {
        --tw-bg-opacity: 0.95;
    }
    
    .bg-gradient-to-br {
        background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    }
    
    .bg-gradient-to-r {
        background-image: linear-gradient(to right, var(--tw-gradient-stops));
    }
    
    .bg-gradient-to-t {
        background-image: linear-gradient(to top, var(--tw-gradient-stops));
    }
    
    .from-blue-400 {
        --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .from-blue-500 {
        --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .from-gray-900 {
        --tw-gradient-from: #111827 var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .from-green-500 {
        --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .from-purple-500 {
        --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .from-yellow-500 {
        --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    
    .to-blue-600 {
        --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
    }
    
    .to-pink-600 {
        --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
    }
    
    .to-purple-500 {
        --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
    }
    
    .to-purple-600 {
        --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
    }
    
    .to-red-600 {
        --tw-gradient-to: #dc2626 var(--tw-gradient-to-position);
    }
    
    .to-teal-500 {
        --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position);
    }
    
    .to-transparent {
        --tw-gradient-to: transparent var(--tw-gradient-to-position);
    }
    
    .bg-clip-text {
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    .p-1 {
        padding: 0.25rem;
    }
    
    .p-3 {
        padding: 0.75rem;
    }
    
    .p-4 {
        padding: 1rem;
    }
    
    .p-6 {
        padding: 1.5rem;
    }
    
    .p-8 {
        padding: 2rem;
    }
    
    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .pt-6 {
        padding-top: 1.5rem;
    }
    
    .pt-8 {
        padding-top: 2rem;
    }
    
    .text-center {
        text-align: center;
    }
    
    .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    
    .text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .font-bold {
        font-weight: 700;
    }
    
    .text-blue-400 {
        --tw-text-opacity: 1;
        color: rgb(96 165 250 / var(--tw-text-opacity, 1));
    }
    
    .text-gray-300 {
        --tw-text-opacity: 1;
        color: rgb(209 213 219 / var(--tw-text-opacity, 1));
    }
    
    .text-gray-400 {
        --tw-text-opacity: 1;
        color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    }
    
    .text-transparent {
        color: transparent;
    }
    
    .text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    }
    
    .opacity-60 {
        opacity: 0.6;
    }
    
    .backdrop-blur-md {
        --tw-backdrop-blur: blur(12px);
        -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
        backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    }
    
    .backdrop-filter {
        -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
        backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    }
    
    .transition-colors {
        transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }
    
    .hover\:bg-gray-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
    }
    
    .hover\:text-blue-400:hover {
        --tw-text-opacity: 1;
        color: rgb(96 165 250 / var(--tw-text-opacity, 1));
    }
    
    .hover\:underline:hover {
        -webkit-text-decoration-line: underline;
        text-decoration-line: underline;
    }
    
    .focus\:outline-none:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
    }
    
    .focus\:ring-2:focus {
        --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
        --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
        box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    }
    
    .focus\:ring-blue-500:focus {
        --tw-ring-opacity: 1;
        --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
    }
    
    @media (min-width: 768px) {
        .md\:mb-0 {
            margin-bottom: 0px;
        }
        .md\:flex {
            display: flex;
        }
        .md\:hidden {
            display: none;
        }
        .md\:w-1\/3 {
            width: 33.333333%;
        }
        .md\:w-2\/3 {
            width: 66.666667%;
        }
        .md\:grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .md\:flex-row {
            flex-direction: row;
        }
        .md\:text-2xl {
            font-size: 1.5rem;
            line-height: 2rem;
        }
        .md\:text-4xl {
            font-size: 2.25rem;
            line-height: 2.5rem;
        }
        .md\:text-6xl {
            font-size: 3.75rem;
            line-height: 1;
        }
    }
    
    @media (min-width: 1024px) {
        .lg\:grid-cols-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .notification {
        position: fixed;
        top: 20px; /* Keep it near the top */
        right: 20px; /* Position it in the top-right corner */
        background-color: rgba(10, 25, 47, 0.9); /* Dark background with slight transparency, matching website's dark theme */
        border: 1px solid #00ff99; /* Green border to match the website's border */
        color: white;
        padding: 10px 20px; /* Same padding as before */
        border-radius: 5px; /* Matches the rounded corners */
        display: flex;
        align-items: center;
        justify-content: space-between; /* Keeps the text and close button spaced nicely */
        font-size: 14px; /* Matches the example's font size */
        box-shadow: 0 0 10px rgba(0, 255, 153, 0.3); /* Subtle neon-green glow for depth */
        z-index: 9999; /* Ensures it stays on top of other elements */
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease; /* Slide-in effect */
        min-width: 200px; /* Ensures it doesn't get too small */
        max-width: 300px; /* Prevents it from taking the full width */
        transform: translateX(0); /* Default position for slide-in animation */
    }
    
    /* Slide-in animation when the notification appears */
    .notification.slide-in {
        transform: translateX(100%); /* Start off-screen to the right */
    }
    
    .notification.slide-in.active {
        transform: translateX(0); /* Slide into view */
    }
    
    /* Close button for notifications */
    .notification button {
        background: none;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        margin-left: 10px; /* Adds some spacing between text and button */
    }
    
    /* Notification icon (if you want to add one) */
    .notification span {
        margin-right: 10px;
    }
    
    /* Style for hover effect on close button */
    .notification button:hover {
        color: #00e6ff; /* Cyan hover effect to match the "Explore Projects" button */
    }

    .focus-container {
        position: relative;
        display: inline-flex; /* Keeps text inline */
        gap: 0.5em; /* Adjusted for spacing in a sentence */
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .focus-word, .no-focus {
        position: relative;
        font-size: inherit; /* Inherits text-xl md:text-2xl */
        font-weight: 600; /* Matches boldness */
    }

    .focus-word.active {
        animation: glow-pulse 1s infinite ease-in-out; /* Pulsing glow when active */
    }

    .focus-frame {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        box-sizing: content-box;
        border: none;
        opacity: 0; /* Hidden until active */
        transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
    }

    .corner {
        position: absolute;
        width: 0.75rem;
        height: 0.75rem;
        border: 2px solid #00ff99; /* Green border to match your website */
        filter: drop-shadow(0px 0px 3px rgba(0, 255, 153, 0.6)); /* Green glow */
        border-radius: 2px;
    }

    .top-left {
        top: -6px;
        left: -6px;
        border-right: none;
        border-bottom: none;
    }

    .top-right {
        top: -6px;
        right: -6px;
        border-left: none;
        border-bottom: none;
    }

    .bottom-left {
        bottom: -6px;
        left: -6px;
        border-right: none;
        border-top: none;
    }

    .bottom-right {
        bottom: -6px;
        right: -6px;
        border-left: none;
        border-top: none;
    }

    @keyframes glow-pulse {
        0% {
            text-shadow: 0 0 5px rgba(0, 255, 153, 0.3); /* Green glow to match border */
        }
        50% {
            text-shadow: 0 0 10px rgba(0, 255, 153, 0.7);
        }
        100% {
            text-shadow: 0 0 5px rgba(0, 255, 153, 0.3);
        }
    }

        /* Load a variable font (Inter supports wght, wdth, and ital) */
        
        .text-pressure-container {
            position: relative;
            width: 100%;
            background: transparent;
            padding-bottom: 10px;
        }

        .text-pressure-title {
            /* Font-family is not explicitly set to preserve the inherited font */
            text-transform: uppercase;
            margin: 0;
            text-align: center;
            user-select: none;
            white-space: nowrap;
            width: 100%;
        }

        .text-pressure-title span {
            display: inline-block;
            color: inherit; /* Inherits from Tailwind/glow classes */
            font-variation-settings: 'wght' 400, 'wdth' 100, 'ital' 0; /* Default values */
            transition: font-variation-settings 0.1s ease; /* Smooth transitions */
        }

        /* From Uiverse.io by Kabak */ 
.hero-hover {
    height: auto;
    margin: 5px;
    width: auto;
    padding: 12px 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(to right, #68d2f4, #8e44ad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Consolas, Courier New, monospace;
    border: solid #404c5d 1px;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
    color:linear-gradient(to right,#68d2f4,#8e44ad);
    -webkit-transition: 500ms;
    transition: 500ms;
    border-radius: 5px;
    scroll-behavior: smooth;
    -webkit-box-shadow: -1px -5px 15px #536095, 5px 5px 15px #37426e,
      inset 5px 5px 10px #4b5578, inset -5px -5px 10px #545b78;
    }
  
  .hero-hover:hover {
    -webkit-box-shadow: 1px 1px 13px #4b5578, -1px -1px 13px #545b78;
    box-shadow: 1px 1px 13px #6180e8, -1px -1px 13px #545b78;
    color: #d6d6d6;
    -webkit-transition: 500ms;
    transition: 500ms;
    box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
      inset 5px 5px 10px #545b78, inset -5px -5px 10px #545b78;
  
  }
  
  .hero-hover:active {
    -webkit-box-shadow: 1px 1px 13px #313648, -1px -1px 33px #545b78;
    box-shadow: 1px 1px 13px #2c2547, -1px -1px 33px #545b78;
    color: #d6d6d6;
    -webkit-transition: 100ms;
    transition: 100ms;
  }
  /* Scrollbar styling */
  ::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 3px;
}
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1000;
}
  /* Toggle button styling */
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 36px;
    height: 36px;
}

/* SVG container */
#toggle-icon {
    display: block; /* Ensure SVG is visible */
    opacity: 1; /* Prevent hidden SVG */
}

/* SVG lines */
#toggle-icon .line {
    fill: none;
    stroke: #00f2fe; /* Solid stroke for visibility */
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

#toggle-icon .line1 {
    stroke-dasharray: 60 207;
}

#toggle-icon .line2 {
    stroke-dasharray: 60 60;
}

#toggle-icon .line3 {
    stroke-dasharray: 60 207;
}

/* Morphing animation when menu is opened */
.menu.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.menu.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.menu.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

/* Hover effect (matches .btn style) */
#menu-toggle:hover svg {
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.5)); /* Neon glow */
}

/* Slide animation for mobile menu */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%); /* Start off-screen to the right */
}

#mobile-menu:not(.hidden) {
    transform: translateX(0); /* Slide into view when not hidden */
}
