 :root {
            --bg-black: #0a0a0a;
            --card-bg: #141414;
            --accent-purple: #7c5cfc;
            --text-gray: #a1a1a1;
            --radius: 24px;
        }

        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-black);
            color: white;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            height: 30vh;;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero h1 {
            font-size: clamp(2rem, 8vw, 4rem);
            text-transform: uppercase;
            letter-spacing: 5px;
            font-weight: 300;
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            padding-top: 0;
        }

        .left-nav{

            display: flex;
            justify-content: center;
            align-items: center;

        }

        /* Category Tabs */
        .category-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 50px;
            overflow-x: auto;
            padding-bottom: 15px;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
        }

        .category-tabs::-webkit-scrollbar { display: none; } /* Hide scrollbar for Chrome */

        .tab {
            background: #252525;
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 500ms ease;
            font-size: 0.9rem;
        }
        .tab:hover {
            background: #1b1b1b;
        }

        .tab.active {
            background: #0055fe;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 40px;
        }

        .portfolio-item {
            width: 100%;
            text-decoration: none;
            color: inherit;
        }

        .image-box {
            width: 100%;
            aspect-ratio: 16/10;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 25px;
            background: #1a1a1a;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 500ms ease;
        }

        .image-box img:hover {
            transform: scale(1.05) rotate(1deg);
        }

        .portfolio-item h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .portfolio-item p {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Service Tag Pills */
        .tag {
            display: inline-block;
            border: 1px solid #303030;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #d1d1d1;
            font-weight: 500;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 80px;
        }

        .page-num {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            border: none;
            background: transparent;
            color: white;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-num.active {
            background: var(--accent-purple);
        }

        .page-num:hover:not(.active) {
            background: #222;
        }

        /* Floating Navigation Dock */
        .nav-dock {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 15, 15, 0.85);
            backdrop-filter: blur(10px);
            padding: 8px 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
        }

        .dock-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0 10px;
        }

        .btn-start {
            background: var(--accent-purple);
            color: white;
            padding: 10px 20px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pagination-tab {
            margin: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
        }
        
        /* Mobile Adjustments */
        @media (max-width: 850px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 { font-size: 2.5rem; }
            .nav-dock { width: 90%; justify-content: space-around; font-size: 0.8rem; }
            .dock-link { display: none; } /* Hide text links on small mobile to save space */
        }