:root {
    /* New Color Palette - Sunset/Warm Theme */
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --accent-cyan: #00d4ff;
    --accent-purple: #8b5cf6;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-yellow: #eab308;
    --accent-orange: #f97316;

    /* Sunset Gradient Colors */
    --sunset-red: #8B1538;
    --sunset-orange: #D35400;
    --sunset-gold: #F39C12;
    --sunset-deep: #1a0a1e;

    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Vignette Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(30, 0, 80, 0.4) 100%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 5rem 0;
}

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

.text-gray {
    color: var(--text-muted);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xl {
    font-size: 1.25rem;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.accent-cyan {
    color: var(--accent-cyan);
}

.accent-purple {
    color: var(--accent-purple);
}

.accent-green {
    color: var(--accent-green);
}

.accent-red {
    color: var(--accent-red);
}

.accent-yellow {
    color: var(--accent-yellow);
}

.accent-orange {
    color: var(--accent-orange);
}

/* ========================================
   NAVBAR - Glassmorphic Centered Pills
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: white !important;
    color: black !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta::after {
    content: '→';
    font-size: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* ========================================
   HERO - Inspiration Design with Warm Gradient
   ======================================== */
.hero-section {
    background:
        radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(circle at 75% 50%, #ff8c42 0%, #f7931e 30%, #c1272d 60%, #000000 100%);
    min-height: 95vh;
    padding: 2rem;
    border-radius: 0 0 60px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Profile Image as Background - Centered */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    transform-origin: center bottom;
    width: min(80vw, 600px);
    height: 120%;
    background-image: url("assets/removedbg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.graphic-word {
    letter-spacing: -0.03em;
    display: block;
}

.designer-first {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    display: inline-block;
    vertical-align: baseline;
    font-size: 1.8em;
    margin-right: 0.02em;
}

.designer-rest {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

/* Services Grid - 2x2 */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 450px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 1.2rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.service-number {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    opacity: 0.6;
}

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

/* Hero Right - Glass Box */
.hero-right {
    background: rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.hero-right h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.hero-right p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.typewriter-container {
    font-family: inherit;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent-cyan);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Connect Button - Fixed Center Bottom */
.connect-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    gap: 0.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.connect-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.connect-btn span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.connect-icon {
    width: 35px;
    height: 35px;
    animation: rotateIcon 8s linear infinite;
}

.connect-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Hero Profile Background Image */
.hero-profile-bg {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 600px;
    z-index: 2;
    pointer-events: none;
}

.hero-profile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.7;
    filter: grayscale(20%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}


/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-full:hover {
    opacity: 0.9;
}

/* ========================================
   ABOUT SECTION - Watermark Layout
   ======================================== */
#about {
    background: var(--bg-color);
    position: relative;
    z-index: 10;
    min-height: 100vh;
    overflow: hidden;
}

/* Large ABOUT watermark text */
.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* Profile silhouette in center */
.about-profile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 550px;
    z-index: 2;
    pointer-events: none;
}

.about-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.8;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

/* Glow behind profile */
.about-profile::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 180, 220, 0.3) 0%, rgba(0, 100, 150, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 80vh;
    align-items: center;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-column.left {
    text-align: left;
    padding-right: 2rem;
}

.about-column.right {
    text-align: right;
    padding-left: 2rem;
}

.about-item h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    letter-spacing: 0.25em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.about-item p,
.about-item li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-item ul {
    list-style: none;
}

.about-item li {
    margin-bottom: 0.4rem;
}

/* Grids & Cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

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

.flex-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
    min-width: 200px;
}

.card {
    padding: 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
}

.bg-blur {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
}

.bg-solid {
    background: #0a0a0a;
}

.hover-cyan:hover {
    border-color: rgba(0, 212, 255, 0.5);
}

.hover-purple:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.hover-scale:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.hover-yellow:hover {
    border-color: rgba(234, 179, 8, 0.5);
}

.hover-green:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.hover-red:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.hover-orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.list-dots li {
    list-style: none;
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.list-dots li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 10px;
}

.icon-lg {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.icon-xl {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.link-styled {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.link-styled:hover {
    color: white;
    border-color: white;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
#services {
    background: var(--bg-color);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.bg-gradient {
    background: linear-gradient(180deg, var(--bg-color) 0%, #050510 100%);
}

/* Project Category Blocks */
.project-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-category {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.project-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.project-category:hover {
    transform: scale(1.02);
}

.project-category img,
.project-category video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Contact */
.contact-card {
    background: var(--glass-bg);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    border-radius: 12px;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: white;
    font-family: inherit;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.8);
}

/* ========================================
   CREATIVE STACK SECTION
   ======================================== */
#stack {
    background: var(--bg-color);
    border-top: 1px solid var(--glass-border);
}

.stack-header {
    margin-bottom: 2rem;
}

.stack-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
}

.stack-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.stack-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stack-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stack-icon:hover {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.stack-description {
    max-width: 400px;
    text-align: right;
}

.stack-description p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER - Watermark Style
   ======================================== */
footer {
    background: var(--bg-color);
    padding: 4rem 0 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Large Name Watermark */
.footer-watermark {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 20vw, 15rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-nav,
.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav h5,
.footer-connect h5 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-connect a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

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

/* ========================================
   GITHUB PROJECTS - Horizontal Scrolling Marquee
   ======================================== */
.projects-carousel {
    overflow: hidden;
    padding: 2rem 0;
    background: #050505;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
}

/* Edge blur fade effects */
.projects-carousel::before,
.projects-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.projects-carousel::before {
    left: 0;
    background: linear-gradient(to right,
            #050505 0%,
            rgba(5, 5, 5, 0.85) 30%,
            rgba(5, 5, 5, 0.4) 60%,
            rgba(5, 5, 5, 0) 100%);
}

.projects-carousel::after {
    right: 0;
    background: linear-gradient(to left,
            #050505 0%,
            rgba(5, 5, 5, 0.85) 30%,
            rgba(5, 5, 5, 0.4) 60%,
            rgba(5, 5, 5, 0) 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.project-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-green);
}

.project-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-card .folder-icon {
    font-size: 1.8rem;
    color: var(--accent-green);
}

.project-card .stars {
    font-size: 0.8rem;
    color: #6b7280;
}

.project-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.project-card .card-description {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.project-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-card .language-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
}

.project-card .view-link {
    font-size: 0.85rem;
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-card .view-link:hover {
    color: white;
}

/* Hide old 3D carousel styles */
#github-projects {
    display: none !important;
}

/* ========================================
   SIDE QUESTS - Suggestion System
   ======================================== */
.quest-card {
    display: flex;
    flex-direction: column;
}

.suggest-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 0.8rem;
}

.suggest-btn:hover {
    background: var(--accent-cyan);
    color: black;
    border-color: var(--accent-cyan);
}

.suggest-form {
    margin-bottom: 0.8rem;
}

.suggest-form.hidden {
    display: none;
}

.suggest-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.suggest-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.submit-suggest {
    background: var(--accent-green);
    color: black;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-suggest:hover {
    background: #4ade80;
    transform: scale(1.05);
}

.suggest-error {
    color: var(--accent-red);
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

.suggest-error.hidden {
    display: none;
}

.suggestions-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    font-size: 0.8rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.suggestions-toggle:hover {
    color: var(--accent-cyan);
}

.suggestions-toggle i {
    transition: transform 0.3s ease;
}

.suggestions-toggle.active i {
    transform: rotate(180deg);
}

.suggestions-list {
    margin-top: 0.8rem;
    text-align: left;
    max-height: 200px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

.suggestions-list.hidden {
    display: none;
}

.suggestion-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #d1d5db;
}

.suggestion-item:last-child {
    margin-bottom: 0;
}

.no-suggestions {
    color: #6b7280;
    font-size: 0.8rem;
    font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-section::before {
        width: min(70vw, 500px);
        opacity: 0.5;
    }

    .services {
        margin: 2rem auto;
        max-width: 350px;
    }

    .hero-right {
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-column.left,
    .about-column.right {
        text-align: center;
        padding: 0;
    }

    .project-categories {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / 3;
        text-align: center;
        max-width: 100%;
    }

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

    .stack-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        border-radius: 0 0 30px 30px;
        padding: 1rem;
    }

    .hero-section::before {
        width: 80vw;
        opacity: 0.4;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .services {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        max-width: 280px;
    }

    .service-item {
        padding: 0.8rem 0.6rem;
    }

    .service-name {
        font-size: 0.75rem;
    }

    .hero-right {
        padding: 1.5rem;
    }

    .connect-btn {
        width: 80px;
        height: 80px;
        bottom: 20px;
    }

    .connect-btn span {
        font-size: 0.6rem;
    }

    .connect-icon {
        width: 25px;
        height: 25px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .flex-row {
        flex-direction: column;
    }

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

    .footer-brand,
    .footer-nav,
    .footer-connect {
        grid-column: 1;
    }

    .footer-watermark {
        font-size: clamp(4rem, 15vw, 8rem);
        text-align: center;
        padding-left: 0;
    }

    .stack-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .connect-btn {
        width: 80px;
        height: 80px;
    }

    .connect-btn span {
        font-size: 0.6rem;
    }

    .connect-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .category-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 250px;
    }

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

    .hero-tagline h3 {
        font-size: 1.3rem;
    }

    .about-watermark {
        font-size: clamp(5rem, 20vw, 8rem);
    }
}