        body {
            margin: 0;
            font-family: "Montserrat", sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* NAVIGATION */
        nav {
            width: 100%;
            position: fixed;
            top: 0;
            display: flex;
            justify-content: center;
            padding: 20px 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            padding: 0;
            margin: 0;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        nav ul li a:hover {
            color: #777;
        }

        /* SECTIONS */
        section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
        }

        h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        p {
            font-size: 18px;
            max-width: 650px;
            line-height: 1.6;
        }

        /* PROJECT CARDS */
        .projects-container {
            display: flex;
            gap: 25px;
            margin-top: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .project-card {
            background: #111;
            width: 250px;
            padding: 18px;
            border-radius: 10px;
            text-align: center;
            transition: 0.4s;
            cursor: pointer;
            border: 1px solid #222;
        }

        .project-card:hover {
            transform: translateY(-8px);
            border-color: #555;
            box-shadow: 0 0 15px #333;
        }

        .project-image {
            width: 100%;
            height: 130px;
            background: linear-gradient(135deg, #444, #222);
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .project-card h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .project-card p {
            font-size: 14px;
            opacity: 0.8;
        }

        .btn {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 16px;
            border: 1px solid #555;
            color: #ccc;
            text-decoration: none;
            border-radius: 6px;
            transition: 0.3s;
            font-size: 13px;
        }

        .btn:hover {
            background: #555;
            color: #000;
        }

        /* FADE-IN EFFECT */
        .hidden {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

        .show {
            opacity: 1;
            transform: translateY(0);
        }