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

:root {
    --primary-color: #6366f1; /* Indigo */
    --secondary-color: #ec4899; /* Pink */
    --accent-color: #8b5cf6; /* Purple */
    --text-color: #1e293b;
    --light-bg: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --white: #ffffff;
    --dark: #0f172a;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-family: 'Inter', sans-serif;
}

[data-theme="dark"] {
    --primary-color: #818cf8;
    --secondary-color: #f472b6;
    --accent-color: #a78bfa;
    --text-color: #f8fafc;
    --light-bg: #0f172a;
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --white: #1e293b;
    --dark: #f8fafc;
}

* {
    cursor: none; /* Custom cursor */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    z-index: 100000;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.skip-link:focus {
    top: 20px;
    outline: none;
    box-shadow: 0 0 0 3px var(--secondary-color);
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(236, 72, 153, 0.1);
    border-color: var(--primary-color);
}

/* Bee Cursor */
.cursor-bee {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
}

.cursor-bee svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cursor-bee.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

body.bee-active .cursor-dot {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

body.bee-active .cursor-outline {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Cursor Explosion Particles */
.cursor-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    animation: particleExplode 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes particleExplode {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(
            calc(-50% + var(--tx)),
            calc(-50% + var(--ty))
        ) scale(0);
    }
}

/* Animated Background Shapes */
.bg-shape {
    position: fixed;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -10%;
    left: -10%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 40%;
    left: 40%;
    animation-duration: 25s;
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(360deg); }
}

/* Glassmorphism Navbar */
.navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    margin: 15px auto;
    border-radius: 50px;
    width: 90%;
    max-width: 1200px;
    padding: 10px 30px;
    left: 0;
    right: 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.navbar-brand, .nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
}

.nav-link {
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Typography Gradient */
.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 0 20px;
}

.hero-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-headline {
    margin: 0 0 1rem 0;
}

.hero-title {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(30px);
    max-width: 700px;
    margin: 0 auto 1rem auto;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(30px);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--glass-shadow);
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(4px);
}

.hero-label.animate,
.hero-title.animate,
.hero-subtitle.animate,
.hero-description.animate,
.hero-cta.animate {
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

/* Transition Section */
.transition-section {
    position: relative;
    height: 500vh;
}

.transition-statements {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.transition-line {
    position: absolute;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    width: 90%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-color);
    letter-spacing: -1px;
}

.transition-line.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition);
}

.content-card {
    height: 100%;
    max-height: 450px;
    overflow-y: auto;
}

/* Scrollbar for cards */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 30px;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.portrait-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.portrait-frame:hover img {
    filter: grayscale(0%);
}

.portrait-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    pointer-events: none;
}

.narrative-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.narrative-body {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.75;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0 120px 0;
    text-align: center;
}

.philosophy-section .container {
    max-width: 700px;
}

.philosophy-text {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-color);
    opacity: 0.85;
    font-style: italic;
}

/* Beyond The Code Section */
.beyond-section {
    padding: 100px 0;
    position: relative;
}

.beyond-section .container {
    max-width: 700px;
}

.beyond-text {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.beyond-cta {
    margin-top: 0;
    opacity: 1;
    transform: none;
}

/* Projects Grid */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: none; /* Using custom cursor */
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.project-scroll-wrapper {
    position: relative;
}

.project-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: stretch;
}

.project-card, .blog-post-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    border-radius: var(--border-radius);
    position: relative;
    min-height: 380px;
    height: auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
}

.project-image-img, .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px) translateZ(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: white;
}

.project-card:hover .project-overlay, .blog-post-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0) translateZ(30px);
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 3px;
    display: inline-block;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left { left: -15px; }
.scroll-btn.right { right: -15px; }

/* Certifications Honeycomb */
.certifications-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.cert-row {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin-top: -75px;
}

.cert-row:first-child {
    margin-top: 0;
}

/* Honeycomb Card */
.certification-card {
    width: 260px;
    height: 300px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(10px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: none;
    flex-shrink: 0;
}

.cert-row.row-4 .certification-card {
    margin: 0 -12px;
}

.cert-row.row-5 .certification-card {
    margin: 0 -10px;
}

.certification-card::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--light-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    transition: var(--transition);
}

.certification-card:hover {
    transform: scale(1.05) translateY(-10px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.certification-card:hover::before {
    background: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .certification-card:hover::before {
    background: rgba(15, 23, 42, 0.85);
}

.certification-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
}

.certification-badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .cert-row {
        margin-top: -65px;
    }
    .certification-card {
        width: 220px;
        height: 260px;
        padding: 25px;
    }
    .certification-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cert-row {
        margin-top: -55px;
    }
    .certification-card {
        width: 180px;
        height: 220px;
        padding: 20px;
    }
    .certification-icon {
        font-size: 2rem;
    }
    .certification-card h5 {
        font-size: 0.7rem;
    }
    .certification-badge {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .cert-row {
        margin-top: -45px;
    }
    .certification-card {
        width: 150px;
        height: 180px;
        padding: 15px;
    }
    .certification-icon {
        font-size: 1.8rem;
    }
    .certification-card h5 {
        font-size: 0.6rem;
    }
    .certification-badge {
        font-size: 0.55rem;
        padding: 3px 8px;
    }
    .certification-platform {
        font-size: 0.6rem;
    }
    .certification-date {
        font-size: 0.55rem;
    }
}

/* About Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .portrait-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-section {
        padding: 80px 0;
    }

    .transition-line {
        font-size: clamp(1.4rem, 5vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 95%;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .philosophy-section {
        padding: 60px 0 80px 0;
    }
}

/* Footer & Socials */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    z-index: 999;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.from-left {
    transform: translateX(-60px);
}

.scroll-reveal.from-right {
    transform: translateX(60px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* No-Image Cards for Blogs & Projects */
.project-card.no-image, .blog-post-card.no-image {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.no-image .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.no-image .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.no-image .blog-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-image .project-title {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gradient-text-secondary {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-image .project-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.no-image .blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.no-image .project-links {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.no-image .tech-stack {
    margin-bottom: 20px;
}

.no-image .tech-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

/* GitHub Profile Banner */
.github-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.github-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.github-icon-large {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.github-profile-card:hover .github-icon-large {
    transform: scale(1.1) rotate(10deg);
}

.github-profile-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.github-profile-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.btn-github-large {
    background: var(--text-color);
    color: var(--light-bg);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-github-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
