:root {
    /* Antigravity Color Palette */
    --bg-deep: #030305;
    --bg-panel: rgba(10, 10, 15, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;

    --neon-blue: #00f3ff;
    --neon-purple: #b026ff;
    --soft-cyan: #80ffea;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-accent: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-cinematic: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    /* Hide default cursor for custom cursor */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.dark-theme {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a,
button {
    text-decoration: none;
    color: inherit;
    outline: none;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-blue);
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 243, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
}

/* Background Cinematic Elements */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px);
    }
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite alternate;
}

.orb-primary {
    width: 500px;
    height: 500px;
    background: var(--neon-blue);
    top: -10%;
    left: -10%;
}

.orb-secondary {
    width: 600px;
    height: 600px;
    background: var(--neon-purple);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.orb-accent {
    width: 300px;
    height: 300px;
    background: var(--soft-cyan);
    top: 40%;
    left: 40%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, -50px);
    }
}

/* Typography Utilities */
.text-neon {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.text-accent {
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.text-hollow {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
}

/* .section-headingabout {
    text-align: left;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
} */


.section-heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}




.body-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Glassmorphism Utilities */
.glass-panel,
.glass-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    /* Brutalist/Tech sharp corners */
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.2), 0 0 15px rgba(0, 243, 255, 0.3);
}

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

.btn-glow:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.4), 0 0 30px rgba(0, 243, 255, 0.6);
}

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

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: var(--transition-cinematic);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-btn {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
}

.nav-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.badge-pill {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--neon-purple);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-purple);
    margin-bottom: 2rem;
    background: rgba(176, 38, 255, 0.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Floating Visuals */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-mockup {
    position: absolute;
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
}

.main-mockup {
    width: 300px;
    height: 400px;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.small-mockup-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 0;
    z-index: 1;
    animation: float 6s ease-in-out infinite reverse;
}

.small-mockup-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 10%;
    z-index: 3;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px currentColor);
}

@keyframes float {
    0% {
        transform: translateY(0) rotateX(5deg) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(-5deg) rotateY(5deg);
    }

    100% {
        transform: translateY(0) rotateX(5deg) rotateY(-5deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: none;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.scroll-indicator .text {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(-90deg);
    transform-origin: left center;
    margin-left: 1rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-layout.reverse .split-content {
    order: -1;
}

.profile-panel {
    width: 100%;
    aspect-ratio: 4/5;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.image-glitch-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #222);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.8;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), mix-blend-mode 0.8s ease, opacity 0.8s ease;
}

.profile-panel:hover .profile-image {
    mix-blend-mode: normal;
    opacity: 1;
    transform: scale(1.05);
}

.profile-placeholder {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.tag {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.tag:hover {
    border-color: var(--neon-purple);
    background: rgba(176, 38, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-cinematic);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--neon-blue);
    filter: blur(80px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: var(--transition-cinematic);
}

.service-card:hover .card-glow {
    opacity: 0.2;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Skills Section */
.floating-badges {
    position: relative;
    height: 400px;
}

.skill-badge {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: var(--font-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.skill-badge i {
    font-size: 1.5rem;
}

.badge-1 {
    top: 10%;
    left: 10%;
    color: #E34F26;
    border-color: rgba(227, 79, 38, 0.3);
    animation: float 5s infinite;
}

.badge-2 {
    top: 30%;
    right: 10%;
    color: #1572B6;
    border-color: rgba(21, 114, 182, 0.3);
    animation: float 6s infinite 1s;
}

.badge-3 {
    top: 50%;
    left: 20%;
    color: #F7DF1E;
    border-color: rgba(247, 223, 30, 0.3);
    animation: float 7s infinite 2s;
}

.badge-4 {
    bottom: 20%;
    right: 20%;
    color: #21759b;
    border-color: rgba(33, 117, 155, 0.3);
    animation: float 5.5s infinite 1.5s;
}

.badge-5 {
    top: 0%;
    left: 50%;
    color: #92003B;
    border-color: rgba(146, 0, 59, 0.3);
    animation: float 6.5s infinite 0.5s;
}

.badge-6 {
    bottom: 10%;
    left: 40%;
    color: var(--neon-blue);
    border-color: rgba(0, 243, 255, 0.3);
    animation: float 6s infinite 2.5s;
}

.badge-7 {
    top: 70%;
    right: 5%;
    color: var(--neon-purple);
    border-color: rgba(176, 38, 255, 0.3);
    animation: float 7s infinite 0.2s;
}

/* Skills Dashboard Styles */
.section.skills {

    position: relative;
    overflow: hidden;
    z-index: 1;
}

.skills-orb-1,
.skills-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.skills-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    top: 10%;
    left: -10%;
}

.skills-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: 5%;
    right: -10%;
}

.skills-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.skills-card:hover {
    transform: translateY(-8px) translateZ(10px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 229, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.skills-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08), transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.skills-card:hover .skills-card-glow {
    opacity: 0.8;
}

.skills-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.skills-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
    transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.skills-card:hover .skills-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

.skills-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.skill-name {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.skills-card:hover .skill-name {
    color: #e2e2ec;
}

.skill-percentage {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #00E5FF;
    letter-spacing: 0.5px;
}

.skill-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: visible;
    position: relative;
}

.skill-fill {
    height: 100%;
    width: 0%;
    /* GSAP-controlled transition */
    background: linear-gradient(90deg, #00E5FF, #00B8FF, #0099FF);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4), 0 0 4px rgba(0, 153, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.skills-card:hover .skill-fill {
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.6), 0 0 8px rgba(0, 153, 255, 0.3);
}

.skill-fill-dot {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #00E5FF;
    display: inline-block;
    opacity: 0.9;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.skills-card:hover .skill-fill-dot {
    transform: translateY(-50%) scale(1.2);
}

/* Skills Section Media Queries */
@media (max-width: 1024px) {
    .skills-dashboard {
        gap: 2rem;
    }

    .skills-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .skills-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills-card {
        padding: 2rem 1.5rem;
    }

    .skills-orb-1,
    .skills-orb-2 {
        filter: blur(100px);
    }
}

/* Portfolio Section Redesign */
.portfolio-header-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.portfolio-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.filter-btn.active {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.work-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.1);
}

.work-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.9;
}

.work-card:hover .work-image {
    transform: scale(1.05);
    opacity: 1;
}

.work-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.work-tag {
    background: rgba(10, 10, 15, 0.9);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.work-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.work-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-live-full {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 243, 255, 0.8);
    color: #000;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    margin-top: auto;
    transition: var(--transition-fast);
}

.btn-live-full:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* Placeholder project cards */
.work-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(176, 38, 255, 0.18));
    position: relative;
}

.work-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 45%);
    pointer-events: none;
}

.work-placeholder.alt-gradient {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.22), rgba(255, 82, 82, 0.18));
}

.work-placeholder.warm-gradient {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.24), rgba(245, 92, 92, 0.18));
}

.work-placeholder.blue-gradient {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.22), rgba(0, 243, 255, 0.18));
}

.work-placeholder.green-gradient {
    background: linear-gradient(135deg, rgba(87, 197, 133, 0.22), rgba(0, 243, 255, 0.16));
}

.work-placeholder.purple-gradient {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.24), rgba(92, 103, 255, 0.18));
}

.work-placeholder.coral-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 172, 67, 0.18));
}

.placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
}

.placeholder-badge {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(3, 3, 5, 0.4);
}

.placeholder-content h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.placeholder-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 2rem;
    right: 3rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-border);
}

.client-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--neon-blue);
}

/* Contact Section */
.contact-box {
    padding: 5rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.method-card:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.05);
    transform: translateX(10px);
}

.method-card i {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-orb:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
    transform: translateY(-5px);
}

.futuristic-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-secondary);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    transition: 0.3s ease;
    pointer-events: none;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -1.5rem;
    font-size: 0.8rem;
    color: var(--neon-blue);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.input-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-blue);
    transition: 0.4s ease;
}

.input-group input:focus~.input-line::after,
.input-group textarea:focus~.input-line::after {
    width: 100%;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.social-row-small {
    display: flex;
    gap: 1rem;
}

.social-orb-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}

.social-orb-small:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* ===========================
   HAMBURGER MENU
   =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 200;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 3, 5, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 150;
    animation: menuFadeIn 0.4s ease forwards;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

.nav-links.mobile-open .nav-link,
.nav-links.mobile-open .nav-btn {
    font-size: 1.4rem;
    letter-spacing: 3px;
}

/* ===========================
   RESPONSIVE - TABLET (1024px)
   =========================== */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
    }

    .section-heading {
        font-size: 2.8rem;
    }

    /* .section-headingabout {
        font-size: 2.8rem;
    } */


    /* Split Layout */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-layout.reverse .split-content {
        order: 0;
    }

    .profile-panel {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Portfolio */
    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .project-item[style] {
        margin-top: 0 !important;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-box {
        padding: 3rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* ===========================
   RESPONSIVE - MOBILE (768px)
   =========================== */
@media (max-width: 768px) {

    /* Disable custom cursor on touch */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 1.2rem 0;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-visual {
        height: 280px;
    }

    .main-mockup {
        width: 200px;
        height: 280px;
    }

    .small-mockup-1 {
        width: 100px;
        height: 100px;
    }

    .small-mockup-2 {
        width: 80px;
        height: 80px;
    }

    .floating-icon {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Section Headings */
    .section {
        padding: 4rem 0;
    }

    .section-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    /* .section-headingabout {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    } */


    .body-text {
        font-size: 1rem;
    }

    /* About */
    .profile-panel {
        max-width: 320px;
        margin: 0 auto;
    }

    .expertise-tags {
        justify-content: center;
        gap: 0.6rem;
        margin-top: 2rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

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

    /* Skills */
    .floating-badges {
        display: none;
    }

    .split-layout.reverse .split-visual {
        display: none;
    }

    .split-layout.reverse .split-content {
        text-align: center;
    }

    /* Portfolio */
    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-filters {
        gap: 0.6rem;
        margin-bottom: 2.5rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .work-card:hover {
        transform: none;
    }

    .work-content {
        padding: 1.5rem;
    }

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

    .work-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-live-full {
        padding: 0.85rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    /* Contact */
    .contact-box {
        padding: 2rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .method-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .method-card:hover {
        transform: none;
    }

    .social-row {
        justify-content: center;
    }

    .btn.full-width {
        padding: 0.9rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-row-small {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        gap: 1.5rem;
    }
}

/* ===========================
   RESPONSIVE - SMALL MOBILE (480px)
   =========================== */
@media (max-width: 480px) {
    .container {
        padding: 0 4%;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .badge-pill {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }


    /* .section-headingabout {
        font-size: 1.8rem;
    } */

    .hero-visual {
        height: 220px;
    }

    .main-mockup {
        width: 160px;
        height: 220px;
    }

    .small-mockup-1 {
        width: 80px;
        height: 80px;
    }

    .small-mockup-2 {
        width: 60px;
        height: 60px;
    }

    .profile-panel {
        max-width: 260px;
    }

    .expertise-tags {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .work-image-wrapper {
        aspect-ratio: 16/9;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .method-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .social-orb {
        width: 44px;
        height: 44px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .legal-links a {
        font-size: 0.8rem;
    }
}

/* ===========================
   CASE STUDY RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .case-study-hero {
        padding-top: 7rem;
        min-height: auto;
    }

    .case-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .case-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .case-featured-image {
        height: 35vh;
        border-radius: 16px;
        margin: 2rem 0;
    }

    .case-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Form Notification Overlay */
.contact-notification {
    pointer-events: none;
}



/* ----------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ---------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    font-size: 32px;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #ffffff;
    background: #45A54C;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
    /* Fade in from bottom once, then float continuously */
    animation: float 3s ease-in-out infinite 0.5s;
    /* animation: btn-fade-in-up 0.5s ease both, btn-float 2.5s ease-in-out 0.5s infinite; */
    text-decoration: none;
    cursor: none;

    /* background-color: transparent; */

}