/* ========== IT & DIGITAL SERVICES - SHORT & CLEAN ========== */
:root {
    --lime: #C6F135;
    --cyan: #00FFD1;
    --purple: #A050FF;
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #181818;
    --border: rgba(255,255,255,0.08);
    --white: #fff;
    --muted: #555;
    --text: rgba(255,255,255,0.72);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }

/* ========== NAVIGATION ========== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000; height: 66px; padding: 0 4%;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(8,8,8,0.96); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; display: flex; align-items: baseline; text-decoration: none; }
.nl-f { color: var(--lime); }
.nl-s { color: var(--cyan); }
.nl-g { color: rgba(255,255,255,0.35); font-weight: 400; font-size: 0.7rem; margin-left: 5px; letter-spacing: 2px; }
.nav-slogan { font-size: 0.6rem; color: rgba(255,255,255,0.35); letter-spacing: 1px; font-style: italic; margin-left: 8px; display: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; font-weight: 600; padding: 6px 12px; border-radius: 5px; transition: all 0.2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-career-btn { background: var(--lime) !important; color: #000 !important; font-weight: 700 !important; padding: 6px 14px !important; border-radius: 5px !important; }
.nav-career-btn:hover { background: var(--cyan) !important; }

@media (min-width: 768px) {
    .nav-slogan { display: flex; }
    .nav-logo { font-size: 1.55rem; }
    .nl-g { font-size: 0.8rem; margin-left: 7px; letter-spacing: 3px; }
    .nav-links a { font-size: 0.9rem; padding: 8px 16px; }
    .nav-career-btn { padding: 9px 20px !important; }
}

/* ========== HERO SECTION ========== */
.svc-hero { min-height: auto; padding: 100px 5% 60px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg); width: 100%; }
.hero-glow { position: absolute; top: -100px; right: -200px; width: 500px; height: 500px; pointer-events: none; background: conic-gradient(from 200deg at 60% 40%, transparent 0deg, rgba(160,80,255,0.07) 90deg, rgba(0,255,209,0.04) 180deg, transparent 260deg); }
.hero-lines { position: absolute; inset: 0; pointer-events: none; }
.hero-lines::before, .hero-lines::after { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 100%; width: 100%; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; animation: up 0.6s ease both; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--purple); }
.svc-badge { display: inline-flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; color: var(--purple); border: 1px solid rgba(160,80,255,0.3); padding: 4px 10px; border-radius: 2px; margin-bottom: 1rem; animation: up 0.6s 0.05s ease both; background: transparent; }
.hero-ico { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; animation: up 0.6s 0.1s ease both; }
.hero-h { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 8vw, 6rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1rem; animation: up 0.6s 0.15s ease both; color: var(--white); word-break: break-word; }
.hero-h em { font-style: normal; color: var(--purple); display: inline-block; }
.hero-tagline { font-size: 0.8rem; font-style: italic; color: rgba(255,255,255,0.35); margin-bottom: 1rem; animation: up 0.6s 0.18s ease both; }
.hero-intro { font-size: 0.85rem; line-height: 1.6; color: var(--text); max-width: 100%; margin-bottom: 1.5rem; animation: up 0.6s 0.21s ease both; }
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; animation: up 0.6s 0.24s ease both; }
.btn-purple { background: var(--purple); color: #fff; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; transition: all 0.22s; box-shadow: 0 0 26px rgba(160,80,255,0.22); }
.btn-purple:hover { transform: translateY(-3px); box-shadow: 0 0 42px rgba(160,80,255,0.45); }
.btn-outline { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); padding: 10px 20px; border-radius: 4px; text-decoration: none; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; background: transparent; }
.btn-outline:hover { border-color: var(--white); color: var(--white); }

@media (min-width: 768px) {
    .svc-hero { min-height: 88vh; padding: 130px 5% 90px; }
    .hero-glow { width: 700px; height: 700px; }
    .hero-lines::before, .hero-lines::after { display: block; content: ''; position: absolute; left: -5%; width: 110%; height: 1px; transform: rotate(-5deg); }
    .hero-lines::before { top: 40%; background: linear-gradient(90deg, transparent, rgba(160,80,255,0.12), transparent); }
    .hero-lines::after { top: 65%; background: linear-gradient(90deg, transparent, rgba(0,255,209,0.06), transparent); }
    .hero-content { max-width: 760px; }
    .breadcrumb { font-size: 0.62rem; letter-spacing: 2px; gap: 8px; margin-bottom: 2rem; }
    .svc-badge { font-size: 0.65rem; letter-spacing: 2px; padding: 5px 14px; margin-bottom: 1.5rem; gap: 8px; }
    .hero-ico { font-size: 4rem; margin-bottom: 1.2rem; }
    .hero-h { line-height: 0.92; letter-spacing: -4px; margin-bottom: 1.5rem; }
    .hero-tagline { font-size: 0.95rem; margin-bottom: 1.8rem; }
    .hero-intro { font-size: 1rem; line-height: 1.85; max-width: 580px; margin-bottom: 2.5rem; }
    .hero-btns { gap: 1rem; }
    .btn-purple { padding: 12px 28px; font-size: 0.92rem; gap: 8px; }
    .btn-outline { padding: 12px 26px; font-size: 0.9rem; gap: 8px; }
}

/* ========== TICKER ========== */
.svc-ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 10px 0; }
.svc-ticker-inner { display: inline-block; white-space: nowrap; animation: tick 28s linear infinite; }
.svc-ticker-inner span { font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 0 0.8rem; }
.t-hi { color: var(--purple) !important; }
@media (min-width: 768px) {
    .svc-ticker { padding: 12px 0; }
    .svc-ticker-inner span { font-size: 0.65rem; letter-spacing: 2px; padding: 0 1.8rem; }
}

/* ========== SECTIONS ========== */
.sec { padding: 60px 5%; }
.sec-alt { background: var(--bg2); }
.sec-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; color: var(--purple); flex-wrap: wrap; }
.sec-label::before { content: attr(data-n); color: var(--muted); }
.sec-h { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 1.5rem; color: var(--white); word-break: break-word; }
.sec-h em { font-style: normal; color: var(--purple); }
.sec-sub { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) {
    .sec { padding: 90px 5%; }
    .sec-label { font-size: 0.68rem; letter-spacing: 3px; gap: 12px; margin-bottom: 1.4rem; }
    .sec-h { line-height: 1.05; letter-spacing: -2px; margin-bottom: 2.5rem; }
    .sec-sub { font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }
}

/* ========== GRID SYSTEMS (RESPONSIVE) ========== */
.offer-grid, .grid-3, .grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.offer-grid { margin: 0; }
.grid-3, .grid-4 { margin-top: 2rem; }

@media (min-width: 640px) {
    .offer-grid, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .offer-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ========== CARDS (UNIFIED) ========== */
.offer-card, .bc, .bc-card, .process-card, .good-card, .security-card, .platform-card {
    background: var(--bg2);
    transition: background 0.22s;
}
.offer-card:hover, .bc:hover, .bc-card:hover, .process-card:hover, .good-card:hover, .security-card:hover, .platform-card:hover { background: var(--bg3); }

.offer-card { padding: 1.5rem; position: relative; cursor: pointer; }
.offer-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--purple); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
.offer-card:hover::before { transform: scaleY(1); }

.bc, .bc-card, .process-card, .good-card { padding: 1.2rem; }
.security-card { padding: 1.2rem; text-align: center; }
.platform-card { padding: 1rem; text-align: center; }

@media (min-width: 768px) {
    .offer-card { padding: 2rem; }
    .bc, .bc-card, .process-card, .good-card, .security-card { padding: 1.5rem; }
    .platform-card { padding: 1.5rem; }
    .security-card { padding: 1.5rem; }
}
@media (min-width: 1024px) {
    .offer-card, .bc, .bc-card, .process-card, .good-card, .security-card { padding: 2rem; }
}

/* ========== CARD INTERNALS ========== */
.offer-num, .process-step { font-family: 'Space Mono', monospace; font-size: 0.55rem; color: var(--purple); margin-bottom: 0.8rem; display: block; }
.offer-num { color: var(--muted); }
.offer-ico, .process-icon, .good-icon, .security-icon { font-size: 1.4rem; display: block; margin-bottom: 0.6rem; }
.offer-title, .process-title, .good-title, .security-title, .platform-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.offer-desc, .process-desc, .good-desc, .security-desc { font-size: 0.8rem; color: var(--text); line-height: 1.6; }
.offer-link { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(160,80,255,0.5); margin-top: 1rem; display: inline-block; transition: color 0.2s; }
.offer-card:hover .offer-link { color: var(--purple); }
.platform-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.platform-sub { font-size: 0.6rem; color: var(--muted); }
.process-step { color: var(--purple); }
.security-icon { font-size: 1.8rem; }

@media (min-width: 768px) {
    .offer-num, .process-step { font-size: 0.6rem; margin-bottom: 1rem; }
    .offer-ico, .process-icon, .good-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
    .security-icon { font-size: 2rem; margin-bottom: 1rem; }
    .platform-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
    .offer-title, .process-title, .good-title, .security-title { font-size: 1rem; }
    .offer-desc, .process-desc, .good-desc, .security-desc { font-size: 0.85rem; }
    .offer-link { font-size: 0.6rem; letter-spacing: 2px; }
    .platform-sub { font-size: 0.7rem; }
}

/* ========== TAGS ========== */
.offer-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.job-tag { background: rgba(160,80,255,0.08); border: 1px solid rgba(160,80,255,0.2); padding: 3px 8px; border-radius: 4px; font-size: 0.6rem; font-family: 'Space Mono', monospace; color: rgba(160,80,255,0.9); transition: all 0.2s; white-space: nowrap; }
.job-tag:hover { background: rgba(160,80,255,0.15); border-color: var(--purple); color: var(--purple); }
@media (min-width: 768px) { .job-tag { padding: 4px 10px; font-size: 0.7rem; } }

/* ========== OTHER CHIPS ========== */
.other-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.other-chip { display: flex; align-items: center; gap: 6px; background: var(--bg3); border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 8px 14px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; transition: all 0.2s; }
.other-chip:hover { border-color: var(--purple); color: var(--purple); }
@media (min-width: 768px) { .other-chip { gap: 8px; padding: 10px 18px; font-size: 0.85rem; } }

/* ========== HIGHLIGHT BOX & PROMISE BOX ========== */
.hl-box, .promise-box { background: rgba(160,80,255,0.05); border: 1px solid rgba(160,80,255,0.18); border-radius: 12px; padding: 1.2rem; margin-top: 1.5rem; }
.promise-box { margin-top: 2rem; }
.promise-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.promise-desc { font-size: 0.8rem; color: var(--text); line-height: 1.7; }
@media (min-width: 768px) { .hl-box, .promise-box { padding: 2rem 2.2rem; margin-top: 2rem; } .promise-title { font-size: 1rem; } .promise-desc { font-size: 0.85rem; } }

/* ========== CTA SECTION ========== */
.svc-cta { padding: 60px 5%; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; background: var(--bg); }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(160,80,255,0.05) 0%, transparent 70%); pointer-events: none; }
.svc-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 5vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; position: relative; color: var(--white); word-break: break-word; }
.svc-cta p { font-size: 0.85rem; color: var(--text); max-width: 100%; margin: 0 auto 1.5rem; line-height: 1.6; position: relative; }
@media (min-width: 768px) {
    .svc-cta { padding: 90px 5%; }
    .cta-glow { width: 600px; height: 300px; }
    .svc-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -2px; margin-bottom: 1.2rem; }
    .svc-cta p { font-size: 0.95rem; max-width: 440px; margin: 0 auto 2rem; line-height: 1.8; }
}

/* ========== FOOTER ========== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 1.5rem 5%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.foot-logo { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: -1px; text-decoration: none; display: inline-flex; align-items: baseline; }
.foot-logo .f { color: var(--lime); }
.foot-logo .s { color: var(--cyan); }
.foot-logo .g { color: rgba(255,255,255,0.3); font-weight: 400; font-size: 0.65rem; margin-left: 4px; letter-spacing: 2px; }
.foot-copy { color: var(--muted); font-size: 0.7rem; }
@media (min-width: 640px) { footer { flex-direction: row; justify-content: space-between; text-align: left; } }
@media (min-width: 768px) { footer { padding: 2rem 5%; } .foot-logo { font-size: 1.3rem; } .foot-logo .g { font-size: 0.75rem; margin-left: 5px; letter-spacing: 3px; } .foot-copy { font-size: 0.78rem; } }

/* ========== ANIMATIONS ========== */
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== MOBILE MENU ========== */
.hamburger { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; cursor: pointer; padding: 6px 8px; margin-left: 10px; }
.hamburger span { display: block; width: 20px; height: 2px; background: white; margin: 4px 0; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 66px; left: -100%; width: 280px; height: 100vh; background: #0f0f0f; flex-direction: column; padding: 20px; gap: 10px; transition: left 0.3s; z-index: 999; border-right: 1px solid rgba(255,255,255,0.1); }
    .nav-links.active { left: 0; }
    .nav-links a { width: 100%; padding: 12px; text-align: left; font-size: 1rem; }
} and ye hai portfolio.css -> /* ========== PORTFOLIO PAGE CSS ========== */
:root {
    --lime: #C6F135;
    --cyan: #00FFD1;
    --purple: #A050FF;
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #181818;
    --border: rgba(255,255,255,0.08);
    --white: #fff;
    --muted: #888;
    --text: rgba(255,255,255,0.85);
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.per-page-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.per-page-selector label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
}

.per-page-selector select {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.pagination {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.3rem 0.6rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.pagination .active {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Portfolio Stats */
.portfolio-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.portfolio-stats .badge {
    background: rgba(160,80,255,0.1);
    color: var(--purple);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: 'Space Mono', monospace;
}

/* Service Filter Tabs */
.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.service-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.service-tab:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.service-tab.active {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Portfolio Card */
.portfolio-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(160,80,255,0.1);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg3);
}

.portfolio-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg3), var(--bg2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--muted);
}

.portfolio-content {
    padding: 1.2rem;
}

.portfolio-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.portfolio-client {
    font-size: 0.7rem;
    color: var(--purple);
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.portfolio-date {
    font-size: 0.65rem;
    color: var(--muted);
    font-family: 'Space Mono', monospace;
}

.portfolio-link {
    background: var(--purple);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
}

.portfolio-link:hover {
    background: var(--cyan);
    color: #000;
}

/* Empty State */
.empty-portfolio {
    text-align: center;
    padding: 4rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.empty-portfolio i {
    font-size: 3rem;
    color: var(--muted);
    margin-bottom: 1rem;
    display: block;
}

.empty-portfolio h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.empty-portfolio p {
    color: var(--text);
    font-size: 0.85rem;
}
/* Smooth image loading */
.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.portfolio-image.loading {
    opacity: 0;
}

.portfolio-image.loaded {
    opacity: 1;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg3);
}

.fallback-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    font-size: 2rem;
    color: var(--muted);
}
/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.portfolio-modal-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.portfolio-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.2s;
}

.portfolio-modal-close:hover {
    color: var(--purple);
}

.portfolio-read-more {
    font-size: 0.7rem;
    color: var(--purple);
    font-family: 'Space Mono', monospace;
    cursor: pointer;
}

.portfolio-card {
    cursor: pointer;
}