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

:root {
    /* Colors */
    --bg-color: #050505;
    --bg-main: #050505;
    --bg-accent: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --accent-color: #00f2fe;
    --accent-gradient: linear-gradient(90deg, #00f2fe 0%, #7b61ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 10rem 0;
    --container-max-width: 1200px;
    --transition-main: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    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: 50px 50px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512" fill="white" stroke="black" stroke-width="10"><g transform="translate(100, 100) rotate(-45 0 0)"><path d="M0 0L-136 192V384H136V192L0 0Z"/><path d="M0 0V208" stroke="black" stroke-width="30"/><circle cx="0" cy="256" r="48" fill="white" stroke="black" stroke-width="15"/><rect x="-96" y="416" width="192" height="64" rx="20" fill="white"/></g></svg>') 6 6, auto;
}

a, button, .work-card, .filter-btn, .modal-close, .nav-links a, .logo {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512" fill="%2300d2ff" stroke="black" stroke-width="10"><g transform="translate(100, 100) rotate(-45 0 0)"><path d="M0 0L-136 192V384H136V192L0 0Z"/><path d="M0 0V208" stroke="black" stroke-width="30"/><circle cx="0" cy="256" r="48" fill="%2300d2ff" stroke="black" stroke-width="15"/><rect x="-96" y="416" width="192" height="64" rx="20" fill="%2300d2ff"/></g></svg>') 6 6, pointer;
}

/* Background Animated Glows */
.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.15;
}

.blob-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
    animation: moveBlob 25s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, #7b61ff 0%, transparent 70%);
    animation: moveBlob 30s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
    animation: moveBlob 20s infinite alternate ease-in-out;
    opacity: 0.05;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Floating Elements Animation */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.element {
    position: absolute;
    color: var(--text-primary);
    opacity: 0.03;
    font-size: 2rem;
    filter: blur(1px);
}

.el-1 { top: 15%; left: 10%; animation: float 20s infinite linear; }
.el-2 { top: 60%; left: 85%; animation: float 25s infinite linear reverse; }
.el-3 { top: 80%; left: 15%; animation: float 18s infinite linear; }
.el-4 { top: 25%; left: 75%; animation: float 22s infinite linear reverse; }
.el-5 { top: 45%; left: 20%; animation: float 30s infinite linear; }
.el-6 { top: 70%; left: 40%; animation: float 24s infinite linear; }
.el-7 { top: 10%; left: 40%; animation: float 28s infinite linear reverse; }
.el-8 { top: 35%; left: 90%; animation: float 22s infinite linear; }
.el-9 { top: 55%; left: 5%; animation: float 26s infinite linear reverse; }
.el-10 { top: 90%; left: 60%; animation: float 20s infinite linear; }
.el-11 { top: 40%; left: 60%; animation: float 32s infinite linear reverse; }
.el-12 { top: 5%; left: 80%; animation: float 15s infinite linear; }
.el-13 { top: 85%; left: 90%; animation: float 27s infinite linear reverse; }
.el-14 { top: 50%; left: 50%; animation: float 35s infinite linear; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(10deg); }
    66% { transform: translate(-20px, 30px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Background Grain Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 100;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: all 0.4s var(--transition-main);
}

h1:hover, h2:hover, h3:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

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

.logo {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s var(--transition-main);
}

.logo:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--transition-main);
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.btn-secondary:hover {
    border-color: transparent;
    background: linear-gradient(var(--bg-main), var(--bg-main)) padding-box,
                var(--accent-gradient) border-box;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

.fade-up {
    opacity: 1; /* Default to visible for accessibility and reliability */
}

.hidden {
    display: none !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    white-space: nowrap;
}

.hero-subtitle-new {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-description-new {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto 3.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/* New Buttons */
.btn-premium-gradient {
    background: linear-gradient(90deg, #00d2ff, #a163f7);
    color: #000;
    padding: 1.2rem 3.5rem;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-premium-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.45);
    filter: brightness(1.1);
}

.btn-ghost-new {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 1.2rem 3.5rem;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-ghost-new:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.05);
}

.btn-text-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue-purple {
    background: linear-gradient(90deg, #00d2ff, #a163f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic-text {
    font-style: italic;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.profile-frame {
    position: relative;
    aspect-ratio: 4/5;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

.about-text-container {
    padding-left: 2rem;
}

.section-tag-left {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.moody-filter {
    filter: grayscale(100%) contrast(110%);
    transition: filter 0.5s ease;
}

.moody-filter:hover {
    filter: grayscale(0%) contrast(100%);
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-icon {
    color: #00d2ff;
}

.stat-icon i, .stat-icon svg {
    width: 28px;
    height: 28px;
    color: #00d2ff;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.5));
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-text-container .section-title {
        text-align: center !important;
    }
    
    .profile-frame {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Projects Section */
.projects {
    padding: var(--section-padding);
}

.projects-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

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

.work-card {
    cursor: pointer;
    transition: all 0.4s var(--transition-main);
    position: relative;
    padding: 1rem;
    border: 1px solid transparent;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

.work-image-container {
    position: relative;
    aspect-ratio: 4/3;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.work-card:hover .work-image {
    opacity: 0.7;
}

.work-details {
    padding: 0.5rem 0;
}



.work-title {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.work-card:hover .work-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-category {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hide animation from previous design */
.work-overlay {
    display: none;
}

/* Poster Gallery */
.poster-gallery {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

.poster-item {
    width: 300px;
    aspect-ratio: 2/3;
    background: var(--bg-accent);
    border-radius: 8px;
    overflow: hidden;
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.poster-item:hover img {
    transform: scale(1.05);
}

/* Skills Section */
.skills {
    padding: var(--section-padding);
}

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

.skills-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.skills-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.skills-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--transition-main);
}

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

.skill-card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.skill-card-icon i {
    width: 40px;
    height: 40px;
}

.skill-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-line {
    width: 30px;
    height: 2px;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Icon & Line Colors - Vibrant Palette */
.icon-blue i, .icon-blue svg { color: #00d2ff; filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.4)); }
.line-blue { background: #00d2ff; }

.icon-purple i, .icon-purple svg { color: #bf5af2; filter: drop-shadow(0 0 5px rgba(191, 90, 242, 0.4)); }
.line-purple { background: #bf5af2; }

.icon-cyan i, .icon-cyan svg { color: #30d5c8; filter: drop-shadow(0 0 5px rgba(48, 213, 200, 0.4)); }
.line-cyan { background: #30d5c8; }

.icon-pink i, .icon-pink svg { color: #ff375f; filter: drop-shadow(0 0 5px rgba(255, 55, 95, 0.4)); }
.line-pink { background: #ff375f; }

.icon-orange i, .icon-orange svg { color: #ff9f0a; filter: drop-shadow(0 0 5px rgba(255, 159, 10, 0.4)); }
.line-orange { background: #ff9f0a; }

.icon-green i, .icon-green svg { color: #32d74b; filter: drop-shadow(0 0 5px rgba(50, 215, 75, 0.4)); }
.line-green { background: #32d74b; }

.icon-yellow i, .icon-yellow svg { color: #ffd60a; filter: drop-shadow(0 0 5px rgba(255, 214, 10, 0.4)); }
.line-yellow { background: #ffd60a; }

.icon-indigo i, .icon-indigo svg { color: #5e5ce6; filter: drop-shadow(0 0 5px rgba(94, 92, 230, 0.4)); }
.line-indigo { background: #5e5ce6; }

.skills-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.1rem;
}

.tools-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tools-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tool-tag {
    display: flex;
    align-items: center;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    gap: 0.8rem;
}

.tool-tag i, .tool-tag img {
    font-size: 1.3rem;
}

.tool-tag:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .skills-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .skills-new-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services {
    padding: var(--section-padding);
    background: var(--bg-accent);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 3rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-main);
    background: var(--bg-accent);
    border-radius: 4px; /* Slight rounding for a premium feel */
}

.service-item:hover {
    transform: translateY(-5px);
    border: 1px solid transparent;
    background: linear-gradient(var(--bg-accent), var(--bg-accent)) padding-box,
                var(--accent-gradient) border-box;
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.service-item i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    width: 32px;
    height: 32px;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--text-secondary);
}

/* Process */
.process {
    padding: var(--section-padding);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.2;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    padding: 3rem;
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-main);
}

.testimonial-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Tools */
.tools {
    padding: 4rem 2rem;
    text-align: center;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.5;
}

.tool-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Collaborate Section */
.collaborate {
    padding: var(--section-padding);
}

.collaborate-container {
    max-width: 800px;
    margin: 0 auto;
}

.collaborate-card {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 4rem;
    transition: all 0.4s var(--transition-main);
}

.collaborate-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.05);
}


.collaborate-card input, .collaborate-card textarea {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
    width: 100%;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.collaborate-card input:focus, .collaborate-card textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.btn-gradient {
    background: var(--accent-gradient);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}

.social-links-area {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links-area a {
    color: var(--text-primary);
    font-size: 1.8rem;
    transition: transform 0.3s, color 0.3s;
}

.social-links-area a:hover {
    transform: translateY(-5px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Success Message Styles */
.form-success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-success-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    padding: 4rem 2rem;
}

.modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .work-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 2.5rem; }
}

/* Cursor Sparkle / Magic Trail Effect */
.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: sparkle-float var(--duration, 900ms) ease-out forwards;
}

.sparkle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, var(--color-from, #00d2ff), var(--color-to, #a163f7));
    box-shadow:
        0 0 calc(var(--glow-size, 8px) * 1.5) var(--color-from, #00d2ff),
        0 0 calc(var(--glow-size, 8px) * 3) var(--color-to, #a163f7),
        0 0 calc(var(--glow-size, 8px) * 5) rgba(161, 99, 247, 0.2);
}

@keyframes sparkle-float {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--drift-x)), calc(-50% + var(--drift-y) - 40px)) scale(0.1);
    }
}
