 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-light: #ffffff;
            --text-light: #1e293b;
            --text-secondary-light: #64748b;
            --primary-light: #3b82f6;
            --secondary-light: #10b981;
            --glass-dark: #00000099; /* nice glassy dark look */
            --glass-border-light: rgba(59, 130, 246, 0.2);
            
            --bg-dark: #0f172a;
            --text-dark: #f1f5f9;
            --text-secondary-dark: #94a3b8;
            --primary-dark: #60a5fa;
            --secondary-dark: #34d399;
            --glass-dark: rgba(30, 41, 59, 0.7);
            --glass-border-dark: rgba(96, 165, 250, 0.3);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-light);
            color: var(--text-light);
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        body.dark {
            background: var(--bg-dark);
            color: var(--text-dark);
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--glass-light);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border-light);
            z-index: 1000;
            padding: 0 2rem;
        }

        body.dark nav {
            background: var(--glass-dark);
            border-bottom-color: var(--glass-border-dark);
        }

        .nav-container-delbtp {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .dp {
          height: 360px;
          border: 2px solid white;
          border-radius: 850px;
          margin: 60px;
          
        }

        .nav-links {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .nav-links button {
            background: transparent;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: all 0.2s;
            font-weight: 500;
        }

        body.dark .nav-links button {
            color: var(--text-dark);
        }

        .nav-links button:hover,
        .nav-links button.active {
            background: var(--glass-light);
            color: var(--primary-light);
        }

        body.dark .nav-links button:hover,
        body.dark .nav-links button.active {
            background: var(--glass-dark);
            color: var(--primary-dark);
        }

        .theme-toggle {
            background: var(--primary-light) !important;
            color: white !important;
            width: 45px;
            height: 45px;
            padding: 0 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1rem;
            
            border-radius: ;
        }

        body.dark .theme-toggle {
            background: var(--primary-dark) !important;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 100px 2rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Home */
        #home {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
            border: 1px solid var(--glass-border-light);
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        body.dark .hero-badge {
            border-color: var(--glass-border-dark);
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary-light);
            margin-bottom: 3rem;
        }

        body.dark .subtitle {
            color: var(--text-secondary-dark);
        }

        /* Glass Cards */
        .glass-card {
            background: var(--glass-light);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border-light);
            border-radius: 20px;
            padding: 2rem;
            transition: transform 0.3s;
        }

        body.dark .glass-card {
            background: var(--glass-dark);
            border-color: var(--glass-border-dark);
        }

        .glass-card:hover {
            transform: translateY(-5px);
        }

        /* About */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.2rem;
            color: var(--text-secondary-light);
            line-height: 1.8;
        }

        body.dark .about-content p {
            color: var(--text-secondary-dark);
        }

        /* Skills */
        .skills-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
        }

        .skill-bar {
            height: 10px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
            border-radius: 10px;
            transition: width 1s ease;
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            position: relative;
            overflow: hidden;
        }

        .project-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
        }

        .project-card h3 {
            margin: 1rem 0;
            font-size: 1.5rem;
        }

        .project-card p {
            color: var(--text-secondary-light);
            margin-bottom: 1rem;
        }

        body.dark .project-card p {
            color: var(--text-secondary-dark);
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            padding: 0.3rem 0.8rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--primary-light);
        }

        body.dark .tech-tag {
            color: var(--primary-dark);
        }

        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--glass-light);
            border: 1px solid var(--glass-border-light);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-light);
            transition: all 0.3s;
        }

        body.dark .contact-link {
            background: var(--glass-dark);
            border-color: var(--glass-border-dark);
            color: var(--text-dark);
        }

        .contact-link:hover {
            transform: translateX(5px);
            border-color: var(--primary-light);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            border-radius: 10px;
            color: white;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            background: var(--glass-light);
            border: 1px solid var(--glass-border-light);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--text-light);
            font-family: inherit;
        }

        body.dark .form-group input,
        body.dark .form-group textarea {
            background: var(--glass-dark);
            border-color: var(--glass-border-dark);
            color: var(--text-dark);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links button span {
                display: none;
            }

            .nav-links {
                gap: 0.25rem;
            }

            .nav-links button {
                padding: 0.75rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            section {
                padding: 80px 1rem 2rem;
            }
        }
        
    .project {
      flex: 1 1 280px;
      max-width: 320px;
      min-width: 260px;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    
    }
    
/* More comprehensive reset */
#navlink {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    border: none;
    outline: none;
}


        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
            z-index: 9999;
            transition: width 0.3s ease;
        }
        
        
        
        
            .cube {
            width: 200px;
            height: 200px;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate 15s infinite linear;
            margin: 0 auto;
        }

        .face {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(0, 123, 255, 0.1);
            border: 7px solid var(--bg-dark);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .front { transform: translateZ(100px); }
        .back { transform: translateZ(-100px) rotateY(180deg); }
        .right { transform: translateX(100px) rotateY(90deg); }
        .left { transform: translateX(-100px) rotateY(-90deg); }
        .top { transform: translateY(-100px) rotateX(90deg); }
        .bottom { transform: translateY(100px) rotateX(-90deg); }

        @keyframes rotate {
            0% { transform: rotateX(0) rotateY(0); }
            100% { transform: rotateX(360deg) rotateY(360deg); }
        }
        


