/* Home Projects Section */
        .home-projects-wrapper {
            /* background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%); */
            padding: 10px 20px;
            position: relative;
            overflow: hidden;
        }

        .home-projects-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Section Header */
        .home-projects-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .home-projects-badge {
            display: inline-block;
            background: rgba(138, 43, 226, 0.08);
            color: #6C00B0;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .home-projects-heading {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            background:black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .home-projects-subheading {
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: #4a4a4a;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        /* Projects Display Wrapper */
        .home-projects-carousel-wrapper {
            position: relative;
            margin-bottom: 50px;
        }

        /* Projects Grid for Desktop */
        .home-projects-display {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            transition: opacity 0.3s ease;
        }

        /* Carousel for Mobile/Tablet */
        .home-projects-carousel {
            display: none;
            overflow: hidden;
            position: relative;
            /*padding-right: 20px;*/
        }

        .home-carousel-track {
            display: flex;
            gap: 20px;
            scroll-snap-type: x mandatory;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px 0;
            scroll-padding-left: 0;
        }

        .home-carousel-track::-webkit-scrollbar {
            display: none;
        }

        .home-carousel-item {
            flex: 0 0 45%;
            scroll-snap-align: start;
        }

        /* Navigation Dots */
        .home-carousel-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .home-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(138, 43, 226, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .home-carousel-dot.active {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            width: 30px;
            border-radius: 5px;
        }

        .home-project-item {
            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);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .home-project-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 3;
        }

        .home-project-item:hover {
            transform: translateY(-10px);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
        }

        .home-project-item:hover::before {
            transform: scaleX(1);
        }

        .home-project-thumbnail {
            width: 100%;
            height: 240px;
            object-fit: cover;
            filter: brightness(1.05);
            transition: all 0.4s ease;
        }

        .home-project-item:hover .home-project-thumbnail {
            filter: brightness(1.1);
            transform: scale(1.05);
        }

        .home-project-info {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .home-project-labels {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .home-project-label {
            background: rgba(138, 43, 226, 0.08);
            color: #6C00B0;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .home-project-name {
            font-size: 1.5rem;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .home-project-summary {
            color: #4a4a4a;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .home-project-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(138, 43, 226, 0.1);
        }

        .home-project-timestamp {
            color: #666;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .home-project-action {
            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;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .home-project-action:hover {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
            transform: translateX(3px);
            box-shadow: 0 6px 20px rgba(138, 43, 226, 0.25);
        }

        /* View All Projects CTA */
        .home-viewall-section {
            text-align: center;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .home-viewall-button {
            background: linear-gradient(135deg, #6C00B0, #8a2be2);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
            border: none;
            cursor: pointer;
        }

        .home-viewall-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(138, 43, 226, 0.4);
        }

        .home-viewall-icon {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .home-viewall-button:hover .home-viewall-icon {
            transform: translateX(5px);
        }

        /* Floating Background Elements */
        .home-float-element {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(108, 0, 176, 0.05));
            border-radius: 50%;
            z-index: 1;
            animation: floatAnimation 25s infinite ease-in-out;
        }

        .home-float-element:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .home-float-element:nth-child(2) {
            top: 60%;
            right: 8%;
            animation-delay: 8s;
            width: 90px;
            height: 90px;
        }

        .home-float-element:nth-child(3) {
            bottom: 15%;
            left: 12%;
            animation-delay: 16s;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(90deg); }
            50% { transform: translateY(0px) rotate(180deg); }
            75% { transform: translateY(30px) rotate(270deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            /* Switch to carousel view on tablet */
            .home-projects-display {
                display: none;
            }

            .home-projects-carousel {
                display: block;
            }

            .home-carousel-dots {
                display: flex;
            }

            .home-carousel-item {
                flex: 0 0 85%;
            }
        }

        @media (max-width: 768px) {
            .home-projects-wrapper {
                padding: 80px 20px;
            }

            /* Switch to carousel view */
            .home-projects-display {
                display: none;
            }

            .home-projects-carousel {
                display: block;
            }

            .home-carousel-dots {
                display: flex;
            }

            .home-carousel-item {
                flex: 0 0 90%;
            }

            .home-projects-header {
                margin-bottom: 40px;
            }

            .home-project-thumbnail {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .home-projects-wrapper {
                padding: 60px 15px;
            }

            .home-project-info {
                padding: 20px;
            }

            .home-project-name {
                font-size: 1.3rem;
            }

            .home-project-thumbnail {
                height: 200px;
            }

            .home-viewall-button {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .home-carousel-item {
                flex: 0 0 95%;
            }

            .home-projects-header {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 380px) {
            .home-carousel-item {
                flex: 0 0 100%;
            }
        }