/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation Styles */
.electric-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    z-index: 1000;
    padding: 0 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    position: relative;
}

.electric-nav.scrolled .nav-container {
    padding: 0.4rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    position: relative;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0.5rem;
    flex-shrink: 0;
}

.lang-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
}

.lang-btn:hover {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* Language flag backgrounds */
.lang-es {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Bandera_de_Espa%C3%B1a.svg/1200px-Bandera_de_Espa%C3%B1a.svg.png');
    background-size: cover;
    background-position: center;
}

.lang-en {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Flag_of_the_United_Kingdom_%281-2%29.svg/1200px-Flag_of_the_United_Kingdom_%281-2%29.svg.png');
    background-size: cover;
    background-position: center;
}

.lang-cz {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Flag_of_the_Czech_Republic.svg/1200px-Flag_of_the_Czech_Republic.svg.png');
    background-size: cover;
    background-position: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #00f0ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* Projects Hero Section */
.projects-hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 50%, #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.projects-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.projects-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.projects-hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00f0ff, transparent 70%);
    top: 10%;
    left: 10%;
}

.projects-hero-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff00d4, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.projects-hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00ff9d, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.projects-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    opacity: 0.1;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.projects-hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero-subtitle {
    color: #00f0ff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.projects-hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.1;
}

.projects-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.projects-stat {
    text-align: center;
}

.projects-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f0ff;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.projects-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Scroll Indicator */
.projects-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.projects-scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #00f0ff, transparent);
    position: relative;
}

.projects-scroll-dot {
    width: 6px;
    height: 6px;
    background: #00f0ff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.projects-scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Projects Filter Section */
.projects-filter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.projects-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filter-controls {
    text-align: center;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 15px 50px 15px 45px;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-input:focus {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.05);
    outline: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.search-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 240, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
    border-radius: 25px;
    pointer-events: none;
}

.search-input:focus ~ .search-glow {
    left: 100%;
}

.active-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.active-filters-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.active-filters-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.active-filter-tag {
    background: rgba(0, 240, 255, 0.2);
    color: #00f0ff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.remove-filter {
    background: none;
    border: none;
    color: #00f0ff;
    cursor: pointer;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Projects Hero Section - UPDATED */
.projects-hero-section {
    min-height: 80vh; /* Increased height */
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 50%, #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.projects-hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 4rem 2rem 2rem; /* Added more top padding */
    position: relative;
    z-index: 2;
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem; /* Added bottom padding */
}

.projects-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px; /* Added bottom margin */
}

/* Scroll Indicator - UPDATED POSITION */
.projects-scroll-indicator {
    position: absolute;
    bottom: 2rem; /* Moved further down */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

/* Search Box - FIXED STYLING */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 15px 45px 15px 45px; /* Fixed padding */
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.05);
    outline: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    z-index: 2;
}

/* REMOVED the problematic search-glow effect */
.search-glow {
    display: none; /* Remove the bad effect */
}

/* Alternative subtle focus effect */
.search-input:focus {
    animation: searchFocus 0.3s ease;
}

@keyframes searchFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1);
    }
}

/* Active Filters - Improved styling */
.active-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.active-filters-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.active-filters-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.active-filter-tag {
    background: rgba(0, 240, 255, 0.15);
    color: #00f0ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.active-filter-tag:hover {
    background: rgba(0, 240, 255, 0.25);
    transform: translateY(-1px);
}

.remove-filter {
    background: none;
    border: none;
    color: #00f0ff;
    cursor: pointer;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .projects-hero-section {
        min-height: 70vh;
        padding-top: 70px;
    }
    
    .projects-hero-container {
        padding: 3rem 1rem 1rem;
    }
    
    .projects-hero-stats {
        gap: 25px;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .projects-scroll-indicator {
        bottom: 1.5rem;
    }
    
    .search-box {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .active-filters {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .projects-hero-section {
        min-height: 60vh;
    }
    
    .projects-hero-container {
        padding: 2rem 1rem 1rem;
    }
    
    .projects-hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .projects-scroll-indicator {
        bottom: 1rem;
    }
    
    .search-input {
        padding: 12px 40px 12px 40px;
    }
    
    .active-filter-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* All Projects Section */
.all-projects-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.all-projects-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.all-projects-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: project-float 12s ease-in-out infinite;
}

.all-projects-shape.shape-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f0ff, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.all-projects-shape.shape-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff00d4, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.all-projects-shape.shape-6 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff9d, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes project-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.all-projects-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 25s linear infinite;
    opacity: 0.1;
}

.all-projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* All Project Card */
.all-project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.all-project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.all-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 240, 255, 0.2),
        0 0 0 1px rgba(0, 240, 255, 0.1);
}

.all-project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.all-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.all-project-card:hover .all-project-image img {
    transform: scale(1.1);
}

.all-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.9), rgba(255, 0, 212, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.all-project-card:hover .all-project-overlay {
    opacity: 1;
}

.all-project-links {
    display: flex;
    gap: 20px;
}

.all-project-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.all-project-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.all-project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 240, 255, 0.9);
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.all-project-content {
    padding: 25px;
}

.all-project-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.all-project-tech {
    color: #00f0ff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.all-project-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.all-project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.all-project-feature {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.all-project-card:hover .all-project-feature {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.all-project-stats {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.all-project-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.all-project-stat i {
    color: #00f0ff;
}

.all-project-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.all-project-card:hover .all-project-glow {
    opacity: 1;
}

/* No Results Message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: #00f0ff;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-results-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.no-results-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.no-results-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.no-results-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

/* Load More Button */
.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    border: none;
    color: #0a0a0a;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    margin: 0 auto;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.7);
}

.load-more-btn .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
    border-radius: 30px;
}

.load-more-btn:hover .btn-glow {
    left: 100%;
}

/* Projects CTA Section */
.projects-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.projects-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.projects-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: cta-float 15s ease-in-out infinite;
}

.projects-cta-shape.shape-7 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff9d, transparent 70%);
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.projects-cta-shape.shape-8 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff00d4, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(10px) rotate(240deg) scale(0.9); }
}

.projects-cta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 30s linear infinite;
    opacity: 0.1;
}

.projects-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.projects-cta-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.projects-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.projects-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.projects-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.projects-cta-btn.primary {
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.projects-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.projects-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.7);
}

.projects-cta-btn.secondary:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    transform: translateY(-3px);
}

.projects-cta-btn .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
    border-radius: 30px;
}

.projects-cta-btn:hover .btn-glow {
    left: 100%;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 30px 0 20px;
    margin-top: 0;
    z-index: 100;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: footer-float 20s ease-in-out infinite;
}

.footer-shape.shape-22 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #00f0ff, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.footer-shape.shape-23 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ff00d4, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes footer-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 30s linear infinite;
    opacity: 0.03;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.license-link,
.creator-link {
    color: #00f0ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.license-link:hover,
.creator-link:hover {
    color: #ff00d4;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.creator-link {
    font-weight: 600;
    position: relative;
}

.creator-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    transition: width 0.3s ease;
}

.creator-link:hover::after {
    width: 100%;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.03), transparent 70%);
    pointer-events: none;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .all-projects-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .projects-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 0;
        overflow: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        height: auto;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active .nav-link {
        width: 100%;
        text-align: center;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
        display: block;
        margin: 0;
    }
    
    .nav-menu.active .language-selector {
        margin: 1.5rem 0;
        justify-content: center;
        order: 1;
        width: 100%;
        padding: 0 2rem;
    }
    
    .nav-menu.active .contact-link {
        margin-left: 0;
        order: 2;
    }

    .nav-orb {
        display: none;
    }
    
    .projects-hero-title {
        font-size: 3rem;
    }
    
    .projects-hero-stats {
        gap: 30px;
    }
    
    .projects-stat-number {
        font-size: 2rem;
    }
    
    .all-projects-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .projects-cta-title {
        font-size: 2.5rem;
    }
    
    .projects-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .projects-cta-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-hero-title {
        font-size: 2.5rem;
    }
    
    .projects-hero-description {
        font-size: 1.1rem;
    }
    
    .projects-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .active-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .all-projects-container {
        grid-template-columns: 1fr;
    }
    
    .all-project-content {
        padding: 20px;
    }
    
    .all-project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .projects-cta-content {
        padding: 40px 20px;
    }
    
    .projects-cta-title {
        font-size: 2rem;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
.filter-btn:focus,
.search-input:focus,
.all-project-link:focus {
    outline: 2px solid #00f0ff;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .all-project-card,
    .projects-hero-shape,
    .all-projects-shape,
    .projects-cta-shape,
    .footer-shape {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    .electric-nav,
    .projects-hero-background,
    .all-projects-background,
    .projects-cta-background,
    .footer-background,
    .nav-orb,
    .all-project-glow,
    .btn-glow,
    .footer-glow {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .projects-hero-section,
    .all-projects-section,
    .projects-cta-section,
    .site-footer {
        background: white !important;
        color: black !important;
    }
    
    .projects-hero-title,
    .filter-title,
    .all-project-name,
    .projects-cta-title {
        background: none !important;
        color: black !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer Styles - UPDATED WITH SOCIAL ICONS */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 50px 0 30px;
    margin-top: 0;
    z-index: 100;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation: footer-float 20s ease-in-out infinite;
}

.footer-shape.shape-22 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #00f0ff, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.footer-shape.shape-23 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ff00d4, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes footer-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 30s linear infinite;
    opacity: 0.03;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Footer Main Content - UPDATED */
.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* Social Networks in Footer - CENTERED */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-social .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social .social-link:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 240, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
    border-radius: 50%;
}

.footer-social .social-link:hover::before {
    left: 100%;
}

/* Social media icon colors on hover */
.footer-social .social-link:hover .fa-facebook-f { color: #1877f2 !important; }
.footer-social .social-link:hover .fa-instagram { color: #e4405f !important; }
.footer-social .social-link:hover .fa-linkedin-in { color: #0a66c2 !important; }
.footer-social .social-link:hover .fa-codepen { color: #000000 !important; }
.footer-social .social-link:hover .fa-github { color: #ffffff !important; }
.footer-social .social-link:hover .fa-whatsapp { color: #25D366 !important; }

/* Footer Bottom - UPDATED */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.license-link,
.creator-link {
    color: #00f0ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.license-link:hover,
.creator-link:hover {
    color: #ff00d4;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.creator-link {
    font-weight: 600;
    position: relative;
}

.creator-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, #00f0ff, #ff00d4);
    transition: width 0.3s ease;
}

.creator-link:hover::after {
    width: 100%;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.03), transparent 70%);
    pointer-events: none;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-legal p {
        font-size: 0.85rem;
    }
    
    .footer-shape {
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-social {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 5px;
    }
    
    .footer-main {
        gap: 20px;
    }
}