/* ==========================================
   ROOT VARIABLES
========================================== */
:root {
    --bg: #050505;
    --bg-2: #090a0d;
    --lime: #d7ff3f;
    --cyan: #3ffff2;
    --orange: #ff7a18;
    --white: #f4f4f0;
    --gray: #8b8b8b;
    --border: rgba(255, 255, 255, 0.09);
    --card-bg: rgba(255, 255, 255, 0.035);
}

/* ==========================================
   RESET & BASE
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--lime);
    color: #000;
}

/* ==========================================
   SCROLLBAR
========================================== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 20px;
}

/* ==========================================
   LOADER
========================================== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at center, #11170a 0%, #050505 42%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loader-container {
    text-align: center;
    position: relative;
    width: 220px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 3px solid transparent;
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-ring-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid transparent;
    border-bottom-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.7s linear infinite reverse;
}

.loader-ring-3 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-left-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

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

.loader-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 2;
    animation: loaderPulse 1.5s ease-in-out infinite;
    background: rgba(215, 255, 63, 0.08);
    border: 2px solid var(--lime);
    box-shadow: 0 0 50px rgba(215, 255, 63, 0.15);
}

.loader-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes loaderPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(215, 255, 63, 0.15);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 70px rgba(215, 255, 63, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(215, 255, 63, 0.15);
    }
}

.loader-text {
    font-family: Orbitron;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--lime);
    margin-top: 20px;
    z-index: 2;
}

.loader-bar-track {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--lime), var(--cyan));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.loader-percent {
    font-family: Orbitron;
    font-size: 12px;
    color: var(--lime);
    margin-top: 8px;
    z-index: 2;
}

.loader-footer {
    position: absolute;
    bottom: -50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 3px;
    color: #555;
    z-index: 2;
}

.loader-dot {
    color: var(--lime);
    animation: blink 1s infinite;
}

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

/* ==========================================
   BACKGROUND
========================================== */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.aurora {
    position: fixed;
    width: 70vw;
    height: 50vh;
    top: -20vh;
    left: 20%;
    background: radial-gradient(circle, rgba(215, 255, 63, 0.07), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -2;
}

.noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 50;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-size: 70px 70px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    z-index: -3;
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: height 0.3s, background 0.3s;
}

.navbar.scrolled {
    height: 62px;
    background: rgba(5, 5, 5, 0.92);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--lime);
    display: grid;
    place-items: center;
    transform: rotate(45deg);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-icon img {
    width: 28px;
    height: 28px;
    transform: rotate(-45deg);
    border-radius: 50%;
    object-fit: cover;
}

.brand div:last-child {
    display: flex;
    flex-direction: column;
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.brand strong {
    color: var(--lime);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #777;
    text-decoration: none;
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 1.5px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--lime);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    border: 1px solid rgba(215, 255, 63, 0.4);
    color: var(--lime);
    text-decoration: none;
    padding: 10px 16px;
    font-family: Orbitron;
    font-size: 8px;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-btn:hover {
    background: var(--lime);
    color: #000;
    box-shadow: 0 0 30px rgba(215, 255, 63, 0.25);
}

.nav-btn i {
    margin-left: 6px;
}

.mobile-menu {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #090909;
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 99;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-family: Orbitron;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.mobile-nav a:hover {
    color: var(--lime);
    padding-left: 10px;
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

/* ==========================================
   HERO
========================================== */
.hero {
    min-height: 100vh;
    padding: 120px 6% 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 30px;
    position: relative;
}

.hero-left {
    z-index: 3;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(215, 255, 63, 0.15);
    background: rgba(215, 255, 63, 0.04);
    padding: 8px 14px;
    font-family: Orbitron;
    font-size: 7px;
    letter-spacing: 2px;
    color: #a5a5a5;
    margin-bottom: 20px;
    border-radius: 20px;
}

.status-pill span {
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--lime);
    animation: pulse-dot 1.5s infinite;
}

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

.hero-kicker {
    font-family: Orbitron;
    font-size: 9px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 15px;
}

.hero-kicker span {
    color: var(--lime);
}

.hero-title {
    font-family: Orbitron;
    font-weight: 900;
    font-size: clamp(44px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: -3px;
    display: flex;
    flex-direction: column;
}

.hero-title span {
    display: block;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, var(--lime), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 550px;
    margin-top: 25px;
    color: #858585;
    line-height: 1.9;
    font-size: 13px;
}

.hero-description strong {
    color: var(--lime);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 14px 20px;
    text-decoration: none;
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 2px;
}

.primary-btn {
    color: #000;
    background: var(--lime);
    display: flex;
    gap: 16px;
    align-items: center;
}

.primary-btn:hover {
    box-shadow: 0 0 40px rgba(215, 255, 63, 0.4);
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid var(--border);
    color: white;
    background: transparent;
}

.secondary-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.hero-socials {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.hero-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: #777;
    transition: 0.3s;
    border-radius: 2px;
    text-decoration: none;
}

.hero-socials a:hover {
    border-color: var(--lime);
    color: var(--lime);
    transform: translateY(-3px);
}

/* Hero Right */
.hero-right {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.orbit-one {
    width: 480px;
    height: 480px;
    animation: spin 20s linear infinite;
}

.orbit-two {
    width: 390px;
    height: 390px;
    animation: spin 15s linear infinite reverse;
}

.orbit-three {
    width: 570px;
    height: 570px;
    opacity: 0.4;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 20px var(--lime);
}

.dot-one {
    width: 10px;
    height: 10px;
    top: 17%;
    right: 22%;
}

.dot-two {
    width: 7px;
    height: 7px;
    bottom: 25%;
    left: 18%;
    background: var(--cyan);
    box-shadow: 0 0 20px var(--cyan);
}

.dot-three {
    width: 12px;
    height: 12px;
    top: 65%;
    right: 15%;
    background: var(--orange);
    box-shadow: 0 0 20px var(--orange);
}

.core-scene {
    width: 300px;
    height: 300px;
    position: relative;
    display: grid;
    place-items: center;
}

.core-ring {
    position: absolute;
    border: 1px solid rgba(215, 255, 63, 0.25);
    border-radius: 50%;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: spin 10s linear infinite;
    border-left-color: var(--lime);
}

.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(63, 255, 242, 0.3);
    animation: spin 7s linear infinite reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(255, 122, 24, 0.3);
    animation: spin 4s linear infinite;
}

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

.energy-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 35% 30%, white 0%, var(--lime) 10%, #253900 45%, #070707 75%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 30px var(--lime), 0 0 80px rgba(215, 255, 63, 0.35), inset -20px -20px 40px rgba(0, 0, 0, 0.5);
    animation: corePulse 2.5s ease-in-out infinite;
    overflow: hidden;
}

.energy-core img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes corePulse {
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 50px var(--lime), 0 0 120px rgba(215, 255, 63, 0.45);
    }
}

.core-text {
    text-align: center;
    font-family: Orbitron;
    display: flex;
    flex-direction: column;
    font-size: 9px;
    color: #000;
}

.core-text strong {
    font-size: 13px;
}

/* Tech Cards */
.glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.tech-card i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--lime);
    border: 1px solid rgba(215, 255, 63, 0.2);
    border-radius: 2px;
}

.tech-card div {
    display: flex;
    flex-direction: column;
}

.tech-card strong {
    font-family: Orbitron;
    font-size: 7px;
    color: var(--white);
}

.tech-card span {
    color: #777;
    font-size: 8px;
}

.card-one {
    top: 15%;
    left: 0;
    animation: floatCard 4s ease-in-out infinite;
}

.card-two {
    right: -2%;
    top: 40%;
    animation: floatCard 5s ease-in-out infinite reverse;
}

.card-three {
    left: 8%;
    bottom: 5%;
    animation: floatCard 4.5s ease-in-out infinite;
}

@keyframes floatCard {
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-indicator p {
    font-family: Orbitron;
    font-size: 6px;
    letter-spacing: 2px;
    color: #555;
}

.mouse {
    width: 18px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.mouse span {
    width: 3px;
    height: 6px;
    background: var(--lime);
    border-radius: 5px;
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ==========================================
   MARQUEE
========================================== */
.marquee-section {
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(-1deg) scale(1.02);
    background: var(--lime);
    color: #000;
}

.marquee {
    overflow: hidden;
}

.marquee-content {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 30px;
    animation: marquee 18s linear infinite;
    font-family: Orbitron;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
}

.marquee-content i {
    font-size: 8px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   SECTIONS
========================================== */
.section {
    position: relative;
    padding: 120px 6%;
}

.section-number {
    position: absolute;
    right: 6%;
    top: 80px;
    font-family: Orbitron;
    font-size: 9px;
    color: var(--lime);
    opacity: 0.5;
}

.section-heading p,
.eyebrow {
    color: var(--lime);
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-heading h2,
.skills-text h2,
.contact-top h2 {
    font-family: Orbitron;
    font-size: clamp(36px, 6vw, 75px);
    line-height: 0.95;
    letter-spacing: -3px;
}

.section-heading h2 span,
.skills-text h2 span,
.contact-top h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.section-heading.center {
    text-align: center;
}

/* ==========================================
   ABOUT
========================================== */
.about-section {
    max-width: 1500px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8%;
    align-items: center;
    margin-top: 60px;
}

.about-visual {
    position: relative;
}

.profile-frame {
    width: min(380px, 100%);
    aspect-ratio: 0.85;
    border: 1px solid var(--border);
    padding: 15px;
    background: linear-gradient(135deg, rgba(215, 255, 63, 0.06), transparent 40%), #0a0a0a;
    border-radius: 2px;
}

.profile-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(215, 255, 63, 0.12), transparent 45%);
    border-radius: 2px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(215, 255, 63, 0.15);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-placeholder p {
    margin-top: 20px;
    font-family: Orbitron;
    letter-spacing: 3px;
    font-size: 14px;
}

.profile-placeholder small {
    color: #555;
    font-family: Orbitron;
    font-size: 7px;
    margin-top: 6px;
    letter-spacing: 2px;
}

.frame-line {
    position: absolute;
    width: 80px;
    height: 1px;
    background: var(--lime);
}

.frame-line.top {
    top: 0;
    right: -40px;
}

.frame-line.bottom {
    bottom: 0;
    left: -40px;
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 100px;
    height: 100px;
    background: var(--lime);
    color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    transform: rotate(12deg);
    box-shadow: 0 0 40px rgba(215, 255, 63, 0.3);
}

.experience-badge span {
    font-family: Orbitron;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge p {
    font-family: Orbitron;
    font-size: 6px;
    font-weight: 900;
}

.big-about-text {
    font-size: clamp(20px, 2.8vw, 34px);
    line-height: 1.45;
    font-weight: 300;
    color: #b0b0b0;
}

.big-about-text strong {
    color: white;
}

.big-about-text span {
    color: var(--lime);
    font-family: Orbitron;
}

.normal-text {
    color: #666;
    line-height: 1.9;
    font-size: 13px;
    margin: 20px 0 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-box {
    padding: 20px 15px;
    border-right: 1px solid var(--border);
}

.stat-box:last-child {
    border: 0;
}

.stat-box strong,
.stat-box span {
    font-family: Orbitron;
    font-size: 26px;
    color: var(--lime);
}

.stat-box p {
    margin-top: 5px;
    color: #666;
    font-family: Orbitron;
    font-size: 6px;
    letter-spacing: 1px;
}

/* ==========================================
   SERVICES
========================================== */
.services-section {
    background: #080808;
}

.services-grid {
    max-width: 1400px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    position: relative;
    padding: 40px 28px;
    min-height: 380px;
    background: #0c0c0c;
    border: 1px solid transparent;
    transition: 0.4s;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 255, 63, 0.4);
    background: radial-gradient(circle at top right, rgba(215, 255, 63, 0.08), transparent 40%), #0c0c0c;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(215, 255, 63, 0.1), transparent 40%), #10120b;
}

.featured-label {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    background: var(--lime);
    font-family: Orbitron;
    font-size: 6px;
    padding: 5px 8px;
    border-radius: 2px;
}

.service-number {
    font-family: Orbitron;
    color: #444;
    font-size: 9px;
}

.service-icon {
    margin: 40px 0 25px;
    font-size: 30px;
    color: var(--lime);
}

.service-card h3 {
    font-family: Orbitron;
    font-size: 15px;
}

.service-card p {
    color: #777;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.service-tags span {
    border: 1px solid var(--border);
    padding: 4px 6px;
    font-family: Orbitron;
    font-size: 6px;
    color: #888;
    border-radius: 2px;
}

.service-card>a {
    position: absolute;
    bottom: 28px;
    color: var(--lime);
    text-decoration: none;
    font-family: Orbitron;
    font-size: 8px;
    transition: 0.3s;
}

.service-card>a:hover {
    letter-spacing: 2px;
}

.service-card>a i {
    margin-left: 6px;
    transition: 0.3s;
}

.service-card>a:hover i {
    transform: translateX(4px);
}

/* ==========================================
   SKILLS
========================================== */
.skills-layout {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 40px;
}

.skills-text>p:not(.eyebrow) {
    color: #777;
    font-size: 13px;
    line-height: 1.9;
    max-width: 420px;
    margin-top: 25px;
}

.text-link {
    display: inline-flex;
    gap: 16px;
    margin-top: 25px;
    color: var(--lime);
    text-decoration: none;
    font-family: Orbitron;
    font-size: 8px;
    transition: 0.3s;
}

.text-link:hover {
    gap: 24px;
}

.skill-universe {
    height: 520px;
    position: relative;
    display: grid;
    place-items: center;
}

.skill-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.so-1 {
    width: 440px;
    height: 440px;
    animation: spin 18s linear infinite;
}

.so-2 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: spin 13s linear infinite reverse;
}

.so-3 {
    width: 200px;
    height: 200px;
    animation: spin 8s linear infinite;
}

.skill-center {
    width: 85px;
    height: 85px;
    background: var(--lime);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 60px rgba(215, 255, 63, 0.35);
    overflow: hidden;
}

.skill-center img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.skill-node {
    position: absolute;
    width: 78px;
    height: 78px;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    border-radius: 4px;
}

.skill-node:hover {
    border-color: var(--lime);
    transform: scale(1.1);
}

.skill-node i {
    font-size: 22px;
    color: var(--lime);
}

.skill-node span {
    font-family: Orbitron;
    font-size: 6px;
    color: #888;
}

.node-php {
    top: 10%;
    left: 48%;
}

.node-laravel {
    top: 25%;
    right: 8%;
}

.node-js {
    bottom: 17%;
    right: 16%;
}

.node-html {
    bottom: 8%;
    left: 45%;
}

.node-css {
    bottom: 25%;
    left: 6%;
}

.node-db {
    top: 25%;
    left: 8%;
}

/* ==========================================
   PROJECTS
========================================== */
.projects-section {
    background: #080808;
}

.projects-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}

.projects-intro {
    width: 320px;
    color: #777;
    font-size: 12px;
    line-height: 1.9;
}

.projects-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.project-card.large {
    grid-row: span 2;
}

.project-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: 0.4s;
}

.project-card:hover {
    border-color: rgba(215, 255, 63, 0.4);
}

.project-visual {
    height: 280px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.project-card.large .project-visual {
    height: 500px;
}

.pv-1 {
    background: radial-gradient(circle, rgba(215, 255, 63, 0.15), transparent 50%), #0a0a0a;
}

.pv-2 {
    background: radial-gradient(circle, rgba(63, 255, 242, 0.12), transparent 50%), #090909;
}

.pv-3 {
    background: radial-gradient(circle, rgba(255, 122, 24, 0.1), transparent 50%), #090909;
}

/* Fake Window */
.fake-window {
    width: 75%;
    height: 65%;
    border: 1px solid rgba(215, 255, 63, 0.25);
    background: #101010;
    box-shadow: 20px 20px 0 rgba(215, 255, 63, 0.04);
    transform: perspective(600px) rotateY(-8deg) rotateX(4deg);
    border-radius: 4px;
}

.window-bar {
    height: 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 12px;
}

.window-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #444;
}

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

.window-content {
    display: flex;
    height: calc(100% - 30px);
}

.wc-sidebar {
    width: 20%;
    border-right: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.wc-main {
    flex: 1;
    padding: 20px;
}

.wc-title {
    width: 50%;
    height: 10px;
    background: var(--lime);
    margin-bottom: 20px;
    border-radius: 2px;
}

.wc-lines span {
    display: block;
    height: 7px;
    background: #222;
    margin-bottom: 10px;
    border-radius: 2px;
}

.wc-lines span:nth-child(2) {
    width: 75%;
}

.wc-lines span:nth-child(3) {
    width: 50%;
}

/* Mobile Preview */
.mobile-preview {
    width: 120px;
    height: 220px;
    border: 4px solid #222;
    border-radius: 20px;
    background: #111;
    position: relative;
    box-shadow: 15px 20px 30px rgba(0, 0, 0, 0.5);
}

.mobile-notch {
    width: 50px;
    height: 8px;
    background: #222;
    border-radius: 0 0 8px 8px;
    margin: auto;
}

.mobile-ui {
    padding: 16px 10px;
}

.m-logo {
    text-align: center;
    display: flex;
    justify-content: center;
}

.m-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.m-card {
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), #1b3b39);
    margin-top: 20px;
    border-radius: 8px;
    opacity: 0.7;
}

.m-card.small {
    height: 35px;
    background: #222;
    margin-top: 10px;
}

/* Dashboard Preview */
.dashboard-preview {
    width: 75%;
    height: 65%;
    background: #101010;
    border: 1px solid rgba(255, 122, 24, 0.25);
    padding: 12px;
    border-radius: 4px;
}

.dash-nav {
    width: 100%;
    height: 18px;
    background: #1c1c1c;
    border-radius: 2px;
}

.dash-content {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 8px;
    margin-top: 8px;
}

.dash-chart {
    height: 130px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 122, 24, 0.3)), #181818;
    border-radius: 2px;
}

.dash-stat {
    background: var(--orange);
    opacity: 0.6;
    border-radius: 2px;
}

/* Project Info */
.project-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-info p {
    color: var(--lime);
    font-family: Orbitron;
    font-size: 6px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.project-info h3 {
    font-family: Orbitron;
    font-size: 12px;
}

.project-info a {
    color: var(--lime);
    font-size: 18px;
    transition: 0.3s;
}

.project-info a:hover {
    transform: rotate(45deg);
    display: inline-block;
}

/* ==========================================
   CTA
========================================== */
.cta-section {
    min-height: 500px;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 255, 63, 0.12), transparent 65%);
    filter: blur(30px);
    animation: ctaGlow 4s ease-in-out infinite;
}

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

.cta-section p,
.cta-section h2,
.mega-btn {
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-family: Orbitron;
    font-size: 8px;
    color: var(--lime);
    letter-spacing: 3px;
}

.cta-section h2 {
    font-family: Orbitron;
    font-size: clamp(34px, 7vw, 85px);
    line-height: 0.95;
    margin: 20px 0 30px;
}

.cta-section h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.mega-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 10px;
    font-family: Orbitron;
    font-size: 10px;
    transition: 0.3s;
}

.mega-btn:hover {
    border-bottom-color: var(--cyan);
}

.mega-circle {
    width: 44px;
    height: 44px;
    background: var(--lime);
    color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.mega-btn:hover .mega-circle {
    transform: rotate(-45deg) scale(1.12);
}

/* ==========================================
   CONTACT
========================================== */
.contact-section {
    background: #0a0a0a;
}

.contact-top {
    text-align: center;
}

.contact-top p {
    color: var(--lime);
    font-family: Orbitron;
    font-size: 8px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info>p {
    color: #777;
    font-size: 13px;
    line-height: 2;
}

.contact-links {
    margin-top: 30px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.contact-links a:hover {
    padding-left: 10px;
    border-bottom-color: var(--lime);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--lime);
    border-radius: 2px;
}

.contact-links div {
    display: flex;
    flex-direction: column;
}

.contact-links small {
    color: #555;
    font-family: Orbitron;
    font-size: 6px;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.contact-links strong {
    font-size: 10px;
}

.arrow {
    margin-left: auto;
    color: #555;
    transition: 0.3s;
}

.contact-links a:hover .arrow {
    color: var(--lime);
    transform: translateX(4px);
}

.contact-form {
    background: #0d0d0d;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 4px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #777;
    font-family: Orbitron;
    font-size: 7px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: #080808;
    border: 1px solid var(--border);
    color: white;
    padding: 12px 14px;
    outline: none;
    font-family: Poppins;
    font-size: 12px;
    transition: 0.3s;
    border-radius: 2px;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 20px rgba(215, 255, 63, 0.05);
}

.send-btn {
    width: 100%;
    border: 0;
    padding: 14px;
    background: var(--lime);
    color: #000;
    font-family: Orbitron;
    font-size: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    border-radius: 2px;
}

.send-btn:hover {
    box-shadow: 0 0 35px rgba(215, 255, 63, 0.3);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER
========================================== */
footer {
    padding: 35px 6%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: Orbitron;
    font-size: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.footer-logo strong {
    color: var(--lime);
}

footer>p {
    color: #555;
    font-family: Orbitron;
    font-size: 6px;
    letter-spacing: 1px;
}

.footer-status {
    color: #555;
    font-family: Orbitron;
    font-size: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-status span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

/* ==========================================
   TOAST
========================================== */
#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    background: var(--lime);
    color: #000;
    font-family: Orbitron;
    font-size: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    transform: translateY(120px);
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(215, 255, 63, 0.2);
}

#toast.show {
    transform: translateY(0);
}

/* ==========================================
   SCROLL REVEAL
========================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - TABLET
========================================== */
@media (max-width: 992px) {
    .nav-links,
    .nav-btn {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .hero-right {
        min-height: 380px;
        transform: scale(0.8);
        margin-top: -20px;
    }

    .about-grid,
    .skills-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .projects-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .projects-intro {
        width: 100%;
    }

    .skill-universe {
        transform: scale(0.7);
        margin: -60px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .section {
        padding: 90px 5%;
    }

    .section-number {
        right: 5%;
        top: 60px;
    }

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

    .project-card.large {
        grid-row: auto;
    }

    .project-card.large .project-visual {
        height: 320px;
    }

    .project-visual {
        height: 240px;
    }

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

    .stat-box {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stat-box:last-child {
        border-bottom: 0;
    }

    .profile-frame {
        margin: 0 auto;
    }

    .experience-badge {
        right: 0;
        bottom: 20px;
        width: 80px;
        height: 80px;
    }

    .experience-badge span {
        font-size: 22px;
    }

    .orbit-three {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-socials {
        margin-top: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .primary-btn,
    .secondary-btn {
        justify-content: center;
        padding: 12px 18px;
        font-size: 7px;
    }

    .card-one,
    .card-two,
    .card-three {
        transform: scale(0.75);
    }

    .card-one {
        left: -8%;
        top: 12%;
    }

    .card-two {
        right: -8%;
        top: 38%;
    }

    .card-three {
        left: -5%;
        bottom: 0;
    }

    .hero-orbit {
        display: none;
    }

    .floating-dot {
        display: none;
    }

    .cta-section {
        min-height: 380px;
        padding: 50px 5%;
    }

    .cta-section h2 {
        font-size: clamp(28px, 7vw, 42px);
    }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 25px 5%;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
========================================== */
@media (max-width: 576px) {
    .navbar {
        height: 62px;
        padding: 0 15px;
    }

    .navbar.scrolled {
        height: 55px;
    }

    .mobile-nav {
        top: 62px;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .brand-icon img {
        width: 22px;
        height: 22px;
    }

    .brand div:last-child {
        font-size: 7px;
    }

    .hero {
        padding: 85px 15px 30px;
    }

    .hero-title {
        font-size: clamp(30px, 12vw, 40px);
        letter-spacing: -2px;
    }

    .hero-right {
        transform: scale(0.55);
        min-height: 260px;
        margin-top: -50px;
    }

    .hero-description {
        font-size: 12px;
        margin-top: 18px;
    }

    .status-pill {
        font-size: 6px;
        padding: 6px 10px;
        margin-bottom: 14px;
    }

    .hero-kicker {
        font-size: 7px;
        margin-bottom: 10px;
    }

    .section {
        padding: 60px 15px;
    }

    .section-number {
        right: 15px;
        top: 40px;
        font-size: 7px;
    }

    .section-heading h2,
    .skills-text h2,
    .contact-top h2 {
        font-size: clamp(24px, 10vw, 34px);
        letter-spacing: -2px;
    }

    .section-heading p,
    .eyebrow {
        font-size: 7px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .about-grid {
        margin-top: 30px;
        gap: 30px;
    }

    .big-about-text {
        font-size: clamp(17px, 5vw, 22px);
    }

    .normal-text {
        font-size: 12px;
        margin: 15px 0 20px;
    }

    .stat-box strong,
    .stat-box span {
        font-size: 20px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .profile-avatar {
        width: 85px;
        height: 85px;
    }

    .profile-frame {
        max-width: 280px;
        padding: 10px;
    }

    .frame-line {
        width: 50px;
    }

    .frame-line.top {
        right: -25px;
    }

    .frame-line.bottom {
        left: -25px;
    }

    .experience-badge {
        width: 70px;
        height: 70px;
        right: 5px;
        bottom: 10px;
    }

    .experience-badge span {
        font-size: 18px;
    }

    .experience-badge p {
        font-size: 5px;
    }

    .services-grid {
        margin-top: 30px;
    }

    .service-card {
        padding: 25px 18px;
        min-height: 260px;
    }

    .service-card h3 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 11px;
    }

    .service-icon {
        margin: 25px 0 15px;
        font-size: 24px;
    }

    .service-card>a {
        font-size: 7px;
        bottom: 18px;
    }

    .skills-layout {
        gap: 15px;
    }

    .skills-text>p:not(.eyebrow) {
        font-size: 12px;
        margin-top: 12px;
    }

    .skill-universe {
        transform: scale(0.4);
        margin: -120px 0;
        height: 340px;
    }

    .projects-top {
        margin-bottom: 30px;
    }

    .projects-intro {
        font-size: 11px;
    }

    .projects-grid {
        gap: 12px;
    }

    .project-card.large .project-visual {
        height: 220px;
    }

    .project-visual {
        height: 190px;
    }

    .project-info {
        padding: 12px 15px;
    }

    .project-info h3 {
        font-size: 10px;
    }

    .project-info p {
        font-size: 5px;
    }

    .project-info a {
        font-size: 14px;
    }

    .fake-window {
        width: 85%;
        height: 60%;
        transform: perspective(400px) rotateY(-4deg) rotateX(2deg);
    }

    .window-content {
        flex-direction: column;
    }

    .wc-sidebar {
        width: 100%;
        height: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .wc-main {
        padding: 12px;
    }

    .wc-title {
        height: 8px;
        margin-bottom: 12px;
    }

    .wc-lines span {
        height: 5px;
        margin-bottom: 6px;
    }

    .mobile-preview {
        width: 90px;
        height: 170px;
        border-width: 3px;
        border-radius: 16px;
    }

    .mobile-notch {
        width: 40px;
        height: 6px;
        border-radius: 0 0 6px 6px;
    }

    .mobile-ui {
        padding: 10px 6px;
    }

    .m-logo img {
        width: 24px;
        height: 24px;
    }

    .m-card {
        height: 45px;
        margin-top: 12px;
        border-radius: 6px;
    }

    .m-card.small {
        height: 25px;
        margin-top: 6px;
    }

    .dashboard-preview {
        width: 85%;
        height: 60%;
        padding: 8px;
    }

    .dash-nav {
        height: 12px;
    }

    .dash-content {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 6px;
    }

    .dash-chart {
        height: 80px;
    }

    .dash-stat {
        height: 30px;
    }

    .contact-grid {
        gap: 25px;
        margin-top: 30px;
    }

    .contact-info>p {
        font-size: 12px;
    }

    .contact-form {
        padding: 18px;
    }

    .input-group {
        margin-bottom: 14px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px 12px;
        font-size: 11px;
    }

    .input-group textarea {
        min-height: 80px;
    }

    .input-group label {
        font-size: 6px;
        margin-bottom: 5px;
    }

    .send-btn {
        padding: 12px;
        font-size: 7px;
    }

    .contact-links {
        margin-top: 18px;
    }

    .contact-links a {
        padding: 12px 0;
        gap: 10px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .contact-links strong {
        font-size: 9px;
    }

    .cta-section {
        min-height: 260px;
        padding: 30px 15px;
    }

    .cta-section p {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .cta-section h2 {
        font-size: clamp(20px, 8vw, 28px);
        margin: 12px 0 20px;
    }

    .mega-btn {
        font-size: 7px;
        gap: 10px;
        padding-bottom: 6px;
    }

    .mega-circle {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .marquee-content {
        font-size: 9px;
        gap: 18px;
    }

    .marquee-section {
        padding: 10px 0;
    }

    footer {
        padding: 18px 15px;
        gap: 8px;
    }

    .footer-logo {
        font-size: 7px;
    }

    .footer-logo img {
        width: 32px;
        height: 32px;
    }

    footer>p {
        font-size: 5px;
    }

    .footer-status {
        font-size: 5px;
    }

    #toast {
        bottom: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 7px;
        gap: 6px;
    }

    .tech-card {
        padding: 8px 10px;
        gap: 6px;
    }

    .tech-card i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .tech-card strong {
        font-size: 5px;
    }

    .tech-card span {
        font-size: 6px;
    }

    .card-one {
        top: 10%;
        left: -10%;
    }

    .card-two {
        right: -10%;
        top: 35%;
    }

    .card-three {
        left: -8%;
        bottom: 0;
    }

    .loader-container {
        width: 180px;
        height: 220px;
    }

    .loader-ring {
        width: 150px;
        height: 150px;
    }

    .loader-ring-2 {
        width: 125px;
        height: 125px;
    }

    .loader-ring-3 {
        width: 100px;
        height: 100px;
    }

    .loader-logo {
        width: 60px;
        height: 60px;
    }

    .loader-logo img {
        width: 45px;
        height: 45px;
    }

    .loader-bar-track {
        width: 130px;
    }

    .loader-footer {
        font-size: 6px;
        bottom: -40px;
    }

    .loader-text {
        font-size: 8px;
        margin-top: 15px;
    }

    .loader-percent {
        font-size: 10px;
    }
}

/* ==========================================
   TOUCH DEVICES (Mobile/Tablet)
========================================== */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
        border-color: transparent;
    }

    .project-card:hover {
        border-color: var(--border);
    }

    .skill-node:hover {
        transform: none;
        border-color: var(--border);
    }

    .nav-links a:hover {
        color: #777;
    }

    .nav-links a:hover::after {
        width: 0%;
    }

    .primary-btn:hover,
    .secondary-btn:hover,
    .send-btn:hover,
    .mega-btn:hover .mega-circle {
        transform: none;
        box-shadow: none;
    }

    .contact-links a:hover {
        padding-left: 0;
        border-bottom-color: var(--border);
    }

    .contact-links a:hover .arrow {
        transform: none;
        color: #555;
    }

    .text-link:hover {
        gap: 16px;
    }

    .service-card>a:hover {
        letter-spacing: 0;
    }

    .service-card>a:hover i {
        transform: none;
    }

    .project-info a:hover {
        transform: none;
    }

    .nav-btn:hover {
        background: transparent;
        color: var(--lime);
        box-shadow: none;
    }
}

/* ==========================================
   PRINT STYLES
========================================== */
@media print {
    #loader,
    #particleCanvas,
    .aurora,
    .noise,
    .grid-bg,
    .marquee-section,
    .scroll-indicator,
    .hero-orbit,
    .floating-dot,
    #toast,
    .mobile-menu,
    .mobile-nav {
        display: none !important;
    }

    .navbar {
        position: relative;
        background: #000 !important;
        backdrop-filter: none !important;
        border-bottom: 1px solid #333;
    }

    .section {
        padding: 40px 20px !important;
        page-break-inside: avoid;
    }

    .hero {
        min-height: auto !important;
        padding: 40px 20px !important;
    }

    .hero-right {
        transform: none !important;
        min-height: auto !important;
    }

    .core-scene {
        width: 200px !important;
        height: 200px !important;
    }

    .energy-core {
        width: 100px !important;
        height: 100px !important;
    }

    .glass-card {
        display: none !important;
    }

    .service-card,
    .project-card {
        border: 1px solid #333 !important;
        background: #111 !important;
    }

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

    .project-card:hover {
        border-color: #333 !important;
    }

    .cta-section {
        min-height: auto !important;
        padding: 40px 20px !important;
    }

    .cta-glow {
        display: none !important;
    }

    footer {
        border-top: 1px solid #333;
        padding: 20px !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .gradient-text {
        -webkit-text-fill-color: var(--lime) !important;
    }

    .stats-grid {
        border-color: #333 !important;
    }

    .stat-box {
        border-color: #333 !important;
    }

    .profile-frame {
        border-color: #333 !important;
    }

    .frame-line {
        display: none !important;
    }

    .experience-badge {
        border: 1px solid #333 !important;
        background: transparent !important;
        color: white !important;
        box-shadow: none !important;
    }

    .experience-badge span {
        color: var(--lime) !important;
    }

    .contact-form {
        border-color: #333 !important;
        background: transparent !important;
    }

    .input-group input,
    .input-group textarea {
        border-color: #333 !important;
        background: transparent !important;
    }

    .send-btn {
        background: var(--lime) !important;
        color: #000 !important;
    }

    .nav-btn {
        border-color: #333 !important;
        color: white !important;
    }

    .brand-icon {
        border-color: #333 !important;
    }

    .brand strong {
        color: var(--lime) !important;
    }

    .section-number {
        color: #666 !important;
    }

    .section-heading h2 span,
    .skills-text h2 span,
    .contact-top h2 span {
        -webkit-text-stroke: 1px #666 !important;
    }

    .outline-text {
        -webkit-text-stroke: 1px #666 !important;
    }
}