/* 
    Design System: Black & White Premium Portfolio
    Theme: Minimalist, Glassmorphism, High Contrast
*/

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

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --cursor-color: rgba(255, 255, 255, 0.1);
    --hero-gradient: linear-gradient(to bottom, #ffffff 20%, #888888 100%);
    --shimmer-color: rgba(255, 255, 255, 0.1);
    --hero-glow: radial-gradient(circle at 25% 25%, rgba(0, 242, 255, 0.4) 0%, rgba(0, 242, 255, 0.1) 50%, transparent 80%);
}

[data-theme="light"] {
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #424245;
    --accent: #007aff;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.05);
    --cursor-color: rgba(0, 0, 0, 0.05);
    --hero-gradient: linear-gradient(to bottom, #1d1d1f 20%, #424245 100%);
    --shimmer-color: rgba(0, 0, 0, 0.1);
    --hero-glow: radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.2) 0%, rgba(0, 122, 255, 0.05) 50%, transparent 80%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* Multi-Color Cursor Follow Effect */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    filter: blur(5px);
    opacity: 0.8;
    transition: transform 0.1s ease-out;
    mix-blend-mode: screen;
}

.cursor-1 {
    background: #00f2ff;
}

/* Cyan */
.cursor-2 {
    background: #ff00ff;
}

/* Magenta */
.cursor-3 {
    background: #fbff00;
}

/* Yellow */

[data-theme="light"] .cursor-follower {
    opacity: 0.8;
    mix-blend-mode: multiply;
    filter: blur(8px);
}

[data-theme="light"] .cursor-1 {
    background: #00bcd4;
}

/* Darker Cyan */
[data-theme="light"] .cursor-2 {
    background: #e91e63;
}

/* Darker Pink */
[data-theme="light"] .cursor-3 {
    background: #ffc107;
}

/* Darker Yellow */

.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
            var(--cursor-color) 0%,
            transparent 70%);
    mix-blend-mode: difference;
}

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.theme-toggle:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(15deg) scale(1.1);
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Refined Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-bg);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-glow);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

.hero-navbar {
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

[data-theme="light"] .hero-navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-navbar.scrolled .nav-link {
    color: #ffffff;
    font-weight: 700;
}

.hero-navbar.scrolled .nav-logo h2 {
    color: #ffffff;
}

.hero-navbar.scrolled .nav-link::after {
    background: #ffffff;
}

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

.nav-logo h2 {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Content */
.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

[data-theme="light"] .hero-badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-title {
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    letter-spacing: -5px;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, transparent 45%, var(--shimmer-color) 50%, transparent 55%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

.hero-title span {
    display: block;
    font-size: 0.35em;
    letter-spacing: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    margin-bottom: 15px;
    opacity: 1;
    /* Increased opacity for better visibility */
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    padding: 20px 45px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 25px 50px rgba(0, 122, 255, 0.3);
}

.btn-secondary {
    padding: 18px 36px;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-primary);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mockup-wrapper {
    position: relative;
    z-index: 2;
}

.mockup-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: floatImage 8s ease-in-out infinite;
}

.mockup-wrapper:hover .mockup-image {
    transform: scale(1.03);
    box-shadow: 0 60px 120px rgba(255, 255, 255, 0.05);
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-element {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px 25px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fe-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.fe-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* About Section Enhancements */
.about-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

.about-visual {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
    min-height: 550px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--bg-secondary);
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, var(--accent), transparent, var(--accent));
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
}

.about-tech-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(0.8) contrast(1.1);
}

.about-visual:hover .about-tech-img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1) contrast(1.1);
}

.about-stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    z-index: 5;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-20px) scale(1.05) !important;
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.about-bio {
    padding: 3.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.bio-header i {
    font-size: 2rem;
    color: var(--accent);
}

.bio-header h3 {
    font-size: 2rem;
    margin: 0;
}

.bio-title-group {
    display: flex;
    flex-direction: column;
}

.bio-subtitle {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
}

.about-socials {
    display: flex;
    gap: 15px;
}

.social-link-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-icon:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* Services Section */
.services-container {
    margin-top: 4rem;
}

.services-header {
    margin-bottom: 2.5rem;
}

.services-header h3 {
    font-size: 1.8rem;
    text-align: center;
}

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

.service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

    .about-visual {
        height: 400px;
    }
}

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

    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Experience Section Enhancements */
.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2.5rem;
}

.exp-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-content {
    flex: 1;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.exp-date {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

/* Sections Common */
section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-badge {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 5px 15px;
    background: var(--glass-bg);
    border-radius: 100px;
}

.section-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 30%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-title {
    background: linear-gradient(to bottom, #000000 30%, #424245 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

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

/* Projects Slider Enhancements */
.projects-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 768px) {
    .projects-slider-container {
        padding: 0 15px;
    }
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.projects-slider {
    display: flex;
    overflow: visible;
    scroll-behavior: smooth;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 768px) {
    .projects-slider {
        gap: 20px;
    }
}

.project-card {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 500px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

.project-image {
    flex: 1.2;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.overlay-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.overlay-link:hover {
    transform: scale(1.1);
    background: #fff;
}

.project-info {
    flex: 1;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

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

.project-header h3 {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
}

.project-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 2rem;
    right: 3rem;
}

.project-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--accent);
    white-space: nowrap;
}

.btn-view-project:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .btn-view-project:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 480px) {
    .btn-view-project span {
        display: none;
    }

    .btn-view-project {
        padding: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }

    .btn-view-project i {
        margin: 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .project-overlay {
        opacity: 1;
        background: transparent;
        backdrop-filter: none;
        pointer-events: none;
    }

    .project-links {
        transform: translateY(0);
        pointer-events: all;
        position: absolute;
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .overlay-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        background: var(--accent);
        color: var(--bg-primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

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

/* Tech Bento Grid Styles - Stacked Card Effect */
.tech-bento-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 4rem;
    perspective: 1500px;
    position: relative;
    min-height: 600px;
}

.bento-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: absolute;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    min-height: 450px;
    height: 450px;
    transform-style: preserve-3d;
    cursor: pointer;
}

.bento-card:nth-child(1) {
    transform: translateY(0) translateZ(0) scale(1);
    z-index: 5;
    opacity: 1;
}

.bento-card:nth-child(2) {
    transform: translateY(40px) translateZ(-100px) scale(0.95);
    z-index: 4;
    opacity: 0.8;
}

.bento-card:nth-child(3) {
    transform: translateY(80px) translateZ(-200px) scale(0.9);
    z-index: 3;
    opacity: 0.6;
}

.bento-card:nth-child(4) {
    transform: translateY(120px) translateZ(-300px) scale(0.85);
    z-index: 2;
    opacity: 0.4;
}

.bento-card:nth-child(5) {
    transform: translateY(160px) translateZ(-400px) scale(0.8);
    z-index: 1;
    opacity: 0.2;
}

.bento-card:hover {
    transform: translateY(-10px) translateZ(50px) scale(1.02) !important;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10 !important;
    opacity: 1 !important;
}

.bento-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bento-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    border: 1px solid var(--glass-border);
}

.bento-title h3 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: none;
}

.bento-title span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
}

.tech-list-main {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-pill {
    padding: 0.8rem 1.2rem;
    /* Reduced volume */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.tech-pill i {
    font-size: 1.4rem;
    color: var(--accent);
}

.tech-pill span {
    font-size: 0.9rem;
    font-weight: 600;
}

.tech-usage {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    border-radius: 100px;
}

.bento-footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Card Specifics - Uniform sizing for stacked layout */
.main-engine {
    border-left: 3px solid var(--accent);
}

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

.mini-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.mini-item i {
    color: var(--accent);
    font-size: 1rem;
}

.mobile-tech-display {
    display: flex;
    gap: 0.8rem;
}

.mobile-node {
    flex: 1;
    padding: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-node i {
    font-size: 1.2rem;
    color: var(--accent);
}

.mobile-node span {
    font-size: 0.8rem;
    font-weight: 600;
}

.design-stack,
.tools-stack {
    grid-column: span 1;
}

.design-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.design-tags span {
    padding: 4px 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.tools-marquee {
    display: flex;
    justify-content: space-around;
    font-size: 1.4rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.bento-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 800;
    opacity: 0.6;
}

/* Reduce Global Button Volume */
.btn-primary {
    padding: 14px 32px;
    /* Reduced from 20px 45px */
    font-size: 0.95rem;
}

.btn-secondary {
    padding: 12px 28px;
    /* Reduced from 18px 36px */
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .tech-bento-grid {
        min-height: 500px;
    }

    .bento-card {
        padding: 2rem;
        height: 420px;
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .tech-bento-grid {
        min-height: 450px;
        perspective: 1000px;
    }

    .bento-card {
        padding: 1.5rem;
        max-width: 100%;
        height: 380px;
        min-height: 380px;
    }

    .bento-card:nth-child(2) {
        transform: translateY(30px) translateZ(-80px) scale(0.96);
    }

    .bento-card:nth-child(3) {
        transform: translateY(60px) translateZ(-160px) scale(0.92);
    }

    .bento-card:nth-child(4) {
        transform: translateY(90px) translateZ(-240px) scale(0.88);
    }

    .bento-card:nth-child(5) {
        transform: translateY(120px) translateZ(-320px) scale(0.84);
    }

    .bento-header {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .bento-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .bento-title h3 {
        font-size: 1.3rem;
    }

    .bento-title span {
        font-size: 0.75rem;
    }
}

/* Experience Section */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.exp-header h3 {
    font-size: 1.8rem;
}

.exp-date {
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
}

.exp-company {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 3rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card,
.social-media-card {
    padding: 3.5rem;
}

.contact-info-card h3,
.social-media-card h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    width: 100%;
}

.info-link:hover {
    color: var(--accent);
}

.info-item i,
.info-link i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.info-link:hover i {
    color: var(--accent);
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.social-btn {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--glass-bg);
    border-color: var(--text-primary);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-icon {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-icon:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .hero-title span {
        letter-spacing: 8px;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .about-visual {
        min-height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Premium Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        transition: var(--transition);
    }

    .nav-close:hover {
        transform: rotate(90deg);
        color: var(--accent);
    }

    .nav-menu li {
        margin: 0;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 2.5rem;
        font-weight: 800;
        letter-spacing: 2px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

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

    .hero-title span {
        font-size: 0.3em;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Mobile Slider Enhancements */
    .services-grid,
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem 0 3rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-grid::-webkit-scrollbar,
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card,
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .projects-slider {
        gap: 20px;
    }

    .project-card {
        min-width: 100%;
        flex-direction: column;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 24px;
    }

    .project-image {
        height: 45%;
        flex: none;
    }

    .project-info {
        padding: 1.5rem;
        border-left: none;
        border-top: 1px solid var(--glass-border);
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .project-header h3 {
        font-size: 1.5rem;
    }

    .project-number {
        display: none;
    }

    .project-tags {
        margin-bottom: 0.8rem;
        gap: 6px;
    }

    .project-info p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .project-footer {
        margin-top: auto;
    }

    /* Bento Grid Mobile */
    .tech-bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem 0 2rem;
        scrollbar-width: none;
    }

    .tech-bento-grid::-webkit-scrollbar {
        display: none;
    }

    .bento-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-height: 350px;
    }

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

    .project-card-v2 {
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 24px;
    }

    .project-info-v2 {
        padding: 1.5rem;
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
        pointer-events: all;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .project-info-v2 h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .project-info-v2 p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.85rem;
        margin-bottom: 1rem !important;
    }

    .project-footer-v2 {
        gap: 1rem;
    }

    .project-card-v2 .btn-view-project {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .floating-element {
        display: none;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .service-card,
    .testimonial-card,
    .bento-card {
        flex: 0 0 92%;
    }
}

/* Projects Page Specific Responsive */
.projects-page {
    padding-top: 120px;
}

@media (max-width: 768px) {
    .projects-hero {
        margin-bottom: 3rem;
    }

    .filter-container {
        margin-bottom: 3rem;
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Projects Page Styles */
.projects-page {
    padding-top: 150px;
    background: var(--bg-primary);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.projects-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.projects-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

.project-card-v2 {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.project-card-v2 .project-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.project-card-v2 .project-image img {
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.project-card-v2 .project-info-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.project-card-v2:hover .project-info-v2 {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.project-card-v2:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.project-info-v2 h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.project-info-v2 p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem !important;
}

.project-footer-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

    .project-card-v2 {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .projects-page {
        padding-top: 100px;
    }
}