:root {
    /* Premium Color Palette */
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --accent: #3b82f6;

    /* Neutral Tones */
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;

    /* Shadows & Depth (Layered) */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);

    /* Border Radius */
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-full: 9999px;
}

/* Global Reset & Typography Improvements */
body {
    background-color: var(--bg-soft);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Standardized Category Cards */
.category-card.highlight {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.category-card.highlight:hover {
    box-shadow: var(--shadow-premium);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.category-desc {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.project-card {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.project-desc {
    font-size: 0.95rem;
    color: #374151;
}

.github-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.25rem;
}

.github-card-link:hover {
    text-decoration: underline;
}

/* Kişisel Projeler Kategori Kartları */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    top: 0;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cv-button {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
    .cv-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.cv-button:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Button Display */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-heading);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        -webkit-backdrop-filter: var(--glass-blur);
        backdrop-filter: var(--glass-blur);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        padding: 0.5rem 0;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb {
    color: #6b7280;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Hero Sections */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero-home {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.hero-content-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 42rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.client-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.client-badge {
    padding: 0.25rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #334155;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    height: 16rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
    padding: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-text {
    color: white;
    font-weight: 500;
}

.status-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Project Info Grid */
.info-section {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.info-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Skills Grid - Flexbox for better centering */
.section-center-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-center-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.skill-card-inner {
    flex: 1 1 340px;
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.skill-card-inner:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.skill-box-tech,
.skill-box-lead {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.skill-card-inner:hover .skill-box-tech,
.skill-card-inner:hover .skill-box-lead {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.skills-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

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

.skills-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 500;
}

.skills-list li::before {
    content: "→";
    color: var(--primary);
    font-weight: 900;
}

/* Main Content */
.main-section {
    padding: 3rem 0;
    background: #ffffff;
}

.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-grid {
    display: grid;
    gap: 3rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.section-number.orange {
    background: #fff7ed;
    color: #ea580c;
}

.section-number.green {
    background: #f0fdf4;
    color: #16a34a;
}

.section-number.purple {
    background: #faf5ff;
    color: #9333ea;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.section-text {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-bullet.blue {
    background: #2563eb;
}

.feature-bullet.orange {
    background: #ea580c;
}

.feature-bullet.green {
    background: #16a34a;
}

.feature-bullet.purple {
    background: #9333ea;
}

.feature-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Image Grids */
.image-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.image-card {
    aspect-ratio: 1;
    background: #f8fafc;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    position: relative;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.image-caption-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f172a;
}

.image-caption-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Tech Specs Box */
.tech-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.tech-box-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
}

.tech-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-dot.blue {
    background: #2563eb;
}

.tech-dot.orange {
    background: #ea580c;
}

.tech-dot.green {
    background: #16a34a;
}

.tech-dot.purple {
    background: #9333ea;
}

/* Spec List */
.spec-list {
    margin-top: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    color: #6b7280;
}

.spec-value {
    font-weight: 500;
    color: #0f172a;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-card {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid;
}

.result-card.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.result-card.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.result-card.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.result-card.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.result-number.green {
    color: #15803d;
}

.result-number.blue {
    color: #1d4ed8;
}

.result-number.orange {
    color: #c2410c;
}

.result-number.purple {
    color: #7c3aed;
}

.result-label {
    font-size: 0.875rem;
    color: #334155;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #f8fafc;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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



.gallery-caption {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.sidebar-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.project-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-nav-item {
    display: block;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: border-color 0.2s;
}

.project-nav-item:hover {
    border-color: #3b82f6;
}

.project-nav-badge {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.project-nav-badge.blue {
    color: #2563eb;
}

.project-nav-badge.orange {
    color: #ea580c;
}

.project-nav-badge.green {
    color: #16a34a;
}

.project-nav-badge.purple {
    color: #9333ea;
}

.project-nav-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
}

/* CTA Box */
.cta-box {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: white;
}

.cta-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: #2563eb;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #1d4ed8;
}

.cta-button.orange {
    background: #ea580c;
}

.cta-button.orange:hover {
    background: #c2410c;
}

.cta-button.green {
    background: #16a34a;
}

.cta-button.green:hover {
    background: #15803d;
}

.cta-button.purple {
    background: #9333ea;
}

.cta-button.purple:hover {
    background: #7c3aed;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    border-color: #1e293b;
    color: #1e293b;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Breadcrumb Helpers */
.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-active {
    color: var(--text-heading);
    font-weight: 600;
}

/* Status Dot Helpers */
.status-dot-green {
    background: #22c55e;
}

.status-dot-orange {
    background: #f97316;
}

.status-dot-purple {
    background: #a855f7;
}

/* Image Placeholder for Gallery */
.gallery-item img[style*="background"] {
    background-color: var(--bg-soft) !important;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: none;
    }

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

    .hero-image-container {
        height: 24rem;
    }

    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    /* Mevcut CSS'in üzerine ekle */

    /* GitHub Button */
    .github-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 0.375rem;
        color: #334155;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
    }

    .github-btn:hover {
        background: var(--bg-body-hover);
        border-color: var(--border-color-hover);
    }

    .github-btn svg {
        width: 1rem;
        height: 1rem;
    }

    /* Private Repo Notice */
    .private-notice {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #6b7280;
        font-style: italic;
    }

    /* GitHub Section Cards */
    .github-card {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 0.5rem;
        border: 1px solid #e5e7eb;
        transition: all 0.2s;
    }

    .github-card:hover {
        border-color: #3b82f6;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .github-card-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .github-card-title {
        font-weight: 600;
        color: #0f172a;
    }

    .github-card-badge {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
        border-radius: 9999px;
    }

    .github-card-badge.public {
        background: #f0fdf4;
        color: #166534;
    }

    .github-card-badge.private {
        background: rgba(185, 28, 28, 0.1);
        color: #991b1b;
    }

    .github-card-desc {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }

    .github-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        color: #2563eb;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
    }

    .github-card-link:hover {
        text-decoration: underline;
    }

    /* Footer GitHub Link */
    .footer-github {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-github:hover {
        color: white;
    }

    .footer-github svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* 
   REFACTORED STYLES & UTILITIES 
   -----------------------------
*/

/* From <head> styles */
.hero-home {
    padding-top: 8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.project-card-home {
    transition: all 0.3s;
}

.project-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.software-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.software-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.software-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.software-icon {
    width: 2rem;
    height: 2rem;
    background: #ffffff;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* From Inline Styles */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

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

.stat-card {
    padding: 1.25rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-img-container {
    position: relative;
}

.profile-img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

.profile-img:hover {
    transform: scale(1.02);
}

.profile-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #f8fafc;
}

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

.profile-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.profile-desc {
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
    line-height: 1.7;
}

/* Skills */
.skill-box-tech {
    width: 3rem;
    height: 3rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #2563eb;
}

.skill-box-lead {
    width: 3rem;
    height: 3rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #16a34a;
}

.skill-card-inner {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

/* Projects */
.project-card-inner {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.project-icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact */
.contact-container {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-grid-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.cv-download-box {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

/* Projects List, Cards */
.project-card-home {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s ease;
}

.project-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-grid-layout {
    display: grid;
}

@media (min-width: 768px) {
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-col-span-2 {
        grid-column: span 2;
    }
}

.project-icon-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.project-main-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-heading);
}

.project-sub-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

.project-details-area {
    padding: 2.5rem;
}

.project-badges-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.project-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.project-desc-text {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.project-links-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.link-arrow-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.link-arrow-btn:hover {
    gap: 0.5rem;
}

/* GitHub & Contact Styles */
.github-grid-2 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .github-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.github-card-box {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.github-card-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.repo-private-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.repo-public-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.github-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.github-title-h3 {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
}

.badge-pill-public,
.badge-pill-private {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge-pill-public {
    background: #dcfce7;
    color: #166534;
}

.badge-pill-private {
    background: #fee2e2;
    color: #991b1b;
}

.github-desc-p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-val {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
}

.contact-item-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cv-h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.cv-p {
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Redundant Gradient Fix */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}