        /* ------------------------ Base ------------------------ */
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: #e0e0e0;
            /* animation: fadeIn 1s ease-in-out; */
        }
/* 
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        } */

        /* ------------------------ Heading ------------------------ */
        h1,
        h2 {
            font-family: 'Orbitron', sans-serif;
            color: #00ffff;
            margin-bottom: 10px;
        }

        /* ------------------------ Section Card ------------------------ */
        section {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px 20px;
            margin: 20px auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 255, 255, 0.4);
        }

        /* ------------------------ Intro Section ------------------------ */
        .intro {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
        }

        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #00ffff;
            box-shadow: 0 0 20px #00ffff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .profile-img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px #00ffff;
        }

        .intro-text p {
            margin: 5px 0;
            font-size: 1em;
            color: #b0f7f7;
        }

        /* ------------------------ Table Styling ------------------------ */
        table {
            border-collapse: collapse;
            width: 100%;
            overflow-x: auto;
            /* display: block; */
            color: #e0e0e0;
        }

        th,
        td {
            border: 1px solid #00ffff50;
            padding: 12px;
            text-align: left;
            word-wrap: break-word;
        }

        th {
            background: #00ffff20;
            color: #00ffff;
        }

        /* ------------------------ Skills ------------------------ */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .skill-card {
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid #00ffff;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            font-weight: 500;
            color: #b0f7f7;
            box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
            cursor: default;
        }

        .skill-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
            color: #00ffff;
        }

        /* ------------------------ Projects ------------------------ */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }

        .project-card {
            background: rgba(0, 255, 255, 0.05);
            border: 2px solid #00ffff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
        }

        .project-card h3 {
            color: #00ffff;
            margin-bottom: 10px;
        }

        .project-card p {
            color: #b0f7f7;
            font-size: 0.95em;
            margin-bottom: 10px;
        }

        .project-card a {
            color: #00ffff;
            text-decoration: none;
            font-weight: bold;
        }

        .project-card a:hover {
            text-decoration: underline;
            color: #00ffea;
        }

        /* ------------------------ Links ------------------------ */
        a {
            color: #00ffff;
            text-decoration: none;
            transition: 0.3s;
        }

        a:hover {
            text-decoration: underline;
            color: #00ffea;
        }

        /* ------------------------ Footer ------------------------ */
        footer {
            text-align: center;
            color: #00ffff80;
            padding: 15px;
            font-style: italic;
        }

        /* ------------------------ Responsive ------------------------ */
        @media (max-width: 700px) {
            .intro {
                flex-direction: column;
            }

            .profile-img {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 500px) {
            body {
                font-size: 14px;
            }

            section {
                padding: 15px 10px;
            }

            .profile-img {
                width: 140px;
                height: 140px;
            }

            h1 {
                font-size: 1.5em;
            }

            h2 {
                font-size: 1.2em;
            }

            table {
                display: block;
                white-space: nowrap;
            }
        }

        /* ------------------------ Extra Hover Effects ------------------------ */
        section p,
        ul li {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        section p:hover,
        ul li:hover {
            color: #00ffff;
            transform: translateX(5px);
        }

        /* Scroll Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

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

        /* Top button */
        .btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #00ffff;
            color: #0f2027;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 0 15px #00ffff;
            display: none;
        }

        #topBtn {
            animation: glowPulse 2s infinite alternate;
        }

        @keyframes glowPulse {
            from {
                box-shadow: 0 0 10px #00ffff;
            }

            to {
                box-shadow: 0 0 25px #00ffff;
            }
        }