        /* Web Projects Carousel Styles */
        .web-projects-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            overflow: hidden;
            margin: 0 auto;
        }

        .web-projects-carousel-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .web-projects-carousel {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 20px 0;
        }

        .web-projects-carousel-card {
            border-radius: 16px;
            width: 380px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .web-projects-carousel-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }

        .web-projects-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .web-projects-nav-btn:hover {
            background: #01acb6;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(1, 172, 182, 0.3);
        }

        .web-projects-nav-btn.prev {
            left: -25px;
        }

        .web-projects-nav-btn.next {
            right: -25px;
        }

        .web-projects-nav-btn svg {
            width: 20px;
            height: 20px;
        }

        .web-projects-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .web-projects-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(1, 172, 182, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .web-projects-dot.active {
            background: #01acb6;
            transform: scale(1.2);
        }

        .web-projects-dot:hover {
            background: #01acb6;
            transform: scale(1.1);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .web-projects-carousel {
                gap: 16px;
            }

            .web-projects-carousel-card {
                width: 320px;
            }

            .web-projects-nav-btn {
                width: 40px;
                height: 40px;
            }

            .web-projects-nav-btn.prev {
                left: -20px;
            }

            .web-projects-nav-btn.next {
                right: -20px;
            }

            .web-projects-nav-btn svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .web-projects-carousel-card {
                width: 280px;
            }

            .web-projects-nav-btn.prev {
                left: -15px;
            }

            .web-projects-nav-btn.next {
                right: -15px;
            }
        }

        /* Original Design Carousel Styles */
        .advanced-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            margin: 0 auto;
        }

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

        .advanced-carousel {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 20px 0;
        }

        .advanced-carousel-card {
            border-radius: 16px;
            width: 350px;
            height: 250px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .advanced-carousel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative;
            z-index: 2;
        }

        .advanced-carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .advanced-carousel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .advanced-carousel-card:hover::before {
            opacity: 1;
        }

        .advanced-carousel-card .link-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0;
            transform: translateY(-10px);
        }

        .advanced-carousel-card:hover .link-icon {
            opacity: 1;
            transform: translateY(0);
        }

        .advanced-carousel-card .link-icon:hover {
            background: white;
            transform: scale(1.1);
        }

        .advanced-carousel-card .link-icon svg {
            width: 20px;
            height: 20px;
            stroke: #333;
            stroke-width: 2;
        }

        /* Hover overlay styles */
        .carousel-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            pointer-events: none;
        }

        .carousel-overlay-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .advanced-carousel-card:hover .carousel-overlay-bg {
            opacity: 1;
        }

        /* Content overlay styles */
        .carousel-content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            z-index: 4;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .advanced-carousel-card:hover .carousel-content-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .carousel-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .carousel-description {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
            margin: 0;
        }

        .advanced-nav-btn {
            background: rgba(1, 172, 182, 0.2);
            border: 2px solid rgba(1, 172, 182, 0.3);
            color: #01acb6;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .advanced-nav-btn:hover:not(:disabled) {
            background: rgba(1, 172, 182, 0.4);
            border-color: rgba(1, 172, 182, 0.6);
            color: white;
        }

        .advanced-nav-btn.prev {
            left: 10px;
        }

        .advanced-nav-btn.next {
            right: 10px;
        }

        .advanced-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .advanced-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
        }

        .advanced-dot {
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .advanced-dot.center {
            width: 10px;
            height: 10px;
            background: #01acb6;
        }

        .advanced-dot.adjacent {
            width: 8px;
            height: 8px;
            background: rgba(1, 172, 182, 0.6);
        }

        .advanced-dot.outer {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.25);
        }

        .advanced-loading-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            z-index: 1;
        }

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

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

        @media (max-width: 768px) {
            .advanced-carousel {
                gap: 15px;
                padding: 20px;
            }

            .advanced-carousel-card {
                width: 300px;
            }

            .advanced-nav-btn.prev {
                left: 10px;
            }

            .advanced-nav-btn.next {
                right: 10px;
            }
        }

        /* Enhanced Filter Button Styles */
        .filter-btn {
            transition: all 0.3s ease, transform 0.1s ease;
            position: relative;
            overflow: hidden;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(1, 172, 182, 0.3);
        }

        .filter-btn.active-filter {
            background: #01acb6 !important;
            color: white !important;
            border-color: #01acb6 !important;
            box-shadow: 0 8px 25px rgba(1, 172, 182, 0.4);
            transform: translateY(-1px);
        }

        .filter-btn.active-filter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .filter-btn.active-filter:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(1, 172, 182, 0.5);
        }