* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0f;
            color: #fff;
            overflow-x: hidden;
        }

        a {
	    color: #fff;
	    text-decoration:none;
        }

        /* Bokeh Background */
        #bokeh-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Frosted Glass Overlay */
        .glass-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.3);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(10, 10, 15, 0.85);
            padding: 0.75rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #48dbfb);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Main Content */
        main {
            position: relative;
            z-index: 2;
            padding-top: 80px;
        }

        /* Sections */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
        }

        .section-content {
            max-width: 1000px;
            text-align: center;
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .section-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-jb-project {
            max-width: 1000px;
            text-align: center;
}

        /* Glass Card */
        .glass-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        h1 span {
            background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #ff6b6b);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 8s ease infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        /* Hero Section */
        #home {
            min-height: 100vh;
        }

        .hero-content {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-content.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #ff6b6b, #ff9ff3);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:nth-child(1) { transition-delay: 0.1s; }
        .project-card:nth-child(2) { transition-delay: 0.2s; }
        .project-card:nth-child(3) { transition-delay: 0.3s; }

        .project-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .project-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .project-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #fff;
        }

        .project-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

      
/* MAIN WRAPPER */

.gallery{
    position:relative;
    width:100vw;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* IMAGE */

.image-wrapper{
    position:relative;
    width:85vw;
    height:80vh;
    overflow:hidden;
    border-radius:24px;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.05);
}

.image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    cursor:pointer;
    transition:transform 0.5s ease;
}

.image-wrapper:hover img{
    transform:scale(1.01);
}

/* IMAGE INFO */

.image-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:50px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        transparent
    );
}

.image-info h1{
    font-size:3rem;
    font-weight:200;
    letter-spacing:2px;
    margin-bottom:10px;
}

.image-info p{
    font-size:1rem;
    opacity:0.8;
    max-width:600px;
    line-height:1.6;
}

/* NAVIGATION */

.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    cursor:pointer;
    transition:0.3s ease;
    user-select:none;
}

.nav:hover{
    background:rgba(255,255,255,0.12);
    transform:translateY(-50%) scale(1.08);
}

.prev{
    left:40px;
}

.next{
    right:40px;
}

/* COUNTER */

.counter{
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    font-size:0.9rem;
    letter-spacing:3px;
    opacity:0.6;
}

/* FULLSCREEN MODAL */

.fullscreen{
    position:fixed;
    inset:0;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:9999;
}

.fullscreen.active{
    opacity:1;
    visibility:visible;
}

.fullscreen img{
    max-width:95%;
    max-height:95%;
    object-fit:contain;
}

/* CLOSE */

.close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:3rem;
    cursor:pointer;
    color:white;
    opacity:0.8;
    transition:0.3s ease;
}

.close:hover{
    opacity:1;
    transform:rotate(90deg);
}

/* MOBILE */

@media(max-width:768px){

    .image-wrapper{
        width:92vw;
        height:70vh;
    }

    .image-info{
        padding:30px;
    }

    .image-info h1{
        font-size:2rem;
    }

    .nav{
        width:55px;
        height:55px;
        font-size:1.5rem;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }
}



        /* About Section */
        .about-content {
            text-align: left;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .skill-tag {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }

        .skill-tag.visible {
            opacity: 1;
            transform: translateX(0);
        }

th, td {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: top;
}


        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.6;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            position: relative;
        }

        .scroll-indicator::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 2px;
            animation: scroll-dot 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        @keyframes scroll-dot {
            0%, 100% { opacity: 1; top: 8px; }
            50% { opacity: 0.3; top: 20px; }
        }

        /* Footer */
        footer {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.25rem;
                padding: 1rem;
            }

            .glass-card {
                padding: 2rem 1.5rem;
            }
        }
