* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #e4e4e7;
            background: #09090b;
            min-height: 100vh;
        }

        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 2;
        }

        header {
            text-align: center;
            padding: 100px 20px 80px;
            position: relative;
        }

        header h1 {
            font-size: 4.5em;
            font-weight: 900;
            font-family: 'Orbitron', sans-serif;
            background: linear-gradient(135deg, #fff 0%, #888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        header p {
            font-size: 1.3em;
            color: #71717a;
            font-weight: 300;
            margin-bottom: 25px;
            font-family: 'Orbitron', sans-serif;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
            font-size: 0.95em;
        }

        .contact-item {
            color: #a1a1aa;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item a {
            color: #a1a1aa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #18181b;
            border: 1px solid #27272a;
            color: #a1a1aa;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.3em;
        }

        .social-link:hover {
            border-color: #fff;
            color: #fff;
            transform: translateY(-3px);
        }

        

        .nav-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
            border-bottom: 1px solid #27272a;
            padding-bottom: 0;
            overflow-x: auto;
        }

        .nav-tab {
            padding: 15px 30px;
            background: transparent;
            border: none;
            color: #71717a;
            font-size: 1em;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            white-space: nowrap;
        }

        .nav-tab:hover {
            color: #e4e4e7;
        }

        .nav-tab.active {
            color: #fff;
            border-bottom-color: #fff;
        }

        .content-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .content-section.active {
            display: block;
        }

        .card {
            background: #18181b;
            border: 1px solid #27272a;
            padding: 35px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: #3f3f46;
            transform: translateY(-2px);
        }

        .card h2 {
            color: #fff;
            font-size: 1.8em;
            margin-bottom: 15px;
            font-weight: 600;
            font-family: 'Orbitron', sans-serif;
        }

        .card h3 {
            color: #e4e4e7;
            font-size: 1.3em;
            margin-bottom: 12px;
            font-weight: 500;
            font-family: 'Orbitron', sans-serif;
        }

        .card p {
            color: #a1a1aa;
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .card ul {
            list-style: none;
            padding: 0;
        }

        .card ul li {
            color: #a1a1aa;
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }

        .card ul li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #71717a;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }

        .skill-item {
            background: #18181b;
            border: 1px solid #27272a;
            padding: 20px;
            text-align: center;
            font-size: 0.95em;
            color: #e4e4e7;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .skill-item:hover {
            border-color: #fff;
            color: #fff;
            transform: scale(1.05);
        }

        .spec-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #27272a;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: #71717a;
            font-size: 0.9em;
        }

        .spec-value {
            color: #e4e4e7;
            font-weight: 500;
        }

        .badge {
            display: inline-block;
            padding: 6px 14px;
            background: #27272a;
            color: #e4e4e7;
            font-size: 0.85em;
            margin-right: 8px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .highlight {
            background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
            border-left: 3px solid #fff;
            padding: 25px;
            margin: 25px 0;
        }
        
        /* Container keeps both buttons in one centered row, allows wrapping */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; /* allows buttons to move to next line if needed */
}




/* Contact button styled to match tone and size */
.contact-btn, .cv-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #18181b;
    border: 1px solid #27272a;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.9em;
    letter-spacing: 1px;
}

/* Correct hover selector */
.contact-btn:hover,
.cv-button:hover {
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}



        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5em;
            }

            .grid-2 {
                grid-template-columns: 1fr;
            }

            .nav-tabs {
                justify-content: flex-start;
            }

            .skills-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
        }
       

.stars {
    color: #FFD700; /* gold color for stars */
    font-size: 18px;
}