.projects-hero {
            /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
            /* padding: 120px 20px 80px; */
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #4a4a4a;
            margin-bottom: 30px;
        }

        .filter-btn {
            /* line-height: 24px; */
            margin-bottom: 24px;
            background: rgba(138, 43, 226, 0.08);
            border: 1px solid rgba(138, 43, 226, 0.2);
            color: #500986;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            background: rgba(138, 43, 226, 0.15);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
            border-color: transparent;
        }

        .projects-section {
            /* background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%); */
            padding: 20px 20px;
        }

        .projects-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .featured-project {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 25px;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(138, 43, 226, 0.15);
            border: 2px solid rgba(138, 43, 226, 0.2);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
        }

        .featured-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }

        .featured-image-container {
            height: 400px;
            overflow: hidden;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .featured-project:hover .featured-image {
            transform: scale(1.08);
        }

        .featured-info {
            padding: 60px;
        }

        .featured-title {
            font-size: 2.2rem;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .featured-description {
            color: #4a4a4a;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .featured-cta {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .featured-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .project-card {
            background: #ffffff;
            border: 1px solid rgba(138, 43, 226, 0.15);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
        }

        .project-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .project-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .project-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .project-tag {
            background: rgba(138, 43, 226, 0.08);
            color: #6C00B0;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .project-title {
            font-size: 1.5rem;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .project-description {
            color: #4a4a4a;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .project-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(138, 43, 226, 0.1);
        }

        .project-date {
            color: #666;
            font-size: 0.85rem;
        }

        .project-link {
            background: rgba(138, 43, 226, 0.1);
            color: #500986;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
        }

        .loading {
            text-align: center;
            padding: 60px;
            color: #666;
        }

        .spinner {
            border: 3px solid rgba(138, 43, 226, 0.1);
            border-top: 3px solid #8a2be2;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 1024px) {
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            .featured-content-wrapper {
                grid-template-columns: 1fr;
            }
            .featured-image-container {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .featured-info {
                padding: 30px;
            }
        }